blob: befcafc43c742f1e48dd1a8ed016d8f8dc1c9a5f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002* Copyright (c) 2001 The Regents of the University of Michigan.
3* All rights reserved.
4*
5* Kendrick Smith <kmsmith@umich.edu>
6* Andy Adamson <kandros@umich.edu>
7*
8* Redistribution and use in source and binary forms, with or without
9* modification, are permitted provided that the following conditions
10* are met:
11*
12* 1. Redistributions of source code must retain the above copyright
13* notice, this list of conditions and the following disclaimer.
14* 2. Redistributions in binary form must reproduce the above copyright
15* notice, this list of conditions and the following disclaimer in the
16* documentation and/or other materials provided with the distribution.
17* 3. Neither the name of the University nor the names of its
18* contributors may be used to endorse or promote products derived
19* from this software without specific prior written permission.
20*
21* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32*
33*/
34
Dave Hansenaceaf782008-02-15 14:37:31 -080035#include <linux/file.h>
Arnd Bergmannb89f4322010-09-18 15:09:31 +020036#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
NeilBrown0964a3d2005-06-23 22:04:32 -070038#include <linux/namei.h>
Meelap Shahc2f1a552007-07-17 04:04:39 -070039#include <linux/swap.h>
Bryan Schumaker17456802011-07-13 10:50:48 -040040#include <linux/pagemap.h>
Chuck Lever7df302f2012-05-29 13:56:37 -040041#include <linux/ratelimit.h>
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -050042#include <linux/sunrpc/svcauth_gss.h>
Jeff Layton59766872013-02-04 12:50:00 -050043#include <linux/sunrpc/addr.h>
Daniel Borkmann87545892014-12-10 16:33:11 +010044#include <linux/jhash.h>
J. Bruce Fields169319f2019-06-19 12:39:46 -040045#include <linux/string_helpers.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020046#include "xdr4.h"
J. Bruce Fields06b332a2013-04-09 11:34:36 -040047#include "xdr4cb.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050048#include "vfs.h"
J. Bruce Fieldsbfa4b362012-04-25 16:49:18 -040049#include "current_stateid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +040051#include "netns.h"
Christoph Hellwig9cf514c2014-05-05 13:11:59 +020052#include "pnfs.h"
Jeff Laytonfd4f83f2019-08-18 14:18:52 -040053#include "filecache.h"
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +040054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define NFSDDBG_FACILITY NFSDDBG_PROC
56
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050057#define all_ones {{~0,~0},~0}
58static const stateid_t one_stateid = {
59 .si_generation = ~0,
60 .si_opaque = all_ones,
61};
62static const stateid_t zero_stateid = {
63 /* all fields zero */
64};
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010065static const stateid_t currentstateid = {
66 .si_generation = 1,
67};
Trond Myklebustfb500a72017-11-03 08:00:12 -040068static const stateid_t close_stateid = {
69 .si_generation = 0xffffffffU,
70};
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050071
Andy Adamsonec6b5d72009-04-03 08:28:28 +030072static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070073
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050074#define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
75#define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010076#define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
Andrew Elbleae254dac2017-11-09 13:41:10 -050077#define CLOSE_STATEID(stateid) (!memcmp((stateid), &close_stateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* forward declarations */
Jeff Laytonf9c00c32014-07-23 16:17:41 -040080static bool check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner);
Trond Myklebust60116952014-07-29 21:34:06 -040081static void nfs4_free_ol_stateid(struct nfs4_stid *stid);
Scott Mayhew362063a2019-03-26 18:06:28 -040082void nfsd4_end_grace(struct nfsd_net *nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
J. Bruce Fields8b671b82009-02-22 14:51:34 -080084/* Locking: */
85
J. Bruce Fields8b671b82009-02-22 14:51:34 -080086/*
87 * Currently used for the del_recall_lru and file hash table. In an
88 * effort to decrease the scope of the client_mutex, this spinlock may
89 * eventually cover more:
90 */
Benny Halevycdc975052014-05-30 09:09:30 -040091static DEFINE_SPINLOCK(state_lock);
J. Bruce Fields8b671b82009-02-22 14:51:34 -080092
Andrew Elble4f34bd02017-11-08 17:29:51 -050093enum nfsd4_st_mutex_lock_subclass {
94 OPEN_STATEID_MUTEX = 0,
95 LOCK_STATEID_MUTEX = 1,
96};
97
Jeff Laytonb401be222014-07-29 21:34:33 -040098/*
99 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
100 * the refcount on the open stateid to drop.
101 */
102static DECLARE_WAIT_QUEUE_HEAD(close_wq);
103
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400104/*
105 * A waitqueue where a writer to clients/#/ctl destroying a client can
106 * wait for cl_rpc_users to drop to 0 and then for the client to be
107 * unhashed.
108 */
109static DECLARE_WAIT_QUEUE_HEAD(expiry_wq);
110
Jeff Layton9258a2d2018-03-16 09:47:22 -0400111static struct kmem_cache *client_slab;
Christoph Hellwigabf11352014-05-21 07:43:03 -0700112static struct kmem_cache *openowner_slab;
113static struct kmem_cache *lockowner_slab;
114static struct kmem_cache *file_slab;
115static struct kmem_cache *stateid_slab;
116static struct kmem_cache *deleg_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +0200117static struct kmem_cache *odstate_slab;
NeilBrowne60d4392005-06-23 22:03:01 -0700118
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400119static void free_session(struct nfsd4_session *);
Benny Halevy508dc6e2012-02-23 17:40:52 -0800120
Julia Lawallc4cb8972015-11-21 22:57:39 +0100121static const struct nfsd4_callback_ops nfsd4_cb_recall_ops;
Jeff Layton76d348f2016-09-16 16:28:24 -0400122static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops;
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200123
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400124static bool is_session_dead(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -0800125{
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400126 return ses->se_flags & NFS4_SESSION_DEAD;
127}
128
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -0400129static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
130{
131 if (atomic_read(&ses->se_ref) > ref_held_by_me)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400132 return nfserr_jukebox;
133 ses->se_flags |= NFS4_SESSION_DEAD;
134 return nfs_ok;
135}
136
J. Bruce Fields221a6872013-04-01 22:23:49 -0400137static bool is_client_expired(struct nfs4_client *clp)
138{
139 return clp->cl_time == 0;
140}
141
J. Bruce Fields221a6872013-04-01 22:23:49 -0400142static __be32 get_client_locked(struct nfs4_client *clp)
143{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400144 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
145
146 lockdep_assert_held(&nn->client_lock);
147
J. Bruce Fields221a6872013-04-01 22:23:49 -0400148 if (is_client_expired(clp))
149 return nfserr_expired;
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400150 atomic_inc(&clp->cl_rpc_users);
J. Bruce Fields221a6872013-04-01 22:23:49 -0400151 return nfs_ok;
152}
153
154/* must be called under the client_lock */
155static inline void
156renew_client_locked(struct nfs4_client *clp)
157{
158 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
159
160 if (is_client_expired(clp)) {
161 WARN_ON(1);
162 printk("%s: client (clientid %08x/%08x) already expired\n",
163 __func__,
164 clp->cl_clientid.cl_boot,
165 clp->cl_clientid.cl_id);
166 return;
167 }
168
169 dprintk("renewing client (clientid %08x/%08x)\n",
170 clp->cl_clientid.cl_boot,
171 clp->cl_clientid.cl_id);
172 list_move_tail(&clp->cl_lru, &nn->client_lru);
173 clp->cl_time = get_seconds();
174}
175
Fengguang Wuba138432013-04-16 22:14:15 -0400176static void put_client_renew_locked(struct nfs4_client *clp)
J. Bruce Fields221a6872013-04-01 22:23:49 -0400177{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400178 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
179
180 lockdep_assert_held(&nn->client_lock);
181
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400182 if (!atomic_dec_and_test(&clp->cl_rpc_users))
J. Bruce Fields221a6872013-04-01 22:23:49 -0400183 return;
184 if (!is_client_expired(clp))
185 renew_client_locked(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400186 else
187 wake_up_all(&expiry_wq);
J. Bruce Fields221a6872013-04-01 22:23:49 -0400188}
189
Jeff Layton4b24ca72014-06-30 11:48:44 -0400190static void put_client_renew(struct nfs4_client *clp)
191{
192 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
193
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400194 if (!atomic_dec_and_lock(&clp->cl_rpc_users, &nn->client_lock))
Jeff Laytond6c249b2014-07-08 14:02:50 -0400195 return;
196 if (!is_client_expired(clp))
197 renew_client_locked(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400198 else
199 wake_up_all(&expiry_wq);
Jeff Layton4b24ca72014-06-30 11:48:44 -0400200 spin_unlock(&nn->client_lock);
201}
202
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400203static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
204{
205 __be32 status;
206
207 if (is_session_dead(ses))
208 return nfserr_badsession;
209 status = get_client_locked(ses->se_client);
210 if (status)
211 return status;
212 atomic_inc(&ses->se_ref);
213 return nfs_ok;
214}
215
216static void nfsd4_put_session_locked(struct nfsd4_session *ses)
217{
218 struct nfs4_client *clp = ses->se_client;
Trond Myklebust0a880a22014-07-30 08:27:10 -0400219 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
220
221 lockdep_assert_held(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400222
223 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
224 free_session(ses);
225 put_client_renew_locked(clp);
226}
227
228static void nfsd4_put_session(struct nfsd4_session *ses)
229{
230 struct nfs4_client *clp = ses->se_client;
231 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
232
233 spin_lock(&nn->client_lock);
234 nfsd4_put_session_locked(ses);
235 spin_unlock(&nn->client_lock);
236}
237
Jeff Layton76d348f2016-09-16 16:28:24 -0400238static struct nfsd4_blocked_lock *
239find_blocked_lock(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
240 struct nfsd_net *nn)
241{
242 struct nfsd4_blocked_lock *cur, *found = NULL;
243
Jeff Layton0cc11a62016-10-20 09:34:31 -0400244 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400245 list_for_each_entry(cur, &lo->lo_blocked, nbl_list) {
246 if (fh_match(fh, &cur->nbl_fh)) {
247 list_del_init(&cur->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -0400248 list_del_init(&cur->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -0400249 found = cur;
250 break;
251 }
252 }
Jeff Layton0cc11a62016-10-20 09:34:31 -0400253 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400254 if (found)
NeilBrowncb03f942018-11-30 10:04:08 +1100255 locks_delete_block(&found->nbl_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400256 return found;
257}
258
259static struct nfsd4_blocked_lock *
260find_or_allocate_block(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
261 struct nfsd_net *nn)
262{
263 struct nfsd4_blocked_lock *nbl;
264
265 nbl = find_blocked_lock(lo, fh, nn);
266 if (!nbl) {
267 nbl= kmalloc(sizeof(*nbl), GFP_KERNEL);
268 if (nbl) {
269 fh_copy_shallow(&nbl->nbl_fh, fh);
270 locks_init_lock(&nbl->nbl_lock);
271 nfsd4_init_cb(&nbl->nbl_cb, lo->lo_owner.so_client,
272 &nfsd4_cb_notify_lock_ops,
273 NFSPROC4_CLNT_CB_NOTIFY_LOCK);
274 }
275 }
276 return nbl;
277}
278
279static void
280free_blocked_lock(struct nfsd4_blocked_lock *nbl)
281{
Jeff Layton6aaafc42019-04-22 12:34:23 -0400282 locks_delete_block(&nbl->nbl_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400283 locks_release_private(&nbl->nbl_lock);
284 kfree(nbl);
285}
286
Jeff Layton68ef3bc2018-03-16 11:32:02 -0400287static void
288remove_blocked_locks(struct nfs4_lockowner *lo)
289{
290 struct nfs4_client *clp = lo->lo_owner.so_client;
291 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
292 struct nfsd4_blocked_lock *nbl;
293 LIST_HEAD(reaplist);
294
295 /* Dequeue all blocked locks */
296 spin_lock(&nn->blocked_locks_lock);
297 while (!list_empty(&lo->lo_blocked)) {
298 nbl = list_first_entry(&lo->lo_blocked,
299 struct nfsd4_blocked_lock,
300 nbl_list);
301 list_del_init(&nbl->nbl_list);
302 list_move(&nbl->nbl_lru, &reaplist);
303 }
304 spin_unlock(&nn->blocked_locks_lock);
305
306 /* Now free them */
307 while (!list_empty(&reaplist)) {
308 nbl = list_first_entry(&reaplist, struct nfsd4_blocked_lock,
309 nbl_lru);
310 list_del_init(&nbl->nbl_lru);
Jeff Layton68ef3bc2018-03-16 11:32:02 -0400311 free_blocked_lock(nbl);
312 }
313}
314
Jeff Laytonf4564582019-04-22 12:34:24 -0400315static void
316nfsd4_cb_notify_lock_prepare(struct nfsd4_callback *cb)
317{
318 struct nfsd4_blocked_lock *nbl = container_of(cb,
319 struct nfsd4_blocked_lock, nbl_cb);
320 locks_delete_block(&nbl->nbl_lock);
321}
322
Jeff Layton76d348f2016-09-16 16:28:24 -0400323static int
324nfsd4_cb_notify_lock_done(struct nfsd4_callback *cb, struct rpc_task *task)
325{
326 /*
327 * Since this is just an optimization, we don't try very hard if it
328 * turns out not to succeed. We'll requeue it on NFS4ERR_DELAY, and
329 * just quit trying on anything else.
330 */
331 switch (task->tk_status) {
332 case -NFS4ERR_DELAY:
333 rpc_delay(task, 1 * HZ);
334 return 0;
335 default:
336 return 1;
337 }
338}
339
340static void
341nfsd4_cb_notify_lock_release(struct nfsd4_callback *cb)
342{
343 struct nfsd4_blocked_lock *nbl = container_of(cb,
344 struct nfsd4_blocked_lock, nbl_cb);
345
346 free_blocked_lock(nbl);
347}
348
349static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops = {
Jeff Laytonf4564582019-04-22 12:34:24 -0400350 .prepare = nfsd4_cb_notify_lock_prepare,
Jeff Layton76d348f2016-09-16 16:28:24 -0400351 .done = nfsd4_cb_notify_lock_done,
352 .release = nfsd4_cb_notify_lock_release,
353};
354
Kinglong Meeb5971af2014-08-22 10:18:43 -0400355static inline struct nfs4_stateowner *
356nfs4_get_stateowner(struct nfs4_stateowner *sop)
357{
358 atomic_inc(&sop->so_count);
359 return sop;
360}
361
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400362static int
Trond Myklebustd4f04892014-07-29 21:34:36 -0400363same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400364{
365 return (sop->so_owner.len == owner->len) &&
Trond Myklebustd4f04892014-07-29 21:34:36 -0400366 0 == memcmp(sop->so_owner.data, owner->data, owner->len);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400367}
368
369static struct nfs4_openowner *
370find_openstateowner_str_locked(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400371 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400372{
373 struct nfs4_stateowner *so;
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400374
Trond Myklebustd4f04892014-07-29 21:34:36 -0400375 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400376
Trond Myklebustd4f04892014-07-29 21:34:36 -0400377 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[hashval],
378 so_strhash) {
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400379 if (!so->so_is_open_owner)
380 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -0400381 if (same_owner_str(so, &open->op_owner))
382 return openowner(nfs4_get_stateowner(so));
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400383 }
384 return NULL;
385}
386
387static struct nfs4_openowner *
388find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400389 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400390{
391 struct nfs4_openowner *oo;
392
Trond Myklebustd4f04892014-07-29 21:34:36 -0400393 spin_lock(&clp->cl_lock);
394 oo = find_openstateowner_str_locked(hashval, open, clp);
395 spin_unlock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400396 return oo;
397}
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399static inline u32
400opaque_hashval(const void *ptr, int nbytes)
401{
402 unsigned char *cptr = (unsigned char *) ptr;
403
404 u32 x = 0;
405 while (nbytes--) {
406 x *= 37;
407 x += *cptr++;
408 }
409 return x;
410}
411
Jeff Layton5b095e92014-10-23 08:01:02 -0400412static void nfsd4_free_file_rcu(struct rcu_head *rcu)
J. Bruce Fields32513b42011-10-13 16:00:16 -0400413{
Jeff Layton5b095e92014-10-23 08:01:02 -0400414 struct nfs4_file *fp = container_of(rcu, struct nfs4_file, fi_rcu);
415
416 kmem_cache_free(file_slab, fp);
J. Bruce Fields32513b42011-10-13 16:00:16 -0400417}
418
Christoph Hellwige6ba76e2014-08-14 08:50:16 +0200419void
NeilBrown13cd2182005-06-23 22:03:10 -0700420put_nfs4_file(struct nfs4_file *fi)
421{
Jeff Layton02e12152014-07-16 10:31:57 -0400422 might_lock(&state_lock);
423
Elena Reshetova818a34e2017-10-20 12:53:30 +0300424 if (refcount_dec_and_lock(&fi->fi_ref, &state_lock)) {
Jeff Layton5b095e92014-10-23 08:01:02 -0400425 hlist_del_rcu(&fi->fi_hash);
Benny Halevycdc975052014-05-30 09:09:30 -0400426 spin_unlock(&state_lock);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200427 WARN_ON_ONCE(!list_empty(&fi->fi_clnt_odstate));
Jeff Layton5b095e92014-10-23 08:01:02 -0400428 WARN_ON_ONCE(!list_empty(&fi->fi_delegations));
429 call_rcu(&fi->fi_rcu, nfsd4_free_file_rcu);
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800430 }
NeilBrown13cd2182005-06-23 22:03:10 -0700431}
432
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400433static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400434__nfs4_get_fd(struct nfs4_file *f, int oflag)
435{
436 if (f->fi_fds[oflag])
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400437 return nfsd_file_get(f->fi_fds[oflag]);
Trond Myklebustde186432014-07-10 14:07:26 -0400438 return NULL;
439}
440
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400441static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400442find_writeable_file_locked(struct nfs4_file *f)
443{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400444 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400445
446 lockdep_assert_held(&f->fi_lock);
447
448 ret = __nfs4_get_fd(f, O_WRONLY);
449 if (!ret)
450 ret = __nfs4_get_fd(f, O_RDWR);
451 return ret;
452}
453
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400454static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400455find_writeable_file(struct nfs4_file *f)
456{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400457 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400458
459 spin_lock(&f->fi_lock);
460 ret = find_writeable_file_locked(f);
461 spin_unlock(&f->fi_lock);
462
463 return ret;
464}
465
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400466static struct nfsd_file *
467find_readable_file_locked(struct nfs4_file *f)
Trond Myklebustde186432014-07-10 14:07:26 -0400468{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400469 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400470
471 lockdep_assert_held(&f->fi_lock);
472
473 ret = __nfs4_get_fd(f, O_RDONLY);
474 if (!ret)
475 ret = __nfs4_get_fd(f, O_RDWR);
476 return ret;
477}
478
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400479static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400480find_readable_file(struct nfs4_file *f)
481{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400482 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400483
484 spin_lock(&f->fi_lock);
485 ret = find_readable_file_locked(f);
486 spin_unlock(&f->fi_lock);
487
488 return ret;
489}
490
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400491struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400492find_any_file(struct nfs4_file *f)
493{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400494 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400495
496 spin_lock(&f->fi_lock);
497 ret = __nfs4_get_fd(f, O_RDWR);
498 if (!ret) {
499 ret = __nfs4_get_fd(f, O_WRONLY);
500 if (!ret)
501 ret = __nfs4_get_fd(f, O_RDONLY);
502 }
503 spin_unlock(&f->fi_lock);
504 return ret;
505}
506
Trond Myklebust02a35082014-07-25 07:34:22 -0400507static atomic_long_t num_delegations;
Zhang Yanfei697ce9b2013-02-22 16:35:47 -0800508unsigned long max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700509
510/*
511 * Open owner state (share locks)
512 */
513
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500514/* hash tables for lock and open owners */
515#define OWNER_HASH_BITS 8
516#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
517#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700518
Trond Myklebustd4f04892014-07-29 21:34:36 -0400519static unsigned int ownerstr_hashval(struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400520{
521 unsigned int ret;
522
523 ret = opaque_hashval(ownername->data, ownername->len);
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500524 return ret & OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400525}
NeilBrownef0f3392006-04-10 22:55:41 -0700526
NeilBrownef0f3392006-04-10 22:55:41 -0700527/* hash table for nfs4_file */
528#define FILE_HASH_BITS 8
529#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800530
Trond Myklebustca943212014-07-23 16:17:39 -0400531static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400532{
Trond Myklebustca943212014-07-23 16:17:39 -0400533 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
534}
535
536static unsigned int file_hashval(struct knfsd_fh *fh)
537{
538 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
539}
540
Jeff Layton89876f82013-04-02 09:01:59 -0400541static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700542
Jeff Layton12659652014-07-10 14:07:28 -0400543static void
544__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields34775652013-08-23 17:55:18 -0400545{
Jeff Layton7214e862014-07-10 14:07:33 -0400546 lockdep_assert_held(&fp->fi_lock);
547
Jeff Layton12659652014-07-10 14:07:28 -0400548 if (access & NFS4_SHARE_ACCESS_WRITE)
549 atomic_inc(&fp->fi_access[O_WRONLY]);
550 if (access & NFS4_SHARE_ACCESS_READ)
551 atomic_inc(&fp->fi_access[O_RDONLY]);
J. Bruce Fields34775652013-08-23 17:55:18 -0400552}
553
Jeff Layton12659652014-07-10 14:07:28 -0400554static __be32
555nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400556{
Jeff Layton7214e862014-07-10 14:07:33 -0400557 lockdep_assert_held(&fp->fi_lock);
558
Jeff Layton12659652014-07-10 14:07:28 -0400559 /* Does this access mode make sense? */
560 if (access & ~NFS4_SHARE_ACCESS_BOTH)
561 return nfserr_inval;
562
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400563 /* Does it conflict with a deny mode already set? */
564 if ((access & fp->fi_share_deny) != 0)
565 return nfserr_share_denied;
566
Jeff Layton12659652014-07-10 14:07:28 -0400567 __nfs4_file_get_access(fp, access);
568 return nfs_ok;
J. Bruce Fields998db522010-08-07 09:21:41 -0400569}
570
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400571static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
572{
573 /* Common case is that there is no deny mode. */
574 if (deny) {
575 /* Does this deny mode make sense? */
576 if (deny & ~NFS4_SHARE_DENY_BOTH)
577 return nfserr_inval;
578
579 if ((deny & NFS4_SHARE_DENY_READ) &&
580 atomic_read(&fp->fi_access[O_RDONLY]))
581 return nfserr_share_denied;
582
583 if ((deny & NFS4_SHARE_DENY_WRITE) &&
584 atomic_read(&fp->fi_access[O_WRONLY]))
585 return nfserr_share_denied;
586 }
587 return nfs_ok;
588}
589
J. Bruce Fields998db522010-08-07 09:21:41 -0400590static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400591{
Trond Myklebustde186432014-07-10 14:07:26 -0400592 might_lock(&fp->fi_lock);
593
594 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400595 struct nfsd_file *f1 = NULL;
596 struct nfsd_file *f2 = NULL;
Trond Myklebustde186432014-07-10 14:07:26 -0400597
Jeff Layton6d338b52014-07-10 14:07:29 -0400598 swap(f1, fp->fi_fds[oflag]);
J. Bruce Fields0c7c3e62013-03-28 20:37:14 -0400599 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
Jeff Layton6d338b52014-07-10 14:07:29 -0400600 swap(f2, fp->fi_fds[O_RDWR]);
Trond Myklebustde186432014-07-10 14:07:26 -0400601 spin_unlock(&fp->fi_lock);
602 if (f1)
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400603 nfsd_file_put(f1);
Trond Myklebustde186432014-07-10 14:07:26 -0400604 if (f2)
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400605 nfsd_file_put(f2);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400606 }
607}
608
Jeff Layton12659652014-07-10 14:07:28 -0400609static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400610{
Jeff Layton12659652014-07-10 14:07:28 -0400611 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
612
613 if (access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields998db522010-08-07 09:21:41 -0400614 __nfs4_file_put_access(fp, O_WRONLY);
Jeff Layton12659652014-07-10 14:07:28 -0400615 if (access & NFS4_SHARE_ACCESS_READ)
616 __nfs4_file_put_access(fp, O_RDONLY);
J. Bruce Fields998db522010-08-07 09:21:41 -0400617}
618
Sachin Bhamare8287f002015-04-27 14:50:14 +0200619/*
620 * Allocate a new open/delegation state counter. This is needed for
621 * pNFS for proper return on close semantics.
622 *
623 * Note that we only allocate it for pNFS-enabled exports, otherwise
624 * all pointers to struct nfs4_clnt_odstate are always NULL.
625 */
626static struct nfs4_clnt_odstate *
627alloc_clnt_odstate(struct nfs4_client *clp)
628{
629 struct nfs4_clnt_odstate *co;
630
631 co = kmem_cache_zalloc(odstate_slab, GFP_KERNEL);
632 if (co) {
633 co->co_client = clp;
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300634 refcount_set(&co->co_odcount, 1);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200635 }
636 return co;
637}
638
639static void
640hash_clnt_odstate_locked(struct nfs4_clnt_odstate *co)
641{
642 struct nfs4_file *fp = co->co_file;
643
644 lockdep_assert_held(&fp->fi_lock);
645 list_add(&co->co_perfile, &fp->fi_clnt_odstate);
646}
647
648static inline void
649get_clnt_odstate(struct nfs4_clnt_odstate *co)
650{
651 if (co)
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300652 refcount_inc(&co->co_odcount);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200653}
654
655static void
656put_clnt_odstate(struct nfs4_clnt_odstate *co)
657{
658 struct nfs4_file *fp;
659
660 if (!co)
661 return;
662
663 fp = co->co_file;
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300664 if (refcount_dec_and_lock(&co->co_odcount, &fp->fi_lock)) {
Sachin Bhamare8287f002015-04-27 14:50:14 +0200665 list_del(&co->co_perfile);
666 spin_unlock(&fp->fi_lock);
667
668 nfsd4_return_all_file_layouts(co->co_client, fp);
669 kmem_cache_free(odstate_slab, co);
670 }
671}
672
673static struct nfs4_clnt_odstate *
674find_or_hash_clnt_odstate(struct nfs4_file *fp, struct nfs4_clnt_odstate *new)
675{
676 struct nfs4_clnt_odstate *co;
677 struct nfs4_client *cl;
678
679 if (!new)
680 return NULL;
681
682 cl = new->co_client;
683
684 spin_lock(&fp->fi_lock);
685 list_for_each_entry(co, &fp->fi_clnt_odstate, co_perfile) {
686 if (co->co_client == cl) {
687 get_clnt_odstate(co);
688 goto out;
689 }
690 }
691 co = new;
692 co->co_file = fp;
693 hash_clnt_odstate_locked(new);
694out:
695 spin_unlock(&fp->fi_lock);
696 return co;
697}
698
Kinglong Meed19fb702017-01-18 19:04:42 +0800699struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab,
700 void (*sc_free)(struct nfs4_stid *))
J. Bruce Fields996e0932011-10-17 11:14:48 -0400701{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500702 struct nfs4_stid *stid;
703 int new_id;
704
Trond Myklebustf8338832014-07-25 07:34:19 -0400705 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500706 if (!stid)
707 return NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400708
Jeff Layton4770d722014-07-29 21:34:10 -0400709 idr_preload(GFP_KERNEL);
710 spin_lock(&cl->cl_lock);
J. Bruce Fields78599c42019-04-22 15:26:23 -0400711 /* Reserving 0 for start of file in nfsdfs "states" file: */
712 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 1, 0, GFP_NOWAIT);
Jeff Layton4770d722014-07-29 21:34:10 -0400713 spin_unlock(&cl->cl_lock);
714 idr_preload_end();
Tejun Heoebd6c702013-03-13 14:59:37 -0700715 if (new_id < 0)
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500716 goto out_free;
Kinglong Meed19fb702017-01-18 19:04:42 +0800717
718 stid->sc_free = sc_free;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500719 stid->sc_client = cl;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500720 stid->sc_stateid.si_opaque.so_id = new_id;
721 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
722 /* Will be incremented before return to client: */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300723 refcount_set(&stid->sc_count, 1);
Jeff Layton9767feb2015-10-01 09:05:50 -0400724 spin_lock_init(&stid->sc_lock);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500725
J. Bruce Fields996e0932011-10-17 11:14:48 -0400726 /*
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500727 * It shouldn't be a problem to reuse an opaque stateid value.
728 * I don't think it is for 4.1. But with 4.0 I worry that, for
729 * example, a stray write retransmission could be accepted by
730 * the server when it should have been rejected. Therefore,
731 * adopt a trick from the sctp code to attempt to maximize the
732 * amount of time until an id is reused, by ensuring they always
733 * "increase" (mod INT_MAX):
J. Bruce Fields996e0932011-10-17 11:14:48 -0400734 */
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500735 return stid;
736out_free:
Wei Yongjun2c44a232013-04-09 14:15:31 +0800737 kmem_cache_free(slab, stid);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500738 return NULL;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400739}
740
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400741/*
742 * Create a unique stateid_t to represent each COPY.
743 */
744int nfs4_init_cp_state(struct nfsd_net *nn, struct nfsd4_copy *copy)
745{
746 int new_id;
747
748 idr_preload(GFP_KERNEL);
749 spin_lock(&nn->s2s_cp_lock);
750 new_id = idr_alloc_cyclic(&nn->s2s_cp_stateids, copy, 0, 0, GFP_NOWAIT);
751 spin_unlock(&nn->s2s_cp_lock);
752 idr_preload_end();
753 if (new_id < 0)
754 return 0;
755 copy->cp_stateid.si_opaque.so_id = new_id;
756 copy->cp_stateid.si_opaque.so_clid.cl_boot = nn->boot_time;
757 copy->cp_stateid.si_opaque.so_clid.cl_id = nn->s2s_cp_cl_id;
758 return 1;
759}
760
761void nfs4_free_cp_state(struct nfsd4_copy *copy)
762{
763 struct nfsd_net *nn;
764
765 nn = net_generic(copy->cp_clp->net, nfsd_net_id);
766 spin_lock(&nn->s2s_cp_lock);
767 idr_remove(&nn->s2s_cp_stateids, copy->cp_stateid.si_opaque.so_id);
768 spin_unlock(&nn->s2s_cp_lock);
769}
770
Jeff Laytonb49e0842014-07-29 21:34:11 -0400771static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400772{
Trond Myklebust60116952014-07-29 21:34:06 -0400773 struct nfs4_stid *stid;
Trond Myklebust60116952014-07-29 21:34:06 -0400774
Kinglong Meed19fb702017-01-18 19:04:42 +0800775 stid = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_ol_stateid);
Trond Myklebust60116952014-07-29 21:34:06 -0400776 if (!stid)
777 return NULL;
778
Kinglong Meed19fb702017-01-18 19:04:42 +0800779 return openlockstateid(stid);
Trond Myklebust60116952014-07-29 21:34:06 -0400780}
781
782static void nfs4_free_deleg(struct nfs4_stid *stid)
783{
Trond Myklebust60116952014-07-29 21:34:06 -0400784 kmem_cache_free(deleg_slab, stid);
785 atomic_long_dec(&num_delegations);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400786}
787
NeilBrown6282cd52014-06-04 17:39:26 +1000788/*
789 * When we recall a delegation, we should be careful not to hand it
790 * out again straight away.
791 * To ensure this we keep a pair of bloom filters ('new' and 'old')
792 * in which the filehandles of recalled delegations are "stored".
793 * If a filehandle appear in either filter, a delegation is blocked.
794 * When a delegation is recalled, the filehandle is stored in the "new"
795 * filter.
796 * Every 30 seconds we swap the filters and clear the "new" one,
797 * unless both are empty of course.
798 *
799 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
800 * low 3 bytes as hash-table indices.
801 *
Jeff Laytonf54fe962014-07-25 07:34:26 -0400802 * 'blocked_delegations_lock', which is always taken in block_delegations(),
NeilBrown6282cd52014-06-04 17:39:26 +1000803 * is used to manage concurrent access. Testing does not need the lock
804 * except when swapping the two filters.
805 */
Jeff Laytonf54fe962014-07-25 07:34:26 -0400806static DEFINE_SPINLOCK(blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000807static struct bloom_pair {
808 int entries, old_entries;
809 time_t swap_time;
810 int new; /* index into 'set' */
811 DECLARE_BITMAP(set[2], 256);
812} blocked_delegations;
813
814static int delegation_blocked(struct knfsd_fh *fh)
815{
816 u32 hash;
817 struct bloom_pair *bd = &blocked_delegations;
818
819 if (bd->entries == 0)
820 return 0;
821 if (seconds_since_boot() - bd->swap_time > 30) {
Jeff Laytonf54fe962014-07-25 07:34:26 -0400822 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000823 if (seconds_since_boot() - bd->swap_time > 30) {
824 bd->entries -= bd->old_entries;
825 bd->old_entries = bd->entries;
826 memset(bd->set[bd->new], 0,
827 sizeof(bd->set[0]));
828 bd->new = 1-bd->new;
829 bd->swap_time = seconds_since_boot();
830 }
Jeff Laytonf54fe962014-07-25 07:34:26 -0400831 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000832 }
Daniel Borkmann87545892014-12-10 16:33:11 +0100833 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000834 if (test_bit(hash&255, bd->set[0]) &&
835 test_bit((hash>>8)&255, bd->set[0]) &&
836 test_bit((hash>>16)&255, bd->set[0]))
837 return 1;
838
839 if (test_bit(hash&255, bd->set[1]) &&
840 test_bit((hash>>8)&255, bd->set[1]) &&
841 test_bit((hash>>16)&255, bd->set[1]))
842 return 1;
843
844 return 0;
845}
846
847static void block_delegations(struct knfsd_fh *fh)
848{
849 u32 hash;
850 struct bloom_pair *bd = &blocked_delegations;
851
Daniel Borkmann87545892014-12-10 16:33:11 +0100852 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000853
Jeff Laytonf54fe962014-07-25 07:34:26 -0400854 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000855 __set_bit(hash&255, bd->set[bd->new]);
856 __set_bit((hash>>8)&255, bd->set[bd->new]);
857 __set_bit((hash>>16)&255, bd->set[bd->new]);
858 if (bd->entries == 0)
859 bd->swap_time = seconds_since_boot();
860 bd->entries += 1;
Jeff Laytonf54fe962014-07-25 07:34:26 -0400861 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864static struct nfs4_delegation *
J. Bruce Fields86d29b12018-02-21 15:27:28 -0500865alloc_init_deleg(struct nfs4_client *clp, struct nfs4_file *fp,
866 struct svc_fh *current_fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +0200867 struct nfs4_clnt_odstate *odstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 struct nfs4_delegation *dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400870 long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 dprintk("NFSD alloc_init_deleg\n");
Trond Myklebust02a35082014-07-25 07:34:22 -0400873 n = atomic_long_inc_return(&num_delegations);
874 if (n < 0 || n > max_delegations)
875 goto out_dec;
NeilBrown6282cd52014-06-04 17:39:26 +1000876 if (delegation_blocked(&current_fh->fh_handle))
Trond Myklebust02a35082014-07-25 07:34:22 -0400877 goto out_dec;
Kinglong Meed19fb702017-01-18 19:04:42 +0800878 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab, nfs4_free_deleg));
NeilBrown5b2d21c2005-06-23 22:03:04 -0700879 if (dp == NULL)
Trond Myklebust02a35082014-07-25 07:34:22 -0400880 goto out_dec;
Trond Myklebust60116952014-07-29 21:34:06 -0400881
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400882 /*
883 * delegation seqid's are never incremented. The 4.1 special
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400884 * meaning of seqid 0 isn't meaningful, really, but let's avoid
885 * 0 anyway just for consistency and use 1:
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400886 */
887 dp->dl_stid.sc_stateid.si_generation = 1;
NeilBrownea1da632005-06-23 22:04:17 -0700888 INIT_LIST_HEAD(&dp->dl_perfile);
889 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 INIT_LIST_HEAD(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200891 dp->dl_clnt_odstate = odstate;
892 get_clnt_odstate(odstate);
J. Bruce Fields99c41512013-05-21 16:21:25 -0400893 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
Christoph Hellwigf0b5de12014-09-24 12:19:18 +0200894 dp->dl_retries = 1;
895 nfsd4_init_cb(&dp->dl_recall, dp->dl_stid.sc_client,
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200896 &nfsd4_cb_recall_ops, NFSPROC4_CLNT_CB_RECALL);
J. Bruce Fields86d29b12018-02-21 15:27:28 -0500897 get_nfs4_file(fp);
898 dp->dl_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400900out_dec:
901 atomic_long_dec(&num_delegations);
902 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
905void
Trond Myklebust60116952014-07-29 21:34:06 -0400906nfs4_put_stid(struct nfs4_stid *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Trond Myklebust11b91642014-07-29 21:34:08 -0400908 struct nfs4_file *fp = s->sc_file;
Trond Myklebust60116952014-07-29 21:34:06 -0400909 struct nfs4_client *clp = s->sc_client;
910
Jeff Layton4770d722014-07-29 21:34:10 -0400911 might_lock(&clp->cl_lock);
912
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300913 if (!refcount_dec_and_lock(&s->sc_count, &clp->cl_lock)) {
Jeff Laytonb401be222014-07-29 21:34:33 -0400914 wake_up_all(&close_wq);
Trond Myklebust60116952014-07-29 21:34:06 -0400915 return;
Jeff Laytonb401be222014-07-29 21:34:33 -0400916 }
Trond Myklebust60116952014-07-29 21:34:06 -0400917 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
Jeff Layton4770d722014-07-29 21:34:10 -0400918 spin_unlock(&clp->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400919 s->sc_free(s);
Trond Myklebust11b91642014-07-29 21:34:08 -0400920 if (fp)
921 put_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Jeff Layton9767feb2015-10-01 09:05:50 -0400924void
925nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid)
926{
927 stateid_t *src = &stid->sc_stateid;
928
929 spin_lock(&stid->sc_lock);
930 if (unlikely(++src->si_generation == 0))
931 src->si_generation = 1;
932 memcpy(dst, src, sizeof(*dst));
933 spin_unlock(&stid->sc_lock);
934}
935
J. Bruce Fields353601e2018-02-16 14:29:42 -0500936static void put_deleg_file(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400938 struct nfsd_file *nf = NULL;
J. Bruce Fields353601e2018-02-16 14:29:42 -0500939
940 spin_lock(&fp->fi_lock);
941 if (--fp->fi_delegees == 0)
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400942 swap(nf, fp->fi_deleg_file);
J. Bruce Fields353601e2018-02-16 14:29:42 -0500943 spin_unlock(&fp->fi_lock);
944
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400945 if (nf)
946 nfsd_file_put(nf);
J. Bruce Fields353601e2018-02-16 14:29:42 -0500947}
948
949static void nfs4_unlock_deleg_lease(struct nfs4_delegation *dp)
950{
J. Bruce Fieldscba7b3d2018-02-15 15:50:49 -0500951 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400952 struct nfsd_file *nf = fp->fi_deleg_file;
Jeff Layton417c6622014-07-21 09:34:57 -0400953
J. Bruce Fieldsb8232d32018-02-15 15:29:15 -0500954 WARN_ON_ONCE(!fp->fi_delegees);
955
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400956 vfs_setlease(nf->nf_file, F_UNLCK, NULL, (void **)&dp);
J. Bruce Fields353601e2018-02-16 14:29:42 -0500957 put_deleg_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
J. Bruce Fields0af6e692018-02-21 15:11:03 -0500960static void destroy_unhashed_deleg(struct nfs4_delegation *dp)
961{
962 put_clnt_odstate(dp->dl_clnt_odstate);
J. Bruce Fields353601e2018-02-16 14:29:42 -0500963 nfs4_unlock_deleg_lease(dp);
J. Bruce Fields0af6e692018-02-21 15:11:03 -0500964 nfs4_put_stid(&dp->dl_stid);
965}
966
Christoph Hellwigcd61c522014-08-14 08:44:57 +0200967void nfs4_unhash_stid(struct nfs4_stid *s)
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400968{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500969 s->sc_type = 0;
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400970}
971
Andrew Elble34ed9872015-10-15 12:07:28 -0400972/**
J. Bruce Fields68b18f52018-02-19 11:38:33 -0500973 * nfs4_delegation_exists - Discover if this delegation already exists
Andrew Elble34ed9872015-10-15 12:07:28 -0400974 * @clp: a pointer to the nfs4_client we're granting a delegation to
975 * @fp: a pointer to the nfs4_file we're granting a delegation on
976 *
977 * Return:
J. Bruce Fields68b18f52018-02-19 11:38:33 -0500978 * On success: true iff an existing delegation is found
Andrew Elble34ed9872015-10-15 12:07:28 -0400979 */
980
J. Bruce Fields68b18f52018-02-19 11:38:33 -0500981static bool
982nfs4_delegation_exists(struct nfs4_client *clp, struct nfs4_file *fp)
Benny Halevy931ee562014-05-30 09:09:27 -0400983{
Andrew Elble34ed9872015-10-15 12:07:28 -0400984 struct nfs4_delegation *searchdp = NULL;
985 struct nfs4_client *searchclp = NULL;
986
Benny Halevycdc975052014-05-30 09:09:30 -0400987 lockdep_assert_held(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -0400988 lockdep_assert_held(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400989
Andrew Elble34ed9872015-10-15 12:07:28 -0400990 list_for_each_entry(searchdp, &fp->fi_delegations, dl_perfile) {
991 searchclp = searchdp->dl_stid.sc_client;
992 if (clp == searchclp) {
Fengguang Wu51d87bc2018-03-22 13:37:20 +0800993 return true;
Andrew Elble34ed9872015-10-15 12:07:28 -0400994 }
995 }
Fengguang Wu51d87bc2018-03-22 13:37:20 +0800996 return false;
Andrew Elble34ed9872015-10-15 12:07:28 -0400997}
998
999/**
1000 * hash_delegation_locked - Add a delegation to the appropriate lists
1001 * @dp: a pointer to the nfs4_delegation we are adding.
1002 * @fp: a pointer to the nfs4_file we're granting a delegation on
1003 *
1004 * Return:
1005 * On success: NULL if the delegation was successfully hashed.
1006 *
1007 * On error: -EAGAIN if one was previously granted to this
1008 * nfs4_client for this nfs4_file. Delegation is not hashed.
1009 *
1010 */
1011
1012static int
1013hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
1014{
Andrew Elble34ed9872015-10-15 12:07:28 -04001015 struct nfs4_client *clp = dp->dl_stid.sc_client;
1016
1017 lockdep_assert_held(&state_lock);
1018 lockdep_assert_held(&fp->fi_lock);
1019
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001020 if (nfs4_delegation_exists(clp, fp))
1021 return -EAGAIN;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03001022 refcount_inc(&dp->dl_stid.sc_count);
Benny Halevy3fb87d12014-05-30 09:09:31 -04001023 dp->dl_stid.sc_type = NFS4_DELEG_STID;
Benny Halevy931ee562014-05-30 09:09:27 -04001024 list_add(&dp->dl_perfile, &fp->fi_delegations);
Andrew Elble34ed9872015-10-15 12:07:28 -04001025 list_add(&dp->dl_perclnt, &clp->cl_delegations);
1026 return 0;
Benny Halevy931ee562014-05-30 09:09:27 -04001027}
1028
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001029static bool
Jeff Layton42690672014-07-25 07:34:20 -04001030unhash_delegation_locked(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Trond Myklebust11b91642014-07-29 21:34:08 -04001032 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Layton02e12152014-07-16 10:31:57 -04001033
Jeff Layton42690672014-07-25 07:34:20 -04001034 lockdep_assert_held(&state_lock);
1035
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001036 if (list_empty(&dp->dl_perfile))
1037 return false;
1038
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04001039 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
Jeff Laytond55a1662014-07-22 13:52:06 -04001040 /* Ensure that deleg break won't try to requeue it */
1041 ++dp->dl_time;
Jeff Layton417c6622014-07-21 09:34:57 -04001042 spin_lock(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -04001043 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 list_del_init(&dp->dl_recall_lru);
Jeff Layton02e12152014-07-16 10:31:57 -04001045 list_del_init(&dp->dl_perfile);
1046 spin_unlock(&fp->fi_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001047 return true;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001048}
1049
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001050static void destroy_delegation(struct nfs4_delegation *dp)
1051{
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001052 bool unhashed;
1053
Jeff Layton42690672014-07-25 07:34:20 -04001054 spin_lock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001055 unhashed = unhash_delegation_locked(dp);
Jeff Layton42690672014-07-25 07:34:20 -04001056 spin_unlock(&state_lock);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001057 if (unhashed)
1058 destroy_unhashed_deleg(dp);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001059}
1060
1061static void revoke_delegation(struct nfs4_delegation *dp)
1062{
1063 struct nfs4_client *clp = dp->dl_stid.sc_client;
1064
Jeff Layton2d4a5322014-07-25 07:34:21 -04001065 WARN_ON(!list_empty(&dp->dl_recall_lru));
1066
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001067 if (clp->cl_minorversion) {
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001068 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001069 refcount_inc(&dp->dl_stid.sc_count);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001070 spin_lock(&clp->cl_lock);
1071 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
1072 spin_unlock(&clp->cl_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001073 }
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001074 destroy_unhashed_deleg(dp);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001075}
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077/*
1078 * SETCLIENTID state
1079 */
1080
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001081static unsigned int clientid_hashval(u32 id)
1082{
1083 return id & CLIENT_HASH_MASK;
1084}
1085
Scott Mayhew6b189102019-03-26 18:06:26 -04001086static unsigned int clientstr_hashval(struct xdr_netobj name)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001087{
Scott Mayhew6b189102019-03-26 18:06:26 -04001088 return opaque_hashval(name.data, 8) & CLIENT_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001089}
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091/*
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001092 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1093 * st_{access,deny}_bmap field of the stateid, in order to track not
1094 * only what share bits are currently in force, but also what
1095 * combinations of share bits previous opens have used. This allows us
1096 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1097 * return an error if the client attempt to downgrade to a combination
1098 * of share bits not explicable by closing some of its previous opens.
1099 *
1100 * XXX: This enforcement is actually incomplete, since we don't keep
1101 * track of access/deny bit combinations; so, e.g., we allow:
1102 *
1103 * OPEN allow read, deny write
1104 * OPEN allow both, deny none
1105 * DOWNGRADE allow read, deny none
1106 *
1107 * which we should reject.
1108 */
Jeff Layton5ae037e2012-05-11 09:45:11 -04001109static unsigned int
1110bmap_to_share_mode(unsigned long bmap) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001111 int i;
Jeff Layton5ae037e2012-05-11 09:45:11 -04001112 unsigned int access = 0;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001113
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001114 for (i = 1; i < 4; i++) {
1115 if (test_bit(i, &bmap))
Jeff Layton5ae037e2012-05-11 09:45:11 -04001116 access |= i;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001117 }
Jeff Layton5ae037e2012-05-11 09:45:11 -04001118 return access;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001119}
1120
Jeff Layton82c5ff12012-05-11 09:45:13 -04001121/* set share access for a given stateid */
1122static inline void
1123set_access(u32 access, struct nfs4_ol_stateid *stp)
1124{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001125 unsigned char mask = 1 << access;
1126
1127 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1128 stp->st_access_bmap |= mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001129}
1130
1131/* clear share access for a given stateid */
1132static inline void
1133clear_access(u32 access, struct nfs4_ol_stateid *stp)
1134{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001135 unsigned char mask = 1 << access;
1136
1137 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1138 stp->st_access_bmap &= ~mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001139}
1140
1141/* test whether a given stateid has access */
1142static inline bool
1143test_access(u32 access, struct nfs4_ol_stateid *stp)
1144{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001145 unsigned char mask = 1 << access;
1146
1147 return (bool)(stp->st_access_bmap & mask);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001148}
1149
Jeff Laytonce0fc432012-05-11 09:45:14 -04001150/* set share deny for a given stateid */
1151static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001152set_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001153{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001154 unsigned char mask = 1 << deny;
1155
1156 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1157 stp->st_deny_bmap |= mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001158}
1159
1160/* clear share deny for a given stateid */
1161static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001162clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001163{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001164 unsigned char mask = 1 << deny;
1165
1166 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1167 stp->st_deny_bmap &= ~mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001168}
1169
1170/* test whether a given stateid is denying specific access */
1171static inline bool
Jeff Laytonc11c5912014-07-10 14:07:30 -04001172test_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001173{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001174 unsigned char mask = 1 << deny;
1175
1176 return (bool)(stp->st_deny_bmap & mask);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001177}
1178
1179static int nfs4_access_to_omode(u32 access)
1180{
J. Bruce Fields8f34a432010-09-02 15:23:16 -04001181 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001182 case NFS4_SHARE_ACCESS_READ:
1183 return O_RDONLY;
1184 case NFS4_SHARE_ACCESS_WRITE:
1185 return O_WRONLY;
1186 case NFS4_SHARE_ACCESS_BOTH:
1187 return O_RDWR;
1188 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05001189 WARN_ON_ONCE(1);
1190 return O_RDONLY;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001191}
1192
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001193/*
1194 * A stateid that had a deny mode associated with it is being released
1195 * or downgraded. Recalculate the deny mode on the file.
1196 */
1197static void
1198recalculate_deny_mode(struct nfs4_file *fp)
1199{
1200 struct nfs4_ol_stateid *stp;
1201
1202 spin_lock(&fp->fi_lock);
1203 fp->fi_share_deny = 0;
1204 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
1205 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
1206 spin_unlock(&fp->fi_lock);
1207}
1208
1209static void
1210reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
1211{
1212 int i;
1213 bool change = false;
1214
1215 for (i = 1; i < 4; i++) {
1216 if ((i & deny) != i) {
1217 change = true;
1218 clear_deny(i, stp);
1219 }
1220 }
1221
1222 /* Recalculate per-file deny mode if there was a change */
1223 if (change)
Trond Myklebust11b91642014-07-29 21:34:08 -04001224 recalculate_deny_mode(stp->st_stid.sc_file);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001225}
1226
Jeff Layton82c5ff12012-05-11 09:45:13 -04001227/* release all access and file references for a given stateid */
1228static void
1229release_all_access(struct nfs4_ol_stateid *stp)
1230{
1231 int i;
Trond Myklebust11b91642014-07-29 21:34:08 -04001232 struct nfs4_file *fp = stp->st_stid.sc_file;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001233
1234 if (fp && stp->st_deny_bmap != 0)
1235 recalculate_deny_mode(fp);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001236
1237 for (i = 1; i < 4; i++) {
1238 if (test_access(i, stp))
Trond Myklebust11b91642014-07-29 21:34:08 -04001239 nfs4_file_put_access(stp->st_stid.sc_file, i);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001240 clear_access(i, stp);
1241 }
1242}
1243
Kinglong Meed50ffde2015-07-16 12:05:07 +08001244static inline void nfs4_free_stateowner(struct nfs4_stateowner *sop)
1245{
1246 kfree(sop->so_owner.data);
1247 sop->so_ops->so_free(sop);
1248}
1249
Jeff Layton6b180f02014-07-29 21:34:26 -04001250static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
1251{
Jeff Laytona819ecc2014-07-29 21:34:38 -04001252 struct nfs4_client *clp = sop->so_client;
1253
1254 might_lock(&clp->cl_lock);
1255
1256 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock))
Jeff Layton6b180f02014-07-29 21:34:26 -04001257 return;
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001258 sop->so_ops->so_unhash(sop);
Jeff Laytona819ecc2014-07-29 21:34:38 -04001259 spin_unlock(&clp->cl_lock);
Kinglong Meed50ffde2015-07-16 12:05:07 +08001260 nfs4_free_stateowner(sop);
Jeff Layton6b180f02014-07-29 21:34:26 -04001261}
1262
Jeff Laytone8568732015-08-24 12:41:47 -04001263static bool unhash_ol_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001264{
Trond Myklebust11b91642014-07-29 21:34:08 -04001265 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -04001266
Jeff Layton1c755dc2014-07-29 21:34:12 -04001267 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
1268
Jeff Laytone8568732015-08-24 12:41:47 -04001269 if (list_empty(&stp->st_perfile))
1270 return false;
1271
Trond Myklebust1d31a252014-07-10 14:07:25 -04001272 spin_lock(&fp->fi_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001273 list_del_init(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -04001274 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001275 list_del(&stp->st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001276 return true;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001277}
1278
Trond Myklebust60116952014-07-29 21:34:06 -04001279static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001280{
Trond Myklebust60116952014-07-29 21:34:06 -04001281 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -04001282
Sachin Bhamare8287f002015-04-27 14:50:14 +02001283 put_clnt_odstate(stp->st_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04001284 release_all_access(stp);
Jeff Laytond3134b12014-07-29 21:34:32 -04001285 if (stp->st_stateowner)
1286 nfs4_put_stateowner(stp->st_stateowner);
Trond Myklebust60116952014-07-29 21:34:06 -04001287 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001288}
1289
Jeff Laytonb49e0842014-07-29 21:34:11 -04001290static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001291{
Jeff Laytonb49e0842014-07-29 21:34:11 -04001292 struct nfs4_ol_stateid *stp = openlockstateid(stid);
1293 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001294 struct nfsd_file *nf;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001295
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001296 nf = find_any_file(stp->st_stid.sc_file);
1297 if (nf) {
1298 get_file(nf->nf_file);
1299 filp_close(nf->nf_file, (fl_owner_t)lo);
1300 nfsd_file_put(nf);
1301 }
Jeff Laytonb49e0842014-07-29 21:34:11 -04001302 nfs4_free_ol_stateid(stid);
1303}
1304
Jeff Layton2c41beb2014-07-29 21:34:41 -04001305/*
1306 * Put the persistent reference to an already unhashed generic stateid, while
1307 * holding the cl_lock. If it's the last reference, then put it onto the
1308 * reaplist for later destruction.
1309 */
1310static void put_ol_stateid_locked(struct nfs4_ol_stateid *stp,
1311 struct list_head *reaplist)
1312{
1313 struct nfs4_stid *s = &stp->st_stid;
1314 struct nfs4_client *clp = s->sc_client;
1315
1316 lockdep_assert_held(&clp->cl_lock);
1317
1318 WARN_ON_ONCE(!list_empty(&stp->st_locks));
1319
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03001320 if (!refcount_dec_and_test(&s->sc_count)) {
Jeff Layton2c41beb2014-07-29 21:34:41 -04001321 wake_up_all(&close_wq);
1322 return;
1323 }
1324
1325 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
1326 list_add(&stp->st_locks, reaplist);
1327}
1328
Jeff Laytone8568732015-08-24 12:41:47 -04001329static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Layton3c1c9952014-07-29 21:34:39 -04001330{
Chuck Leverf46c4452016-10-29 18:19:03 -04001331 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001332
1333 list_del_init(&stp->st_locks);
Christoph Hellwigcd61c522014-08-14 08:44:57 +02001334 nfs4_unhash_stid(&stp->st_stid);
Jeff Laytone8568732015-08-24 12:41:47 -04001335 return unhash_ol_stateid(stp);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001336}
1337
Jeff Layton5adfd882014-07-29 21:34:31 -04001338static void release_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Laytonb49e0842014-07-29 21:34:11 -04001339{
Chuck Leverf46c4452016-10-29 18:19:03 -04001340 struct nfs4_client *clp = stp->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04001341 bool unhashed;
Jeff Layton1c755dc2014-07-29 21:34:12 -04001342
Chuck Leverf46c4452016-10-29 18:19:03 -04001343 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001344 unhashed = unhash_lock_stateid(stp);
Chuck Leverf46c4452016-10-29 18:19:03 -04001345 spin_unlock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001346 if (unhashed)
1347 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001348}
1349
Trond Myklebustc58c6612014-07-29 21:34:35 -04001350static void unhash_lockowner_locked(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001351{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001352 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustc58c6612014-07-29 21:34:35 -04001353
Trond Myklebustd4f04892014-07-29 21:34:36 -04001354 lockdep_assert_held(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04001355
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001356 list_del_init(&lo->lo_owner.so_strhash);
1357}
1358
Jeff Layton2c41beb2014-07-29 21:34:41 -04001359/*
1360 * Free a list of generic stateids that were collected earlier after being
1361 * fully unhashed.
1362 */
1363static void
1364free_ol_stateid_reaplist(struct list_head *reaplist)
1365{
1366 struct nfs4_ol_stateid *stp;
Kinglong Meefb94d762014-08-05 21:20:27 +08001367 struct nfs4_file *fp;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001368
1369 might_sleep();
1370
1371 while (!list_empty(reaplist)) {
1372 stp = list_first_entry(reaplist, struct nfs4_ol_stateid,
1373 st_locks);
1374 list_del(&stp->st_locks);
Kinglong Meefb94d762014-08-05 21:20:27 +08001375 fp = stp->st_stid.sc_file;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001376 stp->st_stid.sc_free(&stp->st_stid);
Kinglong Meefb94d762014-08-05 21:20:27 +08001377 if (fp)
1378 put_nfs4_file(fp);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001379 }
1380}
1381
Jeff Laytond83017f2014-07-29 21:34:42 -04001382static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp,
1383 struct list_head *reaplist)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001384{
1385 struct nfs4_ol_stateid *stp;
1386
Jeff Laytone8568732015-08-24 12:41:47 -04001387 lockdep_assert_held(&open_stp->st_stid.sc_client->cl_lock);
1388
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001389 while (!list_empty(&open_stp->st_locks)) {
1390 stp = list_entry(open_stp->st_locks.next,
1391 struct nfs4_ol_stateid, st_locks);
Jeff Laytone8568732015-08-24 12:41:47 -04001392 WARN_ON(!unhash_lock_stateid(stp));
Jeff Laytond83017f2014-07-29 21:34:42 -04001393 put_ol_stateid_locked(stp, reaplist);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001394 }
1395}
1396
Jeff Laytone8568732015-08-24 12:41:47 -04001397static bool unhash_open_stateid(struct nfs4_ol_stateid *stp,
Jeff Laytond83017f2014-07-29 21:34:42 -04001398 struct list_head *reaplist)
J. Bruce Fields22839632009-01-11 14:27:17 -05001399{
Jeff Laytone8568732015-08-24 12:41:47 -04001400 bool unhashed;
1401
Jeff Layton2c41beb2014-07-29 21:34:41 -04001402 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1403
Jeff Laytone8568732015-08-24 12:41:47 -04001404 unhashed = unhash_ol_stateid(stp);
Jeff Laytond83017f2014-07-29 21:34:42 -04001405 release_open_stateid_locks(stp, reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04001406 return unhashed;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04001407}
1408
1409static void release_open_stateid(struct nfs4_ol_stateid *stp)
1410{
Jeff Layton2c41beb2014-07-29 21:34:41 -04001411 LIST_HEAD(reaplist);
1412
1413 spin_lock(&stp->st_stid.sc_client->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001414 if (unhash_open_stateid(stp, &reaplist))
1415 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001416 spin_unlock(&stp->st_stid.sc_client->cl_lock);
1417 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fields22839632009-01-11 14:27:17 -05001418}
1419
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001420static void unhash_openowner_locked(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001421{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001422 struct nfs4_client *clp = oo->oo_owner.so_client;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001423
Trond Myklebustd4f04892014-07-29 21:34:36 -04001424 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001425
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001426 list_del_init(&oo->oo_owner.so_strhash);
1427 list_del_init(&oo->oo_perclient);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001428}
1429
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001430static void release_last_closed_stateid(struct nfs4_openowner *oo)
1431{
Jeff Layton217526e2014-07-30 08:27:11 -04001432 struct nfsd_net *nn = net_generic(oo->oo_owner.so_client->net,
1433 nfsd_net_id);
1434 struct nfs4_ol_stateid *s;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001435
Jeff Layton217526e2014-07-30 08:27:11 -04001436 spin_lock(&nn->client_lock);
1437 s = oo->oo_last_closed_stid;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001438 if (s) {
Jeff Laytond3134b12014-07-29 21:34:32 -04001439 list_del_init(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001440 oo->oo_last_closed_stid = NULL;
1441 }
Jeff Layton217526e2014-07-30 08:27:11 -04001442 spin_unlock(&nn->client_lock);
1443 if (s)
1444 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001445}
1446
Jeff Layton2c41beb2014-07-29 21:34:41 -04001447static void release_openowner(struct nfs4_openowner *oo)
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001448{
1449 struct nfs4_ol_stateid *stp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001450 struct nfs4_client *clp = oo->oo_owner.so_client;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001451 struct list_head reaplist;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001452
Jeff Layton2c41beb2014-07-29 21:34:41 -04001453 INIT_LIST_HEAD(&reaplist);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001454
Trond Myklebustd4f04892014-07-29 21:34:36 -04001455 spin_lock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001456 unhash_openowner_locked(oo);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001457 while (!list_empty(&oo->oo_owner.so_stateids)) {
1458 stp = list_first_entry(&oo->oo_owner.so_stateids,
1459 struct nfs4_ol_stateid, st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001460 if (unhash_open_stateid(stp, &reaplist))
1461 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001462 }
Trond Myklebustd4f04892014-07-29 21:34:36 -04001463 spin_unlock(&clp->cl_lock);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001464 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001465 release_last_closed_stateid(oo);
Jeff Layton6b180f02014-07-29 21:34:26 -04001466 nfs4_put_stateowner(&oo->oo_owner);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001467}
1468
Marc Eshel5282fd72009-04-03 08:27:52 +03001469static inline int
1470hash_sessionid(struct nfs4_sessionid *sessionid)
1471{
1472 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1473
1474 return sid->sequence % SESSION_HASH_SIZE;
1475}
1476
Mark Salter135dd002015-04-06 09:46:00 -04001477#ifdef CONFIG_SUNRPC_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001478static inline void
1479dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1480{
1481 u32 *ptr = (u32 *)(&sessionid->data[0]);
1482 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1483}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001484#else
1485static inline void
1486dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1487{
1488}
1489#endif
1490
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001491/*
1492 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1493 * won't be used for replay.
1494 */
1495void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1496{
1497 struct nfs4_stateowner *so = cstate->replay_owner;
1498
1499 if (nfserr == nfserr_replay_me)
1500 return;
1501
1502 if (!seqid_mutating_err(ntohl(nfserr))) {
Jeff Layton58fb12e2014-07-29 21:34:27 -04001503 nfsd4_cstate_clear_replay(cstate);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001504 return;
1505 }
1506 if (!so)
1507 return;
1508 if (so->so_is_open_owner)
1509 release_last_closed_stateid(openowner(so));
1510 so->so_seqid++;
1511 return;
1512}
Marc Eshel5282fd72009-04-03 08:27:52 +03001513
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001514static void
1515gen_sessionid(struct nfsd4_session *ses)
1516{
1517 struct nfs4_client *clp = ses->se_client;
1518 struct nfsd4_sessionid *sid;
1519
1520 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1521 sid->clientid = clp->cl_clientid;
1522 sid->sequence = current_sessionid++;
1523 sid->reserved = 0;
1524}
1525
1526/*
Andy Adamsona649637c72009-08-28 08:45:01 -04001527 * The protocol defines ca_maxresponssize_cached to include the size of
1528 * the rpc header, but all we need to cache is the data starting after
1529 * the end of the initial SEQUENCE operation--the rest we regenerate
1530 * each time. Therefore we can advertise a ca_maxresponssize_cached
1531 * value that is the number of bytes in our cache plus a few additional
1532 * bytes. In order to stay on the safe side, and not promise more than
1533 * we can cache, those additional bytes must be the minimum possible: 24
1534 * bytes of rpc header (xid through accept state, with AUTH_NULL
1535 * verifier), 12 for the compound header (with zero-length tag), and 44
1536 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001537 */
Andy Adamsona649637c72009-08-28 08:45:01 -04001538#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1539
Andy Adamson557ce262009-08-28 08:45:04 -04001540static void
1541free_session_slots(struct nfsd4_session *ses)
1542{
1543 int i;
1544
J. Bruce Fields53da6a52017-10-17 20:38:49 -04001545 for (i = 0; i < ses->se_fchannel.maxreqs; i++) {
1546 free_svc_cred(&ses->se_slots[i]->sl_cred);
Andy Adamson557ce262009-08-28 08:45:04 -04001547 kfree(ses->se_slots[i]);
J. Bruce Fields53da6a52017-10-17 20:38:49 -04001548 }
Andy Adamson557ce262009-08-28 08:45:04 -04001549}
1550
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001551/*
1552 * We don't actually need to cache the rpc and session headers, so we
1553 * can allocate a little less for each slot:
1554 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001555static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001556{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001557 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001558
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001559 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1560 size = 0;
1561 else
1562 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1563 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001564}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001565
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001566/*
1567 * XXX: If we run out of reserved DRC memory we could (up to a point)
1568 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001569 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001570 */
NeilBrown2030ca52019-09-20 16:36:45 +10001571static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001572{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001573 u32 slotsize = slot_bytes(ca);
1574 u32 num = ca->maxreqs;
J. Bruce Fieldsc54f24e2019-02-21 10:47:00 -05001575 unsigned long avail, total_avail;
NeilBrown2030ca52019-09-20 16:36:45 +10001576 unsigned int scale_factor;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001577
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001578 spin_lock(&nfsd_drc_lock);
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001579 if (nfsd_drc_max_mem > nfsd_drc_mem_used)
1580 total_avail = nfsd_drc_max_mem - nfsd_drc_mem_used;
1581 else
1582 /* We have handed out more space than we chose in
1583 * set_max_drc() to allow. That isn't really a
1584 * problem as long as that doesn't make us think we
1585 * have lots more due to integer overflow.
1586 */
1587 total_avail = 0;
J. Bruce Fieldsc54f24e2019-02-21 10:47:00 -05001588 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION, total_avail);
J. Bruce Fieldsde766e52017-09-19 19:25:41 -04001589 /*
NeilBrown2030ca52019-09-20 16:36:45 +10001590 * Never use more than a fraction of the remaining memory,
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001591 * unless it's the only way to give this client a slot.
NeilBrown2030ca52019-09-20 16:36:45 +10001592 * The chosen fraction is either 1/8 or 1/number of threads,
1593 * whichever is smaller. This ensures there are adequate
1594 * slots to support multiple clients per thread.
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001595 * Give the client one slot even if that would require
1596 * over-allocation--it is better than failure.
J. Bruce Fieldsde766e52017-09-19 19:25:41 -04001597 */
NeilBrown2030ca52019-09-20 16:36:45 +10001598 scale_factor = max_t(unsigned int, 8, nn->nfsd_serv->sv_nrthreads);
1599
1600 avail = clamp_t(unsigned long, avail, slotsize,
1601 total_avail/scale_factor);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001602 num = min_t(int, num, avail / slotsize);
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001603 num = max_t(int, num, 1);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001604 nfsd_drc_mem_used += num * slotsize;
1605 spin_unlock(&nfsd_drc_lock);
1606
1607 return num;
1608}
1609
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001610static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001611{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001612 int slotsize = slot_bytes(ca);
1613
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001614 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001615 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001616 spin_unlock(&nfsd_drc_lock);
1617}
1618
Kinglong Mee60810e52014-01-01 00:35:47 +08001619static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1620 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001621{
Kinglong Mee60810e52014-01-01 00:35:47 +08001622 int numslots = fattrs->maxreqs;
1623 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001624 struct nfsd4_session *new;
1625 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001626
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001627 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001628 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1629 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001630
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001631 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001632 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001633 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001634 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001635 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001636 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001637 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001638 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001639 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001640
1641 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1642 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1643
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001644 return new;
1645out_free:
1646 while (i--)
1647 kfree(new->se_slots[i]);
1648 kfree(new);
1649 return NULL;
1650}
1651
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001652static void free_conn(struct nfsd4_conn *c)
1653{
1654 svc_xprt_put(c->cn_xprt);
1655 kfree(c);
1656}
1657
1658static void nfsd4_conn_lost(struct svc_xpt_user *u)
1659{
1660 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1661 struct nfs4_client *clp = c->cn_session->se_client;
1662
1663 spin_lock(&clp->cl_lock);
1664 if (!list_empty(&c->cn_persession)) {
1665 list_del(&c->cn_persession);
1666 free_conn(c);
1667 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001668 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001669 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001670}
1671
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001672static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001673{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001674 struct nfsd4_conn *conn;
1675
1676 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1677 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001678 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001679 svc_xprt_get(rqstp->rq_xprt);
1680 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001681 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001682 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1683 return conn;
1684}
1685
J. Bruce Fields328ead22010-09-29 16:11:06 -04001686static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1687{
1688 conn->cn_session = ses;
1689 list_add(&conn->cn_persession, &ses->se_conns);
1690}
1691
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001692static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1693{
1694 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001695
1696 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001697 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001698 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001699}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001700
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001701static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001702{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001703 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001704 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001705}
1706
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001707static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001708{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001709 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001710
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001711 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001712 ret = nfsd4_register_conn(conn);
1713 if (ret)
1714 /* oops; xprt is already down: */
1715 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001716 /* We may have gained or lost a callback channel: */
1717 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001718}
1719
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001720static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001721{
1722 u32 dir = NFS4_CDFC4_FORE;
1723
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001724 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001725 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001726 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001727}
1728
1729/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001730static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001731{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001732 struct nfs4_client *clp = s->se_client;
1733 struct nfsd4_conn *c;
1734
1735 spin_lock(&clp->cl_lock);
1736 while (!list_empty(&s->se_conns)) {
1737 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1738 list_del_init(&c->cn_persession);
1739 spin_unlock(&clp->cl_lock);
1740
1741 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1742 free_conn(c);
1743
1744 spin_lock(&clp->cl_lock);
1745 }
1746 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001747}
1748
J. Bruce Fields1377b692012-09-11 21:42:40 -04001749static void __free_session(struct nfsd4_session *ses)
1750{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001751 free_session_slots(ses);
1752 kfree(ses);
1753}
1754
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001755static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001756{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001757 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001758 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001759 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001760}
Andy Adamson557ce262009-08-28 08:45:04 -04001761
Fengguang Wu135ae822012-11-10 07:20:25 -05001762static void init_session(struct svc_rqst *rqstp, struct nfsd4_session *new, struct nfs4_client *clp, struct nfsd4_create_session *cses)
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001763{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001764 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001765 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001766
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001767 new->se_client = clp;
1768 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001769
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001770 INIT_LIST_HEAD(&new->se_conns);
1771
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04001772 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001773 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001774 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001775 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001776 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001777 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001778 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001779 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001780 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001781 spin_unlock(&clp->cl_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001782
Chuck Leverb0d2e422014-08-22 15:10:59 -04001783 {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001784 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001785 /*
1786 * This is a little silly; with sessions there's no real
1787 * use for the callback address. Use the peer address
1788 * as a reasonable default for now, but consider fixing
1789 * the rpc client not to require an address in the
1790 * future:
1791 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001792 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1793 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001794 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001795}
1796
Benny Halevy9089f1b2010-05-12 00:12:26 +03001797/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001798static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001799__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001800{
1801 struct nfsd4_session *elem;
1802 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001803 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001804
Trond Myklebust0a880a22014-07-30 08:27:10 -04001805 lockdep_assert_held(&nn->client_lock);
1806
Marc Eshel5282fd72009-04-03 08:27:52 +03001807 dump_sessionid(__func__, sessionid);
1808 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001809 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001810 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001811 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1812 NFS4_MAX_SESSIONID_LEN)) {
1813 return elem;
1814 }
1815 }
1816
1817 dprintk("%s: session not found\n", __func__);
1818 return NULL;
1819}
1820
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001821static struct nfsd4_session *
1822find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1823 __be32 *ret)
1824{
1825 struct nfsd4_session *session;
1826 __be32 status = nfserr_badsession;
1827
1828 session = __find_in_sessionid_hashtbl(sessionid, net);
1829 if (!session)
1830 goto out;
1831 status = nfsd4_get_session_locked(session);
1832 if (status)
1833 session = NULL;
1834out:
1835 *ret = status;
1836 return session;
1837}
1838
Benny Halevy9089f1b2010-05-12 00:12:26 +03001839/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001840static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001841unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001842{
Trond Myklebust0a880a22014-07-30 08:27:10 -04001843 struct nfs4_client *clp = ses->se_client;
1844 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1845
1846 lockdep_assert_held(&nn->client_lock);
1847
Andy Adamson7116ed62009-04-03 08:27:43 +03001848 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001849 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001850 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001851 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1855static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001856STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
J. Bruce Fieldsbbc7f332015-01-20 11:51:26 -05001858 /*
1859 * We're assuming the clid was not given out from a boot
1860 * precisely 2^32 (about 136 years) before this one. That seems
1861 * a safe assumption:
1862 */
1863 if (clid->cl_boot == (u32)nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +03001865 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001866 clid->cl_boot, clid->cl_id, nn->boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 return 1;
1868}
1869
1870/*
1871 * XXX Should we use a slab cache ?
1872 * This type of memory management is somewhat inefficient, but we use it
1873 * anyway since SETCLIENTID is not a common operation.
1874 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001875static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
1877 struct nfs4_client *clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001878 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Jeff Layton9258a2d2018-03-16 09:47:22 -04001880 clp = kmem_cache_zalloc(client_slab, GFP_KERNEL);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001881 if (clp == NULL)
1882 return NULL;
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04001883 xdr_netobj_dup(&clp->cl_name, &name, GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001884 if (clp->cl_name.data == NULL)
1885 goto err_no_name;
Kees Cook6da2ec52018-06-12 13:55:00 -07001886 clp->cl_ownerstr_hashtbl = kmalloc_array(OWNER_HASH_SIZE,
1887 sizeof(struct list_head),
1888 GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001889 if (!clp->cl_ownerstr_hashtbl)
1890 goto err_no_hashtbl;
1891 for (i = 0; i < OWNER_HASH_SIZE; i++)
1892 INIT_LIST_HEAD(&clp->cl_ownerstr_hashtbl[i]);
Trond Myklebust5694c932014-04-18 14:43:56 -04001893 INIT_LIST_HEAD(&clp->cl_sessions);
1894 idr_init(&clp->cl_stateids);
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04001895 atomic_set(&clp->cl_rpc_users, 0);
Trond Myklebust5694c932014-04-18 14:43:56 -04001896 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1897 INIT_LIST_HEAD(&clp->cl_idhash);
1898 INIT_LIST_HEAD(&clp->cl_openowners);
1899 INIT_LIST_HEAD(&clp->cl_delegations);
1900 INIT_LIST_HEAD(&clp->cl_lru);
Trond Myklebust5694c932014-04-18 14:43:56 -04001901 INIT_LIST_HEAD(&clp->cl_revoked);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001902#ifdef CONFIG_NFSD_PNFS
1903 INIT_LIST_HEAD(&clp->cl_lo_states);
1904#endif
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001905 INIT_LIST_HEAD(&clp->async_copies);
1906 spin_lock_init(&clp->async_lock);
Trond Myklebust5694c932014-04-18 14:43:56 -04001907 spin_lock_init(&clp->cl_lock);
1908 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001910err_no_hashtbl:
1911 kfree(clp->cl_name.data);
1912err_no_name:
Jeff Layton9258a2d2018-03-16 09:47:22 -04001913 kmem_cache_free(client_slab, clp);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001914 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001917static void __free_client(struct kref *k)
1918{
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04001919 struct nfsdfs_client *c = container_of(k, struct nfsdfs_client, cl_ref);
1920 struct nfs4_client *clp = container_of(c, struct nfs4_client, cl_nfsdfs);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001921
1922 free_svc_cred(&clp->cl_cred);
1923 kfree(clp->cl_ownerstr_hashtbl);
1924 kfree(clp->cl_name.data);
J. Bruce Fields79123442019-06-05 12:42:05 -04001925 kfree(clp->cl_nii_domain.data);
1926 kfree(clp->cl_nii_name.data);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001927 idr_destroy(&clp->cl_stateids);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001928 kmem_cache_free(client_slab, clp);
1929}
1930
YueHaibing297e57a2019-07-08 15:29:33 +08001931static void drop_client(struct nfs4_client *clp)
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001932{
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04001933 kref_put(&clp->cl_nfsdfs.cl_ref, __free_client);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001934}
1935
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001936static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937free_client(struct nfs4_client *clp)
1938{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001939 while (!list_empty(&clp->cl_sessions)) {
1940 struct nfsd4_session *ses;
1941 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1942 se_perclnt);
1943 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001944 WARN_ON_ONCE(atomic_read(&ses->se_ref));
1945 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001946 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04001947 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04001948 if (clp->cl_nfsd_dentry) {
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04001949 nfsd_client_rmdir(clp->cl_nfsd_dentry);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04001950 clp->cl_nfsd_dentry = NULL;
1951 wake_up_all(&expiry_wq);
1952 }
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001953 drop_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
Benny Halevy84d38ac2010-05-12 00:13:16 +03001956/* must be called under the client_lock */
Trond Myklebust4beb3452014-07-30 08:27:02 -04001957static void
Benny Halevy84d38ac2010-05-12 00:13:16 +03001958unhash_client_locked(struct nfs4_client *clp)
1959{
Trond Myklebust4beb3452014-07-30 08:27:02 -04001960 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001961 struct nfsd4_session *ses;
1962
Trond Myklebust0a880a22014-07-30 08:27:10 -04001963 lockdep_assert_held(&nn->client_lock);
1964
Trond Myklebust4beb3452014-07-30 08:27:02 -04001965 /* Mark the client as expired! */
1966 clp->cl_time = 0;
1967 /* Make it invisible */
1968 if (!list_empty(&clp->cl_idhash)) {
1969 list_del_init(&clp->cl_idhash);
1970 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
1971 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
1972 else
1973 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
1974 }
1975 list_del_init(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001976 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001977 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1978 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001979 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001980}
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982static void
Trond Myklebust4beb3452014-07-30 08:27:02 -04001983unhash_client(struct nfs4_client *clp)
1984{
1985 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1986
1987 spin_lock(&nn->client_lock);
1988 unhash_client_locked(clp);
1989 spin_unlock(&nn->client_lock);
1990}
1991
Jeff Layton97403d92014-07-30 08:27:12 -04001992static __be32 mark_client_expired_locked(struct nfs4_client *clp)
1993{
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04001994 if (atomic_read(&clp->cl_rpc_users))
Jeff Layton97403d92014-07-30 08:27:12 -04001995 return nfserr_jukebox;
1996 unhash_client_locked(clp);
1997 return nfs_ok;
1998}
1999
Trond Myklebust4beb3452014-07-30 08:27:02 -04002000static void
2001__destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002{
Jeff Layton68ef3bc2018-03-16 11:32:02 -04002003 int i;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002004 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 struct list_head reaplist;
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04002009 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07002010 while (!list_empty(&clp->cl_delegations)) {
2011 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04002012 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04002013 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 }
Benny Halevycdc975052014-05-30 09:09:30 -04002015 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 while (!list_empty(&reaplist)) {
2017 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04002018 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05002019 destroy_unhashed_deleg(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04002021 while (!list_empty(&clp->cl_revoked)) {
Andrew Elblec8764862015-02-25 17:46:27 -05002022 dp = list_entry(clp->cl_revoked.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04002023 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04002024 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02002025 }
NeilBrownea1da632005-06-23 22:04:17 -07002026 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002027 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
Kinglong Meeb5971af2014-08-22 10:18:43 -04002028 nfs4_get_stateowner(&oo->oo_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002029 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
Jeff Layton68ef3bc2018-03-16 11:32:02 -04002031 for (i = 0; i < OWNER_HASH_SIZE; i++) {
2032 struct nfs4_stateowner *so, *tmp;
2033
2034 list_for_each_entry_safe(so, tmp, &clp->cl_ownerstr_hashtbl[i],
2035 so_strhash) {
2036 /* Should be no openowners at this point */
2037 WARN_ON_ONCE(so->so_is_open_owner);
2038 remove_blocked_locks(lockowner(so));
2039 }
2040 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002041 nfsd4_return_all_client_layouts(clp);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04002042 nfsd4_shutdown_copy(clp);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04002043 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002044 if (clp->cl_cb_conn.cb_xprt)
2045 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002046 free_client(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002047 wake_up_all(&expiry_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
Trond Myklebust4beb3452014-07-30 08:27:02 -04002050static void
2051destroy_client(struct nfs4_client *clp)
2052{
2053 unhash_client(clp);
2054 __destroy_client(clp);
2055}
2056
Scott Mayhew362063a2019-03-26 18:06:28 -04002057static void inc_reclaim_complete(struct nfs4_client *clp)
2058{
2059 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2060
2061 if (!nn->track_reclaim_completes)
2062 return;
2063 if (!nfsd4_find_reclaim_client(clp->cl_name, nn))
2064 return;
2065 if (atomic_inc_return(&nn->nr_reclaim_complete) ==
2066 nn->reclaim_str_hashtbl_size) {
2067 printk(KERN_INFO "NFSD: all clients done reclaiming, ending NFSv4 grace period (net %x)\n",
2068 clp->net->ns.inum);
2069 nfsd4_end_grace(nn);
2070 }
2071}
2072
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002073static void expire_client(struct nfs4_client *clp)
2074{
Trond Myklebust4beb3452014-07-30 08:27:02 -04002075 unhash_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002076 nfsd4_client_record_remove(clp);
Trond Myklebust4beb3452014-07-30 08:27:02 -04002077 __destroy_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002078}
2079
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05002080static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
2081{
2082 memcpy(target->cl_verifier.data, source->data,
2083 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05002086static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
2087{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
2089 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
2090}
2091
J. Bruce Fields50043852015-11-20 15:58:37 -05002092static int copy_cred(struct svc_cred *target, struct svc_cred *source)
2093{
NeilBrown2f10fdc2017-03-23 16:57:36 +08002094 target->cr_principal = kstrdup(source->cr_principal, GFP_KERNEL);
2095 target->cr_raw_principal = kstrdup(source->cr_raw_principal,
2096 GFP_KERNEL);
Chuck Lever9abdda52018-08-16 12:05:59 -04002097 target->cr_targ_princ = kstrdup(source->cr_targ_princ, GFP_KERNEL);
2098 if ((source->cr_principal && !target->cr_principal) ||
2099 (source->cr_raw_principal && !target->cr_raw_principal) ||
2100 (source->cr_targ_princ && !target->cr_targ_princ))
NeilBrown2f10fdc2017-03-23 16:57:36 +08002101 return -ENOMEM;
J. Bruce Fields50043852015-11-20 15:58:37 -05002102
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04002103 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 target->cr_uid = source->cr_uid;
2105 target->cr_gid = source->cr_gid;
2106 target->cr_group_info = source->cr_group_info;
2107 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04002108 target->cr_gss_mech = source->cr_gss_mech;
2109 if (source->cr_gss_mech)
2110 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002114static int
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002115compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
2116{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002117 if (o1->len < o2->len)
2118 return -1;
2119 if (o1->len > o2->len)
2120 return 1;
2121 return memcmp(o1->data, o2->data, o1->len);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002122}
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002125same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
2126{
2127 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
2130static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002131same_clid(clientid_t *cl1, clientid_t *cl2)
2132{
2133 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002136static bool groups_equal(struct group_info *g1, struct group_info *g2)
2137{
2138 int i;
2139
2140 if (g1->ngroups != g2->ngroups)
2141 return false;
2142 for (i=0; i<g1->ngroups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -07002143 if (!gid_eq(g1->gid[i], g2->gid[i]))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002144 return false;
2145 return true;
2146}
2147
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002148/*
2149 * RFC 3530 language requires clid_inuse be returned when the
2150 * "principal" associated with a requests differs from that previously
2151 * used. We use uid, gid's, and gss principal string as our best
2152 * approximation. We also don't want to allow non-gss use of a client
2153 * established using gss: in theory cr_principal should catch that
2154 * change, but in practice cr_principal can be null even in the gss case
2155 * since gssd doesn't always pass down a principal string.
2156 */
2157static bool is_gss_cred(struct svc_cred *cr)
2158{
2159 /* Is cr_flavor one of the gss "pseudoflavors"?: */
2160 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
2161}
2162
2163
Vivek Trivedi5559b502012-07-24 21:18:20 +05302164static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002165same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
2166{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002167 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002168 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
2169 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002170 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
2171 return false;
Chuck Lever9abdda52018-08-16 12:05:59 -04002172 /* XXX: check that cr_targ_princ fields match ? */
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002173 if (cr1->cr_principal == cr2->cr_principal)
2174 return true;
2175 if (!cr1->cr_principal || !cr2->cr_principal)
2176 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05302177 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
2179
J. Bruce Fields57266a62013-04-13 14:27:29 -04002180static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
2181{
2182 struct svc_cred *cr = &rqstp->rq_cred;
2183 u32 service;
2184
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04002185 if (!cr->cr_gss_mech)
2186 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002187 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
2188 return service == RPC_GSS_SVC_INTEGRITY ||
2189 service == RPC_GSS_SVC_PRIVACY;
2190}
2191
Andrew Elblededeb132016-06-15 12:52:08 -04002192bool nfsd4_mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
J. Bruce Fields57266a62013-04-13 14:27:29 -04002193{
2194 struct svc_cred *cr = &rqstp->rq_cred;
2195
2196 if (!cl->cl_mach_cred)
2197 return true;
2198 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
2199 return false;
2200 if (!svc_rqst_integrity_protected(rqstp))
2201 return false;
J. Bruce Fields414ca012015-11-20 10:48:02 -05002202 if (cl->cl_cred.cr_raw_principal)
2203 return 0 == strcmp(cl->cl_cred.cr_raw_principal,
2204 cr->cr_raw_principal);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002205 if (!cr->cr_principal)
2206 return false;
2207 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
2208}
2209
Jeff Layton294ac322014-07-30 08:27:15 -04002210static void gen_confirm(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05002211{
Chuck Leverab4684d2012-03-02 17:13:50 -05002212 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Jeff Laytonf4199922014-06-17 07:44:11 -04002214 /*
2215 * This is opaque to client, so no need to byte-swap. Use
2216 * __force to keep sparse happy
2217 */
2218 verf[0] = (__force __be32)get_seconds();
Kinglong Mee19311aa82015-07-18 07:33:31 +08002219 verf[1] = (__force __be32)nn->clverifier_counter++;
Chuck Leverab4684d2012-03-02 17:13:50 -05002220 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221}
2222
Jeff Layton294ac322014-07-30 08:27:15 -04002223static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
2224{
2225 clp->cl_clientid.cl_boot = nn->boot_time;
2226 clp->cl_clientid.cl_id = nn->clientid_counter++;
2227 gen_confirm(clp, nn);
2228}
2229
Jeff Layton4770d722014-07-29 21:34:10 -04002230static struct nfs4_stid *
2231find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04002232{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05002233 struct nfs4_stid *ret;
2234
2235 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
2236 if (!ret || !ret->sc_type)
2237 return NULL;
2238 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04002239}
2240
Jeff Layton4770d722014-07-29 21:34:10 -04002241static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04002242find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04002243{
2244 struct nfs4_stid *s;
2245
Jeff Layton4770d722014-07-29 21:34:10 -04002246 spin_lock(&cl->cl_lock);
2247 s = find_stateid_locked(cl, t);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002248 if (s != NULL) {
2249 if (typemask & s->sc_type)
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03002250 refcount_inc(&s->sc_count);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002251 else
2252 s = NULL;
2253 }
Jeff Layton4770d722014-07-29 21:34:10 -04002254 spin_unlock(&cl->cl_lock);
2255 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04002256}
2257
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002258static struct nfs4_client *get_nfsdfs_clp(struct inode *inode)
2259{
2260 struct nfsdfs_client *nc;
2261 nc = get_nfsdfs_client(inode);
2262 if (!nc)
2263 return NULL;
2264 return container_of(nc, struct nfs4_client, cl_nfsdfs);
2265}
2266
J. Bruce Fields169319f2019-06-19 12:39:46 -04002267static void seq_quote_mem(struct seq_file *m, char *data, int len)
2268{
2269 seq_printf(m, "\"");
2270 seq_escape_mem_ascii(m, data, len);
2271 seq_printf(m, "\"");
2272}
2273
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002274static int client_info_show(struct seq_file *m, void *v)
2275{
2276 struct inode *inode = m->private;
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002277 struct nfs4_client *clp;
2278 u64 clid;
2279
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002280 clp = get_nfsdfs_clp(inode);
2281 if (!clp)
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002282 return -ENXIO;
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002283 memcpy(&clid, &clp->cl_clientid, sizeof(clid));
2284 seq_printf(m, "clientid: 0x%llx\n", clid);
J. Bruce Fields169319f2019-06-19 12:39:46 -04002285 seq_printf(m, "address: \"%pISpc\"\n", (struct sockaddr *)&clp->cl_addr);
2286 seq_printf(m, "name: ");
2287 seq_quote_mem(m, clp->cl_name.data, clp->cl_name.len);
2288 seq_printf(m, "\nminor version: %d\n", clp->cl_minorversion);
J. Bruce Fields79123442019-06-05 12:42:05 -04002289 if (clp->cl_nii_domain.data) {
2290 seq_printf(m, "Implementation domain: ");
2291 seq_quote_mem(m, clp->cl_nii_domain.data,
2292 clp->cl_nii_domain.len);
2293 seq_printf(m, "\nImplementation name: ");
2294 seq_quote_mem(m, clp->cl_nii_name.data, clp->cl_nii_name.len);
2295 seq_printf(m, "\nImplementation time: [%ld, %ld]\n",
2296 clp->cl_nii_time.tv_sec, clp->cl_nii_time.tv_nsec);
2297 }
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002298 drop_client(clp);
2299
2300 return 0;
2301}
2302
2303static int client_info_open(struct inode *inode, struct file *file)
2304{
2305 return single_open(file, client_info_show, inode);
2306}
2307
2308static const struct file_operations client_info_fops = {
2309 .open = client_info_open,
2310 .read = seq_read,
2311 .llseek = seq_lseek,
2312 .release = single_release,
2313};
2314
J. Bruce Fields78599c42019-04-22 15:26:23 -04002315static void *states_start(struct seq_file *s, loff_t *pos)
2316 __acquires(&clp->cl_lock)
2317{
2318 struct nfs4_client *clp = s->private;
2319 unsigned long id = *pos;
2320 void *ret;
2321
2322 spin_lock(&clp->cl_lock);
2323 ret = idr_get_next_ul(&clp->cl_stateids, &id);
2324 *pos = id;
2325 return ret;
2326}
2327
2328static void *states_next(struct seq_file *s, void *v, loff_t *pos)
2329{
2330 struct nfs4_client *clp = s->private;
2331 unsigned long id = *pos;
2332 void *ret;
2333
2334 id = *pos;
2335 id++;
2336 ret = idr_get_next_ul(&clp->cl_stateids, &id);
2337 *pos = id;
2338 return ret;
2339}
2340
2341static void states_stop(struct seq_file *s, void *v)
2342 __releases(&clp->cl_lock)
2343{
2344 struct nfs4_client *clp = s->private;
2345
2346 spin_unlock(&clp->cl_lock);
2347}
2348
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002349static void nfs4_show_superblock(struct seq_file *s, struct nfsd_file *f)
J. Bruce Fields78599c42019-04-22 15:26:23 -04002350{
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002351 struct inode *inode = f->nf_inode;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002352
2353 seq_printf(s, "superblock: \"%02x:%02x:%ld\"",
2354 MAJOR(inode->i_sb->s_dev),
2355 MINOR(inode->i_sb->s_dev),
2356 inode->i_ino);
2357}
2358
2359static void nfs4_show_owner(struct seq_file *s, struct nfs4_stateowner *oo)
2360{
2361 seq_printf(s, "owner: ");
2362 seq_quote_mem(s, oo->so_owner.data, oo->so_owner.len);
2363}
2364
2365static int nfs4_show_open(struct seq_file *s, struct nfs4_stid *st)
2366{
2367 struct nfs4_ol_stateid *ols;
2368 struct nfs4_file *nf;
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002369 struct nfsd_file *file;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002370 struct nfs4_stateowner *oo;
2371 unsigned int access, deny;
2372
2373 if (st->sc_type != NFS4_OPEN_STID && st->sc_type != NFS4_LOCK_STID)
2374 return 0; /* XXX: or SEQ_SKIP? */
2375 ols = openlockstateid(st);
2376 oo = ols->st_stateowner;
2377 nf = st->sc_file;
2378 file = find_any_file(nf);
2379
2380 seq_printf(s, "- 0x%16phN: { type: open, ", &st->sc_stateid);
2381
2382 access = bmap_to_share_mode(ols->st_access_bmap);
2383 deny = bmap_to_share_mode(ols->st_deny_bmap);
2384
J. Bruce Fieldsc4b77ed2019-10-03 12:33:08 -04002385 seq_printf(s, "access: %s%s, ",
J. Bruce Fields78599c42019-04-22 15:26:23 -04002386 access & NFS4_SHARE_ACCESS_READ ? "r" : "-",
2387 access & NFS4_SHARE_ACCESS_WRITE ? "w" : "-");
J. Bruce Fieldsc4b77ed2019-10-03 12:33:08 -04002388 seq_printf(s, "deny: %s%s, ",
J. Bruce Fields78599c42019-04-22 15:26:23 -04002389 deny & NFS4_SHARE_ACCESS_READ ? "r" : "-",
2390 deny & NFS4_SHARE_ACCESS_WRITE ? "w" : "-");
2391
2392 nfs4_show_superblock(s, file);
2393 seq_printf(s, ", ");
2394 nfs4_show_owner(s, oo);
2395 seq_printf(s, " }\n");
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002396 nfsd_file_put(file);
J. Bruce Fields78599c42019-04-22 15:26:23 -04002397
2398 return 0;
2399}
2400
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002401static int nfs4_show_lock(struct seq_file *s, struct nfs4_stid *st)
2402{
2403 struct nfs4_ol_stateid *ols;
2404 struct nfs4_file *nf;
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002405 struct nfsd_file *file;
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002406 struct nfs4_stateowner *oo;
2407
2408 ols = openlockstateid(st);
2409 oo = ols->st_stateowner;
2410 nf = st->sc_file;
2411 file = find_any_file(nf);
2412
2413 seq_printf(s, "- 0x%16phN: { type: lock, ", &st->sc_stateid);
2414
2415 /*
2416 * Note: a lock stateid isn't really the same thing as a lock,
2417 * it's the locking state held by one owner on a file, and there
2418 * may be multiple (or no) lock ranges associated with it.
2419 * (Same for the matter is true of open stateids.)
2420 */
2421
2422 nfs4_show_superblock(s, file);
2423 /* XXX: open stateid? */
2424 seq_printf(s, ", ");
2425 nfs4_show_owner(s, oo);
2426 seq_printf(s, " }\n");
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002427 nfsd_file_put(file);
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002428
2429 return 0;
2430}
2431
2432static int nfs4_show_deleg(struct seq_file *s, struct nfs4_stid *st)
2433{
2434 struct nfs4_delegation *ds;
2435 struct nfs4_file *nf;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04002436 struct nfsd_file *file;
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002437
2438 ds = delegstateid(st);
2439 nf = st->sc_file;
2440 file = nf->fi_deleg_file;
2441
2442 seq_printf(s, "- 0x%16phN: { type: deleg, ", &st->sc_stateid);
2443
2444 /* Kinda dead code as long as we only support read delegs: */
2445 seq_printf(s, "access: %s, ",
2446 ds->dl_type == NFS4_OPEN_DELEGATE_READ ? "r" : "w");
2447
2448 /* XXX: lease time, whether it's being recalled. */
2449
2450 nfs4_show_superblock(s, file);
2451 seq_printf(s, " }\n");
2452
2453 return 0;
2454}
2455
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002456static int nfs4_show_layout(struct seq_file *s, struct nfs4_stid *st)
2457{
2458 struct nfs4_layout_stateid *ls;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04002459 struct nfsd_file *file;
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002460
2461 ls = container_of(st, struct nfs4_layout_stateid, ls_stid);
2462 file = ls->ls_file;
2463
2464 seq_printf(s, "- 0x%16phN: { type: layout, ", &st->sc_stateid);
2465
2466 /* XXX: What else would be useful? */
2467
2468 nfs4_show_superblock(s, file);
2469 seq_printf(s, " }\n");
2470
2471 return 0;
2472}
2473
J. Bruce Fields78599c42019-04-22 15:26:23 -04002474static int states_show(struct seq_file *s, void *v)
2475{
2476 struct nfs4_stid *st = v;
2477
2478 switch (st->sc_type) {
2479 case NFS4_OPEN_STID:
2480 return nfs4_show_open(s, st);
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002481 case NFS4_LOCK_STID:
2482 return nfs4_show_lock(s, st);
2483 case NFS4_DELEG_STID:
2484 return nfs4_show_deleg(s, st);
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002485 case NFS4_LAYOUT_STID:
2486 return nfs4_show_layout(s, st);
J. Bruce Fields78599c42019-04-22 15:26:23 -04002487 default:
2488 return 0; /* XXX: or SEQ_SKIP? */
2489 }
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002490 /* XXX: copy stateids? */
J. Bruce Fields78599c42019-04-22 15:26:23 -04002491}
2492
2493static struct seq_operations states_seq_ops = {
2494 .start = states_start,
2495 .next = states_next,
2496 .stop = states_stop,
2497 .show = states_show
2498};
2499
2500static int client_states_open(struct inode *inode, struct file *file)
2501{
J. Bruce Fields78599c42019-04-22 15:26:23 -04002502 struct seq_file *s;
2503 struct nfs4_client *clp;
2504 int ret;
2505
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002506 clp = get_nfsdfs_clp(inode);
2507 if (!clp)
J. Bruce Fields78599c42019-04-22 15:26:23 -04002508 return -ENXIO;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002509
2510 ret = seq_open(file, &states_seq_ops);
2511 if (ret)
2512 return ret;
2513 s = file->private_data;
2514 s->private = clp;
2515 return 0;
2516}
2517
2518static int client_opens_release(struct inode *inode, struct file *file)
2519{
2520 struct seq_file *m = file->private_data;
2521 struct nfs4_client *clp = m->private;
2522
2523 /* XXX: alternatively, we could get/drop in seq start/stop */
2524 drop_client(clp);
2525 return 0;
2526}
2527
2528static const struct file_operations client_states_fops = {
2529 .open = client_states_open,
2530 .read = seq_read,
2531 .llseek = seq_lseek,
2532 .release = client_opens_release,
2533};
2534
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002535/*
2536 * Normally we refuse to destroy clients that are in use, but here the
2537 * administrator is telling us to just do it. We also want to wait
2538 * so the caller has a guarantee that the client's locks are gone by
2539 * the time the write returns:
2540 */
YueHaibing297e57a2019-07-08 15:29:33 +08002541static void force_expire_client(struct nfs4_client *clp)
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002542{
2543 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2544 bool already_expired;
2545
2546 spin_lock(&clp->cl_lock);
2547 clp->cl_time = 0;
2548 spin_unlock(&clp->cl_lock);
2549
2550 wait_event(expiry_wq, atomic_read(&clp->cl_rpc_users) == 0);
2551 spin_lock(&nn->client_lock);
2552 already_expired = list_empty(&clp->cl_lru);
2553 if (!already_expired)
2554 unhash_client_locked(clp);
2555 spin_unlock(&nn->client_lock);
2556
2557 if (!already_expired)
2558 expire_client(clp);
2559 else
2560 wait_event(expiry_wq, clp->cl_nfsd_dentry == NULL);
2561}
2562
2563static ssize_t client_ctl_write(struct file *file, const char __user *buf,
2564 size_t size, loff_t *pos)
2565{
2566 char *data;
2567 struct nfs4_client *clp;
2568
2569 data = simple_transaction_get(file, buf, size);
2570 if (IS_ERR(data))
2571 return PTR_ERR(data);
2572 if (size != 7 || 0 != memcmp(data, "expire\n", 7))
2573 return -EINVAL;
2574 clp = get_nfsdfs_clp(file_inode(file));
2575 if (!clp)
2576 return -ENXIO;
2577 force_expire_client(clp);
2578 drop_client(clp);
2579 return 7;
2580}
2581
2582static const struct file_operations client_ctl_fops = {
2583 .write = client_ctl_write,
2584 .release = simple_transaction_release,
2585};
2586
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002587static const struct tree_descr client_files[] = {
2588 [0] = {"info", &client_info_fops, S_IRUSR},
J. Bruce Fields78599c42019-04-22 15:26:23 -04002589 [1] = {"states", &client_states_fops, S_IRUSR},
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002590 [2] = {"ctl", &client_ctl_fops, S_IRUSR|S_IWUSR},
J. Bruce Fields78599c42019-04-22 15:26:23 -04002591 [3] = {""},
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002592};
2593
Jeff Layton2216d442012-11-12 15:00:57 -05002594static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002595 struct svc_rqst *rqstp, nfs4_verifier *verf)
2596{
2597 struct nfs4_client *clp;
2598 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002599 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002600 struct net *net = SVC_NET(rqstp);
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002601 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002602
2603 clp = alloc_client(name);
2604 if (clp == NULL)
2605 return NULL;
2606
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002607 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
2608 if (ret) {
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002609 free_client(clp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002610 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002611 }
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002612 gen_clid(clp, nn);
2613 kref_init(&clp->cl_nfsdfs.cl_ref);
Christoph Hellwig0162ac22014-09-24 12:19:19 +02002614 nfsd4_init_cb(&clp->cl_cb_null, clp, NULL, NFSPROC4_CLNT_CB_NULL);
Benny Halevy07cd4902010-05-12 00:13:41 +03002615 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002616 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002617 copy_verf(clp, verf);
J. Bruce Fields3bade242019-05-14 21:38:11 -04002618 memcpy(&clp->cl_addr, sa, sizeof(struct sockaddr_storage));
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04002619 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002620 clp->net = net;
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002621 clp->cl_nfsd_dentry = nfsd_client_mkdir(nn, &clp->cl_nfsdfs,
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002622 clp->cl_clientid.cl_id - nn->clientid_base,
2623 client_files);
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002624 if (!clp->cl_nfsd_dentry) {
2625 free_client(clp);
2626 return NULL;
2627 }
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002628 return clp;
2629}
2630
NeilBrownfd39ca92005-06-23 22:04:03 -07002631static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002632add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
2633{
2634 struct rb_node **new = &(root->rb_node), *parent = NULL;
2635 struct nfs4_client *clp;
2636
2637 while (*new) {
2638 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
2639 parent = *new;
2640
2641 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
2642 new = &((*new)->rb_left);
2643 else
2644 new = &((*new)->rb_right);
2645 }
2646
2647 rb_link_node(&new_clp->cl_namenode, parent, new);
2648 rb_insert_color(&new_clp->cl_namenode, root);
2649}
2650
2651static struct nfs4_client *
2652find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
2653{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002654 int cmp;
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002655 struct rb_node *node = root->rb_node;
2656 struct nfs4_client *clp;
2657
2658 while (node) {
2659 clp = rb_entry(node, struct nfs4_client, cl_namenode);
2660 cmp = compare_blob(&clp->cl_name, name);
2661 if (cmp > 0)
2662 node = node->rb_left;
2663 else if (cmp < 0)
2664 node = node->rb_right;
2665 else
2666 return clp;
2667 }
2668 return NULL;
2669}
2670
2671static void
2672add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673{
2674 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002675 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Trond Myklebust0a880a22014-07-30 08:27:10 -04002677 lockdep_assert_held(&nn->client_lock);
2678
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002679 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002680 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002682 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002683 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
2685
NeilBrownfd39ca92005-06-23 22:04:03 -07002686static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687move_to_confirmed(struct nfs4_client *clp)
2688{
2689 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002690 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Trond Myklebust0a880a22014-07-30 08:27:10 -04002692 lockdep_assert_held(&nn->client_lock);
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002695 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002696 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002697 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002698 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002699 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}
2701
2702static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002703find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
2705 struct nfs4_client *clp;
2706 unsigned int idhashval = clientid_hashval(clid->cl_id);
2707
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002708 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002709 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04002710 if ((bool)clp->cl_minorversion != sessions)
2711 return NULL;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002712 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 }
2716 return NULL;
2717}
2718
2719static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002720find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
2721{
2722 struct list_head *tbl = nn->conf_id_hashtbl;
2723
Trond Myklebust0a880a22014-07-30 08:27:10 -04002724 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002725 return find_client_in_id_table(tbl, clid, sessions);
2726}
2727
2728static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002729find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002731 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Trond Myklebust0a880a22014-07-30 08:27:10 -04002733 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002734 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735}
2736
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002737static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002738{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002739 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002740}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002741
NeilBrown28ce6052005-06-23 22:03:56 -07002742static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002743find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002744{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002745 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002746 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002747}
2748
2749static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002750find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002751{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002752 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002753 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002754}
2755
NeilBrownfd39ca92005-06-23 22:04:03 -07002756static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002757gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758{
J. Bruce Fields07263f12010-05-31 19:09:40 -04002759 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002760 struct sockaddr *sa = svc_addr(rqstp);
2761 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04002762 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Jeff Layton7077ecb2009-08-14 12:57:58 -04002764 /* Currently, we only support tcp and tcp6 for the callback channel */
2765 if (se->se_callback_netid_len == 3 &&
2766 !memcmp(se->se_callback_netid_val, "tcp", 3))
2767 expected_family = AF_INET;
2768 else if (se->se_callback_netid_len == 4 &&
2769 !memcmp(se->se_callback_netid_val, "tcp6", 4))
2770 expected_family = AF_INET6;
2771 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 goto out_err;
2773
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002774 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002775 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04002776 (struct sockaddr *)&conn->cb_addr,
2777 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002778
J. Bruce Fields07263f12010-05-31 19:09:40 -04002779 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002781
J. Bruce Fields07263f12010-05-31 19:09:40 -04002782 if (conn->cb_addr.ss_family == AF_INET6)
2783 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04002784
J. Bruce Fields07263f12010-05-31 19:09:40 -04002785 conn->cb_prog = se->se_callback_prog;
2786 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08002787 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 return;
2789out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04002790 conn->cb_addr.ss_family = AF_UNSPEC;
2791 conn->cb_addrlen = 0;
Rasmus Villemoes4ab495b2017-02-24 01:15:55 +01002792 dprintk("NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 "will not receive delegations\n",
2794 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 return;
2797}
2798
Andy Adamson074fe892009-04-03 08:28:15 +03002799/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04002800 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03002801 */
Trond Myklebustb6076642014-06-30 11:48:35 -04002802static void
Andy Adamson074fe892009-04-03 08:28:15 +03002803nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
2804{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002805 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04002806 struct nfsd4_slot *slot = resp->cstate.slot;
2807 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03002808
Andy Adamson557ce262009-08-28 08:45:04 -04002809 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002810
J. Bruce Fields085def32017-10-18 16:17:18 -04002811 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamson557ce262009-08-28 08:45:04 -04002812 slot->sl_opcnt = resp->opcnt;
2813 slot->sl_status = resp->cstate.status;
J. Bruce Fields53da6a52017-10-17 20:38:49 -04002814 free_svc_cred(&slot->sl_cred);
2815 copy_cred(&slot->sl_cred, &resp->rqstp->rq_cred);
Andy Adamsonbf864a32009-04-03 08:28:35 +03002816
J. Bruce Fields085def32017-10-18 16:17:18 -04002817 if (!nfsd4_cache_this(resp)) {
2818 slot->sl_flags &= ~NFSD4_SLOT_CACHED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03002819 return;
2820 }
J. Bruce Fields085def32017-10-18 16:17:18 -04002821 slot->sl_flags |= NFSD4_SLOT_CACHED;
2822
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002823 base = resp->cstate.data_offset;
2824 slot->sl_datalen = buf->len - base;
2825 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Dan Carpenterd3f03402015-11-21 13:28:50 +03002826 WARN(1, "%s: sessions DRC could not cache compound\n",
2827 __func__);
Andy Adamson557ce262009-08-28 08:45:04 -04002828 return;
Andy Adamson074fe892009-04-03 08:28:15 +03002829}
2830
2831/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04002832 * Encode the replay sequence operation from the slot values.
2833 * If cachethis is FALSE encode the uncached rep error on the next
2834 * operation which sets resp->p and increments resp->opcnt for
2835 * nfs4svc_encode_compoundres.
2836 *
Andy Adamson074fe892009-04-03 08:28:15 +03002837 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04002838static __be32
2839nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
2840 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03002841{
Andy Adamsonabfabf82009-07-23 19:02:18 -04002842 struct nfsd4_op *op;
2843 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03002844
Andy Adamsonabfabf82009-07-23 19:02:18 -04002845 /* Encode the replayed sequence operation */
2846 op = &args->ops[resp->opcnt - 1];
2847 nfsd4_encode_operation(resp, op);
2848
J. Bruce Fields085def32017-10-18 16:17:18 -04002849 if (slot->sl_flags & NFSD4_SLOT_CACHED)
2850 return op->status;
2851 if (args->opcnt == 1) {
2852 /*
2853 * The original operation wasn't a solo sequence--we
2854 * always cache those--so this retry must not match the
2855 * original:
2856 */
2857 op->status = nfserr_seq_false_retry;
2858 } else {
Andy Adamsonabfabf82009-07-23 19:02:18 -04002859 op = &args->ops[resp->opcnt++];
2860 op->status = nfserr_retry_uncached_rep;
2861 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03002862 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04002863 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03002864}
2865
2866/*
Andy Adamson557ce262009-08-28 08:45:04 -04002867 * The sequence operation is not cached because we can use the slot and
2868 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03002869 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04002870static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03002871nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
2872 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03002873{
Andy Adamson557ce262009-08-28 08:45:04 -04002874 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002875 struct xdr_stream *xdr = &resp->xdr;
2876 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03002877 __be32 status;
2878
Andy Adamson557ce262009-08-28 08:45:04 -04002879 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002880
Andy Adamsonabfabf82009-07-23 19:02:18 -04002881 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04002882 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04002883 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03002884
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002885 p = xdr_reserve_space(xdr, slot->sl_datalen);
2886 if (!p) {
2887 WARN_ON_ONCE(1);
2888 return nfserr_serverfault;
2889 }
2890 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
2891 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03002892
Andy Adamson557ce262009-08-28 08:45:04 -04002893 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002894 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03002895}
2896
Andy Adamson0733d212009-04-03 08:28:01 +03002897/*
2898 * Set the exchange_id flags returned by the server.
2899 */
2900static void
2901nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
2902{
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002903#ifdef CONFIG_NFSD_PNFS
2904 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_PNFS_MDS;
2905#else
Andy Adamson0733d212009-04-03 08:28:01 +03002906 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002907#endif
Andy Adamson0733d212009-04-03 08:28:01 +03002908
2909 /* Referrals are supported, Migration is not. */
2910 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
2911
2912 /* set the wire flags to return to client. */
2913 clid->flags = new->cl_exchange_flags;
2914}
2915
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002916static bool client_has_openowners(struct nfs4_client *clp)
2917{
2918 struct nfs4_openowner *oo;
2919
2920 list_for_each_entry(oo, &clp->cl_openowners, oo_perclient) {
2921 if (!list_empty(&oo->oo_owner.so_stateids))
2922 return true;
2923 }
2924 return false;
2925}
2926
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002927static bool client_has_state(struct nfs4_client *clp)
2928{
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002929 return client_has_openowners(clp)
Kinglong Mee47e970b2015-07-21 13:09:17 +08002930#ifdef CONFIG_NFSD_PNFS
2931 || !list_empty(&clp->cl_lo_states)
2932#endif
J. Bruce Fields6eccece2012-05-29 16:37:44 -04002933 || !list_empty(&clp->cl_delegations)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04002934 || !list_empty(&clp->cl_sessions)
2935 || !list_empty(&clp->async_copies);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002936}
2937
J. Bruce Fields79123442019-06-05 12:42:05 -04002938static __be32 copy_impl_id(struct nfs4_client *clp,
2939 struct nfsd4_exchange_id *exid)
2940{
2941 if (!exid->nii_domain.data)
2942 return 0;
2943 xdr_netobj_dup(&clp->cl_nii_domain, &exid->nii_domain, GFP_KERNEL);
2944 if (!clp->cl_nii_domain.data)
2945 return nfserr_jukebox;
2946 xdr_netobj_dup(&clp->cl_nii_name, &exid->nii_name, GFP_KERNEL);
2947 if (!clp->cl_nii_name.data)
2948 return nfserr_jukebox;
2949 clp->cl_nii_time.tv_sec = exid->nii_time.tv_sec;
2950 clp->cl_nii_time.tv_nsec = exid->nii_time.tv_nsec;
2951 return 0;
2952}
2953
Al Virob37ad282006-10-19 23:28:59 -07002954__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02002955nfsd4_exchange_id(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2956 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03002957{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002958 struct nfsd4_exchange_id *exid = &u->exchange_id;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002959 struct nfs4_client *conf, *new;
2960 struct nfs4_client *unconf = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002961 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04002962 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03002963 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04002964 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002965 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002966 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03002967
Jeff Layton363168b2009-08-14 12:57:56 -04002968 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03002969 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04002970 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03002971 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04002972 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03002973
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002974 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03002975 return nfserr_inval;
2976
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002977 new = create_client(exid->clname, rqstp, &verf);
2978 if (new == NULL)
2979 return nfserr_jukebox;
J. Bruce Fields79123442019-06-05 12:42:05 -04002980 status = copy_impl_id(new, exid);
2981 if (status)
2982 goto out_nolock;
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002983
Andy Adamson0733d212009-04-03 08:28:01 +03002984 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002985 case SP4_MACH_CRED:
Andrew Elbleed941642016-06-15 12:52:09 -04002986 exid->spo_must_enforce[0] = 0;
2987 exid->spo_must_enforce[1] = (
2988 1 << (OP_BIND_CONN_TO_SESSION - 32) |
2989 1 << (OP_EXCHANGE_ID - 32) |
2990 1 << (OP_CREATE_SESSION - 32) |
2991 1 << (OP_DESTROY_SESSION - 32) |
2992 1 << (OP_DESTROY_CLIENTID - 32));
2993
2994 exid->spo_must_allow[0] &= (1 << (OP_CLOSE) |
2995 1 << (OP_OPEN_DOWNGRADE) |
2996 1 << (OP_LOCKU) |
2997 1 << (OP_DELEGRETURN));
2998
2999 exid->spo_must_allow[1] &= (
3000 1 << (OP_TEST_STATEID - 32) |
3001 1 << (OP_FREE_STATEID - 32));
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003002 if (!svc_rqst_integrity_protected(rqstp)) {
3003 status = nfserr_inval;
3004 goto out_nolock;
3005 }
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05003006 /*
3007 * Sometimes userspace doesn't give us a principal.
3008 * Which is a bug, really. Anyway, we can't enforce
3009 * MACH_CRED in that case, better to give up now:
3010 */
J. Bruce Fields414ca012015-11-20 10:48:02 -05003011 if (!new->cl_cred.cr_principal &&
3012 !new->cl_cred.cr_raw_principal) {
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05003013 status = nfserr_serverfault;
3014 goto out_nolock;
3015 }
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003016 new->cl_mach_cred = true;
Andy Adamson0733d212009-04-03 08:28:01 +03003017 case SP4_NONE:
3018 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05003019 default: /* checked by xdr code */
3020 WARN_ON_ONCE(1);
Gustavo A. R. Silva0a4c9262019-01-23 02:48:28 -06003021 /* fall through */
Andy Adamson0733d212009-04-03 08:28:01 +03003022 case SP4_SSV:
Kinglong Mee8edf4b02016-02-26 22:36:42 +08003023 status = nfserr_encr_alg_unsupp;
3024 goto out_nolock;
Andy Adamson0733d212009-04-03 08:28:01 +03003025 }
3026
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003027 /* Cases below refer to rfc 5661 section 18.35.4: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003028 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003029 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03003030 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04003031 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
3032 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
3033
J. Bruce Fields136e6582012-05-12 20:37:23 -04003034 if (update) {
3035 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003036 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03003037 goto out;
3038 }
Andrew Elblededeb132016-06-15 12:52:08 -04003039 if (!nfsd4_mach_creds_match(conf, rqstp)) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04003040 status = nfserr_wrong_cred;
3041 goto out;
3042 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003043 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03003044 status = nfserr_perm;
3045 goto out;
3046 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003047 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03003048 status = nfserr_not_same;
3049 goto out;
3050 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003051 /* case 6 */
3052 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003053 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03003054 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003055 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04003056 if (client_has_state(conf)) {
3057 status = nfserr_clid_inuse;
3058 goto out;
3059 }
Andy Adamson0733d212009-04-03 08:28:01 +03003060 goto out_new;
3061 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003062 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04003063 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003064 goto out_copy;
3065 }
3066 /* case 5, client reboot */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003067 conf = NULL;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003068 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03003069 }
3070
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003071 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03003072 status = nfserr_noent;
3073 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03003074 }
3075
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003076 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003077 if (unconf) /* case 4, possible retry or client restart */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003078 unhash_client_locked(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03003079
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003080 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03003081out_new:
Jeff Laytonfd699b82014-07-30 08:27:14 -04003082 if (conf) {
3083 status = mark_client_expired_locked(conf);
3084 if (status)
3085 goto out;
3086 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04003087 new->cl_minorversion = cstate->minorversion;
Andrew Elbleed941642016-06-15 12:52:09 -04003088 new->cl_spo_must_allow.u.words[0] = exid->spo_must_allow[0];
3089 new->cl_spo_must_allow.u.words[1] = exid->spo_must_allow[1];
Andy Adamson0733d212009-04-03 08:28:01 +03003090
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003091 add_to_unconfirmed(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003092 swap(new, conf);
Andy Adamson0733d212009-04-03 08:28:01 +03003093out_copy:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003094 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
3095 exid->clientid.cl_id = conf->cl_clientid.cl_id;
Andy Adamson0733d212009-04-03 08:28:01 +03003096
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003097 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
3098 nfsd4_set_ex_flags(conf, exid);
Andy Adamson0733d212009-04-03 08:28:01 +03003099
3100 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003101 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03003102 status = nfs_ok;
3103
3104out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003105 spin_unlock(&nn->client_lock);
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003106out_nolock:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003107 if (new)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003108 expire_client(new);
3109 if (unconf)
3110 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03003111 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003112}
3113
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003114static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04003115check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003116{
Andy Adamson88e588d2009-07-23 19:02:15 -04003117 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
3118 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003119
3120 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04003121 if (slot_inuse) {
3122 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003123 return nfserr_jukebox;
3124 else
3125 return nfserr_seq_misordered;
3126 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05003127 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04003128 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03003129 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04003130 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003131 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003132 return nfserr_seq_misordered;
3133}
3134
Andy Adamson49557cc2009-07-23 19:02:16 -04003135/*
3136 * Cache the create session result into the create session single DRC
3137 * slot cache by saving the xdr structure. sl_seqid has been set.
3138 * Do this for solo or embedded create session operations.
3139 */
3140static void
3141nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003142 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04003143{
3144 slot->sl_status = nfserr;
3145 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
3146}
3147
3148static __be32
3149nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
3150 struct nfsd4_clid_slot *slot)
3151{
3152 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
3153 return slot->sl_status;
3154}
3155
Mi Jinlong1b74c252011-07-14 14:50:17 +08003156#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
3157 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
3158 1 + /* MIN tag is length with zero, only length */ \
3159 3 + /* version, opcount, opcode */ \
3160 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3161 /* seqid, slotID, slotID, cache */ \
3162 4 ) * sizeof(__be32))
3163
3164#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
3165 2 + /* verifier: AUTH_NULL, length 0 */\
3166 1 + /* status */ \
3167 1 + /* MIN tag is length with zero, only length */ \
3168 3 + /* opcount, opcode, opstatus*/ \
3169 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3170 /* seqid, slotID, slotID, slotID, status */ \
3171 5 ) * sizeof(__be32))
3172
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003173static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08003174{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003175 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
3176
J. Bruce Fields373cd402013-04-08 15:42:12 -04003177 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
3178 return nfserr_toosmall;
3179 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
3180 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003181 ca->headerpadsz = 0;
3182 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
3183 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
3184 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
3185 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
3186 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
3187 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
3188 /*
3189 * Note decreasing slot size below client's request may make it
3190 * difficult for client to function correctly, whereas
3191 * decreasing the number of slots will (just?) affect
3192 * performance. When short on memory we therefore prefer to
3193 * decrease number of slots instead of their size. Clients that
3194 * request larger slots than they need will get poor results:
NeilBrown7f49fd5d2019-09-20 16:33:16 +10003195 * Note that we always allow at least one slot, because our
3196 * accounting is soft and provides no guarantees either way.
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003197 */
NeilBrown2030ca52019-09-20 16:36:45 +10003198 ca->maxreqs = nfsd4_get_drc_mem(ca, nn);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003199
J. Bruce Fields373cd402013-04-08 15:42:12 -04003200 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08003201}
3202
Chuck Lever45006322016-03-01 13:06:02 -05003203/*
3204 * Server's NFSv4.1 backchannel support is AUTH_SYS-only for now.
3205 * These are based on similar macros in linux/sunrpc/msg_prot.h .
3206 */
3207#define RPC_MAX_HEADER_WITH_AUTH_SYS \
3208 (RPC_CALLHDRSIZE + 2 * (2 + UNX_CALLSLACK))
3209
3210#define RPC_MAX_REPHEADER_WITH_AUTH_SYS \
3211 (RPC_REPHDRSIZE + (2 + NUL_REPLYSLACK))
3212
Kinglong Mee8a891632013-12-23 18:11:02 +08003213#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05003214 RPC_MAX_HEADER_WITH_AUTH_SYS) * sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08003215#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05003216 RPC_MAX_REPHEADER_WITH_AUTH_SYS) * \
3217 sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08003218
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003219static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
3220{
3221 ca->headerpadsz = 0;
3222
Kinglong Mee8a891632013-12-23 18:11:02 +08003223 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003224 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08003225 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003226 return nfserr_toosmall;
3227 ca->maxresp_cached = 0;
3228 if (ca->maxops < 2)
3229 return nfserr_toosmall;
3230
3231 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003232}
3233
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003234static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
3235{
3236 switch (cbs->flavor) {
3237 case RPC_AUTH_NULL:
3238 case RPC_AUTH_UNIX:
3239 return nfs_ok;
3240 default:
3241 /*
3242 * GSS case: the spec doesn't allow us to return this
3243 * error. But it also doesn't allow us not to support
3244 * GSS.
3245 * I'd rather this fail hard than return some error the
3246 * client might think it can already handle:
3247 */
3248 return nfserr_encr_alg_unsupp;
3249 }
3250}
3251
Andy Adamson069b6ad2009-04-03 08:27:58 +03003252__be32
3253nfsd4_create_session(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003254 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003255{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003256 struct nfsd4_create_session *cr_ses = &u->create_session;
Jeff Layton363168b2009-08-14 12:57:56 -04003257 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003258 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003259 struct nfs4_client *old = NULL;
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04003260 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003261 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003262 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003263 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003264 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003265
Mi Jinlonga62573d2011-03-23 17:57:07 +08003266 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
3267 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003268 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
3269 if (status)
3270 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003271 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04003272 if (status)
3273 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003274 status = check_backchannel_attrs(&cr_ses->back_channel);
3275 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08003276 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003277 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08003278 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003279 if (!new)
3280 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003281 conn = alloc_conn_from_crses(rqstp, cr_ses);
3282 if (!conn)
3283 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08003284
Jeff Laytond20c11d2014-07-30 08:27:07 -04003285 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003286 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003287 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003288 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003289
3290 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04003291 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003292 if (!nfsd4_mach_creds_match(conf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003293 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003294 cs_slot = &conf->cl_cs_slot;
3295 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Kinglong Meef5e22bb2015-07-13 17:32:34 +08003296 if (status) {
3297 if (status == nfserr_replay_cache)
3298 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003299 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003300 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003301 } else if (unconf) {
3302 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04003303 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003304 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003305 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003306 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04003307 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003308 if (!nfsd4_mach_creds_match(unconf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003309 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003310 cs_slot = &unconf->cl_cs_slot;
3311 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03003312 if (status) {
3313 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003314 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003315 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003316 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003317 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003318 if (old) {
Jeff Laytond20c11d2014-07-30 08:27:07 -04003319 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04003320 if (status) {
3321 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003322 goto out_free_conn;
Jeff Layton7abea1e2014-07-30 08:27:13 -04003323 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003324 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04003325 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003326 conf = unconf;
3327 } else {
3328 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003329 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003330 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003331 status = nfs_ok;
Chuck Lever4ce85c82016-03-01 13:05:27 -05003332 /* Persistent sessions are not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04003333 cr_ses->flags &= ~SESSION4_PERSIST;
Chuck Lever4ce85c82016-03-01 13:05:27 -05003334 /* Upshifting from TCP to RDMA is not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04003335 cr_ses->flags &= ~SESSION4_RDMA;
3336
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003337 init_session(rqstp, new, conf, cr_ses);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003338 nfsd4_get_session_locked(new);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003339
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04003340 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003341 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04003342 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04003343 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003344
Jeff Laytond20c11d2014-07-30 08:27:07 -04003345 /* cache solo and embedded create sessions under the client_lock */
Andy Adamson49557cc2009-07-23 19:02:16 -04003346 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003347 spin_unlock(&nn->client_lock);
3348 /* init connection and backchannel */
3349 nfsd4_init_conn(rqstp, conn, new);
3350 nfsd4_put_session(new);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003351 if (old)
3352 expire_client(old);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003353 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003354out_free_conn:
Jeff Laytond20c11d2014-07-30 08:27:07 -04003355 spin_unlock(&nn->client_lock);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003356 free_conn(conn);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003357 if (old)
3358 expire_client(old);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003359out_free_session:
3360 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003361out_release_drc_mem:
3362 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04003363 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003364}
3365
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003366static __be32 nfsd4_map_bcts_dir(u32 *dir)
3367{
3368 switch (*dir) {
3369 case NFS4_CDFC4_FORE:
3370 case NFS4_CDFC4_BACK:
3371 return nfs_ok;
3372 case NFS4_CDFC4_FORE_OR_BOTH:
3373 case NFS4_CDFC4_BACK_OR_BOTH:
3374 *dir = NFS4_CDFC4_BOTH;
3375 return nfs_ok;
3376 };
3377 return nfserr_inval;
3378}
3379
Christoph Hellwigeb698532017-05-08 20:58:35 +02003380__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp,
3381 struct nfsd4_compound_state *cstate,
3382 union nfsd4_op_u *u)
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003383{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003384 struct nfsd4_backchannel_ctl *bc = &u->backchannel_ctl;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003385 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003386 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003387 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003388
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003389 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
3390 if (status)
3391 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003392 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003393 session->se_cb_prog = bc->bc_cb_program;
3394 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003395 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003396
3397 nfsd4_probe_callback(session->se_client);
3398
3399 return nfs_ok;
3400}
3401
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003402__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
3403 struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003404 union nfsd4_op_u *u)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003405{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003406 struct nfsd4_bind_conn_to_session *bcts = &u->bind_conn_to_session;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003407 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003408 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003409 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003410 struct net *net = SVC_NET(rqstp);
3411 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003412
3413 if (!nfsd4_last_compound_op(rqstp))
3414 return nfserr_not_only_op;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003415 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003416 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003417 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003418 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003419 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003420 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003421 if (!nfsd4_mach_creds_match(session->se_client, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003422 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003423 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003424 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003425 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003426 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003427 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003428 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003429 goto out;
3430 nfsd4_init_conn(rqstp, conn, session);
3431 status = nfs_ok;
3432out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003433 nfsd4_put_session(session);
3434out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003435 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003436}
3437
J. Bruce Fields665d5072018-04-11 16:53:36 -04003438static bool nfsd4_compound_in_session(struct nfsd4_compound_state *cstate, struct nfs4_sessionid *sid)
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04003439{
J. Bruce Fields665d5072018-04-11 16:53:36 -04003440 if (!cstate->session)
Fengguang Wu51d87bc2018-03-22 13:37:20 +08003441 return false;
J. Bruce Fields665d5072018-04-11 16:53:36 -04003442 return !memcmp(sid, &cstate->session->se_sessionid, sizeof(*sid));
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04003443}
3444
Andy Adamson069b6ad2009-04-03 08:27:58 +03003445__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003446nfsd4_destroy_session(struct svc_rqst *r, struct nfsd4_compound_state *cstate,
3447 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003448{
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003449 struct nfs4_sessionid *sessionid = &u->destroy_session.sessionid;
Benny Halevye10e0cf2009-04-03 08:28:38 +03003450 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003451 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003452 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003453 struct net *net = SVC_NET(r);
3454 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003455
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003456 status = nfserr_not_only_op;
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003457 if (nfsd4_compound_in_session(cstate, sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04003458 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003459 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003460 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04003461 }
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003462 dump_sessionid(__func__, sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003463 spin_lock(&nn->client_lock);
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003464 ses = find_in_sessionid_hashtbl(sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003465 if (!ses)
3466 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003467 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003468 if (!nfsd4_mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003469 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003470 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003471 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003472 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03003473 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003474 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003475
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05003476 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04003477
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003478 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003479 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003480out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003481 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003482out_client_lock:
3483 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003484out:
Benny Halevye10e0cf2009-04-03 08:28:38 +03003485 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003486}
3487
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003488static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003489{
3490 struct nfsd4_conn *c;
3491
3492 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003493 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04003494 return c;
3495 }
3496 }
3497 return NULL;
3498}
3499
J. Bruce Fields57266a62013-04-13 14:27:29 -04003500static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003501{
3502 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003503 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003504 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003505 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003506
3507 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003508 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003509 if (c)
3510 goto out_free;
3511 status = nfserr_conn_not_bound_to_session;
3512 if (clp->cl_mach_cred)
3513 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003514 __nfsd4_hash_conn(new, ses);
3515 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003516 ret = nfsd4_register_conn(new);
3517 if (ret)
3518 /* oops; xprt is already down: */
3519 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003520 return nfs_ok;
3521out_free:
3522 spin_unlock(&clp->cl_lock);
3523 free_conn(new);
3524 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003525}
3526
Mi Jinlong868b89c2011-04-27 09:09:58 +08003527static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
3528{
3529 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3530
3531 return args->opcnt > session->se_fchannel.maxops;
3532}
3533
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003534static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
3535 struct nfsd4_session *session)
3536{
3537 struct xdr_buf *xb = &rqstp->rq_arg;
3538
3539 return xb->len > session->se_fchannel.maxreq_sz;
3540}
3541
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003542static bool replay_matches_cache(struct svc_rqst *rqstp,
3543 struct nfsd4_sequence *seq, struct nfsd4_slot *slot)
3544{
3545 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3546
3547 if ((bool)(slot->sl_flags & NFSD4_SLOT_CACHETHIS) !=
3548 (bool)seq->cachethis)
3549 return false;
3550 /*
3551 * If there's an error than the reply can have fewer ops than
3552 * the call. But if we cached a reply with *more* ops than the
3553 * call you're sending us now, then this new call is clearly not
3554 * really a replay of the old one:
3555 */
3556 if (slot->sl_opcnt < argp->opcnt)
3557 return false;
3558 /* This is the only check explicitly called by spec: */
3559 if (!same_creds(&rqstp->rq_cred, &slot->sl_cred))
3560 return false;
3561 /*
3562 * There may be more comparisons we could actually do, but the
3563 * spec doesn't require us to catch every case where the calls
3564 * don't match (that would require caching the call as well as
3565 * the reply), so we don't bother.
3566 */
3567 return true;
3568}
3569
Andy Adamson069b6ad2009-04-03 08:27:58 +03003570__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003571nfsd4_sequence(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3572 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003573{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003574 struct nfsd4_sequence *seq = &u->sequence;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003575 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003576 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003577 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003578 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003579 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003580 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003581 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003582 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003583 struct net *net = SVC_NET(rqstp);
3584 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003585
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003586 if (resp->opcnt != 1)
3587 return nfserr_sequence_pos;
3588
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003589 /*
3590 * Will be either used or freed by nfsd4_sequence_check_conn
3591 * below.
3592 */
3593 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
3594 if (!conn)
3595 return nfserr_jukebox;
3596
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003597 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003598 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003599 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04003600 goto out_no_session;
3601 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003602
Mi Jinlong868b89c2011-04-27 09:09:58 +08003603 status = nfserr_too_many_ops;
3604 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003605 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08003606
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003607 status = nfserr_req_too_big;
3608 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003609 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003610
Benny Halevyb85d4c02009-04-03 08:28:08 +03003611 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003612 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003613 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003614
Andy Adamson557ce262009-08-28 08:45:04 -04003615 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03003616 dprintk("%s: slotid %d\n", __func__, seq->slotid);
3617
Andy Adamsona8dfdae2009-08-28 08:45:02 -04003618 /* We do not negotiate the number of slots yet, so set the
3619 * maxslots to the session maxreqs which is used to encode
3620 * sr_highest_slotid and the sr_target_slot id to maxslots */
3621 seq->maxslots = session->se_fchannel.maxreqs;
3622
J. Bruce Fields73e79482012-02-13 16:39:00 -05003623 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
3624 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003625 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003626 status = nfserr_seq_misordered;
3627 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003628 goto out_put_session;
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003629 status = nfserr_seq_false_retry;
3630 if (!replay_matches_cache(rqstp, seq, slot))
3631 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003632 cstate->slot = slot;
3633 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003634 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03003635 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04003636 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03003637 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003638 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003639 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003640 }
3641 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003642 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003643
J. Bruce Fields57266a62013-04-13 14:27:29 -04003644 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003645 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003646 if (status)
3647 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003648
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003649 buflen = (seq->cachethis) ?
3650 session->se_fchannel.maxresp_cached :
3651 session->se_fchannel.maxresp_sz;
3652 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
3653 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04003654 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003655 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04003656 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003657
3658 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003659 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003660 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003661 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05003662 if (seq->cachethis)
3663 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003664 else
3665 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003666
3667 cstate->slot = slot;
3668 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003669 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003670
Benny Halevyb85d4c02009-04-03 08:28:08 +03003671out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04003672 switch (clp->cl_cb_state) {
3673 case NFSD4_CB_DOWN:
3674 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
3675 break;
3676 case NFSD4_CB_FAULT:
3677 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
3678 break;
3679 default:
3680 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003681 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04003682 if (!list_empty(&clp->cl_revoked))
3683 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003684out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08003685 if (conn)
3686 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003687 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003688 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003689out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003690 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003691 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003692}
3693
Trond Myklebustb6076642014-06-30 11:48:35 -04003694void
3695nfsd4_sequence_done(struct nfsd4_compoundres *resp)
3696{
3697 struct nfsd4_compound_state *cs = &resp->cstate;
3698
3699 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04003700 if (cs->status != nfserr_replay_cache) {
3701 nfsd4_store_cache_entry(resp);
3702 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
3703 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003704 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04003705 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003706 } else if (cs->clp)
3707 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04003708}
3709
Mi Jinlong345c2842011-10-20 17:51:39 +08003710__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003711nfsd4_destroy_clientid(struct svc_rqst *rqstp,
3712 struct nfsd4_compound_state *cstate,
3713 union nfsd4_op_u *u)
Mi Jinlong345c2842011-10-20 17:51:39 +08003714{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003715 struct nfsd4_destroy_clientid *dc = &u->destroy_clientid;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003716 struct nfs4_client *conf, *unconf;
3717 struct nfs4_client *clp = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003718 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003719 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08003720
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003721 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003722 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003723 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003724 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08003725
3726 if (conf) {
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04003727 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08003728 status = nfserr_clientid_busy;
3729 goto out;
3730 }
Jeff Laytonfd699b82014-07-30 08:27:14 -04003731 status = mark_client_expired_locked(conf);
3732 if (status)
3733 goto out;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003734 clp = conf;
Mi Jinlong345c2842011-10-20 17:51:39 +08003735 } else if (unconf)
3736 clp = unconf;
3737 else {
3738 status = nfserr_stale_clientid;
3739 goto out;
3740 }
Andrew Elblededeb132016-06-15 12:52:08 -04003741 if (!nfsd4_mach_creds_match(clp, rqstp)) {
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003742 clp = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003743 status = nfserr_wrong_cred;
3744 goto out;
3745 }
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003746 unhash_client_locked(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003747out:
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003748 spin_unlock(&nn->client_lock);
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003749 if (clp)
3750 expire_client(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003751 return status;
3752}
3753
Andy Adamson069b6ad2009-04-03 08:27:58 +03003754__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003755nfsd4_reclaim_complete(struct svc_rqst *rqstp,
3756 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003757{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003758 struct nfsd4_reclaim_complete *rc = &u->reclaim_complete;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003759 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003760
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003761 if (rc->rca_one_fs) {
3762 if (!cstate->current_fh.fh_dentry)
3763 return nfserr_nofilehandle;
3764 /*
3765 * We don't take advantage of the rca_one_fs case.
3766 * That's OK, it's optional, we can safely ignore it.
3767 */
Christophe JAILLETd28c4422016-07-02 08:24:32 +02003768 return nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003769 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003770
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003771 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04003772 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
3773 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003774 goto out;
3775
3776 status = nfserr_stale_clientid;
3777 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003778 /*
3779 * The following error isn't really legal.
3780 * But we only get here if the client just explicitly
3781 * destroyed the client. Surely it no longer cares what
3782 * error it gets back on an operation for the dead
3783 * client.
3784 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003785 goto out;
3786
3787 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04003788 nfsd4_client_record_create(cstate->session->se_client);
Scott Mayhew362063a2019-03-26 18:06:28 -04003789 inc_reclaim_complete(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003790out:
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003791 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003792}
3793
3794__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003795nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003796 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003798 struct nfsd4_setclientid *setclid = &u->setclientid;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04003799 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 nfs4_verifier clverifier = setclid->se_verf;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003801 struct nfs4_client *conf, *new;
3802 struct nfs4_client *unconf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003803 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003804 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3805
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003806 new = create_client(clname, rqstp, &clverifier);
3807 if (new == NULL)
3808 return nfserr_jukebox;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003809 /* Cases below refer to rfc 3530 section 14.2.33: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003810 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003811 conf = find_confirmed_client_by_name(&clname, nn);
J. Bruce Fields2b634822015-10-15 15:33:23 -04003812 if (conf && client_has_state(conf)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003813 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05003815 if (clp_used_exchangeid(conf))
3816 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04003817 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04003818 char addr_str[INET6_ADDRSTRLEN];
3819 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
3820 sizeof(addr_str));
3821 dprintk("NFSD: setclientid: string in use by client "
3822 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 goto out;
3824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003826 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04003827 if (unconf)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003828 unhash_client_locked(unconf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003829 if (conf && same_verf(&conf->cl_verifier, &clverifier)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003830 /* case 1: probable callback update */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 copy_clid(new, conf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003832 gen_confirm(new, nn);
3833 } else /* case 4 (new client) or cases 2, 3 (client reboot): */
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04003834 ;
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04003835 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09003836 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003837 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
3839 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
3840 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003841 new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 status = nfs_ok;
3843out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003844 spin_unlock(&nn->client_lock);
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003845 if (new)
3846 free_client(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003847 if (unconf)
3848 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 return status;
3850}
3851
3852
Al Virob37ad282006-10-19 23:28:59 -07003853__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003854nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003855 struct nfsd4_compound_state *cstate,
3856 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003858 struct nfsd4_setclientid_confirm *setclientid_confirm =
3859 &u->setclientid_confirm;
NeilBrown21ab45a2005-06-23 22:04:14 -07003860 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003861 struct nfs4_client *old = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
3863 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07003864 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003865 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003867 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 return nfserr_stale_clientid;
NeilBrown21ab45a2005-06-23 22:04:14 -07003869
Jeff Laytond20c11d2014-07-30 08:27:07 -04003870 spin_lock(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003871 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003872 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003873 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04003874 * We try hard to give out unique clientid's, so if we get an
3875 * attempt to confirm the same clientid with a different cred,
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003876 * the client may be buggy; this should never happen.
3877 *
3878 * Nevertheless, RFC 7530 recommends INUSE for this case:
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003879 */
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003880 status = nfserr_clid_inuse;
J. Bruce Fields8695b902012-05-19 10:05:58 -04003881 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
3882 goto out;
3883 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
3884 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003885 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003886 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003887 if (conf && same_verf(&confirm, &conf->cl_confirm)) {
3888 /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 status = nfs_ok;
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003890 } else /* case 4: client hasn't noticed we rebooted yet? */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003891 status = nfserr_stale_clientid;
3892 goto out;
3893 }
3894 status = nfs_ok;
3895 if (conf) { /* case 1: callback update */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003896 old = unconf;
3897 unhash_client_locked(old);
J. Bruce Fields8695b902012-05-19 10:05:58 -04003898 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003899 } else { /* case 3: normal case; new or rebooted client */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003900 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
3901 if (old) {
J. Bruce Fields2b634822015-10-15 15:33:23 -04003902 status = nfserr_clid_inuse;
3903 if (client_has_state(old)
3904 && !same_creds(&unconf->cl_cred,
3905 &old->cl_cred))
3906 goto out;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003907 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04003908 if (status) {
3909 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003910 goto out;
Jeff Layton7abea1e2014-07-30 08:27:13 -04003911 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003912 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04003913 move_to_confirmed(unconf);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003914 conf = unconf;
NeilBrown08e89872005-06-23 22:04:11 -07003915 }
Jeff Laytond20c11d2014-07-30 08:27:07 -04003916 get_client_locked(conf);
3917 spin_unlock(&nn->client_lock);
3918 nfsd4_probe_callback(conf);
3919 spin_lock(&nn->client_lock);
3920 put_client_renew_locked(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921out:
Jeff Laytond20c11d2014-07-30 08:27:07 -04003922 spin_unlock(&nn->client_lock);
3923 if (old)
3924 expire_client(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 return status;
3926}
3927
J. Bruce Fields32513b42011-10-13 16:00:16 -04003928static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929{
J. Bruce Fields32513b42011-10-13 16:00:16 -04003930 return kmem_cache_alloc(file_slab, GFP_KERNEL);
3931}
3932
3933/* OPEN Share state helper functions */
Jeff Layton5b095e92014-10-23 08:01:02 -04003934static void nfsd4_init_file(struct knfsd_fh *fh, unsigned int hashval,
3935 struct nfs4_file *fp)
J. Bruce Fields32513b42011-10-13 16:00:16 -04003936{
Trond Myklebust950e0112014-06-30 11:48:31 -04003937 lockdep_assert_held(&state_lock);
3938
Elena Reshetova818a34e2017-10-20 12:53:30 +03003939 refcount_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003940 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04003941 INIT_LIST_HEAD(&fp->fi_stateids);
3942 INIT_LIST_HEAD(&fp->fi_delegations);
Sachin Bhamare8287f002015-04-27 14:50:14 +02003943 INIT_LIST_HEAD(&fp->fi_clnt_odstate);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04003944 fh_copy_shallow(&fp->fi_fhandle, fh);
Jeff Layton0c637be2014-08-22 12:05:43 -04003945 fp->fi_deleg_file = NULL;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003946 fp->fi_had_conflict = false;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003947 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003948 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
3949 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003950#ifdef CONFIG_NFSD_PNFS
3951 INIT_LIST_HEAD(&fp->fi_lo_states);
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02003952 atomic_set(&fp->fi_lo_recalls, 0);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003953#endif
Jeff Layton5b095e92014-10-23 08:01:02 -04003954 hlist_add_head_rcu(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955}
3956
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003957void
NeilBrowne60d4392005-06-23 22:03:01 -07003958nfsd4_free_slabs(void)
3959{
Jeff Layton9258a2d2018-03-16 09:47:22 -04003960 kmem_cache_destroy(client_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07003961 kmem_cache_destroy(openowner_slab);
3962 kmem_cache_destroy(lockowner_slab);
3963 kmem_cache_destroy(file_slab);
3964 kmem_cache_destroy(stateid_slab);
3965 kmem_cache_destroy(deleg_slab);
Jeff Layton9258a2d2018-03-16 09:47:22 -04003966 kmem_cache_destroy(odstate_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07003967}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
Bryan Schumaker72083392011-11-01 15:24:59 -04003969int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970nfsd4_init_slabs(void)
3971{
Jeff Layton9258a2d2018-03-16 09:47:22 -04003972 client_slab = kmem_cache_create("nfsd4_clients",
3973 sizeof(struct nfs4_client), 0, 0, NULL);
3974 if (client_slab == NULL)
3975 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003976 openowner_slab = kmem_cache_create("nfsd4_openowners",
3977 sizeof(struct nfs4_openowner), 0, 0, NULL);
3978 if (openowner_slab == NULL)
Jeff Layton9258a2d2018-03-16 09:47:22 -04003979 goto out_free_client_slab;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003980 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08003981 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003982 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003983 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07003984 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09003985 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07003986 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003987 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07003988 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003989 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07003990 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003991 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07003992 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09003993 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07003994 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003995 goto out_free_stateid_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +02003996 odstate_slab = kmem_cache_create("nfsd4_odstate",
3997 sizeof(struct nfs4_clnt_odstate), 0, 0, NULL);
3998 if (odstate_slab == NULL)
3999 goto out_free_deleg_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07004001
Sachin Bhamare8287f002015-04-27 14:50:14 +02004002out_free_deleg_slab:
4003 kmem_cache_destroy(deleg_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07004004out_free_stateid_slab:
4005 kmem_cache_destroy(stateid_slab);
4006out_free_file_slab:
4007 kmem_cache_destroy(file_slab);
4008out_free_lockowner_slab:
4009 kmem_cache_destroy(lockowner_slab);
4010out_free_openowner_slab:
4011 kmem_cache_destroy(openowner_slab);
Jeff Layton9258a2d2018-03-16 09:47:22 -04004012out_free_client_slab:
4013 kmem_cache_destroy(client_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07004014out:
NeilBrowne60d4392005-06-23 22:03:01 -07004015 dprintk("nfsd4: out of memory while initializing nfsv4\n");
4016 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017}
4018
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004019static void init_nfs4_replay(struct nfs4_replay *rp)
4020{
4021 rp->rp_status = nfserr_serverfault;
4022 rp->rp_buflen = 0;
4023 rp->rp_buf = rp->rp_ibuf;
Jeff Layton58fb12e2014-07-29 21:34:27 -04004024 mutex_init(&rp->rp_mutex);
4025}
4026
4027static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
4028 struct nfs4_stateowner *so)
4029{
4030 if (!nfsd4_has_session(cstate)) {
4031 mutex_lock(&so->so_replay.rp_mutex);
Kinglong Meeb5971af2014-08-22 10:18:43 -04004032 cstate->replay_owner = nfs4_get_stateowner(so);
Jeff Layton58fb12e2014-07-29 21:34:27 -04004033 }
4034}
4035
4036void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
4037{
4038 struct nfs4_stateowner *so = cstate->replay_owner;
4039
4040 if (so != NULL) {
4041 cstate->replay_owner = NULL;
4042 mutex_unlock(&so->so_replay.rp_mutex);
4043 nfs4_put_stateowner(so);
4044 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004045}
4046
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004047static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048{
4049 struct nfs4_stateowner *sop;
4050
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004051 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004052 if (!sop)
4053 return NULL;
4054
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04004055 xdr_netobj_dup(&sop->so_owner, owner, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004056 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004057 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004058 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004060
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004061 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004062 sop->so_client = clp;
4063 init_nfs4_replay(&sop->so_replay);
Jeff Layton6b180f02014-07-29 21:34:26 -04004064 atomic_set(&sop->so_count, 1);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004065 return sop;
4066}
4067
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004068static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004069{
Trond Myklebustd4f04892014-07-29 21:34:36 -04004070 lockdep_assert_held(&clp->cl_lock);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03004071
Trond Myklebustd4f04892014-07-29 21:34:36 -04004072 list_add(&oo->oo_owner.so_strhash,
4073 &clp->cl_ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004074 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075}
4076
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004077static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
4078{
Trond Myklebustd4f04892014-07-29 21:34:36 -04004079 unhash_openowner_locked(openowner(so));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004080}
4081
Jeff Layton6b180f02014-07-29 21:34:26 -04004082static void nfs4_free_openowner(struct nfs4_stateowner *so)
4083{
4084 struct nfs4_openowner *oo = openowner(so);
4085
4086 kmem_cache_free(openowner_slab, oo);
4087}
4088
4089static const struct nfs4_stateowner_operations openowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004090 .so_unhash = nfs4_unhash_openowner,
4091 .so_free = nfs4_free_openowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04004092};
4093
Andrew Elble7fc05642015-11-05 20:42:43 -05004094static struct nfs4_ol_stateid *
4095nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
4096{
4097 struct nfs4_ol_stateid *local, *ret = NULL;
4098 struct nfs4_openowner *oo = open->op_openowner;
4099
4100 lockdep_assert_held(&fp->fi_lock);
4101
4102 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
4103 /* ignore lock owners */
4104 if (local->st_stateowner->so_is_open_owner == 0)
4105 continue;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004106 if (local->st_stateowner != &oo->oo_owner)
4107 continue;
4108 if (local->st_stid.sc_type == NFS4_OPEN_STID) {
Andrew Elble7fc05642015-11-05 20:42:43 -05004109 ret = local;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004110 refcount_inc(&ret->st_stid.sc_count);
Andrew Elble7fc05642015-11-05 20:42:43 -05004111 break;
4112 }
4113 }
4114 return ret;
4115}
4116
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004117static __be32
4118nfsd4_verify_open_stid(struct nfs4_stid *s)
4119{
4120 __be32 ret = nfs_ok;
4121
4122 switch (s->sc_type) {
4123 default:
4124 break;
Trond Myklebust4f176412018-01-12 17:42:30 -05004125 case 0:
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004126 case NFS4_CLOSED_STID:
4127 case NFS4_CLOSED_DELEG_STID:
4128 ret = nfserr_bad_stateid;
4129 break;
4130 case NFS4_REVOKED_DELEG_STID:
4131 ret = nfserr_deleg_revoked;
4132 }
4133 return ret;
4134}
4135
4136/* Lock the stateid st_mutex, and deal with races with CLOSE */
4137static __be32
4138nfsd4_lock_ol_stateid(struct nfs4_ol_stateid *stp)
4139{
4140 __be32 ret;
4141
Andrew Elble4f34bd02017-11-08 17:29:51 -05004142 mutex_lock_nested(&stp->st_mutex, LOCK_STATEID_MUTEX);
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004143 ret = nfsd4_verify_open_stid(&stp->st_stid);
4144 if (ret != nfs_ok)
4145 mutex_unlock(&stp->st_mutex);
4146 return ret;
4147}
4148
4149static struct nfs4_ol_stateid *
4150nfsd4_find_and_lock_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
4151{
4152 struct nfs4_ol_stateid *stp;
4153 for (;;) {
4154 spin_lock(&fp->fi_lock);
4155 stp = nfsd4_find_existing_open(fp, open);
4156 spin_unlock(&fp->fi_lock);
4157 if (!stp || nfsd4_lock_ol_stateid(stp) == nfs_ok)
4158 break;
4159 nfs4_put_stid(&stp->st_stid);
4160 }
4161 return stp;
4162}
4163
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004164static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04004165alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004166 struct nfsd4_compound_state *cstate)
4167{
Trond Myklebust13d6f662014-06-30 11:48:45 -04004168 struct nfs4_client *clp = cstate->clp;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04004169 struct nfs4_openowner *oo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004171 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
4172 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 return NULL;
Jeff Layton6b180f02014-07-29 21:34:26 -04004174 oo->oo_owner.so_ops = &openowner_ops;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004175 oo->oo_owner.so_is_open_owner = 1;
4176 oo->oo_owner.so_seqid = open->op_seqid;
Jeff Laytond3134b12014-07-29 21:34:32 -04004177 oo->oo_flags = 0;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004178 if (nfsd4_has_session(cstate))
4179 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004180 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04004181 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004182 INIT_LIST_HEAD(&oo->oo_close_lru);
Trond Myklebustd4f04892014-07-29 21:34:36 -04004183 spin_lock(&clp->cl_lock);
4184 ret = find_openstateowner_str_locked(strhashval, open, clp);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04004185 if (ret == NULL) {
4186 hash_openowner(oo, clp, strhashval);
4187 ret = oo;
4188 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08004189 nfs4_free_stateowner(&oo->oo_owner);
4190
Trond Myklebustd4f04892014-07-29 21:34:36 -04004191 spin_unlock(&clp->cl_lock);
Jeff Laytonc5952332015-03-23 10:53:42 -04004192 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193}
4194
Andrew Elble7fc05642015-11-05 20:42:43 -05004195static struct nfs4_ol_stateid *
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004196init_open_stateid(struct nfs4_file *fp, struct nfsd4_open *open)
Andrew Elble7fc05642015-11-05 20:42:43 -05004197{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Andrew Elble7fc05642015-11-05 20:42:43 -05004199 struct nfs4_openowner *oo = open->op_openowner;
4200 struct nfs4_ol_stateid *retstp = NULL;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004201 struct nfs4_ol_stateid *stp;
Andrew Elble7fc05642015-11-05 20:42:43 -05004202
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004203 stp = open->op_stp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004204 /* We are moving these outside of the spinlocks to avoid the warnings */
4205 mutex_init(&stp->st_mutex);
Andrew Elble4f34bd02017-11-08 17:29:51 -05004206 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004207
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004208retry:
Andrew Elble7fc05642015-11-05 20:42:43 -05004209 spin_lock(&oo->oo_owner.so_client->cl_lock);
4210 spin_lock(&fp->fi_lock);
4211
4212 retstp = nfsd4_find_existing_open(fp, open);
4213 if (retstp)
4214 goto out_unlock;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004215
4216 open->op_stp = NULL;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004217 refcount_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05004218 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04004219 INIT_LIST_HEAD(&stp->st_locks);
Kinglong Meeb5971af2014-08-22 10:18:43 -04004220 stp->st_stateowner = nfs4_get_stateowner(&oo->oo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07004221 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04004222 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 stp->st_access_bmap = 0;
4224 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07004225 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04004226 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04004227 list_add(&stp->st_perfile, &fp->fi_stateids);
Andrew Elble7fc05642015-11-05 20:42:43 -05004228
4229out_unlock:
Trond Myklebust1d31a252014-07-10 14:07:25 -04004230 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04004231 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004232 if (retstp) {
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004233 /* Handle races with CLOSE */
4234 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
4235 nfs4_put_stid(&retstp->st_stid);
4236 goto retry;
4237 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004238 /* To keep mutex tracking happy */
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004239 mutex_unlock(&stp->st_mutex);
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004240 stp = retstp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004241 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004242 return stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243}
4244
Jeff Laytond3134b12014-07-29 21:34:32 -04004245/*
4246 * In the 4.0 case we need to keep the owners around a little while to handle
4247 * CLOSE replay. We still do need to release any file access that is held by
4248 * them before returning however.
4249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250static void
Jeff Laytond3134b12014-07-29 21:34:32 -04004251move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252{
Jeff Layton217526e2014-07-30 08:27:11 -04004253 struct nfs4_ol_stateid *last;
Jeff Laytond3134b12014-07-29 21:34:32 -04004254 struct nfs4_openowner *oo = openowner(s->st_stateowner);
4255 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
4256 nfsd_net_id);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03004257
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004258 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
Jeff Laytonb401be222014-07-29 21:34:33 -04004260 /*
4261 * We know that we hold one reference via nfsd4_close, and another
4262 * "persistent" reference for the client. If the refcount is higher
4263 * than 2, then there are still calls in progress that are using this
4264 * stateid. We can't put the sc_file reference until they are finished.
4265 * Wait for the refcount to drop to 2. Since it has been unhashed,
4266 * there should be no danger of the refcount going back up again at
4267 * this point.
4268 */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004269 wait_event(close_wq, refcount_read(&s->st_stid.sc_count) == 2);
Jeff Laytonb401be222014-07-29 21:34:33 -04004270
Jeff Laytond3134b12014-07-29 21:34:32 -04004271 release_all_access(s);
4272 if (s->st_stid.sc_file) {
4273 put_nfs4_file(s->st_stid.sc_file);
4274 s->st_stid.sc_file = NULL;
4275 }
Jeff Layton217526e2014-07-30 08:27:11 -04004276
4277 spin_lock(&nn->client_lock);
4278 last = oo->oo_last_closed_stid;
Jeff Laytond3134b12014-07-29 21:34:32 -04004279 oo->oo_last_closed_stid = s;
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03004280 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004281 oo->oo_time = get_seconds();
Jeff Layton217526e2014-07-30 08:27:11 -04004282 spin_unlock(&nn->client_lock);
4283 if (last)
4284 nfs4_put_stid(&last->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285}
4286
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287/* search file_hashtbl[] for file */
4288static struct nfs4_file *
Jeff Layton5b095e92014-10-23 08:01:02 -04004289find_file_locked(struct knfsd_fh *fh, unsigned int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 struct nfs4_file *fp;
4292
Jeff Layton5b095e92014-10-23 08:01:02 -04004293 hlist_for_each_entry_rcu(fp, &file_hashtbl[hashval], fi_hash) {
Christoph Hellwig4d94c2e2014-08-14 08:41:48 +02004294 if (fh_match(&fp->fi_fhandle, fh)) {
Elena Reshetova818a34e2017-10-20 12:53:30 +03004295 if (refcount_inc_not_zero(&fp->fi_ref))
Jeff Layton5b095e92014-10-23 08:01:02 -04004296 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07004297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 }
4299 return NULL;
4300}
4301
Christoph Hellwige6ba76e2014-08-14 08:50:16 +02004302struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04004303find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04004304{
4305 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04004306 unsigned int hashval = file_hashval(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04004307
Jeff Layton5b095e92014-10-23 08:01:02 -04004308 rcu_read_lock();
4309 fp = find_file_locked(fh, hashval);
4310 rcu_read_unlock();
Trond Myklebust950e0112014-06-30 11:48:31 -04004311 return fp;
4312}
4313
4314static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004315find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04004316{
4317 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04004318 unsigned int hashval = file_hashval(fh);
4319
4320 rcu_read_lock();
4321 fp = find_file_locked(fh, hashval);
4322 rcu_read_unlock();
4323 if (fp)
4324 return fp;
Trond Myklebust950e0112014-06-30 11:48:31 -04004325
4326 spin_lock(&state_lock);
Jeff Layton5b095e92014-10-23 08:01:02 -04004327 fp = find_file_locked(fh, hashval);
4328 if (likely(fp == NULL)) {
4329 nfsd4_init_file(fh, hashval, new);
Trond Myklebust950e0112014-06-30 11:48:31 -04004330 fp = new;
4331 }
4332 spin_unlock(&state_lock);
4333
4334 return fp;
4335}
4336
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04004337/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 * Called to check deny when READ with all zero stateid or
4339 * WRITE with all zero or all one stateid
4340 */
Al Virob37ad282006-10-19 23:28:59 -07004341static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
4343{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004345 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
Trond Myklebustca943212014-07-23 16:17:39 -04004347 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07004348 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004349 return ret;
4350 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04004351 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004352 if (fp->fi_share_deny & deny_type)
4353 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04004354 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07004355 put_nfs4_file(fp);
4356 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357}
4358
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004359static void nfsd4_cb_recall_prepare(struct nfsd4_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360{
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004361 struct nfs4_delegation *dp = cb_to_delegation(cb);
Trond Myklebust11b91642014-07-29 21:34:08 -04004362 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
4363 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04004364
Trond Myklebust11b91642014-07-29 21:34:08 -04004365 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04004366
Jeff Layton02e12152014-07-16 10:31:57 -04004367 /*
4368 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04004369 * already holding inode->i_lock.
4370 *
Jeff Laytondff13992014-07-08 14:02:49 -04004371 * If the dl_time != 0, then we know that it has already been
4372 * queued for a lease break. Don't queue it again.
4373 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04004374 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04004375 if (dp->dl_time == 0) {
Jeff Laytondff13992014-07-08 14:02:49 -04004376 dp->dl_time = get_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04004377 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04004378 }
Jeff Layton02e12152014-07-16 10:31:57 -04004379 spin_unlock(&state_lock);
4380}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004382static int nfsd4_cb_recall_done(struct nfsd4_callback *cb,
4383 struct rpc_task *task)
4384{
4385 struct nfs4_delegation *dp = cb_to_delegation(cb);
4386
Andrew Elblea4579742015-08-31 12:06:41 -04004387 if (dp->dl_stid.sc_type == NFS4_CLOSED_DELEG_STID)
4388 return 1;
4389
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004390 switch (task->tk_status) {
4391 case 0:
4392 return 1;
Scott Mayhew1c73b9d2019-05-02 13:32:12 -04004393 case -NFS4ERR_DELAY:
4394 rpc_delay(task, 2 * HZ);
4395 return 0;
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004396 case -EBADHANDLE:
4397 case -NFS4ERR_BAD_STATEID:
4398 /*
4399 * Race: client probably got cb_recall before open reply
4400 * granting delegation.
4401 */
4402 if (dp->dl_retries--) {
4403 rpc_delay(task, 2 * HZ);
4404 return 0;
4405 }
4406 /*FALLTHRU*/
4407 default:
Scott Mayhew1c73b9d2019-05-02 13:32:12 -04004408 return 1;
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004409 }
4410}
4411
4412static void nfsd4_cb_recall_release(struct nfsd4_callback *cb)
4413{
4414 struct nfs4_delegation *dp = cb_to_delegation(cb);
4415
4416 nfs4_put_stid(&dp->dl_stid);
4417}
4418
Julia Lawallc4cb8972015-11-21 22:57:39 +01004419static const struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004420 .prepare = nfsd4_cb_recall_prepare,
4421 .done = nfsd4_cb_recall_done,
4422 .release = nfsd4_cb_recall_release,
4423};
4424
Jeff Layton02e12152014-07-16 10:31:57 -04004425static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
4426{
4427 /*
4428 * We're assuming the state code never drops its reference
4429 * without first removing the lease. Since we're in this lease
J. Bruce Fields4a269efb2018-04-13 17:34:35 -04004430 * callback (and since the lease code is serialized by the
4431 * i_lock) we know the server hasn't removed the lease yet, and
4432 * we know it's safe to take a reference.
Jeff Layton02e12152014-07-16 10:31:57 -04004433 */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004434 refcount_inc(&dp->dl_stid.sc_count);
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02004435 nfsd4_run_cb(&dp->dl_recall);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004436}
4437
Jeff Layton1c8c6012013-06-21 08:58:15 -04004438/* Called from break_lease() with i_lock held. */
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004439static bool
4440nfsd_break_deleg_cb(struct file_lock *fl)
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004441{
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004442 bool ret = false;
J. Bruce Fields653e5142018-02-15 22:08:45 -05004443 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
4444 struct nfs4_file *fp = dp->dl_stid.sc_file;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004445
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04004446 /*
4447 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004448 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004449 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04004450 */
4451 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
Jeff Layton02e12152014-07-16 10:31:57 -04004453 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004454 fp->fi_had_conflict = true;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004455 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04004456 spin_unlock(&fp->fi_lock);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004457 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458}
4459
Jeff Laytonc45198e2014-09-01 07:12:07 -04004460static int
Jeff Layton7448cc32015-01-16 15:05:57 -05004461nfsd_change_deleg_cb(struct file_lock *onlist, int arg,
4462 struct list_head *dispose)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463{
4464 if (arg & F_UNLCK)
Jeff Laytonc45198e2014-09-01 07:12:07 -04004465 return lease_modify(onlist, arg, dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 else
4467 return -EAGAIN;
4468}
4469
Alexey Dobriyan7b021962009-09-21 17:01:12 -07004470static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04004471 .lm_break = nfsd_break_deleg_cb,
4472 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473};
4474
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04004475static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
4476{
4477 if (nfsd4_has_session(cstate))
4478 return nfs_ok;
4479 if (seqid == so->so_seqid - 1)
4480 return nfserr_replay_me;
4481 if (seqid == so->so_seqid)
4482 return nfs_ok;
4483 return nfserr_bad_seqid;
4484}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
Jeff Layton4b24ca72014-06-30 11:48:44 -04004486static __be32 lookup_clientid(clientid_t *clid,
4487 struct nfsd4_compound_state *cstate,
4488 struct nfsd_net *nn)
4489{
4490 struct nfs4_client *found;
4491
4492 if (cstate->clp) {
4493 found = cstate->clp;
4494 if (!same_clid(&found->cl_clientid, clid))
4495 return nfserr_stale_clientid;
4496 return nfs_ok;
4497 }
4498
4499 if (STALE_CLIENTID(clid, nn))
4500 return nfserr_stale_clientid;
4501
4502 /*
4503 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
4504 * cached already then we know this is for is for v4.0 and "sessions"
4505 * will be false.
4506 */
4507 WARN_ON_ONCE(cstate->session);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004508 spin_lock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004509 found = find_confirmed_client(clid, false, nn);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004510 if (!found) {
4511 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004512 return nfserr_expired;
Trond Myklebust3e339f92014-07-30 08:27:09 -04004513 }
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04004514 atomic_inc(&found->cl_rpc_users);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004515 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004516
4517 /* Cache the nfs4_client in cstate! */
4518 cstate->clp = found;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004519 return nfs_ok;
4520}
4521
Al Virob37ad282006-10-19 23:28:59 -07004522__be32
Andy Adamson66689582009-04-03 08:28:45 +03004523nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004524 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 clientid_t *clientid = &open->op_clientid;
4527 struct nfs4_client *clp = NULL;
4528 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004529 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004530 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004532 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004534 /*
4535 * In case we need it later, after we've already created the
4536 * file and don't want to risk a further failure:
4537 */
4538 open->op_file = nfsd4_alloc_file();
4539 if (open->op_file == NULL)
4540 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
Trond Myklebust2d91e892014-06-30 11:48:46 -04004542 status = lookup_clientid(clientid, cstate, nn);
4543 if (status)
4544 return status;
4545 clp = cstate->clp;
4546
Trond Myklebustd4f04892014-07-29 21:34:36 -04004547 strhashval = ownerstr_hashval(&open->op_owner);
4548 oo = find_openstateowner_str(strhashval, open, clp);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004549 open->op_openowner = oo;
4550 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004551 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004553 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004554 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004555 release_openowner(oo);
4556 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004557 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004558 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004559 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
4560 if (status)
4561 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004562 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004563new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04004564 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004565 if (oo == NULL)
4566 return nfserr_jukebox;
4567 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004568alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04004569 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004570 if (!open->op_stp)
4571 return nfserr_jukebox;
Sachin Bhamare8287f002015-04-27 14:50:14 +02004572
4573 if (nfsd4_has_session(cstate) &&
4574 (cstate->current_fh.fh_export->ex_flags & NFSEXP_PNFS)) {
4575 open->op_odstate = alloc_clnt_odstate(clp);
4576 if (!open->op_odstate)
4577 return nfserr_jukebox;
4578 }
4579
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004580 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581}
4582
Al Virob37ad282006-10-19 23:28:59 -07004583static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07004584nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
4585{
4586 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
4587 return nfserr_openmode;
4588 else
4589 return nfs_ok;
4590}
4591
Daniel Mackc47d8322011-05-16 16:38:14 +02004592static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04004593{
J. Bruce Fields24a01112010-05-18 20:01:35 -04004594 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
4595}
4596
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004597static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004598{
4599 struct nfs4_stid *ret;
4600
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004601 ret = find_stateid_by_type(cl, s,
4602 NFS4_DELEG_STID|NFS4_REVOKED_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004603 if (!ret)
4604 return NULL;
4605 return delegstateid(ret);
4606}
4607
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004608static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
4609{
4610 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
4611 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
4612}
4613
Al Virob37ad282006-10-19 23:28:59 -07004614static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04004615nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07004616 struct nfs4_delegation **dp)
4617{
4618 int flags;
Al Virob37ad282006-10-19 23:28:59 -07004619 __be32 status = nfserr_bad_stateid;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004620 struct nfs4_delegation *deleg;
NeilBrown567d9822005-06-23 22:02:53 -07004621
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004622 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
4623 if (deleg == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07004624 goto out;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004625 if (deleg->dl_stid.sc_type == NFS4_REVOKED_DELEG_STID) {
4626 nfs4_put_stid(&deleg->dl_stid);
4627 if (cl->cl_minorversion)
4628 status = nfserr_deleg_revoked;
4629 goto out;
4630 }
J. Bruce Fields24a01112010-05-18 20:01:35 -04004631 flags = share_access_to_flags(open->op_share_access);
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004632 status = nfs4_check_delegmode(deleg, flags);
4633 if (status) {
4634 nfs4_put_stid(&deleg->dl_stid);
4635 goto out;
4636 }
4637 *dp = deleg;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004638out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004639 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004640 return nfs_ok;
4641 if (status)
4642 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004643 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004644 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07004645}
4646
J. Bruce Fields21fb4012010-07-28 12:21:23 -04004647static inline int nfs4_access_to_access(u32 nfs4_access)
4648{
4649 int flags = 0;
4650
4651 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
4652 flags |= NFSD_MAY_READ;
4653 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
4654 flags |= NFSD_MAY_WRITE;
4655 return flags;
4656}
4657
Al Virob37ad282006-10-19 23:28:59 -07004658static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
4660 struct nfsd4_open *open)
4661{
4662 struct iattr iattr = {
4663 .ia_valid = ATTR_SIZE,
4664 .ia_size = 0,
4665 };
4666 if (!open->op_truncate)
4667 return 0;
4668 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08004669 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
4671}
4672
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004673static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004674 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
4675 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004676{
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004677 struct nfsd_file *nf = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004678 __be32 status;
4679 int oflag = nfs4_access_to_omode(open->op_share_access);
4680 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004681 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004682
Trond Myklebustde186432014-07-10 14:07:26 -04004683 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004684
4685 /*
4686 * Are we trying to set a deny mode that would conflict with
4687 * current access?
4688 */
4689 status = nfs4_file_check_deny(fp, open->op_share_deny);
4690 if (status != nfs_ok) {
4691 spin_unlock(&fp->fi_lock);
4692 goto out;
4693 }
4694
4695 /* set access to the file */
4696 status = nfs4_file_get_access(fp, open->op_share_access);
4697 if (status != nfs_ok) {
4698 spin_unlock(&fp->fi_lock);
4699 goto out;
4700 }
4701
4702 /* Set access bits in stateid */
4703 old_access_bmap = stp->st_access_bmap;
4704 set_access(open->op_share_access, stp);
4705
4706 /* Set new deny mask */
4707 old_deny_bmap = stp->st_deny_bmap;
4708 set_deny(open->op_share_deny, stp);
4709 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4710
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004711 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04004712 spin_unlock(&fp->fi_lock);
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004713 status = nfsd_file_acquire(rqstp, cur_fh, access, &nf);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004714 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004715 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04004716 spin_lock(&fp->fi_lock);
4717 if (!fp->fi_fds[oflag]) {
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004718 fp->fi_fds[oflag] = nf;
4719 nf = NULL;
Trond Myklebustde186432014-07-10 14:07:26 -04004720 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004721 }
Trond Myklebustde186432014-07-10 14:07:26 -04004722 spin_unlock(&fp->fi_lock);
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004723 if (nf)
4724 nfsd_file_put(nf);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004725
4726 status = nfsd4_truncate(rqstp, cur_fh, open);
4727 if (status)
4728 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004729out:
4730 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004731out_put_access:
4732 stp->st_access_bmap = old_access_bmap;
4733 nfs4_file_put_access(fp, open->op_share_access);
4734 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
4735 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004736}
4737
Al Virob37ad282006-10-19 23:28:59 -07004738static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004739nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740{
Al Virob37ad282006-10-19 23:28:59 -07004741 __be32 status;
Arnd Bergmann6ac75362015-05-12 23:31:29 +02004742 unsigned char old_deny_bmap = stp->st_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004744 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004745 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004746
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004747 /* test and set deny mode */
4748 spin_lock(&fp->fi_lock);
4749 status = nfs4_file_check_deny(fp, open->op_share_deny);
4750 if (status == nfs_ok) {
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004751 set_deny(open->op_share_deny, stp);
4752 fp->fi_share_deny |=
4753 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4754 }
4755 spin_unlock(&fp->fi_lock);
4756
4757 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004760 status = nfsd4_truncate(rqstp, cur_fh, open);
4761 if (status != nfs_ok)
4762 reset_union_bmap_deny(old_deny_bmap, stp);
4763 return status;
4764}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004766/* Should we give out recallable state?: */
4767static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
4768{
4769 if (clp->cl_cb_state == NFSD4_CB_UP)
4770 return true;
4771 /*
4772 * In the sessions case, since we don't have to establish a
4773 * separate connection for callbacks, we assume it's OK
4774 * until we hear otherwise:
4775 */
4776 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
4777}
4778
J. Bruce Fields653e5142018-02-15 22:08:45 -05004779static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp,
4780 int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004781{
4782 struct file_lock *fl;
4783
4784 fl = locks_alloc_lock();
4785 if (!fl)
4786 return NULL;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004787 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04004788 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004789 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
4790 fl->fl_end = OFFSET_MAX;
J. Bruce Fields653e5142018-02-15 22:08:45 -05004791 fl->fl_owner = (fl_owner_t)dp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004792 fl->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004793 fl->fl_file = dp->dl_stid.sc_file->fi_deleg_file->nf_file;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004794 return fl;
4795}
4796
Jeff Layton0b266932014-07-25 07:34:25 -04004797static struct nfs4_delegation *
4798nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +02004799 struct nfs4_file *fp, struct nfs4_clnt_odstate *odstate)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004800{
J. Bruce Fields68b18f52018-02-19 11:38:33 -05004801 int status = 0;
Jeff Layton0b266932014-07-25 07:34:25 -04004802 struct nfs4_delegation *dp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004803 struct nfsd_file *nf;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004804 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04004805
J. Bruce Fields353601e2018-02-16 14:29:42 -05004806 /*
4807 * The fi_had_conflict and nfs_get_existing_delegation checks
4808 * here are just optimizations; we'll need to recheck them at
4809 * the end:
4810 */
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004811 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04004812 return ERR_PTR(-EAGAIN);
4813
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004814 nf = find_readable_file(fp);
4815 if (!nf) {
J. Bruce Fields353601e2018-02-16 14:29:42 -05004816 /* We should always have a readable file here */
4817 WARN_ON_ONCE(1);
4818 return ERR_PTR(-EBADF);
4819 }
Andrew Elble34ed9872015-10-15 12:07:28 -04004820 spin_lock(&state_lock);
4821 spin_lock(&fp->fi_lock);
J. Bruce Fields68b18f52018-02-19 11:38:33 -05004822 if (nfs4_delegation_exists(clp, fp))
4823 status = -EAGAIN;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004824 else if (!fp->fi_deleg_file) {
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004825 fp->fi_deleg_file = nf;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004826 /* increment early to prevent fi_deleg_file from being
4827 * cleared */
4828 fp->fi_delegees = 1;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004829 nf = NULL;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004830 } else
4831 fp->fi_delegees++;
4832 spin_unlock(&fp->fi_lock);
4833 spin_unlock(&state_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004834 if (nf)
4835 nfsd_file_put(nf);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004836 if (status)
4837 return ERR_PTR(status);
4838
4839 status = -ENOMEM;
4840 dp = alloc_init_deleg(clp, fp, fh, odstate);
4841 if (!dp)
4842 goto out_delegees;
4843
4844 fl = nfs4_alloc_init_lease(dp, NFS4_OPEN_DELEGATE_READ);
4845 if (!fl)
Andrew Elblebd8d7252018-10-05 09:32:08 -04004846 goto out_clnt_odstate;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004847
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004848 status = vfs_setlease(fp->fi_deleg_file->nf_file, fl->fl_type, &fl, NULL);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004849 if (fl)
4850 locks_free_lock(fl);
4851 if (status)
4852 goto out_clnt_odstate;
4853
4854 spin_lock(&state_lock);
4855 spin_lock(&fp->fi_lock);
4856 if (fp->fi_had_conflict)
4857 status = -EAGAIN;
4858 else
4859 status = hash_delegation_locked(dp, fp);
Andrew Elble34ed9872015-10-15 12:07:28 -04004860 spin_unlock(&fp->fi_lock);
4861 spin_unlock(&state_lock);
4862
4863 if (status)
Andrew Elble692ad282018-04-18 17:04:37 -04004864 goto out_unlock;
4865
Jeff Layton0b266932014-07-25 07:34:25 -04004866 return dp;
Andrew Elble692ad282018-04-18 17:04:37 -04004867out_unlock:
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004868 vfs_setlease(fp->fi_deleg_file->nf_file, F_UNLCK, NULL, (void **)&dp);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004869out_clnt_odstate:
4870 put_clnt_odstate(dp->dl_clnt_odstate);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004871 nfs4_put_stid(&dp->dl_stid);
4872out_delegees:
4873 put_deleg_file(fp);
4874 return ERR_PTR(status);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004875}
4876
Benny Halevy4aa89132012-02-21 14:16:44 -08004877static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
4878{
4879 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4880 if (status == -EAGAIN)
4881 open->op_why_no_deleg = WND4_CONTENTION;
4882 else {
4883 open->op_why_no_deleg = WND4_RESOURCE;
4884 switch (open->op_deleg_want) {
4885 case NFS4_SHARE_WANT_READ_DELEG:
4886 case NFS4_SHARE_WANT_WRITE_DELEG:
4887 case NFS4_SHARE_WANT_ANY_DELEG:
4888 break;
4889 case NFS4_SHARE_WANT_CANCEL:
4890 open->op_why_no_deleg = WND4_CANCELLED;
4891 break;
4892 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004893 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08004894 }
4895 }
4896}
4897
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898/*
4899 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04004900 *
4901 * Note we don't support write delegations, and won't until the vfs has
4902 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 */
4904static void
Jeff Layton4cf59222014-07-25 07:34:24 -04004905nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
4906 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907{
4908 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04004909 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
4910 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004911 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004912 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004914 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07004915 open->op_recall = 0;
4916 switch (open->op_claim_type) {
4917 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05004918 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07004919 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004920 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
4921 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004922 break;
4923 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00004924 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004925 /*
4926 * Let's not give out any delegations till everyone's
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004927 * had the chance to reclaim theirs, *and* until
4928 * NLM locks have all been reclaimed:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004929 */
Jeff Layton4cf59222014-07-25 07:34:24 -04004930 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004931 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004932 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004933 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04004934 /*
4935 * Also, if the file was opened for write or
4936 * create, there's a good chance the client's
4937 * about to write to it, resulting in an
4938 * immediate recall (since we don't support
4939 * write delegations):
4940 */
NeilBrown7b190fe2005-06-23 22:03:23 -07004941 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04004942 goto out_no_deleg;
4943 if (open->op_create == NFS4_OPEN_CREATE)
4944 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004945 break;
4946 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004947 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004948 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02004949 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file, stp->st_clnt_odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04004950 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004951 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004953 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004955 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004956 STATEID_VAL(&dp->dl_stid.sc_stateid));
J. Bruce Fields99c41512013-05-21 16:21:25 -04004957 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04004958 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004959 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004960out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004961 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
4962 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04004963 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04004964 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04004965 open->op_recall = 1;
4966 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04004967
4968 /* 4.1 client asking for a delegation? */
4969 if (open->op_deleg_want)
4970 nfsd4_open_deleg_none_ext(open, status);
4971 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972}
4973
Benny Halevye27f49c2012-02-21 14:16:54 -08004974static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
4975 struct nfs4_delegation *dp)
4976{
4977 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
4978 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4979 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4980 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
4981 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
4982 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4983 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4984 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
4985 }
4986 /* Otherwise the client must be confused wanting a delegation
4987 * it already has, therefore we don't return
4988 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
4989 */
4990}
4991
Al Virob37ad282006-10-19 23:28:59 -07004992__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
4994{
Andy Adamson66689582009-04-03 08:28:45 +03004995 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004996 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004998 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07004999 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005000 __be32 status;
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005001 bool new_stp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 /*
5004 * Lookup file; if found, lookup stateid and check open request,
5005 * and check for delegations in the process of being recalled.
5006 * If not found, create the nfs4_file struct
5007 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005008 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04005009 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04005010 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07005011 if (status)
5012 goto out;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04005013 stp = nfsd4_find_and_lock_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04005015 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07005016 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04005017 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07005018 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 }
5020
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005021 if (!stp) {
5022 stp = init_open_stateid(fp, open);
5023 if (!open->op_stp)
5024 new_stp = true;
5025 }
5026
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 /*
5028 * OPEN the file, or upgrade an existing OPEN.
5029 * If truncate fails, the OPEN fails.
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005030 *
5031 * stp is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032 */
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005033 if (!new_stp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005035 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005036 if (status) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005037 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 goto out;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 } else {
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005041 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
5042 if (status) {
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005043 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005044 release_open_stateid(stp);
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005045 mutex_unlock(&stp->st_mutex);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005046 goto out;
5047 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02005048
5049 stp->st_clnt_odstate = find_or_hash_clnt_odstate(fp,
5050 open->op_odstate);
5051 if (stp->st_clnt_odstate == open->op_odstate)
5052 open->op_odstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 }
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005054
Jeff Layton9767feb2015-10-01 09:05:50 -04005055 nfs4_inc_and_copy_stateid(&open->op_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005056 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057
Benny Halevyd24433c2012-02-16 20:57:17 +02005058 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02005059 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
5060 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5061 open->op_why_no_deleg = WND4_NOT_WANTED;
5062 goto nodeleg;
5063 }
5064 }
5065
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066 /*
5067 * Attempt to hand out a delegation. No error return, because the
5068 * OPEN succeeds even if we fail.
5069 */
Jeff Layton4cf59222014-07-25 07:34:24 -04005070 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02005071nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 status = nfs_ok;
5073
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005074 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005075 STATEID_VAL(&stp->st_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076out:
Benny Halevyd24433c2012-02-16 20:57:17 +02005077 /* 4.1 client trying to upgrade/downgrade delegation? */
5078 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08005079 open->op_deleg_want)
5080 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02005081
NeilBrown13cd2182005-06-23 22:03:10 -07005082 if (fp)
5083 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07005084 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
Kinglong Mee87186022015-07-13 17:32:59 +08005085 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 /*
5087 * To finish the open response, we just need to set the rflags.
5088 */
5089 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Jeff Layton19e4c342016-09-16 16:28:27 -04005090 if (nfsd4_has_session(&resp->cstate))
5091 open->op_rflags |= NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK;
5092 else if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
Jeff Layton19e4c342016-09-16 16:28:27 -04005094
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04005095 if (dp)
5096 nfs4_put_stid(&dp->dl_stid);
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04005097 if (stp)
5098 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099
5100 return status;
5101}
5102
Jeff Layton58fb12e2014-07-29 21:34:27 -04005103void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
Jeff Layton42297892015-03-23 10:53:44 -04005104 struct nfsd4_open *open)
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005105{
5106 if (open->op_openowner) {
Jeff Laytond3134b12014-07-29 21:34:32 -04005107 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005108
Jeff Laytond3134b12014-07-29 21:34:32 -04005109 nfsd4_cstate_assign_replay(cstate, so);
5110 nfs4_put_stateowner(so);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005111 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04005112 if (open->op_file)
Jeff Layton5b095e92014-10-23 08:01:02 -04005113 kmem_cache_free(file_slab, open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04005114 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04005115 nfs4_put_stid(&open->op_stp->st_stid);
Sachin Bhamare8287f002015-04-27 14:50:14 +02005116 if (open->op_odstate)
5117 kmem_cache_free(odstate_slab, open->op_odstate);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005118}
5119
Al Virob37ad282006-10-19 23:28:59 -07005120__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08005121nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005122 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005124 clientid_t *clid = &u->renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07005126 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005127 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 dprintk("process_renew(%08x/%08x): starting\n",
5130 clid->cl_boot, clid->cl_id);
Jeff Layton4b24ca72014-06-30 11:48:44 -04005131 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005132 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005134 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07005136 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04005137 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 goto out;
5139 status = nfs_ok;
5140out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 return status;
5142}
5143
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04005144void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03005145nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07005146{
Jeff Layton33dcc482012-04-10 11:08:48 -04005147 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005148 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04005149 return;
5150
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005151 nn->grace_ended = true;
J. Bruce Fields70b28232014-09-16 17:37:32 -04005152 /*
5153 * If the server goes down again right now, an NFSv4
5154 * client will still be allowed to reclaim after it comes back up,
5155 * even if it hasn't yet had a chance to reclaim state this time.
5156 *
5157 */
Jeff Layton919b8042014-09-12 16:40:20 -04005158 nfsd4_record_grace_done(nn);
J. Bruce Fields70b28232014-09-16 17:37:32 -04005159 /*
5160 * At this point, NFSv4 clients can still reclaim. But if the
5161 * server crashes, any that have not yet reclaimed will be out
5162 * of luck on the next boot.
5163 *
5164 * (NFSv4.1+ clients are considered to have reclaimed once they
5165 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
5166 * have reclaimed after their first OPEN.)
5167 */
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005168 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fields70b28232014-09-16 17:37:32 -04005169 /*
5170 * At this point, and once lockd and/or any other containers
5171 * exit their grace period, further reclaims will fail and
5172 * regular locking can resume.
5173 */
NeilBrowna76b4312005-06-23 22:04:01 -07005174}
5175
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005176/*
5177 * If we've waited a lease period but there are still clients trying to
5178 * reclaim, wait a little longer to give them a chance to finish.
5179 */
5180static bool clients_still_reclaiming(struct nfsd_net *nn)
5181{
5182 unsigned long now = get_seconds();
5183 unsigned long double_grace_period_end = nn->boot_time +
5184 2 * nn->nfsd4_lease;
5185
Scott Mayhew362063a2019-03-26 18:06:28 -04005186 if (nn->track_reclaim_completes &&
5187 atomic_read(&nn->nr_reclaim_complete) ==
5188 nn->reclaim_str_hashtbl_size)
5189 return false;
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005190 if (!nn->somebody_reclaimed)
5191 return false;
5192 nn->somebody_reclaimed = false;
5193 /*
5194 * If we've given them *two* lease times to reclaim, and they're
5195 * still not done, give up:
5196 */
5197 if (time_after(now, double_grace_period_end))
5198 return false;
5199 return true;
5200}
5201
NeilBrownfd39ca92005-06-23 22:04:03 -07005202static time_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005203nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204{
5205 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005206 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 struct nfs4_delegation *dp;
Jeff Layton217526e2014-07-30 08:27:11 -04005208 struct nfs4_ol_stateid *stp;
Jeff Layton7919d0a2016-09-16 16:28:25 -04005209 struct nfsd4_blocked_lock *nbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03005211 time_t cutoff = get_seconds() - nn->nfsd4_lease;
Jeff Laytona832e7a2014-05-30 09:09:26 -04005212 time_t t, new_timeo = nn->nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005215
5216 if (clients_still_reclaiming(nn)) {
5217 new_timeo = 0;
5218 goto out;
5219 }
Scott Mayhew362063a2019-03-26 18:06:28 -04005220 dprintk("NFSD: end of grace period\n");
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03005221 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03005222 INIT_LIST_HEAD(&reaplist);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005223 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005224 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 clp = list_entry(pos, struct nfs4_client, cl_lru);
5226 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
5227 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04005228 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 break;
5230 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04005231 if (mark_client_expired_locked(clp)) {
Benny Halevyd7682982010-05-12 00:13:54 +03005232 dprintk("NFSD: client in use (clientid %08x)\n",
5233 clp->cl_clientid.cl_id);
5234 continue;
5235 }
Trond Myklebust4864af92014-07-30 08:27:03 -04005236 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03005237 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005238 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03005239 list_for_each_safe(pos, next, &reaplist) {
5240 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241 dprintk("NFSD: purging unused client (clientid %08x)\n",
5242 clp->cl_clientid.cl_id);
Trond Myklebust4864af92014-07-30 08:27:03 -04005243 list_del_init(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244 expire_client(clp);
5245 }
Benny Halevycdc975052014-05-30 09:09:30 -04005246 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005247 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
5249 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04005250 t = dp->dl_time - cutoff;
5251 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 break;
5253 }
Jeff Layton3fcbbd22015-08-24 12:41:48 -04005254 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04005255 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 }
Benny Halevycdc975052014-05-30 09:09:30 -04005257 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005258 while (!list_empty(&reaplist)) {
5259 dp = list_first_entry(&reaplist, struct nfs4_delegation,
5260 dl_recall_lru);
5261 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005262 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 }
Jeff Layton217526e2014-07-30 08:27:11 -04005264
5265 spin_lock(&nn->client_lock);
5266 while (!list_empty(&nn->close_lru)) {
5267 oo = list_first_entry(&nn->close_lru, struct nfs4_openowner,
5268 oo_close_lru);
5269 if (time_after((unsigned long)oo->oo_time,
5270 (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04005271 t = oo->oo_time - cutoff;
5272 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 break;
5274 }
Jeff Layton217526e2014-07-30 08:27:11 -04005275 list_del_init(&oo->oo_close_lru);
5276 stp = oo->oo_last_closed_stid;
5277 oo->oo_last_closed_stid = NULL;
5278 spin_unlock(&nn->client_lock);
5279 nfs4_put_stid(&stp->st_stid);
5280 spin_lock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 }
Jeff Layton217526e2014-07-30 08:27:11 -04005282 spin_unlock(&nn->client_lock);
5283
Jeff Layton7919d0a2016-09-16 16:28:25 -04005284 /*
5285 * It's possible for a client to try and acquire an already held lock
5286 * that is being held for a long time, and then lose interest in it.
5287 * So, we clean out any un-revisited request after a lease period
5288 * under the assumption that the client is no longer interested.
5289 *
5290 * RFC5661, sec. 9.6 states that the client must not rely on getting
5291 * notifications and must continue to poll for locks, even when the
5292 * server supports them. Thus this shouldn't lead to clients blocking
5293 * indefinitely once the lock does become free.
5294 */
5295 BUG_ON(!list_empty(&reaplist));
Jeff Layton0cc11a62016-10-20 09:34:31 -04005296 spin_lock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005297 while (!list_empty(&nn->blocked_locks_lru)) {
5298 nbl = list_first_entry(&nn->blocked_locks_lru,
5299 struct nfsd4_blocked_lock, nbl_lru);
5300 if (time_after((unsigned long)nbl->nbl_time,
5301 (unsigned long)cutoff)) {
5302 t = nbl->nbl_time - cutoff;
5303 new_timeo = min(new_timeo, t);
5304 break;
5305 }
5306 list_move(&nbl->nbl_lru, &reaplist);
5307 list_del_init(&nbl->nbl_list);
5308 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04005309 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005310
5311 while (!list_empty(&reaplist)) {
Naofumi Honda64ebe1242017-11-09 10:57:16 -05005312 nbl = list_first_entry(&reaplist,
Jeff Layton7919d0a2016-09-16 16:28:25 -04005313 struct nfsd4_blocked_lock, nbl_lru);
5314 list_del_init(&nbl->nbl_lru);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005315 free_blocked_lock(nbl);
5316 }
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005317out:
Jeff Laytona832e7a2014-05-30 09:09:26 -04005318 new_timeo = max_t(time_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Jeff Laytona832e7a2014-05-30 09:09:26 -04005319 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320}
5321
Harvey Harrisona254b242008-02-20 12:49:00 -08005322static struct workqueue_struct *laundry_wq;
5323static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08005324
5325static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005326laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327{
5328 time_t t;
Geliang Tang2e55f3a2016-01-01 22:06:28 +08005329 struct delayed_work *dwork = to_delayed_work(laundry);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005330 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
5331 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005333 t = nfs4_laundromat(nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005335 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336}
5337
Jeff Layton8fcd4612015-07-30 06:57:46 -04005338static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07005339{
Jeff Layton8fcd4612015-07-30 06:57:46 -04005340 if (!fh_match(&fhp->fh_handle, &stp->sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005341 return nfserr_bad_stateid;
5342 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343}
5344
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04005346access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005348 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
5349 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
5350 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351}
5352
5353static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04005354access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005356 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
5357 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358}
5359
5360static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005361__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362{
Al Virob37ad282006-10-19 23:28:59 -07005363 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364
J. Bruce Fields02921912010-07-29 15:16:59 -04005365 /* For lock stateid's, we test the parent open, not the lock: */
5366 if (stp->st_openstp)
5367 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005368 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005370 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 goto out;
5372 status = nfs_ok;
5373out:
5374 return status;
5375}
5376
Al Virob37ad282006-10-19 23:28:59 -07005377static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005378check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005380 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 return nfs_ok;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04005382 else if (opens_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005383 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 * conflicting state; so we must wait out the grace period. */
5385 return nfserr_grace;
5386 } else if (flags & WR_STATE)
5387 return nfs4_share_conflict(current_fh,
5388 NFS4_SHARE_DENY_WRITE);
5389 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
5390 return nfs4_share_conflict(current_fh,
5391 NFS4_SHARE_DENY_READ);
5392}
5393
5394/*
5395 * Allow READ/WRITE during grace period on recovered state only for files
5396 * that are not able to provide mandatory locking.
5397 */
5398static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005399grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400{
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04005401 return opens_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402}
5403
J. Bruce Fields57b7b432012-04-25 17:58:50 -04005404static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05005405{
Andy Adamson66689582009-04-03 08:28:45 +03005406 /*
5407 * When sessions are used the stateid generation number is ignored
5408 * when it is zero.
5409 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04005410 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04005411 return nfs_ok;
5412
5413 if (in->si_generation == ref->si_generation)
5414 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03005415
J. Bruce Fields0836f582008-01-26 19:08:12 -05005416 /* If the client sends us a stateid from the future, it's buggy: */
Jeff Layton14b7f4a2016-05-05 06:53:47 -04005417 if (nfsd4_stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05005418 return nfserr_bad_stateid;
5419 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04005420 * However, we could see a stateid from the past, even from a
5421 * non-buggy client. For example, if the client sends a lock
5422 * while some IO is outstanding, the lock may bump si_generation
5423 * while the IO is still in flight. The client could avoid that
5424 * situation by waiting for responses on all the IO requests,
5425 * but better performance may result in retrying IO that
5426 * receives an old_stateid error if requests are rarely
5427 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05005428 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04005429 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05005430}
5431
Trond Myklebust03da3162017-11-03 08:00:16 -04005432static __be32 nfsd4_stid_check_stateid_generation(stateid_t *in, struct nfs4_stid *s, bool has_session)
5433{
5434 __be32 ret;
5435
5436 spin_lock(&s->sc_lock);
5437 ret = nfsd4_verify_open_stid(s);
5438 if (ret == nfs_ok)
5439 ret = check_stateid_generation(in, &s->sc_stateid, has_session);
5440 spin_unlock(&s->sc_lock);
5441 return ret;
5442}
5443
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02005444static __be32 nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid *ols)
5445{
5446 if (ols->st_stateowner->so_is_open_owner &&
5447 !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
5448 return nfserr_bad_stateid;
5449 return nfs_ok;
5450}
5451
Chuck Lever7df302f2012-05-29 13:56:37 -04005452static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04005453{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04005454 struct nfs4_stid *s;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005455 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04005456
Andrew Elbleae254dac2017-11-09 13:41:10 -05005457 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5458 CLOSE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04005459 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04005460 /* Client debugging aid. */
5461 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
5462 char addr_str[INET6_ADDRSTRLEN];
5463 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
5464 sizeof(addr_str));
5465 pr_warn_ratelimited("NFSD: client %s testing state ID "
5466 "with incorrect client ID\n", addr_str);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005467 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04005468 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04005469 spin_lock(&cl->cl_lock);
5470 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04005471 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005472 goto out_unlock;
Trond Myklebust03da3162017-11-03 08:00:16 -04005473 status = nfsd4_stid_check_stateid_generation(stateid, s, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04005474 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005475 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04005476 switch (s->sc_type) {
5477 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005478 status = nfs_ok;
5479 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005480 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005481 status = nfserr_deleg_revoked;
5482 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04005483 case NFS4_OPEN_STID:
5484 case NFS4_LOCK_STID:
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02005485 status = nfsd4_check_openowner_confirmed(openlockstateid(s));
Jeff Layton1af71cc2014-07-29 21:34:14 -04005486 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04005487 default:
5488 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04005489 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04005490 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04005491 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005492 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04005493 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04005494out_unlock:
5495 spin_unlock(&cl->cl_lock);
5496 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04005497}
5498
Christoph Hellwigcd61c522014-08-14 08:44:57 +02005499__be32
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005500nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
5501 stateid_t *stateid, unsigned char typemask,
5502 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005503{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005504 __be32 status;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04005505 bool return_revoked = false;
5506
5507 /*
5508 * only return revoked delegations if explicitly asked.
5509 * otherwise we report revoked or bad_stateid status.
5510 */
5511 if (typemask & NFS4_REVOKED_DELEG_STID)
5512 return_revoked = true;
5513 else if (typemask & NFS4_DELEG_STID)
5514 typemask |= NFS4_REVOKED_DELEG_STID;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005515
Andrew Elbleae254dac2017-11-09 13:41:10 -05005516 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5517 CLOSE_STATEID(stateid))
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005518 return nfserr_bad_stateid;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005519 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005520 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005521 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005522 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005523 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005524 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005525 if (status)
5526 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005527 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005528 if (!*s)
5529 return nfserr_bad_stateid;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04005530 if (((*s)->sc_type == NFS4_REVOKED_DELEG_STID) && !return_revoked) {
5531 nfs4_put_stid(*s);
5532 if (cstate->minorversion)
5533 return nfserr_deleg_revoked;
5534 return nfserr_bad_stateid;
5535 }
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005536 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005537}
5538
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005539static struct nfsd_file *
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005540nfs4_find_file(struct nfs4_stid *s, int flags)
5541{
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005542 if (!s)
5543 return NULL;
5544
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005545 switch (s->sc_type) {
5546 case NFS4_DELEG_STID:
5547 if (WARN_ON_ONCE(!s->sc_file->fi_deleg_file))
5548 return NULL;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005549 return nfsd_file_get(s->sc_file->fi_deleg_file);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005550 case NFS4_OPEN_STID:
5551 case NFS4_LOCK_STID:
5552 if (flags & RD_STATE)
5553 return find_readable_file(s->sc_file);
5554 else
5555 return find_writeable_file(s->sc_file);
5556 break;
5557 }
5558
5559 return NULL;
5560}
5561
5562static __be32
J. Bruce Fieldsd8836f72018-11-05 20:04:06 -05005563nfs4_check_olstateid(struct nfs4_ol_stateid *ols, int flags)
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005564{
5565 __be32 status;
5566
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005567 status = nfsd4_check_openowner_confirmed(ols);
5568 if (status)
5569 return status;
5570 return nfs4_check_openmode(ols, flags);
5571}
5572
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005573static __be32
5574nfs4_check_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfs4_stid *s,
Jeff Layton5c4583b2019-08-18 14:18:54 -04005575 struct nfsd_file **nfp, int flags)
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005576{
5577 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005578 struct nfsd_file *nf;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005579 __be32 status;
5580
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005581 nf = nfs4_find_file(s, flags);
5582 if (nf) {
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005583 status = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
5584 acc | NFSD_MAY_OWNER_OVERRIDE);
Jeff Layton5c4583b2019-08-18 14:18:54 -04005585 if (status) {
5586 nfsd_file_put(nf);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005587 goto out;
Jeff Layton5c4583b2019-08-18 14:18:54 -04005588 }
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005589 } else {
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005590 status = nfsd_file_acquire(rqstp, fhp, acc, &nf);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005591 if (status)
5592 return status;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005593 }
Jeff Layton5c4583b2019-08-18 14:18:54 -04005594 *nfp = nf;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005595out:
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005596 return status;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005597}
5598
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599/*
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005600 * Checks for stateid operations
5601 */
Al Virob37ad282006-10-19 23:28:59 -07005602__be32
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005603nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01005604 struct nfsd4_compound_state *cstate, struct svc_fh *fhp,
Jeff Layton5c4583b2019-08-18 14:18:54 -04005605 stateid_t *stateid, int flags, struct nfsd_file **nfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606{
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005607 struct inode *ino = d_inode(fhp->fh_dentry);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005608 struct net *net = SVC_NET(rqstp);
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005609 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005610 struct nfs4_stid *s = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005611 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
Jeff Layton5c4583b2019-08-18 14:18:54 -04005613 if (nfp)
5614 *nfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005616 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 return nfserr_grace;
5618
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005619 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
5620 status = check_special_stateids(net, fhp, stateid, flags);
5621 goto done;
5622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005624 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04005625 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005626 &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005627 if (status)
Trond Myklebustc2d1d6a2014-07-30 08:27:25 -04005628 return status;
Trond Myklebust03da3162017-11-03 08:00:16 -04005629 status = nfsd4_stid_check_stateid_generation(stateid, s,
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005630 nfsd4_has_session(cstate));
J. Bruce Fields69064a22011-09-09 11:54:57 -04005631 if (status)
5632 goto out;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005633
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005634 switch (s->sc_type) {
5635 case NFS4_DELEG_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005636 status = nfs4_check_delegmode(delegstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005637 break;
5638 case NFS4_OPEN_STID:
5639 case NFS4_LOCK_STID:
J. Bruce Fieldsd8836f72018-11-05 20:04:06 -05005640 status = nfs4_check_olstateid(openlockstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005641 break;
5642 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04005643 status = nfserr_bad_stateid;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005644 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645 }
Jeff Layton8fcd4612015-07-30 06:57:46 -04005646 if (status)
5647 goto out;
5648 status = nfs4_check_fh(fhp, s);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005649
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005650done:
Jeff Layton5c4583b2019-08-18 14:18:54 -04005651 if (status == nfs_ok && nfp)
5652 status = nfs4_check_file(rqstp, fhp, s, nfp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653out:
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005654 if (s)
5655 nfs4_put_stid(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656 return status;
5657}
5658
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005659/*
Bryan Schumaker17456802011-07-13 10:50:48 -04005660 * Test if the stateid is valid
5661 */
5662__be32
5663nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005664 union nfsd4_op_u *u)
Bryan Schumaker17456802011-07-13 10:50:48 -04005665{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005666 struct nfsd4_test_stateid *test_stateid = &u->test_stateid;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005667 struct nfsd4_test_stateid_id *stateid;
5668 struct nfs4_client *cl = cstate->session->se_client;
5669
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005670 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04005671 stateid->ts_id_status =
5672 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005673
Bryan Schumaker17456802011-07-13 10:50:48 -04005674 return nfs_ok;
5675}
5676
Chuck Lever42691392016-08-11 10:37:30 -04005677static __be32
5678nfsd4_free_lock_stateid(stateid_t *stateid, struct nfs4_stid *s)
5679{
5680 struct nfs4_ol_stateid *stp = openlockstateid(s);
5681 __be32 ret;
5682
Trond Myklebust659aefb2017-11-03 08:00:13 -04005683 ret = nfsd4_lock_ol_stateid(stp);
5684 if (ret)
5685 goto out_put_stid;
Chuck Lever42691392016-08-11 10:37:30 -04005686
5687 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5688 if (ret)
5689 goto out;
5690
5691 ret = nfserr_locks_held;
5692 if (check_for_locks(stp->st_stid.sc_file,
5693 lockowner(stp->st_stateowner)))
5694 goto out;
5695
5696 release_lock_stateid(stp);
5697 ret = nfs_ok;
5698
5699out:
5700 mutex_unlock(&stp->st_mutex);
Trond Myklebust659aefb2017-11-03 08:00:13 -04005701out_put_stid:
Chuck Lever42691392016-08-11 10:37:30 -04005702 nfs4_put_stid(s);
5703 return ret;
5704}
5705
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005706__be32
5707nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005708 union nfsd4_op_u *u)
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005709{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005710 struct nfsd4_free_stateid *free_stateid = &u->free_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005711 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005712 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005713 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005714 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005715 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005716
Jeff Layton1af71cc2014-07-29 21:34:14 -04005717 spin_lock(&cl->cl_lock);
5718 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005719 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005720 goto out_unlock;
Trond Myklebust03da3162017-11-03 08:00:16 -04005721 spin_lock(&s->sc_lock);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005722 switch (s->sc_type) {
5723 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005724 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005725 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005726 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005727 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5728 if (ret)
5729 break;
5730 ret = nfserr_locks_held;
5731 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005732 case NFS4_LOCK_STID:
Trond Myklebust03da3162017-11-03 08:00:16 -04005733 spin_unlock(&s->sc_lock);
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03005734 refcount_inc(&s->sc_count);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005735 spin_unlock(&cl->cl_lock);
Chuck Lever42691392016-08-11 10:37:30 -04005736 ret = nfsd4_free_lock_stateid(stateid, s);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005737 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005738 case NFS4_REVOKED_DELEG_STID:
Trond Myklebust03da3162017-11-03 08:00:16 -04005739 spin_unlock(&s->sc_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005740 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005741 list_del_init(&dp->dl_recall_lru);
5742 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04005743 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005744 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005745 goto out;
5746 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005747 }
Trond Myklebust03da3162017-11-03 08:00:16 -04005748 spin_unlock(&s->sc_lock);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005749out_unlock:
5750 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005751out:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005752 return ret;
5753}
5754
NeilBrown4c4cd222005-07-07 17:59:27 -07005755static inline int
5756setlkflg (int type)
5757{
5758 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
5759 RD_STATE : WR_STATE;
5760}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005762static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005763{
5764 struct svc_fh *current_fh = &cstate->current_fh;
5765 struct nfs4_stateowner *sop = stp->st_stateowner;
5766 __be32 status;
5767
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005768 status = nfsd4_check_seqid(cstate, sop, seqid);
5769 if (status)
5770 return status;
Trond Myklebust9271d7e2017-11-03 08:00:15 -04005771 status = nfsd4_lock_ol_stateid(stp);
5772 if (status != nfs_ok)
5773 return status;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005774 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
Jeff Layton35a92fe2015-09-17 07:47:08 -04005775 if (status == nfs_ok)
5776 status = nfs4_check_fh(current_fh, &stp->st_stid);
5777 if (status != nfs_ok)
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005778 mutex_unlock(&stp->st_mutex);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005779 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005780}
5781
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782/*
5783 * Checks for sequence id mutating operations.
5784 */
Al Virob37ad282006-10-19 23:28:59 -07005785static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03005786nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04005787 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005788 struct nfs4_ol_stateid **stpp,
5789 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790{
J. Bruce Fields0836f582008-01-26 19:08:12 -05005791 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005792 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005793 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005795 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
5796 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07005797
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005799 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005800 if (status)
5801 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005802 stp = openlockstateid(s);
Jeff Layton58fb12e2014-07-29 21:34:27 -04005803 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005805 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
Trond Myklebustfd911012014-07-29 21:34:24 -04005806 if (!status)
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005807 *stpp = stp;
Trond Myklebustfd911012014-07-29 21:34:24 -04005808 else
5809 nfs4_put_stid(&stp->st_stid);
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005810 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005811}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05005812
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005813static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
5814 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005815{
5816 __be32 status;
5817 struct nfs4_openowner *oo;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005818 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005820 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005821 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04005822 if (status)
5823 return status;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005824 oo = openowner(stp->st_stateowner);
5825 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005826 mutex_unlock(&stp->st_mutex);
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005827 nfs4_put_stid(&stp->st_stid);
NeilBrown3a4f98b2005-07-07 17:59:26 -07005828 return nfserr_bad_stateid;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005829 }
5830 *stpp = stp;
NeilBrown3a4f98b2005-07-07 17:59:26 -07005831 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832}
5833
Al Virob37ad282006-10-19 23:28:59 -07005834__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005835nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005836 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005838 struct nfsd4_open_confirm *oc = &u->open_confirm;
Al Virob37ad282006-10-19 23:28:59 -07005839 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005840 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005841 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005842 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
Al Viroa6a9f182013-09-16 10:57:01 -04005844 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
5845 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005847 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07005848 if (status)
5849 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005851 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005852 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005853 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005854 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005855 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005856 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005857 status = nfserr_bad_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005858 if (oo->oo_flags & NFS4_OO_CONFIRMED) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005859 mutex_unlock(&stp->st_mutex);
Trond Myklebust2585fc72014-07-29 21:34:21 -04005860 goto put_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005861 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04005862 oo->oo_flags |= NFS4_OO_CONFIRMED;
Jeff Layton9767feb2015-10-01 09:05:50 -04005863 nfs4_inc_and_copy_stateid(&oc->oc_resp_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005864 mutex_unlock(&stp->st_mutex);
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005865 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005866 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07005867
Jeff Layton2a4317c2012-03-21 16:42:43 -04005868 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005869 status = nfs_ok;
Trond Myklebust2585fc72014-07-29 21:34:21 -04005870put_stateid:
5871 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005873 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874 return status;
5875}
5876
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005877static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005879 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005880 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04005881 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04005882 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005883}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04005884
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005885static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
5886{
5887 switch (to_access) {
5888 case NFS4_SHARE_ACCESS_READ:
5889 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
5890 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
5891 break;
5892 case NFS4_SHARE_ACCESS_WRITE:
5893 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
5894 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
5895 break;
5896 case NFS4_SHARE_ACCESS_BOTH:
5897 break;
5898 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005899 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900 }
5901}
5902
Al Virob37ad282006-10-19 23:28:59 -07005903__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005904nfsd4_open_downgrade(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005905 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005907 struct nfsd4_open_downgrade *od = &u->open_downgrade;
Al Virob37ad282006-10-19 23:28:59 -07005908 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005909 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005910 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911
Al Viroa6a9f182013-09-16 10:57:01 -04005912 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
5913 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04005915 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02005916 if (od->od_deleg_want)
5917 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
5918 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005920 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005921 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005922 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005925 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04005926 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 stp->st_access_bmap, od->od_share_access);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005928 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04005930 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04005931 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932 stp->st_deny_bmap, od->od_share_deny);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005933 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005935 nfs4_stateid_downgrade(stp, od->od_share_access);
Jeff Laytonce0fc432012-05-11 09:45:14 -04005936 reset_union_bmap_deny(od->od_share_deny, stp);
Jeff Layton9767feb2015-10-01 09:05:50 -04005937 nfs4_inc_and_copy_stateid(&od->od_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938 status = nfs_ok;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005939put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005940 mutex_unlock(&stp->st_mutex);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005941 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005943 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944 return status;
5945}
5946
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005947static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
5948{
Trond Myklebustacf92952014-06-30 11:48:37 -04005949 struct nfs4_client *clp = s->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04005950 bool unhashed;
Jeff Laytond83017f2014-07-29 21:34:42 -04005951 LIST_HEAD(reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04005952
Jeff Layton2c41beb2014-07-29 21:34:41 -04005953 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04005954 unhashed = unhash_open_stateid(s, &reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04005955
Jeff Laytond83017f2014-07-29 21:34:42 -04005956 if (clp->cl_minorversion) {
Jeff Laytone8568732015-08-24 12:41:47 -04005957 if (unhashed)
5958 put_ol_stateid_locked(s, &reaplist);
Jeff Laytond83017f2014-07-29 21:34:42 -04005959 spin_unlock(&clp->cl_lock);
5960 free_ol_stateid_reaplist(&reaplist);
5961 } else {
5962 spin_unlock(&clp->cl_lock);
5963 free_ol_stateid_reaplist(&reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04005964 if (unhashed)
5965 move_to_close_lru(s, clp->net);
Jeff Laytond83017f2014-07-29 21:34:42 -04005966 }
J. Bruce Fields38c387b2011-09-16 17:42:48 -04005967}
5968
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969/*
5970 * nfs4_unlock_state() called after encode
5971 */
Al Virob37ad282006-10-19 23:28:59 -07005972__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005973nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005974 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005976 struct nfsd4_close *close = &u->close;
Al Virob37ad282006-10-19 23:28:59 -07005977 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005978 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005979 struct net *net = SVC_NET(rqstp);
5980 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
Al Viroa6a9f182013-09-16 10:57:01 -04005982 dprintk("NFSD: nfsd4_close on file %pd\n",
5983 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005985 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
5986 &close->cl_stateid,
5987 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005988 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005989 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005990 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 goto out;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04005992
5993 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Laytonbd2deca2018-02-15 15:16:18 -05005994
5995 /*
5996 * Technically we don't _really_ have to increment or copy it, since
5997 * it should just be gone after this operation and we clobber the
5998 * copied value below, but we continue to do so here just to ensure
5999 * that racing ops see that there was a state change.
6000 */
Jeff Layton9767feb2015-10-01 09:05:50 -04006001 nfs4_inc_and_copy_stateid(&close->cl_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04006003 nfsd4_close_open_stateid(stp);
Trond Myklebust15ca08d2017-11-03 08:00:10 -04006004 mutex_unlock(&stp->st_mutex);
Trond Myklebust8a0b5892014-07-29 21:34:20 -04006005
Jeff Laytonbd2deca2018-02-15 15:16:18 -05006006 /* v4.1+ suggests that we send a special stateid in here, since the
6007 * clients should just ignore this anyway. Since this is not useful
6008 * for v4.0 clients either, we set it to the special close_stateid
6009 * universally.
6010 *
6011 * See RFC5661 section 18.2.4, and RFC7530 section 16.2.5
6012 */
6013 memcpy(&close->cl_stateid, &close_stateid, sizeof(close->cl_stateid));
Trond Myklebustfb500a72017-11-03 08:00:12 -04006014
Trond Myklebust8a0b5892014-07-29 21:34:20 -04006015 /* put reference from nfs4_preprocess_seqid_op */
6016 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018 return status;
6019}
6020
Al Virob37ad282006-10-19 23:28:59 -07006021__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006022nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006023 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006025 struct nfsd4_delegreturn *dr = &u->delegreturn;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006026 struct nfs4_delegation *dp;
6027 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006028 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07006029 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006030 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006032 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006033 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Trond Myklebust2dd6e452014-06-30 11:48:43 -04006035 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006036 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006037 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006038 dp = delegstateid(s);
Trond Myklebust03da3162017-11-03 08:00:16 -04006039 status = nfsd4_stid_check_stateid_generation(stateid, &dp->dl_stid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006040 if (status)
Trond Myklebustfd911012014-07-29 21:34:24 -04006041 goto put_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006042
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04006043 destroy_delegation(dp);
Trond Myklebustfd911012014-07-29 21:34:24 -04006044put_stateid:
6045 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046out:
6047 return status;
6048}
6049
Benny Halevy87df4de2008-12-15 19:42:03 +02006050static inline u64
6051end_offset(u64 start, u64 len)
6052{
6053 u64 end;
6054
6055 end = start + len;
6056 return end >= start ? end: NFS4_MAX_UINT64;
6057}
6058
6059/* last octet in a range */
6060static inline u64
6061last_byte_offset(u64 start, u64 len)
6062{
6063 u64 end;
6064
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006065 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02006066 end = start + len;
6067 return end > start ? end - 1: NFS4_MAX_UINT64;
6068}
6069
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070/*
6071 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
6072 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
6073 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
6074 * locking, this prevents us from being completely protocol-compliant. The
6075 * real solution to this problem is to start using unsigned file offsets in
6076 * the VFS, but this is a very deep change!
6077 */
6078static inline void
6079nfs4_transform_lock_offset(struct file_lock *lock)
6080{
6081 if (lock->fl_start < 0)
6082 lock->fl_start = OFFSET_MAX;
6083 if (lock->fl_end < 0)
6084 lock->fl_end = OFFSET_MAX;
6085}
6086
Jeff Laytoncae80b32015-04-03 09:04:04 -04006087static fl_owner_t
6088nfsd4_fl_get_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04006089{
Jeff Laytoncae80b32015-04-03 09:04:04 -04006090 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
6091
6092 nfs4_get_stateowner(&lo->lo_owner);
6093 return owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04006094}
6095
Jeff Laytoncae80b32015-04-03 09:04:04 -04006096static void
6097nfsd4_fl_put_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04006098{
Jeff Laytoncae80b32015-04-03 09:04:04 -04006099 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04006100
Jeff Laytoncae80b32015-04-03 09:04:04 -04006101 if (lo)
Kinglong Meeaef95832014-08-22 10:18:44 -04006102 nfs4_put_stateowner(&lo->lo_owner);
Kinglong Meeaef95832014-08-22 10:18:44 -04006103}
6104
Jeff Layton76d348f2016-09-16 16:28:24 -04006105static void
6106nfsd4_lm_notify(struct file_lock *fl)
6107{
6108 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)fl->fl_owner;
6109 struct net *net = lo->lo_owner.so_client->net;
6110 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
6111 struct nfsd4_blocked_lock *nbl = container_of(fl,
6112 struct nfsd4_blocked_lock, nbl_lock);
6113 bool queue = false;
6114
Jeff Layton7919d0a2016-09-16 16:28:25 -04006115 /* An empty list means that something else is going to be using it */
Jeff Layton0cc11a62016-10-20 09:34:31 -04006116 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006117 if (!list_empty(&nbl->nbl_list)) {
6118 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006119 list_del_init(&nbl->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -04006120 queue = true;
6121 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04006122 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006123
6124 if (queue)
6125 nfsd4_run_cb(&nbl->nbl_cb);
6126}
6127
Alexey Dobriyan7b021962009-09-21 17:01:12 -07006128static const struct lock_manager_operations nfsd_posix_mng_ops = {
Jeff Layton76d348f2016-09-16 16:28:24 -04006129 .lm_notify = nfsd4_lm_notify,
Kinglong Meeaef95832014-08-22 10:18:44 -04006130 .lm_get_owner = nfsd4_fl_get_owner,
6131 .lm_put_owner = nfsd4_fl_put_owner,
NeilBrownd5b90262006-04-10 22:55:22 -07006132};
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
6134static inline void
6135nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
6136{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006137 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138
NeilBrownd5b90262006-04-10 22:55:22 -07006139 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006140 lo = (struct nfs4_lockowner *) fl->fl_owner;
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04006141 xdr_netobj_dup(&deny->ld_owner, &lo->lo_owner.so_owner,
6142 GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04006143 if (!deny->ld_owner.data)
6144 /* We just don't care that much */
6145 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006146 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07006147 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04006148nevermind:
6149 deny->ld_owner.len = 0;
6150 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07006151 deny->ld_clientid.cl_boot = 0;
6152 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153 }
6154 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02006155 deny->ld_length = NFS4_MAX_UINT64;
6156 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157 deny->ld_length = fl->fl_end - fl->fl_start + 1;
6158 deny->ld_type = NFS4_READ_LT;
6159 if (fl->fl_type != F_RDLCK)
6160 deny->ld_type = NFS4_WRITE_LT;
6161}
6162
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006163static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08006164find_lockowner_str_locked(struct nfs4_client *clp, struct xdr_netobj *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165{
Trond Myklebustd4f04892014-07-29 21:34:36 -04006166 unsigned int strhashval = ownerstr_hashval(owner);
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04006167 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168
Trond Myklebust0a880a22014-07-30 08:27:10 -04006169 lockdep_assert_held(&clp->cl_lock);
6170
Trond Myklebustd4f04892014-07-29 21:34:36 -04006171 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[strhashval],
6172 so_strhash) {
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04006173 if (so->so_is_open_owner)
6174 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -04006175 if (same_owner_str(so, owner))
6176 return lockowner(nfs4_get_stateowner(so));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177 }
6178 return NULL;
6179}
6180
Trond Myklebustc58c6612014-07-29 21:34:35 -04006181static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08006182find_lockowner_str(struct nfs4_client *clp, struct xdr_netobj *owner)
Trond Myklebustc58c6612014-07-29 21:34:35 -04006183{
6184 struct nfs4_lockowner *lo;
6185
Trond Myklebustd4f04892014-07-29 21:34:36 -04006186 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08006187 lo = find_lockowner_str_locked(clp, owner);
Trond Myklebustd4f04892014-07-29 21:34:36 -04006188 spin_unlock(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006189 return lo;
6190}
6191
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006192static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
6193{
Trond Myklebustc58c6612014-07-29 21:34:35 -04006194 unhash_lockowner_locked(lockowner(sop));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006195}
6196
Jeff Layton6b180f02014-07-29 21:34:26 -04006197static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
6198{
6199 struct nfs4_lockowner *lo = lockowner(sop);
6200
6201 kmem_cache_free(lockowner_slab, lo);
6202}
6203
6204static const struct nfs4_stateowner_operations lockowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006205 .so_unhash = nfs4_unhash_lockowner,
6206 .so_free = nfs4_free_lockowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04006207};
6208
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209/*
6210 * Alloc a lock owner structure.
6211 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006212 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05006214 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006216static struct nfs4_lockowner *
Trond Myklebustc58c6612014-07-29 21:34:35 -04006217alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp,
6218 struct nfs4_ol_stateid *open_stp,
6219 struct nfsd4_lock *lock)
6220{
Trond Myklebustc58c6612014-07-29 21:34:35 -04006221 struct nfs4_lockowner *lo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006223 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
6224 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225 return NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04006226 INIT_LIST_HEAD(&lo->lo_blocked);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006227 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
6228 lo->lo_owner.so_is_open_owner = 0;
Jeff Layton5db1c032014-07-29 21:34:28 -04006229 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
Jeff Layton6b180f02014-07-29 21:34:26 -04006230 lo->lo_owner.so_ops = &lockowner_ops;
Trond Myklebustd4f04892014-07-29 21:34:36 -04006231 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08006232 ret = find_lockowner_str_locked(clp, &lock->lk_new_owner);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006233 if (ret == NULL) {
6234 list_add(&lo->lo_owner.so_strhash,
Trond Myklebustd4f04892014-07-29 21:34:36 -04006235 &clp->cl_ownerstr_hashtbl[strhashval]);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006236 ret = lo;
6237 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08006238 nfs4_free_stateowner(&lo->lo_owner);
6239
Trond Myklebustd4f04892014-07-29 21:34:36 -04006240 spin_unlock(&clp->cl_lock);
J. Bruce Fields340f0ba2015-03-23 11:02:30 -04006241 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242}
6243
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006244static struct nfs4_ol_stateid *
6245find_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp)
6246{
6247 struct nfs4_ol_stateid *lst;
6248 struct nfs4_client *clp = lo->lo_owner.so_client;
6249
6250 lockdep_assert_held(&clp->cl_lock);
6251
6252 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) {
6253 if (lst->st_stid.sc_type != NFS4_LOCK_STID)
6254 continue;
6255 if (lst->st_stid.sc_file == fp) {
6256 refcount_inc(&lst->st_stid.sc_count);
6257 return lst;
6258 }
6259 }
6260 return NULL;
6261}
6262
Trond Myklebustbeeca192017-11-03 08:00:14 -04006263static struct nfs4_ol_stateid *
Jeff Layton356a95e2014-07-29 21:34:13 -04006264init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
6265 struct nfs4_file *fp, struct inode *inode,
6266 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04006268 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustbeeca192017-11-03 08:00:14 -04006269 struct nfs4_ol_stateid *retstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270
Trond Myklebustbeeca192017-11-03 08:00:14 -04006271 mutex_init(&stp->st_mutex);
Andrew Elble4f34bd02017-11-08 17:29:51 -05006272 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006273retry:
6274 spin_lock(&clp->cl_lock);
6275 spin_lock(&fp->fi_lock);
6276 retstp = find_lock_stateid(lo, fp);
6277 if (retstp)
6278 goto out_unlock;
Jeff Layton356a95e2014-07-29 21:34:13 -04006279
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03006280 refcount_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05006281 stp->st_stid.sc_type = NFS4_LOCK_STID;
Kinglong Meeb5971af2014-08-22 10:18:43 -04006282 stp->st_stateowner = nfs4_get_stateowner(&lo->lo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07006283 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04006284 stp->st_stid.sc_file = fp;
J. Bruce Fields0997b172011-03-02 18:01:35 -05006285 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07006287 stp->st_openstp = open_stp;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006288 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04006289 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04006290 list_add(&stp->st_perfile, &fp->fi_stateids);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006291out_unlock:
Trond Myklebust1d31a252014-07-10 14:07:25 -04006292 spin_unlock(&fp->fi_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006293 spin_unlock(&clp->cl_lock);
6294 if (retstp) {
6295 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
6296 nfs4_put_stid(&retstp->st_stid);
6297 goto retry;
6298 }
6299 /* To keep mutex tracking happy */
6300 mutex_unlock(&stp->st_mutex);
6301 stp = retstp;
6302 }
6303 return stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304}
6305
Jeff Laytonc53530d2014-06-30 11:48:39 -04006306static struct nfs4_ol_stateid *
Jeff Layton356a95e2014-07-29 21:34:13 -04006307find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
6308 struct inode *inode, struct nfs4_ol_stateid *ost,
6309 bool *new)
6310{
6311 struct nfs4_stid *ns = NULL;
6312 struct nfs4_ol_stateid *lst;
6313 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
6314 struct nfs4_client *clp = oo->oo_owner.so_client;
6315
Trond Myklebustbeeca192017-11-03 08:00:14 -04006316 *new = false;
Jeff Layton356a95e2014-07-29 21:34:13 -04006317 spin_lock(&clp->cl_lock);
6318 lst = find_lock_stateid(lo, fi);
Jeff Layton356a95e2014-07-29 21:34:13 -04006319 spin_unlock(&clp->cl_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006320 if (lst != NULL) {
6321 if (nfsd4_lock_ol_stateid(lst) == nfs_ok)
6322 goto out;
6323 nfs4_put_stid(&lst->st_stid);
6324 }
6325 ns = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_lock_stateid);
6326 if (ns == NULL)
6327 return NULL;
6328
6329 lst = init_lock_stateid(openlockstateid(ns), lo, fi, inode, ost);
6330 if (lst == openlockstateid(ns))
6331 *new = true;
6332 else
Jeff Layton356a95e2014-07-29 21:34:13 -04006333 nfs4_put_stid(ns);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006334out:
Jeff Layton356a95e2014-07-29 21:34:13 -04006335 return lst;
6336}
Jeff Laytonc53530d2014-06-30 11:48:39 -04006337
NeilBrownfd39ca92005-06-23 22:04:03 -07006338static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339check_lock_length(u64 offset, u64 length)
6340{
Kinglong Meee7969312015-07-13 17:34:19 +08006341 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
6342 (length > ~offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343}
6344
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006345static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006346{
Trond Myklebust11b91642014-07-29 21:34:08 -04006347 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05006348
Jeff Layton7214e862014-07-10 14:07:33 -04006349 lockdep_assert_held(&fp->fi_lock);
6350
Jeff Layton82c5ff12012-05-11 09:45:13 -04006351 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05006352 return;
Jeff Layton12659652014-07-10 14:07:28 -04006353 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04006354 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05006355}
6356
Jeff Layton356a95e2014-07-29 21:34:13 -04006357static __be32
6358lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
6359 struct nfs4_ol_stateid *ost,
6360 struct nfsd4_lock *lock,
Jeff Laytondd257932016-08-11 10:37:39 -04006361 struct nfs4_ol_stateid **plst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006362{
Jeff Layton5db1c032014-07-29 21:34:28 -04006363 __be32 status;
Trond Myklebust11b91642014-07-29 21:34:08 -04006364 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006365 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
6366 struct nfs4_client *cl = oo->oo_owner.so_client;
David Howells2b0143b2015-03-17 22:25:59 +00006367 struct inode *inode = d_inode(cstate->current_fh.fh_dentry);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006368 struct nfs4_lockowner *lo;
Jeff Laytondd257932016-08-11 10:37:39 -04006369 struct nfs4_ol_stateid *lst;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006370 unsigned int strhashval;
6371
Kinglong Meec8623992015-07-13 17:35:37 +08006372 lo = find_lockowner_str(cl, &lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04006373 if (!lo) {
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006374 strhashval = ownerstr_hashval(&lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04006375 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
6376 if (lo == NULL)
6377 return nfserr_jukebox;
6378 } else {
6379 /* with an existing lockowner, seqids must be the same */
Jeff Layton5db1c032014-07-29 21:34:28 -04006380 status = nfserr_bad_seqid;
Jeff Laytonc53530d2014-06-30 11:48:39 -04006381 if (!cstate->minorversion &&
6382 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
Jeff Layton5db1c032014-07-29 21:34:28 -04006383 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006384 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04006385
Jeff Laytondd257932016-08-11 10:37:39 -04006386 lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
6387 if (lst == NULL) {
Jeff Layton5db1c032014-07-29 21:34:28 -04006388 status = nfserr_jukebox;
6389 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006390 }
Jeff Laytondd257932016-08-11 10:37:39 -04006391
Jeff Layton5db1c032014-07-29 21:34:28 -04006392 status = nfs_ok;
Jeff Laytondd257932016-08-11 10:37:39 -04006393 *plst = lst;
Jeff Layton5db1c032014-07-29 21:34:28 -04006394out:
6395 nfs4_put_stateowner(&lo->lo_owner);
6396 return status;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006397}
6398
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399/*
6400 * LOCK operation
6401 */
Al Virob37ad282006-10-19 23:28:59 -07006402__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006403nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006404 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006406 struct nfsd4_lock *lock = &u->lock;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006407 struct nfs4_openowner *open_sop = NULL;
6408 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006409 struct nfs4_ol_stateid *lock_stp = NULL;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006410 struct nfs4_ol_stateid *open_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04006411 struct nfs4_file *fp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006412 struct nfsd_file *nf = NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04006413 struct nfsd4_blocked_lock *nbl = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006414 struct file_lock *file_lock = NULL;
6415 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006416 __be32 status = 0;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006417 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07006418 int err;
Jeff Layton5db1c032014-07-29 21:34:28 -04006419 bool new = false;
Jeff Layton76d348f2016-09-16 16:28:24 -04006420 unsigned char fl_type;
6421 unsigned int fl_flags = FL_POSIX;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006422 struct net *net = SVC_NET(rqstp);
6423 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
6425 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
6426 (long long) lock->lk_offset,
6427 (long long) lock->lk_length);
6428
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 if (check_lock_length(lock->lk_offset, lock->lk_length))
6430 return nfserr_inval;
6431
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006432 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02006433 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08006434 dprintk("NFSD: nfsd4_lock: permission denied!\n");
6435 return status;
6436 }
6437
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438 if (lock->lk_is_new) {
J. Bruce Fields684e5632011-11-04 17:08:10 -04006439 if (nfsd4_has_session(cstate))
6440 /* See rfc 5661 18.10.3: given clientid is ignored: */
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006441 memcpy(&lock->lk_new_clientid,
J. Bruce Fields684e5632011-11-04 17:08:10 -04006442 &cstate->session->se_client->cl_clientid,
6443 sizeof(clientid_t));
6444
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04006446 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006450 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451 lock->lk_new_open_seqid,
6452 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006453 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07006454 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455 goto out;
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006456 mutex_unlock(&open_stp->st_mutex);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006457 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006458 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04006459 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006460 &lock->lk_new_clientid))
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006461 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006462 status = lookup_or_create_lock_state(cstate, open_stp, lock,
Jeff Layton5db1c032014-07-29 21:34:28 -04006463 &lock_stp, &new);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006464 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03006465 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006466 lock->lk_old_lock_seqid,
6467 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006468 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006469 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04006470 if (status)
6471 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006472 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006474 lkflg = setlkflg(lock->lk_type);
6475 status = nfs4_check_openmode(lock_stp, lkflg);
6476 if (status)
6477 goto out;
6478
NeilBrown0dd395d2005-07-07 17:59:15 -07006479 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006480 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07006481 goto out;
6482 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006483 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07006484 goto out;
6485
Trond Myklebust11b91642014-07-29 21:34:08 -04006486 fp = lock_stp->st_stid.sc_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487 switch (lock->lk_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488 case NFS4_READW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04006489 if (nfsd4_has_session(cstate))
6490 fl_flags |= FL_SLEEP;
6491 /* Fallthrough */
6492 case NFS4_READ_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04006493 spin_lock(&fp->fi_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006494 nf = find_readable_file_locked(fp);
6495 if (nf)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006496 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04006497 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006498 fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05006499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500 case NFS4_WRITEW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04006501 if (nfsd4_has_session(cstate))
6502 fl_flags |= FL_SLEEP;
6503 /* Fallthrough */
6504 case NFS4_WRITE_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04006505 spin_lock(&fp->fi_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006506 nf = find_writeable_file_locked(fp);
6507 if (nf)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006508 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04006509 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006510 fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05006511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512 default:
6513 status = nfserr_inval;
6514 goto out;
6515 }
Jeff Layton76d348f2016-09-16 16:28:24 -04006516
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006517 if (!nf) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006518 status = nfserr_openmode;
6519 goto out;
6520 }
Kinglong Meeaef95832014-08-22 10:18:44 -04006521
Jeff Layton76d348f2016-09-16 16:28:24 -04006522 nbl = find_or_allocate_block(lock_sop, &fp->fi_fhandle, nn);
6523 if (!nbl) {
6524 dprintk("NFSD: %s: unable to allocate block!\n", __func__);
6525 status = nfserr_jukebox;
6526 goto out;
6527 }
6528
6529 file_lock = &nbl->nbl_lock;
6530 file_lock->fl_type = fl_type;
Kinglong Meeaef95832014-08-22 10:18:44 -04006531 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lock_sop->lo_owner));
Jeff Layton21179d82012-08-21 08:03:32 -04006532 file_lock->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006533 file_lock->fl_file = nf->nf_file;
Jeff Layton76d348f2016-09-16 16:28:24 -04006534 file_lock->fl_flags = fl_flags;
Jeff Layton21179d82012-08-21 08:03:32 -04006535 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6536 file_lock->fl_start = lock->lk_offset;
6537 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
6538 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539
Jeff Layton21179d82012-08-21 08:03:32 -04006540 conflock = locks_alloc_lock();
6541 if (!conflock) {
6542 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6543 status = nfserr_jukebox;
6544 goto out;
6545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546
Jeff Layton76d348f2016-09-16 16:28:24 -04006547 if (fl_flags & FL_SLEEP) {
Jeff Layton7919d0a2016-09-16 16:28:25 -04006548 nbl->nbl_time = jiffies;
Jeff Layton0cc11a62016-10-20 09:34:31 -04006549 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006550 list_add_tail(&nbl->nbl_list, &lock_sop->lo_blocked);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006551 list_add_tail(&nbl->nbl_lru, &nn->blocked_locks_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006552 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006553 }
6554
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006555 err = vfs_lock_file(nf->nf_file, F_SETLK, file_lock, conflock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006556 switch (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 case 0: /* success! */
Jeff Layton9767feb2015-10-01 09:05:50 -04006558 nfs4_inc_and_copy_stateid(&lock->lk_resp_stateid, &lock_stp->st_stid);
Al Virob8dd7b92006-10-19 23:29:01 -07006559 status = 0;
J. Bruce Fields03f318c2018-06-08 12:28:47 -04006560 if (lock->lk_reclaim)
6561 nn->somebody_reclaimed = true;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006562 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006563 case FILE_LOCK_DEFERRED:
6564 nbl = NULL;
6565 /* Fallthrough */
6566 case -EAGAIN: /* conflock holds conflicting lock */
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006567 status = nfserr_denied;
6568 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04006569 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006570 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006571 case -EDEADLK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006573 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04006574 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05006575 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04006576 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006577 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579out:
Jeff Layton76d348f2016-09-16 16:28:24 -04006580 if (nbl) {
6581 /* dequeue it if we queued it before */
6582 if (fl_flags & FL_SLEEP) {
Jeff Layton0cc11a62016-10-20 09:34:31 -04006583 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006584 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006585 list_del_init(&nbl->nbl_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006586 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006587 }
6588 free_blocked_lock(nbl);
6589 }
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006590 if (nf)
6591 nfsd_file_put(nf);
Jeff Layton5db1c032014-07-29 21:34:28 -04006592 if (lock_stp) {
6593 /* Bump seqid manually if the 4.0 replay owner is openowner */
6594 if (cstate->replay_owner &&
6595 cstate->replay_owner != &lock_sop->lo_owner &&
6596 seqid_mutating_err(ntohl(status)))
6597 lock_sop->lo_owner.so_seqid++;
6598
6599 /*
6600 * If this is a new, never-before-used stateid, and we are
6601 * returning an error, then just go ahead and release it.
6602 */
J. Bruce Fields25020722018-01-17 16:25:59 -05006603 if (status && new)
Jeff Layton5db1c032014-07-29 21:34:28 -04006604 release_lock_stateid(lock_stp);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006605
6606 mutex_unlock(&lock_stp->st_mutex);
Jeff Layton5db1c032014-07-29 21:34:28 -04006607
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006608 nfs4_put_stid(&lock_stp->st_stid);
Jeff Layton5db1c032014-07-29 21:34:28 -04006609 }
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006610 if (open_stp)
6611 nfs4_put_stid(&open_stp->st_stid);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006612 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006613 if (conflock)
6614 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615 return status;
6616}
6617
6618/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006619 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
6620 * so we do a temporary open here just to get an open file to pass to
6621 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
6622 * inode operation.)
6623 */
Al Viro04da6e92012-04-13 00:00:04 -04006624static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006625{
Jeff Layton6b556ca2019-08-18 14:18:55 -04006626 struct nfsd_file *nf;
6627 __be32 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf);
Al Viro04da6e92012-04-13 00:00:04 -04006628 if (!err) {
Jeff Layton6b556ca2019-08-18 14:18:55 -04006629 err = nfserrno(vfs_test_lock(nf->nf_file, lock));
6630 nfsd_file_put(nf);
Al Viro04da6e92012-04-13 00:00:04 -04006631 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006632 return err;
6633}
6634
6635/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636 * LOCKT operation
6637 */
Al Virob37ad282006-10-19 23:28:59 -07006638__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006639nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006640 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006642 struct nfsd4_lockt *lockt = &u->lockt;
Jeff Layton21179d82012-08-21 08:03:32 -04006643 struct file_lock *file_lock = NULL;
Jeff Layton5db1c032014-07-29 21:34:28 -04006644 struct nfs4_lockowner *lo = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006645 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006646 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04006648 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649 return nfserr_grace;
6650
6651 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
6652 return nfserr_inval;
6653
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006654 if (!nfsd4_has_session(cstate)) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04006655 status = lookup_clientid(&lockt->lt_clientid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006656 if (status)
6657 goto out;
6658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659
J. Bruce Fields75c096f2011-08-15 18:39:32 -04006660 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662
Jeff Layton21179d82012-08-21 08:03:32 -04006663 file_lock = locks_alloc_lock();
6664 if (!file_lock) {
6665 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6666 status = nfserr_jukebox;
6667 goto out;
6668 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006669
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670 switch (lockt->lt_type) {
6671 case NFS4_READ_LT:
6672 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006673 file_lock->fl_type = F_RDLCK;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006674 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675 case NFS4_WRITE_LT:
6676 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006677 file_lock->fl_type = F_WRLCK;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006678 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006679 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04006680 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681 status = nfserr_inval;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006682 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683 }
6684
Kinglong Meec8623992015-07-13 17:35:37 +08006685 lo = find_lockowner_str(cstate->clp, &lockt->lt_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006686 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04006687 file_lock->fl_owner = (fl_owner_t)lo;
6688 file_lock->fl_pid = current->tgid;
6689 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690
Jeff Layton21179d82012-08-21 08:03:32 -04006691 file_lock->fl_start = lockt->lt_offset;
6692 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693
Jeff Layton21179d82012-08-21 08:03:32 -04006694 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695
Jeff Layton21179d82012-08-21 08:03:32 -04006696 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04006697 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05006698 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04006699
Jeff Layton21179d82012-08-21 08:03:32 -04006700 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04006702 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703 }
6704out:
Jeff Layton5db1c032014-07-29 21:34:28 -04006705 if (lo)
6706 nfs4_put_stateowner(&lo->lo_owner);
Jeff Layton21179d82012-08-21 08:03:32 -04006707 if (file_lock)
6708 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709 return status;
6710}
6711
Al Virob37ad282006-10-19 23:28:59 -07006712__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006713nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006714 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006716 struct nfsd4_locku *locku = &u->locku;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006717 struct nfs4_ol_stateid *stp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006718 struct nfsd_file *nf = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006719 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006720 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07006721 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006722 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
6723
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
6725 (long long) locku->lu_offset,
6726 (long long) locku->lu_length);
6727
6728 if (check_lock_length(locku->lu_offset, locku->lu_length))
6729 return nfserr_inval;
6730
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006731 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006732 &locku->lu_stateid, NFS4_LOCK_STID,
6733 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006734 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735 goto out;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006736 nf = find_any_file(stp->st_stid.sc_file);
6737 if (!nf) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006738 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04006739 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006740 }
Jeff Layton21179d82012-08-21 08:03:32 -04006741 file_lock = locks_alloc_lock();
6742 if (!file_lock) {
6743 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6744 status = nfserr_jukebox;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006745 goto put_file;
Jeff Layton21179d82012-08-21 08:03:32 -04006746 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006747
Jeff Layton21179d82012-08-21 08:03:32 -04006748 file_lock->fl_type = F_UNLCK;
Kinglong Meeaef95832014-08-22 10:18:44 -04006749 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(stp->st_stateowner));
Jeff Layton21179d82012-08-21 08:03:32 -04006750 file_lock->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006751 file_lock->fl_file = nf->nf_file;
Jeff Layton21179d82012-08-21 08:03:32 -04006752 file_lock->fl_flags = FL_POSIX;
6753 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6754 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755
Jeff Layton21179d82012-08-21 08:03:32 -04006756 file_lock->fl_end = last_byte_offset(locku->lu_offset,
6757 locku->lu_length);
6758 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006760 err = vfs_lock_file(nf->nf_file, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07006761 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05006762 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 goto out_nfserr;
6764 }
Jeff Layton9767feb2015-10-01 09:05:50 -04006765 nfs4_inc_and_copy_stateid(&locku->lu_stateid, &stp->st_stid);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006766put_file:
6767 nfsd_file_put(nf);
Trond Myklebust858cc572014-07-29 21:34:16 -04006768put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006769 mutex_unlock(&stp->st_mutex);
Trond Myklebust858cc572014-07-29 21:34:16 -04006770 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006772 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006773 if (file_lock)
6774 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775 return status;
6776
6777out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07006778 status = nfserrno(err);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006779 goto put_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780}
6781
6782/*
6783 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006784 * true: locks held by lockowner
6785 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006787static bool
6788check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789{
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006790 struct file_lock *fl;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006791 int status = false;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006792 struct nfsd_file *nf = find_any_file(fp);
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006793 struct inode *inode;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006794 struct file_lock_context *flctx;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006795
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006796 if (!nf) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006797 /* Any valid lock stateid should have some sort of access */
6798 WARN_ON_ONCE(1);
6799 return status;
6800 }
6801
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006802 inode = locks_inode(nf->nf_file);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006803 flctx = inode->i_flctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006805 if (flctx && !list_empty_careful(&flctx->flc_posix)) {
Jeff Layton6109c852015-01-16 15:05:57 -05006806 spin_lock(&flctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006807 list_for_each_entry(fl, &flctx->flc_posix, fl_list) {
6808 if (fl->fl_owner == (fl_owner_t)lowner) {
6809 status = true;
6810 break;
6811 }
J. Bruce Fields796dadf2006-01-18 17:43:22 -08006812 }
Jeff Layton6109c852015-01-16 15:05:57 -05006813 spin_unlock(&flctx->flc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814 }
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006815 nfsd_file_put(nf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 return status;
6817}
6818
Al Virob37ad282006-10-19 23:28:59 -07006819__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08006820nfsd4_release_lockowner(struct svc_rqst *rqstp,
6821 struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006822 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006824 struct nfsd4_release_lockowner *rlockowner = &u->release_lockowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Layton882e9d22014-07-29 21:34:37 -04006826 struct nfs4_stateowner *sop;
6827 struct nfs4_lockowner *lo = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006828 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829 struct xdr_netobj *owner = &rlockowner->rl_owner;
Trond Myklebustd4f04892014-07-29 21:34:36 -04006830 unsigned int hashval = ownerstr_hashval(owner);
Al Virob37ad282006-10-19 23:28:59 -07006831 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006832 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006833 struct nfs4_client *clp;
Chuck Lever88584812016-07-13 16:40:14 -04006834 LIST_HEAD (reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835
6836 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
6837 clid->cl_boot, clid->cl_id);
6838
Jeff Layton4b24ca72014-06-30 11:48:44 -04006839 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006840 if (status)
Trond Myklebust51f5e782014-07-30 08:27:27 -04006841 return status;
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006842
Trond Myklebustd4f04892014-07-29 21:34:36 -04006843 clp = cstate->clp;
Jeff Laytonfd449072014-06-30 11:48:41 -04006844 /* Find the matching lock stateowner */
Trond Myklebustd4f04892014-07-29 21:34:36 -04006845 spin_lock(&clp->cl_lock);
Jeff Layton882e9d22014-07-29 21:34:37 -04006846 list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval],
Trond Myklebustd4f04892014-07-29 21:34:36 -04006847 so_strhash) {
Jeff Layton882e9d22014-07-29 21:34:37 -04006848
6849 if (sop->so_is_open_owner || !same_owner_str(sop, owner))
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05006850 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04006851
Jeff Layton882e9d22014-07-29 21:34:37 -04006852 /* see if there are still any locks associated with it */
6853 lo = lockowner(sop);
6854 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
6855 if (check_for_locks(stp->st_stid.sc_file, lo)) {
6856 status = nfserr_locks_held;
6857 spin_unlock(&clp->cl_lock);
Trond Myklebust51f5e782014-07-30 08:27:27 -04006858 return status;
Jeff Layton882e9d22014-07-29 21:34:37 -04006859 }
Jeff Layton5adfd882014-07-29 21:34:31 -04006860 }
Jeff Layton882e9d22014-07-29 21:34:37 -04006861
Kinglong Meeb5971af2014-08-22 10:18:43 -04006862 nfs4_get_stateowner(sop);
Jeff Layton882e9d22014-07-29 21:34:37 -04006863 break;
Jeff Laytonfd449072014-06-30 11:48:41 -04006864 }
Chuck Lever88584812016-07-13 16:40:14 -04006865 if (!lo) {
6866 spin_unlock(&clp->cl_lock);
6867 return status;
6868 }
6869
6870 unhash_lockowner_locked(lo);
6871 while (!list_empty(&lo->lo_owner.so_stateids)) {
6872 stp = list_first_entry(&lo->lo_owner.so_stateids,
6873 struct nfs4_ol_stateid,
6874 st_perstateowner);
6875 WARN_ON(!unhash_lock_stateid(stp));
6876 put_ol_stateid_locked(stp, &reaplist);
6877 }
Trond Myklebustc58c6612014-07-29 21:34:35 -04006878 spin_unlock(&clp->cl_lock);
Chuck Lever88584812016-07-13 16:40:14 -04006879 free_ol_stateid_reaplist(&reaplist);
Jeff Layton68ef3bc2018-03-16 11:32:02 -04006880 remove_blocked_locks(lo);
Chuck Lever88584812016-07-13 16:40:14 -04006881 nfs4_put_stateowner(&lo->lo_owner);
6882
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883 return status;
6884}
6885
6886static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07006887alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888{
NeilBrowna55370a2005-06-23 22:03:52 -07006889 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890}
6891
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006892bool
Scott Mayhew6b189102019-03-26 18:06:26 -04006893nfs4_has_reclaimed_state(struct xdr_netobj name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07006894{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006895 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07006896
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006897 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006898 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07006899}
6900
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901/*
6902 * failure => all reset bets are off, nfserr_no_grace...
Scott Mayhew6b189102019-03-26 18:06:26 -04006903 *
6904 * The caller is responsible for freeing name.data if NULL is returned (it
6905 * will be freed in nfs4_remove_reclaim_record in the normal case).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05006907struct nfs4_client_reclaim *
Scott Mayhew6ee95d12019-09-09 16:10:31 -04006908nfs4_client_to_reclaim(struct xdr_netobj name, struct xdr_netobj princhash,
6909 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910{
6911 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05006912 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913
Scott Mayhew6b189102019-03-26 18:06:26 -04006914 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", name.len, name.data);
NeilBrowna55370a2005-06-23 22:03:52 -07006915 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05006916 if (crp) {
6917 strhashval = clientstr_hashval(name);
6918 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006919 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Scott Mayhew6b189102019-03-26 18:06:26 -04006920 crp->cr_name.data = name.data;
6921 crp->cr_name.len = name.len;
Scott Mayhew6ee95d12019-09-09 16:10:31 -04006922 crp->cr_princhash.data = princhash.data;
6923 crp->cr_princhash.len = princhash.len;
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006924 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006925 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05006926 }
6927 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928}
6929
Jeff Layton2a4317c2012-03-21 16:42:43 -04006930void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006931nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05006932{
6933 list_del(&crp->cr_strhash);
Scott Mayhew6b189102019-03-26 18:06:26 -04006934 kfree(crp->cr_name.data);
Scott Mayhew6ee95d12019-09-09 16:10:31 -04006935 kfree(crp->cr_princhash.data);
Jeff Laytonce30e532012-11-12 15:00:53 -05006936 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006937 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05006938}
6939
6940void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006941nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942{
6943 struct nfs4_client_reclaim *crp = NULL;
6944 int i;
6945
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006947 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
6948 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006950 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951 }
6952 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006953 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006954}
6955
6956/*
6957 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04006958struct nfs4_client_reclaim *
Scott Mayhew6b189102019-03-26 18:06:26 -04006959nfsd4_find_reclaim_client(struct xdr_netobj name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960{
6961 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962 struct nfs4_client_reclaim *crp = NULL;
6963
Scott Mayhew6b189102019-03-26 18:06:26 -04006964 dprintk("NFSD: nfs4_find_reclaim_client for name %.*s\n", name.len, name.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965
Scott Mayhew6b189102019-03-26 18:06:26 -04006966 strhashval = clientstr_hashval(name);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006967 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Scott Mayhew6b189102019-03-26 18:06:26 -04006968 if (compare_blob(&crp->cr_name, &name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969 return crp;
6970 }
6971 }
6972 return NULL;
6973}
6974
6975/*
6976* Called from OPEN. Look for clientid in reclaim list.
6977*/
Al Virob37ad282006-10-19 23:28:59 -07006978__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006979nfs4_check_open_reclaim(clientid_t *clid,
6980 struct nfsd4_compound_state *cstate,
6981 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006982{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006983 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04006984
6985 /* find clientid in conf_id_hashtbl */
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006986 status = lookup_clientid(clid, cstate, nn);
6987 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04006988 return nfserr_reclaim_bad;
6989
Jeff Layton3b3e7b72014-09-12 16:40:22 -04006990 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags))
6991 return nfserr_no_grace;
6992
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006993 if (nfsd4_client_record_check(cstate->clp))
6994 return nfserr_reclaim_bad;
6995
6996 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997}
6998
Bryan Schumaker65178db2011-11-01 13:35:21 -04006999#ifdef CONFIG_NFSD_FAULT_INJECTION
Jeff Layton016200c2014-07-30 08:27:21 -04007000static inline void
7001put_client(struct nfs4_client *clp)
7002{
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007003 atomic_dec(&clp->cl_rpc_users);
Jeff Layton016200c2014-07-30 08:27:21 -04007004}
7005
Jeff Layton285abde2014-07-30 08:27:24 -04007006static struct nfs4_client *
7007nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
7008{
7009 struct nfs4_client *clp;
7010 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7011 nfsd_net_id);
7012
7013 if (!nfsd_netns_ready(nn))
7014 return NULL;
7015
7016 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7017 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
7018 return clp;
7019 }
7020 return NULL;
7021}
7022
Jeff Layton7ec0e362014-07-30 08:27:17 -04007023u64
Jeff Layton285abde2014-07-30 08:27:24 -04007024nfsd_inject_print_clients(void)
Jeff Layton7ec0e362014-07-30 08:27:17 -04007025{
7026 struct nfs4_client *clp;
7027 u64 count = 0;
7028 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7029 nfsd_net_id);
7030 char buf[INET6_ADDRSTRLEN];
7031
7032 if (!nfsd_netns_ready(nn))
7033 return 0;
7034
7035 spin_lock(&nn->client_lock);
7036 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7037 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
7038 pr_info("NFS Client: %s\n", buf);
7039 ++count;
7040 }
7041 spin_unlock(&nn->client_lock);
7042
7043 return count;
7044}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007045
Jeff Laytona0926d12014-07-30 08:27:18 -04007046u64
Jeff Layton285abde2014-07-30 08:27:24 -04007047nfsd_inject_forget_client(struct sockaddr_storage *addr, size_t addr_size)
Jeff Laytona0926d12014-07-30 08:27:18 -04007048{
7049 u64 count = 0;
7050 struct nfs4_client *clp;
7051 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7052 nfsd_net_id);
7053
7054 if (!nfsd_netns_ready(nn))
7055 return count;
7056
7057 spin_lock(&nn->client_lock);
7058 clp = nfsd_find_client(addr, addr_size);
7059 if (clp) {
7060 if (mark_client_expired_locked(clp) == nfs_ok)
7061 ++count;
7062 else
7063 clp = NULL;
7064 }
7065 spin_unlock(&nn->client_lock);
7066
7067 if (clp)
7068 expire_client(clp);
7069
7070 return count;
7071}
7072
Jeff Layton69fc9ed2014-07-30 08:27:19 -04007073u64
Jeff Layton285abde2014-07-30 08:27:24 -04007074nfsd_inject_forget_clients(u64 max)
Jeff Layton69fc9ed2014-07-30 08:27:19 -04007075{
7076 u64 count = 0;
7077 struct nfs4_client *clp, *next;
7078 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7079 nfsd_net_id);
7080 LIST_HEAD(reaplist);
7081
7082 if (!nfsd_netns_ready(nn))
7083 return count;
7084
7085 spin_lock(&nn->client_lock);
7086 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
7087 if (mark_client_expired_locked(clp) == nfs_ok) {
7088 list_add(&clp->cl_lru, &reaplist);
7089 if (max != 0 && ++count >= max)
7090 break;
7091 }
7092 }
7093 spin_unlock(&nn->client_lock);
7094
7095 list_for_each_entry_safe(clp, next, &reaplist, cl_lru)
7096 expire_client(clp);
7097
7098 return count;
7099}
7100
Bryan Schumaker184c1842012-11-29 11:40:44 -05007101static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
7102 const char *type)
7103{
7104 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05007105 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05007106 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
7107}
7108
Jeff Layton016200c2014-07-30 08:27:21 -04007109static void
7110nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid *lst,
7111 struct list_head *collect)
7112{
7113 struct nfs4_client *clp = lst->st_stid.sc_client;
7114 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7115 nfsd_net_id);
7116
7117 if (!collect)
7118 return;
7119
7120 lockdep_assert_held(&nn->client_lock);
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007121 atomic_inc(&clp->cl_rpc_users);
Jeff Layton016200c2014-07-30 08:27:21 -04007122 list_add(&lst->st_locks, collect);
7123}
7124
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007125static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
Jeff Layton3738d502014-07-30 08:27:20 -04007126 struct list_head *collect,
Jeff Laytone8568732015-08-24 12:41:47 -04007127 bool (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05007128{
7129 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007130 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007131 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007132 u64 count = 0;
7133
Jeff Layton016200c2014-07-30 08:27:21 -04007134 spin_lock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007135 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007136 list_for_each_entry_safe(stp, st_next,
7137 &oop->oo_owner.so_stateids, st_perstateowner) {
7138 list_for_each_entry_safe(lst, lst_next,
7139 &stp->st_locks, st_locks) {
Jeff Layton3738d502014-07-30 08:27:20 -04007140 if (func) {
Jeff Laytone8568732015-08-24 12:41:47 -04007141 if (func(lst))
7142 nfsd_inject_add_lock_to_list(lst,
7143 collect);
Jeff Layton3738d502014-07-30 08:27:20 -04007144 }
Jeff Layton016200c2014-07-30 08:27:21 -04007145 ++count;
7146 /*
7147 * Despite the fact that these functions deal
7148 * with 64-bit integers for "count", we must
7149 * ensure that it doesn't blow up the
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007150 * clp->cl_rpc_users. Throw a warning if we
Jeff Layton016200c2014-07-30 08:27:21 -04007151 * start to approach INT_MAX here.
7152 */
7153 WARN_ON_ONCE(count == (INT_MAX / 2));
7154 if (count == max)
7155 goto out;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007156 }
7157 }
7158 }
Jeff Layton016200c2014-07-30 08:27:21 -04007159out:
7160 spin_unlock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007161
7162 return count;
7163}
7164
Jeff Layton016200c2014-07-30 08:27:21 -04007165static u64
7166nfsd_collect_client_locks(struct nfs4_client *clp, struct list_head *collect,
7167 u64 max)
Bryan Schumakerfc291712012-11-29 11:40:40 -05007168{
Jeff Layton016200c2014-07-30 08:27:21 -04007169 return nfsd_foreach_client_lock(clp, max, collect, unhash_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007170}
7171
Jeff Layton016200c2014-07-30 08:27:21 -04007172static u64
7173nfsd_print_client_locks(struct nfs4_client *clp)
Bryan Schumaker184c1842012-11-29 11:40:44 -05007174{
Jeff Layton016200c2014-07-30 08:27:21 -04007175 u64 count = nfsd_foreach_client_lock(clp, 0, NULL, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007176 nfsd_print_count(clp, count, "locked files");
7177 return count;
7178}
7179
Jeff Layton016200c2014-07-30 08:27:21 -04007180u64
Jeff Layton285abde2014-07-30 08:27:24 -04007181nfsd_inject_print_locks(void)
Jeff Layton016200c2014-07-30 08:27:21 -04007182{
7183 struct nfs4_client *clp;
7184 u64 count = 0;
7185 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7186 nfsd_net_id);
7187
7188 if (!nfsd_netns_ready(nn))
7189 return 0;
7190
7191 spin_lock(&nn->client_lock);
7192 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7193 count += nfsd_print_client_locks(clp);
7194 spin_unlock(&nn->client_lock);
7195
7196 return count;
7197}
7198
7199static void
7200nfsd_reap_locks(struct list_head *reaplist)
7201{
7202 struct nfs4_client *clp;
7203 struct nfs4_ol_stateid *stp, *next;
7204
7205 list_for_each_entry_safe(stp, next, reaplist, st_locks) {
7206 list_del_init(&stp->st_locks);
7207 clp = stp->st_stid.sc_client;
7208 nfs4_put_stid(&stp->st_stid);
7209 put_client(clp);
7210 }
7211}
7212
7213u64
Jeff Layton285abde2014-07-30 08:27:24 -04007214nfsd_inject_forget_client_locks(struct sockaddr_storage *addr, size_t addr_size)
Jeff Layton016200c2014-07-30 08:27:21 -04007215{
7216 unsigned int count = 0;
7217 struct nfs4_client *clp;
7218 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7219 nfsd_net_id);
7220 LIST_HEAD(reaplist);
7221
7222 if (!nfsd_netns_ready(nn))
7223 return count;
7224
7225 spin_lock(&nn->client_lock);
7226 clp = nfsd_find_client(addr, addr_size);
7227 if (clp)
7228 count = nfsd_collect_client_locks(clp, &reaplist, 0);
7229 spin_unlock(&nn->client_lock);
7230 nfsd_reap_locks(&reaplist);
7231 return count;
7232}
7233
7234u64
Jeff Layton285abde2014-07-30 08:27:24 -04007235nfsd_inject_forget_locks(u64 max)
Jeff Layton016200c2014-07-30 08:27:21 -04007236{
7237 u64 count = 0;
7238 struct nfs4_client *clp;
7239 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7240 nfsd_net_id);
7241 LIST_HEAD(reaplist);
7242
7243 if (!nfsd_netns_ready(nn))
7244 return count;
7245
7246 spin_lock(&nn->client_lock);
7247 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7248 count += nfsd_collect_client_locks(clp, &reaplist, max - count);
7249 if (max != 0 && count >= max)
7250 break;
7251 }
7252 spin_unlock(&nn->client_lock);
7253 nfsd_reap_locks(&reaplist);
7254 return count;
7255}
7256
Jeff Layton82e05ef2014-07-30 08:27:22 -04007257static u64
7258nfsd_foreach_client_openowner(struct nfs4_client *clp, u64 max,
7259 struct list_head *collect,
7260 void (*func)(struct nfs4_openowner *))
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007261{
7262 struct nfs4_openowner *oop, *next;
Jeff Layton82e05ef2014-07-30 08:27:22 -04007263 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7264 nfsd_net_id);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007265 u64 count = 0;
7266
Jeff Layton82e05ef2014-07-30 08:27:22 -04007267 lockdep_assert_held(&nn->client_lock);
7268
7269 spin_lock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007270 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
Jeff Layton82e05ef2014-07-30 08:27:22 -04007271 if (func) {
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007272 func(oop);
Jeff Layton82e05ef2014-07-30 08:27:22 -04007273 if (collect) {
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007274 atomic_inc(&clp->cl_rpc_users);
Jeff Layton82e05ef2014-07-30 08:27:22 -04007275 list_add(&oop->oo_perclient, collect);
7276 }
7277 }
7278 ++count;
7279 /*
7280 * Despite the fact that these functions deal with
7281 * 64-bit integers for "count", we must ensure that
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007282 * it doesn't blow up the clp->cl_rpc_users. Throw a
Jeff Layton82e05ef2014-07-30 08:27:22 -04007283 * warning if we start to approach INT_MAX here.
7284 */
7285 WARN_ON_ONCE(count == (INT_MAX / 2));
7286 if (count == max)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007287 break;
7288 }
Jeff Layton82e05ef2014-07-30 08:27:22 -04007289 spin_unlock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007290
7291 return count;
7292}
7293
Jeff Layton82e05ef2014-07-30 08:27:22 -04007294static u64
7295nfsd_print_client_openowners(struct nfs4_client *clp)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007296{
Jeff Layton82e05ef2014-07-30 08:27:22 -04007297 u64 count = nfsd_foreach_client_openowner(clp, 0, NULL, NULL);
7298
7299 nfsd_print_count(clp, count, "openowners");
7300 return count;
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007301}
7302
Jeff Layton82e05ef2014-07-30 08:27:22 -04007303static u64
7304nfsd_collect_client_openowners(struct nfs4_client *clp,
7305 struct list_head *collect, u64 max)
Bryan Schumaker184c1842012-11-29 11:40:44 -05007306{
Jeff Layton82e05ef2014-07-30 08:27:22 -04007307 return nfsd_foreach_client_openowner(clp, max, collect,
7308 unhash_openowner_locked);
7309}
7310
7311u64
Jeff Layton285abde2014-07-30 08:27:24 -04007312nfsd_inject_print_openowners(void)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007313{
7314 struct nfs4_client *clp;
7315 u64 count = 0;
7316 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7317 nfsd_net_id);
7318
7319 if (!nfsd_netns_ready(nn))
7320 return 0;
7321
7322 spin_lock(&nn->client_lock);
7323 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7324 count += nfsd_print_client_openowners(clp);
7325 spin_unlock(&nn->client_lock);
7326
7327 return count;
7328}
7329
7330static void
7331nfsd_reap_openowners(struct list_head *reaplist)
7332{
7333 struct nfs4_client *clp;
7334 struct nfs4_openowner *oop, *next;
7335
7336 list_for_each_entry_safe(oop, next, reaplist, oo_perclient) {
7337 list_del_init(&oop->oo_perclient);
7338 clp = oop->oo_owner.so_client;
7339 release_openowner(oop);
7340 put_client(clp);
7341 }
7342}
7343
7344u64
Jeff Layton285abde2014-07-30 08:27:24 -04007345nfsd_inject_forget_client_openowners(struct sockaddr_storage *addr,
7346 size_t addr_size)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007347{
7348 unsigned int count = 0;
7349 struct nfs4_client *clp;
7350 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7351 nfsd_net_id);
7352 LIST_HEAD(reaplist);
7353
7354 if (!nfsd_netns_ready(nn))
7355 return count;
7356
7357 spin_lock(&nn->client_lock);
7358 clp = nfsd_find_client(addr, addr_size);
7359 if (clp)
7360 count = nfsd_collect_client_openowners(clp, &reaplist, 0);
7361 spin_unlock(&nn->client_lock);
7362 nfsd_reap_openowners(&reaplist);
7363 return count;
7364}
7365
7366u64
Jeff Layton285abde2014-07-30 08:27:24 -04007367nfsd_inject_forget_openowners(u64 max)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007368{
7369 u64 count = 0;
7370 struct nfs4_client *clp;
7371 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7372 nfsd_net_id);
7373 LIST_HEAD(reaplist);
7374
7375 if (!nfsd_netns_ready(nn))
7376 return count;
7377
7378 spin_lock(&nn->client_lock);
7379 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7380 count += nfsd_collect_client_openowners(clp, &reaplist,
7381 max - count);
7382 if (max != 0 && count >= max)
7383 break;
7384 }
7385 spin_unlock(&nn->client_lock);
7386 nfsd_reap_openowners(&reaplist);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007387 return count;
7388}
7389
Bryan Schumaker269de302012-11-29 11:40:42 -05007390static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
7391 struct list_head *victims)
7392{
7393 struct nfs4_delegation *dp, *next;
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007394 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7395 nfsd_net_id);
Bryan Schumaker269de302012-11-29 11:40:42 -05007396 u64 count = 0;
7397
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007398 lockdep_assert_held(&nn->client_lock);
7399
7400 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05007401 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04007402 if (victims) {
7403 /*
7404 * It's not safe to mess with delegations that have a
7405 * non-zero dl_time. They might have already been broken
7406 * and could be processed by the laundromat outside of
7407 * the state_lock. Just leave them be.
7408 */
7409 if (dp->dl_time != 0)
7410 continue;
7411
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007412 atomic_inc(&clp->cl_rpc_users);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007413 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007414 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04007415 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007416 ++count;
7417 /*
7418 * Despite the fact that these functions deal with
7419 * 64-bit integers for "count", we must ensure that
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007420 * it doesn't blow up the clp->cl_rpc_users. Throw a
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007421 * warning if we start to approach INT_MAX here.
7422 */
7423 WARN_ON_ONCE(count == (INT_MAX / 2));
7424 if (count == max)
Bryan Schumaker269de302012-11-29 11:40:42 -05007425 break;
7426 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007427 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05007428 return count;
7429}
7430
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007431static u64
7432nfsd_print_client_delegations(struct nfs4_client *clp)
Bryan Schumaker269de302012-11-29 11:40:42 -05007433{
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007434 u64 count = nfsd_find_all_delegations(clp, 0, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007435
7436 nfsd_print_count(clp, count, "delegations");
7437 return count;
7438}
7439
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007440u64
Jeff Layton285abde2014-07-30 08:27:24 -04007441nfsd_inject_print_delegations(void)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007442{
7443 struct nfs4_client *clp;
7444 u64 count = 0;
7445 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7446 nfsd_net_id);
7447
7448 if (!nfsd_netns_ready(nn))
7449 return 0;
7450
7451 spin_lock(&nn->client_lock);
7452 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7453 count += nfsd_print_client_delegations(clp);
7454 spin_unlock(&nn->client_lock);
7455
7456 return count;
7457}
7458
7459static void
7460nfsd_forget_delegations(struct list_head *reaplist)
7461{
7462 struct nfs4_client *clp;
7463 struct nfs4_delegation *dp, *next;
7464
7465 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
7466 list_del_init(&dp->dl_recall_lru);
7467 clp = dp->dl_stid.sc_client;
7468 revoke_delegation(dp);
7469 put_client(clp);
7470 }
7471}
7472
7473u64
Jeff Layton285abde2014-07-30 08:27:24 -04007474nfsd_inject_forget_client_delegations(struct sockaddr_storage *addr,
7475 size_t addr_size)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007476{
7477 u64 count = 0;
7478 struct nfs4_client *clp;
7479 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7480 nfsd_net_id);
7481 LIST_HEAD(reaplist);
7482
7483 if (!nfsd_netns_ready(nn))
7484 return count;
7485
7486 spin_lock(&nn->client_lock);
7487 clp = nfsd_find_client(addr, addr_size);
7488 if (clp)
7489 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7490 spin_unlock(&nn->client_lock);
7491
7492 nfsd_forget_delegations(&reaplist);
7493 return count;
7494}
7495
7496u64
Jeff Layton285abde2014-07-30 08:27:24 -04007497nfsd_inject_forget_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007498{
7499 u64 count = 0;
7500 struct nfs4_client *clp;
7501 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7502 nfsd_net_id);
7503 LIST_HEAD(reaplist);
7504
7505 if (!nfsd_netns_ready(nn))
7506 return count;
7507
7508 spin_lock(&nn->client_lock);
7509 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7510 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7511 if (max != 0 && count >= max)
7512 break;
7513 }
7514 spin_unlock(&nn->client_lock);
7515 nfsd_forget_delegations(&reaplist);
7516 return count;
7517}
7518
7519static void
7520nfsd_recall_delegations(struct list_head *reaplist)
7521{
7522 struct nfs4_client *clp;
7523 struct nfs4_delegation *dp, *next;
7524
7525 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
7526 list_del_init(&dp->dl_recall_lru);
7527 clp = dp->dl_stid.sc_client;
7528 /*
7529 * We skipped all entries that had a zero dl_time before,
7530 * so we can now reset the dl_time back to 0. If a delegation
7531 * break comes in now, then it won't make any difference since
7532 * we're recalling it either way.
7533 */
7534 spin_lock(&state_lock);
7535 dp->dl_time = 0;
7536 spin_unlock(&state_lock);
7537 nfsd_break_one_deleg(dp);
7538 put_client(clp);
7539 }
7540}
7541
7542u64
Jeff Layton285abde2014-07-30 08:27:24 -04007543nfsd_inject_recall_client_delegations(struct sockaddr_storage *addr,
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007544 size_t addr_size)
7545{
7546 u64 count = 0;
7547 struct nfs4_client *clp;
7548 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7549 nfsd_net_id);
7550 LIST_HEAD(reaplist);
7551
7552 if (!nfsd_netns_ready(nn))
7553 return count;
7554
7555 spin_lock(&nn->client_lock);
7556 clp = nfsd_find_client(addr, addr_size);
7557 if (clp)
7558 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7559 spin_unlock(&nn->client_lock);
7560
7561 nfsd_recall_delegations(&reaplist);
7562 return count;
7563}
7564
7565u64
Jeff Layton285abde2014-07-30 08:27:24 -04007566nfsd_inject_recall_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007567{
7568 u64 count = 0;
7569 struct nfs4_client *clp, *next;
7570 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7571 nfsd_net_id);
7572 LIST_HEAD(reaplist);
7573
7574 if (!nfsd_netns_ready(nn))
7575 return count;
7576
7577 spin_lock(&nn->client_lock);
7578 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
7579 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7580 if (max != 0 && ++count >= max)
7581 break;
7582 }
7583 spin_unlock(&nn->client_lock);
7584 nfsd_recall_delegations(&reaplist);
7585 return count;
7586}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007587#endif /* CONFIG_NFSD_FAULT_INJECTION */
7588
Meelap Shahc2f1a552007-07-17 04:04:39 -07007589/*
7590 * Since the lifetime of a delegation isn't limited to that of an open, a
7591 * client may quite reasonably hang on to a delegation as long as it has
7592 * the inode cached. This becomes an obvious problem the first time a
7593 * client's inode cache approaches the size of the server's total memory.
7594 *
7595 * For now we avoid this problem by imposing a hard limit on the number
7596 * of delegations, which varies according to the server's memory size.
7597 */
7598static void
7599set_max_delegations(void)
7600{
7601 /*
7602 * Allow at most 4 delegations per megabyte of RAM. Quick
7603 * estimates suggest that in the worst case (where every delegation
7604 * is for a different inode), a delegation could take about 1.5K,
7605 * giving a worst case usage of about 6% of memory.
7606 */
7607 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
7608}
7609
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007610static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007611{
7612 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7613 int i;
7614
Kees Cook6da2ec52018-06-12 13:55:00 -07007615 nn->conf_id_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
7616 sizeof(struct list_head),
7617 GFP_KERNEL);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007618 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007619 goto err;
Kees Cook6da2ec52018-06-12 13:55:00 -07007620 nn->unconf_id_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
7621 sizeof(struct list_head),
7622 GFP_KERNEL);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007623 if (!nn->unconf_id_hashtbl)
7624 goto err_unconf_id;
Kees Cook6da2ec52018-06-12 13:55:00 -07007625 nn->sessionid_hashtbl = kmalloc_array(SESSION_HASH_SIZE,
7626 sizeof(struct list_head),
7627 GFP_KERNEL);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007628 if (!nn->sessionid_hashtbl)
7629 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007630
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007631 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007632 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007633 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007634 }
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007635 for (i = 0; i < SESSION_HASH_SIZE; i++)
7636 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007637 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007638 nn->unconf_name_tree = RB_ROOT;
Vasily Averin81833de2017-11-13 07:25:40 +03007639 nn->boot_time = get_seconds();
7640 nn->grace_ended = false;
7641 nn->nfsd4_manager.block_opens = true;
7642 INIT_LIST_HEAD(&nn->nfsd4_manager.list);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03007643 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03007644 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007645 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03007646 spin_lock_init(&nn->client_lock);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04007647 spin_lock_init(&nn->s2s_cp_lock);
7648 idr_init(&nn->s2s_cp_stateids);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007649
Jeff Layton0cc11a62016-10-20 09:34:31 -04007650 spin_lock_init(&nn->blocked_locks_lock);
7651 INIT_LIST_HEAD(&nn->blocked_locks_lru);
7652
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007653 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007654 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007655
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007656 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007657
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007658err_sessionid:
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03007659 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007660err_unconf_id:
7661 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007662err:
7663 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007664}
7665
7666static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007667nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007668{
7669 int i;
7670 struct nfs4_client *clp = NULL;
7671 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7672
7673 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7674 while (!list_empty(&nn->conf_id_hashtbl[i])) {
7675 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7676 destroy_client(clp);
7677 }
7678 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007679
Jeff Layton68ef3bc2018-03-16 11:32:02 -04007680 WARN_ON(!list_empty(&nn->blocked_locks_lru));
7681
Kinglong Mee2b905632014-03-26 22:09:30 +08007682 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7683 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
7684 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7685 destroy_client(clp);
7686 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007687 }
7688
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007689 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007690 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007691 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007692 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007693}
7694
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007695int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007696nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07007697{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04007698 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007699 int ret;
7700
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007701 ret = nfs4_state_create_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007702 if (ret)
7703 return ret;
Jeff Laytond4318ac2014-09-12 16:40:21 -04007704 locks_start_grace(net, &nn->nfsd4_manager);
7705 nfsd4_client_tracking_init(net);
Scott Mayhew362063a2019-03-26 18:06:28 -04007706 if (nn->track_reclaim_completes && nn->reclaim_str_hashtbl_size == 0)
7707 goto skip_grace;
Vasily Averin7e981a82017-11-06 16:46:04 +03007708 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %x)\n",
7709 nn->nfsd4_grace, net->ns.inum);
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03007710 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007711 return 0;
Scott Mayhew362063a2019-03-26 18:06:28 -04007712
7713skip_grace:
7714 printk(KERN_INFO "NFSD: no clients to reclaim, skipping NFSv4 grace period (net %x)\n",
7715 net->ns.inum);
7716 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_lease * HZ);
7717 nfsd4_end_grace(nn);
7718 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007719}
7720
7721/* initialization to perform when the nfsd service is started: */
7722
7723int
7724nfs4_state_start(void)
7725{
7726 int ret;
7727
Jeff Layton51a54562015-08-20 07:17:01 -04007728 laundry_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, "nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05007729 if (laundry_wq == NULL) {
7730 ret = -ENOMEM;
Chuck Levera26dd642018-08-16 12:06:09 -04007731 goto out;
Jeff Laytona6d6b782012-03-05 11:42:36 -05007732 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007733 ret = nfsd4_create_callback_queue();
7734 if (ret)
7735 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007736
Meelap Shahc2f1a552007-07-17 04:04:39 -07007737 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007738 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007739
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007740out_free_laundry:
7741 destroy_workqueue(laundry_wq);
Chuck Levera26dd642018-08-16 12:06:09 -04007742out:
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007743 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744}
7745
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007746void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007747nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007751 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007752
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007753 cancel_delayed_work_sync(&nn->laundromat_work);
7754 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05007755
Linus Torvalds1da177e2005-04-16 15:20:36 -07007756 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04007757 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007758 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007760 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007761 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007762 }
Benny Halevycdc975052014-05-30 09:09:30 -04007763 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764 list_for_each_safe(pos, next, &reaplist) {
7765 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04007766 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05007767 destroy_unhashed_deleg(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768 }
7769
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03007770 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007771 nfs4_state_destroy_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772}
7773
7774void
7775nfs4_state_shutdown(void)
7776{
NeilBrown5e8d5c22006-04-10 22:55:37 -07007777 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04007778 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007779}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007780
7781static void
7782get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7783{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007784 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
7785 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007786}
7787
7788static void
7789put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7790{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007791 if (cstate->minorversion) {
7792 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
7793 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
7794 }
7795}
7796
7797void
7798clear_current_stateid(struct nfsd4_compound_state *cstate)
7799{
7800 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007801}
7802
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007803/*
7804 * functions to set current state id
7805 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007806void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007807nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate,
7808 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007809{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007810 put_stateid(cstate, &u->open_downgrade.od_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007811}
7812
7813void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007814nfsd4_set_openstateid(struct nfsd4_compound_state *cstate,
7815 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007816{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007817 put_stateid(cstate, &u->open.op_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007818}
7819
7820void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007821nfsd4_set_closestateid(struct nfsd4_compound_state *cstate,
7822 union nfsd4_op_u *u)
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007823{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007824 put_stateid(cstate, &u->close.cl_stateid);
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007825}
7826
7827void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007828nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate,
7829 union nfsd4_op_u *u)
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007830{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007831 put_stateid(cstate, &u->lock.lk_resp_stateid);
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007832}
7833
7834/*
7835 * functions to consume current state id
7836 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007837
7838void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007839nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate,
7840 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007841{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007842 get_stateid(cstate, &u->open_downgrade.od_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007843}
7844
7845void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007846nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate,
7847 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007848{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007849 get_stateid(cstate, &u->delegreturn.dr_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007850}
7851
7852void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007853nfsd4_get_freestateid(struct nfsd4_compound_state *cstate,
7854 union nfsd4_op_u *u)
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007855{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007856 get_stateid(cstate, &u->free_stateid.fr_stateid);
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007857}
7858
7859void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007860nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate,
7861 union nfsd4_op_u *u)
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007862{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007863 get_stateid(cstate, &u->setattr.sa_stateid);
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007864}
7865
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007866void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007867nfsd4_get_closestateid(struct nfsd4_compound_state *cstate,
7868 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007869{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007870 get_stateid(cstate, &u->close.cl_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007871}
7872
7873void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007874nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate,
7875 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007876{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007877 get_stateid(cstate, &u->locku.lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007878}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007879
7880void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007881nfsd4_get_readstateid(struct nfsd4_compound_state *cstate,
7882 union nfsd4_op_u *u)
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007883{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007884 get_stateid(cstate, &u->read.rd_stateid);
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007885}
7886
7887void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007888nfsd4_get_writestateid(struct nfsd4_compound_state *cstate,
7889 union nfsd4_op_u *u)
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007890{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007891 get_stateid(cstate, &u->write.wr_stateid);
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007892}