blob: c107caa5652544ebadfb746663a551b022c75eb6 [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);
Olga Kornievskaia624322f2019-10-04 16:34:26 -040083static void _free_cpntf_state_locked(struct nfsd_net *nn, struct nfs4_cpntf_state *cps);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
J. Bruce Fields8b671b82009-02-22 14:51:34 -080085/* Locking: */
86
J. Bruce Fields8b671b82009-02-22 14:51:34 -080087/*
88 * Currently used for the del_recall_lru and file hash table. In an
89 * effort to decrease the scope of the client_mutex, this spinlock may
90 * eventually cover more:
91 */
Benny Halevycdc975052014-05-30 09:09:30 -040092static DEFINE_SPINLOCK(state_lock);
J. Bruce Fields8b671b82009-02-22 14:51:34 -080093
Andrew Elble4f34bd02017-11-08 17:29:51 -050094enum nfsd4_st_mutex_lock_subclass {
95 OPEN_STATEID_MUTEX = 0,
96 LOCK_STATEID_MUTEX = 1,
97};
98
Jeff Laytonb401be222014-07-29 21:34:33 -040099/*
100 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
101 * the refcount on the open stateid to drop.
102 */
103static DECLARE_WAIT_QUEUE_HEAD(close_wq);
104
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400105/*
106 * A waitqueue where a writer to clients/#/ctl destroying a client can
107 * wait for cl_rpc_users to drop to 0 and then for the client to be
108 * unhashed.
109 */
110static DECLARE_WAIT_QUEUE_HEAD(expiry_wq);
111
Jeff Layton9258a2d2018-03-16 09:47:22 -0400112static struct kmem_cache *client_slab;
Christoph Hellwigabf11352014-05-21 07:43:03 -0700113static struct kmem_cache *openowner_slab;
114static struct kmem_cache *lockowner_slab;
115static struct kmem_cache *file_slab;
116static struct kmem_cache *stateid_slab;
117static struct kmem_cache *deleg_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +0200118static struct kmem_cache *odstate_slab;
NeilBrowne60d4392005-06-23 22:03:01 -0700119
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400120static void free_session(struct nfsd4_session *);
Benny Halevy508dc6e2012-02-23 17:40:52 -0800121
Julia Lawallc4cb8972015-11-21 22:57:39 +0100122static const struct nfsd4_callback_ops nfsd4_cb_recall_ops;
Jeff Layton76d348f2016-09-16 16:28:24 -0400123static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops;
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200124
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400125static bool is_session_dead(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -0800126{
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400127 return ses->se_flags & NFS4_SESSION_DEAD;
128}
129
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -0400130static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
131{
132 if (atomic_read(&ses->se_ref) > ref_held_by_me)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400133 return nfserr_jukebox;
134 ses->se_flags |= NFS4_SESSION_DEAD;
135 return nfs_ok;
136}
137
J. Bruce Fields221a6872013-04-01 22:23:49 -0400138static bool is_client_expired(struct nfs4_client *clp)
139{
140 return clp->cl_time == 0;
141}
142
J. Bruce Fields221a6872013-04-01 22:23:49 -0400143static __be32 get_client_locked(struct nfs4_client *clp)
144{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400145 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
146
147 lockdep_assert_held(&nn->client_lock);
148
J. Bruce Fields221a6872013-04-01 22:23:49 -0400149 if (is_client_expired(clp))
150 return nfserr_expired;
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400151 atomic_inc(&clp->cl_rpc_users);
J. Bruce Fields221a6872013-04-01 22:23:49 -0400152 return nfs_ok;
153}
154
155/* must be called under the client_lock */
156static inline void
157renew_client_locked(struct nfs4_client *clp)
158{
159 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
160
161 if (is_client_expired(clp)) {
162 WARN_ON(1);
163 printk("%s: client (clientid %08x/%08x) already expired\n",
164 __func__,
165 clp->cl_clientid.cl_boot,
166 clp->cl_clientid.cl_id);
167 return;
168 }
169
170 dprintk("renewing client (clientid %08x/%08x)\n",
171 clp->cl_clientid.cl_boot,
172 clp->cl_clientid.cl_id);
173 list_move_tail(&clp->cl_lru, &nn->client_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +0100174 clp->cl_time = ktime_get_boottime_seconds();
J. Bruce Fields221a6872013-04-01 22:23:49 -0400175}
176
Fengguang Wuba138432013-04-16 22:14:15 -0400177static void put_client_renew_locked(struct nfs4_client *clp)
J. Bruce Fields221a6872013-04-01 22:23:49 -0400178{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400179 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
180
181 lockdep_assert_held(&nn->client_lock);
182
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400183 if (!atomic_dec_and_test(&clp->cl_rpc_users))
J. Bruce Fields221a6872013-04-01 22:23:49 -0400184 return;
185 if (!is_client_expired(clp))
186 renew_client_locked(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400187 else
188 wake_up_all(&expiry_wq);
J. Bruce Fields221a6872013-04-01 22:23:49 -0400189}
190
Jeff Layton4b24ca72014-06-30 11:48:44 -0400191static void put_client_renew(struct nfs4_client *clp)
192{
193 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
194
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400195 if (!atomic_dec_and_lock(&clp->cl_rpc_users, &nn->client_lock))
Jeff Laytond6c249b2014-07-08 14:02:50 -0400196 return;
197 if (!is_client_expired(clp))
198 renew_client_locked(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400199 else
200 wake_up_all(&expiry_wq);
Jeff Layton4b24ca72014-06-30 11:48:44 -0400201 spin_unlock(&nn->client_lock);
202}
203
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400204static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
205{
206 __be32 status;
207
208 if (is_session_dead(ses))
209 return nfserr_badsession;
210 status = get_client_locked(ses->se_client);
211 if (status)
212 return status;
213 atomic_inc(&ses->se_ref);
214 return nfs_ok;
215}
216
217static void nfsd4_put_session_locked(struct nfsd4_session *ses)
218{
219 struct nfs4_client *clp = ses->se_client;
Trond Myklebust0a880a22014-07-30 08:27:10 -0400220 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
221
222 lockdep_assert_held(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400223
224 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
225 free_session(ses);
226 put_client_renew_locked(clp);
227}
228
229static void nfsd4_put_session(struct nfsd4_session *ses)
230{
231 struct nfs4_client *clp = ses->se_client;
232 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
233
234 spin_lock(&nn->client_lock);
235 nfsd4_put_session_locked(ses);
236 spin_unlock(&nn->client_lock);
237}
238
Jeff Layton76d348f2016-09-16 16:28:24 -0400239static struct nfsd4_blocked_lock *
240find_blocked_lock(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
241 struct nfsd_net *nn)
242{
243 struct nfsd4_blocked_lock *cur, *found = NULL;
244
Jeff Layton0cc11a62016-10-20 09:34:31 -0400245 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400246 list_for_each_entry(cur, &lo->lo_blocked, nbl_list) {
247 if (fh_match(fh, &cur->nbl_fh)) {
248 list_del_init(&cur->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -0400249 list_del_init(&cur->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -0400250 found = cur;
251 break;
252 }
253 }
Jeff Layton0cc11a62016-10-20 09:34:31 -0400254 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400255 if (found)
NeilBrowncb03f942018-11-30 10:04:08 +1100256 locks_delete_block(&found->nbl_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400257 return found;
258}
259
260static struct nfsd4_blocked_lock *
261find_or_allocate_block(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
262 struct nfsd_net *nn)
263{
264 struct nfsd4_blocked_lock *nbl;
265
266 nbl = find_blocked_lock(lo, fh, nn);
267 if (!nbl) {
268 nbl= kmalloc(sizeof(*nbl), GFP_KERNEL);
269 if (nbl) {
Vasily Averine1e83992020-03-27 07:50:40 +0300270 INIT_LIST_HEAD(&nbl->nbl_list);
271 INIT_LIST_HEAD(&nbl->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -0400272 fh_copy_shallow(&nbl->nbl_fh, fh);
273 locks_init_lock(&nbl->nbl_lock);
274 nfsd4_init_cb(&nbl->nbl_cb, lo->lo_owner.so_client,
275 &nfsd4_cb_notify_lock_ops,
276 NFSPROC4_CLNT_CB_NOTIFY_LOCK);
277 }
278 }
279 return nbl;
280}
281
282static void
283free_blocked_lock(struct nfsd4_blocked_lock *nbl)
284{
Jeff Layton6aaafc42019-04-22 12:34:23 -0400285 locks_delete_block(&nbl->nbl_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400286 locks_release_private(&nbl->nbl_lock);
287 kfree(nbl);
288}
289
Jeff Layton68ef3bc2018-03-16 11:32:02 -0400290static void
291remove_blocked_locks(struct nfs4_lockowner *lo)
292{
293 struct nfs4_client *clp = lo->lo_owner.so_client;
294 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
295 struct nfsd4_blocked_lock *nbl;
296 LIST_HEAD(reaplist);
297
298 /* Dequeue all blocked locks */
299 spin_lock(&nn->blocked_locks_lock);
300 while (!list_empty(&lo->lo_blocked)) {
301 nbl = list_first_entry(&lo->lo_blocked,
302 struct nfsd4_blocked_lock,
303 nbl_list);
304 list_del_init(&nbl->nbl_list);
305 list_move(&nbl->nbl_lru, &reaplist);
306 }
307 spin_unlock(&nn->blocked_locks_lock);
308
309 /* Now free them */
310 while (!list_empty(&reaplist)) {
311 nbl = list_first_entry(&reaplist, struct nfsd4_blocked_lock,
312 nbl_lru);
313 list_del_init(&nbl->nbl_lru);
Jeff Layton68ef3bc2018-03-16 11:32:02 -0400314 free_blocked_lock(nbl);
315 }
316}
317
Jeff Laytonf4564582019-04-22 12:34:24 -0400318static void
319nfsd4_cb_notify_lock_prepare(struct nfsd4_callback *cb)
320{
321 struct nfsd4_blocked_lock *nbl = container_of(cb,
322 struct nfsd4_blocked_lock, nbl_cb);
323 locks_delete_block(&nbl->nbl_lock);
324}
325
Jeff Layton76d348f2016-09-16 16:28:24 -0400326static int
327nfsd4_cb_notify_lock_done(struct nfsd4_callback *cb, struct rpc_task *task)
328{
329 /*
330 * Since this is just an optimization, we don't try very hard if it
331 * turns out not to succeed. We'll requeue it on NFS4ERR_DELAY, and
332 * just quit trying on anything else.
333 */
334 switch (task->tk_status) {
335 case -NFS4ERR_DELAY:
336 rpc_delay(task, 1 * HZ);
337 return 0;
338 default:
339 return 1;
340 }
341}
342
343static void
344nfsd4_cb_notify_lock_release(struct nfsd4_callback *cb)
345{
346 struct nfsd4_blocked_lock *nbl = container_of(cb,
347 struct nfsd4_blocked_lock, nbl_cb);
348
349 free_blocked_lock(nbl);
350}
351
352static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops = {
Jeff Laytonf4564582019-04-22 12:34:24 -0400353 .prepare = nfsd4_cb_notify_lock_prepare,
Jeff Layton76d348f2016-09-16 16:28:24 -0400354 .done = nfsd4_cb_notify_lock_done,
355 .release = nfsd4_cb_notify_lock_release,
356};
357
Kinglong Meeb5971af2014-08-22 10:18:43 -0400358static inline struct nfs4_stateowner *
359nfs4_get_stateowner(struct nfs4_stateowner *sop)
360{
361 atomic_inc(&sop->so_count);
362 return sop;
363}
364
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400365static int
Trond Myklebustd4f04892014-07-29 21:34:36 -0400366same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400367{
368 return (sop->so_owner.len == owner->len) &&
Trond Myklebustd4f04892014-07-29 21:34:36 -0400369 0 == memcmp(sop->so_owner.data, owner->data, owner->len);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400370}
371
372static struct nfs4_openowner *
373find_openstateowner_str_locked(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400374 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400375{
376 struct nfs4_stateowner *so;
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400377
Trond Myklebustd4f04892014-07-29 21:34:36 -0400378 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400379
Trond Myklebustd4f04892014-07-29 21:34:36 -0400380 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[hashval],
381 so_strhash) {
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400382 if (!so->so_is_open_owner)
383 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -0400384 if (same_owner_str(so, &open->op_owner))
385 return openowner(nfs4_get_stateowner(so));
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400386 }
387 return NULL;
388}
389
390static struct nfs4_openowner *
391find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400392 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400393{
394 struct nfs4_openowner *oo;
395
Trond Myklebustd4f04892014-07-29 21:34:36 -0400396 spin_lock(&clp->cl_lock);
397 oo = find_openstateowner_str_locked(hashval, open, clp);
398 spin_unlock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400399 return oo;
400}
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402static inline u32
403opaque_hashval(const void *ptr, int nbytes)
404{
405 unsigned char *cptr = (unsigned char *) ptr;
406
407 u32 x = 0;
408 while (nbytes--) {
409 x *= 37;
410 x += *cptr++;
411 }
412 return x;
413}
414
Jeff Layton5b095e92014-10-23 08:01:02 -0400415static void nfsd4_free_file_rcu(struct rcu_head *rcu)
J. Bruce Fields32513b42011-10-13 16:00:16 -0400416{
Jeff Layton5b095e92014-10-23 08:01:02 -0400417 struct nfs4_file *fp = container_of(rcu, struct nfs4_file, fi_rcu);
418
419 kmem_cache_free(file_slab, fp);
J. Bruce Fields32513b42011-10-13 16:00:16 -0400420}
421
Christoph Hellwige6ba76e2014-08-14 08:50:16 +0200422void
NeilBrown13cd2182005-06-23 22:03:10 -0700423put_nfs4_file(struct nfs4_file *fi)
424{
Jeff Layton02e12152014-07-16 10:31:57 -0400425 might_lock(&state_lock);
426
Elena Reshetova818a34e2017-10-20 12:53:30 +0300427 if (refcount_dec_and_lock(&fi->fi_ref, &state_lock)) {
Jeff Layton5b095e92014-10-23 08:01:02 -0400428 hlist_del_rcu(&fi->fi_hash);
Benny Halevycdc975052014-05-30 09:09:30 -0400429 spin_unlock(&state_lock);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200430 WARN_ON_ONCE(!list_empty(&fi->fi_clnt_odstate));
Jeff Layton5b095e92014-10-23 08:01:02 -0400431 WARN_ON_ONCE(!list_empty(&fi->fi_delegations));
432 call_rcu(&fi->fi_rcu, nfsd4_free_file_rcu);
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800433 }
NeilBrown13cd2182005-06-23 22:03:10 -0700434}
435
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400436static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400437__nfs4_get_fd(struct nfs4_file *f, int oflag)
438{
439 if (f->fi_fds[oflag])
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400440 return nfsd_file_get(f->fi_fds[oflag]);
Trond Myklebustde186432014-07-10 14:07:26 -0400441 return NULL;
442}
443
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400444static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400445find_writeable_file_locked(struct nfs4_file *f)
446{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400447 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400448
449 lockdep_assert_held(&f->fi_lock);
450
451 ret = __nfs4_get_fd(f, O_WRONLY);
452 if (!ret)
453 ret = __nfs4_get_fd(f, O_RDWR);
454 return ret;
455}
456
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400457static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400458find_writeable_file(struct nfs4_file *f)
459{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400460 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400461
462 spin_lock(&f->fi_lock);
463 ret = find_writeable_file_locked(f);
464 spin_unlock(&f->fi_lock);
465
466 return ret;
467}
468
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400469static struct nfsd_file *
470find_readable_file_locked(struct nfs4_file *f)
Trond Myklebustde186432014-07-10 14:07:26 -0400471{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400472 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400473
474 lockdep_assert_held(&f->fi_lock);
475
476 ret = __nfs4_get_fd(f, O_RDONLY);
477 if (!ret)
478 ret = __nfs4_get_fd(f, O_RDWR);
479 return ret;
480}
481
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400482static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400483find_readable_file(struct nfs4_file *f)
484{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400485 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400486
487 spin_lock(&f->fi_lock);
488 ret = find_readable_file_locked(f);
489 spin_unlock(&f->fi_lock);
490
491 return ret;
492}
493
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400494struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400495find_any_file(struct nfs4_file *f)
496{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400497 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400498
Trond Myklebusta451b122020-03-01 18:21:38 -0500499 if (!f)
500 return NULL;
Trond Myklebustde186432014-07-10 14:07:26 -0400501 spin_lock(&f->fi_lock);
502 ret = __nfs4_get_fd(f, O_RDWR);
503 if (!ret) {
504 ret = __nfs4_get_fd(f, O_WRONLY);
505 if (!ret)
506 ret = __nfs4_get_fd(f, O_RDONLY);
507 }
508 spin_unlock(&f->fi_lock);
509 return ret;
510}
511
Trond Myklebust02a35082014-07-25 07:34:22 -0400512static atomic_long_t num_delegations;
Zhang Yanfei697ce9b2013-02-22 16:35:47 -0800513unsigned long max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700514
515/*
516 * Open owner state (share locks)
517 */
518
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500519/* hash tables for lock and open owners */
520#define OWNER_HASH_BITS 8
521#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
522#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700523
Trond Myklebustd4f04892014-07-29 21:34:36 -0400524static unsigned int ownerstr_hashval(struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400525{
526 unsigned int ret;
527
528 ret = opaque_hashval(ownername->data, ownername->len);
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500529 return ret & OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400530}
NeilBrownef0f3392006-04-10 22:55:41 -0700531
NeilBrownef0f3392006-04-10 22:55:41 -0700532/* hash table for nfs4_file */
533#define FILE_HASH_BITS 8
534#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800535
Trond Myklebustca943212014-07-23 16:17:39 -0400536static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400537{
Trond Myklebustca943212014-07-23 16:17:39 -0400538 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
539}
540
541static unsigned int file_hashval(struct knfsd_fh *fh)
542{
543 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
544}
545
Jeff Layton89876f82013-04-02 09:01:59 -0400546static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700547
Jeff Layton12659652014-07-10 14:07:28 -0400548static void
549__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields34775652013-08-23 17:55:18 -0400550{
Jeff Layton7214e862014-07-10 14:07:33 -0400551 lockdep_assert_held(&fp->fi_lock);
552
Jeff Layton12659652014-07-10 14:07:28 -0400553 if (access & NFS4_SHARE_ACCESS_WRITE)
554 atomic_inc(&fp->fi_access[O_WRONLY]);
555 if (access & NFS4_SHARE_ACCESS_READ)
556 atomic_inc(&fp->fi_access[O_RDONLY]);
J. Bruce Fields34775652013-08-23 17:55:18 -0400557}
558
Jeff Layton12659652014-07-10 14:07:28 -0400559static __be32
560nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400561{
Jeff Layton7214e862014-07-10 14:07:33 -0400562 lockdep_assert_held(&fp->fi_lock);
563
Jeff Layton12659652014-07-10 14:07:28 -0400564 /* Does this access mode make sense? */
565 if (access & ~NFS4_SHARE_ACCESS_BOTH)
566 return nfserr_inval;
567
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400568 /* Does it conflict with a deny mode already set? */
569 if ((access & fp->fi_share_deny) != 0)
570 return nfserr_share_denied;
571
Jeff Layton12659652014-07-10 14:07:28 -0400572 __nfs4_file_get_access(fp, access);
573 return nfs_ok;
J. Bruce Fields998db522010-08-07 09:21:41 -0400574}
575
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400576static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
577{
578 /* Common case is that there is no deny mode. */
579 if (deny) {
580 /* Does this deny mode make sense? */
581 if (deny & ~NFS4_SHARE_DENY_BOTH)
582 return nfserr_inval;
583
584 if ((deny & NFS4_SHARE_DENY_READ) &&
585 atomic_read(&fp->fi_access[O_RDONLY]))
586 return nfserr_share_denied;
587
588 if ((deny & NFS4_SHARE_DENY_WRITE) &&
589 atomic_read(&fp->fi_access[O_WRONLY]))
590 return nfserr_share_denied;
591 }
592 return nfs_ok;
593}
594
J. Bruce Fields998db522010-08-07 09:21:41 -0400595static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400596{
Trond Myklebustde186432014-07-10 14:07:26 -0400597 might_lock(&fp->fi_lock);
598
599 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400600 struct nfsd_file *f1 = NULL;
601 struct nfsd_file *f2 = NULL;
Trond Myklebustde186432014-07-10 14:07:26 -0400602
Jeff Layton6d338b52014-07-10 14:07:29 -0400603 swap(f1, fp->fi_fds[oflag]);
J. Bruce Fields0c7c3e62013-03-28 20:37:14 -0400604 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
Jeff Layton6d338b52014-07-10 14:07:29 -0400605 swap(f2, fp->fi_fds[O_RDWR]);
Trond Myklebustde186432014-07-10 14:07:26 -0400606 spin_unlock(&fp->fi_lock);
607 if (f1)
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400608 nfsd_file_put(f1);
Trond Myklebustde186432014-07-10 14:07:26 -0400609 if (f2)
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400610 nfsd_file_put(f2);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400611 }
612}
613
Jeff Layton12659652014-07-10 14:07:28 -0400614static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400615{
Jeff Layton12659652014-07-10 14:07:28 -0400616 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
617
618 if (access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields998db522010-08-07 09:21:41 -0400619 __nfs4_file_put_access(fp, O_WRONLY);
Jeff Layton12659652014-07-10 14:07:28 -0400620 if (access & NFS4_SHARE_ACCESS_READ)
621 __nfs4_file_put_access(fp, O_RDONLY);
J. Bruce Fields998db522010-08-07 09:21:41 -0400622}
623
Sachin Bhamare8287f002015-04-27 14:50:14 +0200624/*
625 * Allocate a new open/delegation state counter. This is needed for
626 * pNFS for proper return on close semantics.
627 *
628 * Note that we only allocate it for pNFS-enabled exports, otherwise
629 * all pointers to struct nfs4_clnt_odstate are always NULL.
630 */
631static struct nfs4_clnt_odstate *
632alloc_clnt_odstate(struct nfs4_client *clp)
633{
634 struct nfs4_clnt_odstate *co;
635
636 co = kmem_cache_zalloc(odstate_slab, GFP_KERNEL);
637 if (co) {
638 co->co_client = clp;
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300639 refcount_set(&co->co_odcount, 1);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200640 }
641 return co;
642}
643
644static void
645hash_clnt_odstate_locked(struct nfs4_clnt_odstate *co)
646{
647 struct nfs4_file *fp = co->co_file;
648
649 lockdep_assert_held(&fp->fi_lock);
650 list_add(&co->co_perfile, &fp->fi_clnt_odstate);
651}
652
653static inline void
654get_clnt_odstate(struct nfs4_clnt_odstate *co)
655{
656 if (co)
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300657 refcount_inc(&co->co_odcount);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200658}
659
660static void
661put_clnt_odstate(struct nfs4_clnt_odstate *co)
662{
663 struct nfs4_file *fp;
664
665 if (!co)
666 return;
667
668 fp = co->co_file;
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300669 if (refcount_dec_and_lock(&co->co_odcount, &fp->fi_lock)) {
Sachin Bhamare8287f002015-04-27 14:50:14 +0200670 list_del(&co->co_perfile);
671 spin_unlock(&fp->fi_lock);
672
673 nfsd4_return_all_file_layouts(co->co_client, fp);
674 kmem_cache_free(odstate_slab, co);
675 }
676}
677
678static struct nfs4_clnt_odstate *
679find_or_hash_clnt_odstate(struct nfs4_file *fp, struct nfs4_clnt_odstate *new)
680{
681 struct nfs4_clnt_odstate *co;
682 struct nfs4_client *cl;
683
684 if (!new)
685 return NULL;
686
687 cl = new->co_client;
688
689 spin_lock(&fp->fi_lock);
690 list_for_each_entry(co, &fp->fi_clnt_odstate, co_perfile) {
691 if (co->co_client == cl) {
692 get_clnt_odstate(co);
693 goto out;
694 }
695 }
696 co = new;
697 co->co_file = fp;
698 hash_clnt_odstate_locked(new);
699out:
700 spin_unlock(&fp->fi_lock);
701 return co;
702}
703
Kinglong Meed19fb702017-01-18 19:04:42 +0800704struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab,
705 void (*sc_free)(struct nfs4_stid *))
J. Bruce Fields996e0932011-10-17 11:14:48 -0400706{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500707 struct nfs4_stid *stid;
708 int new_id;
709
Trond Myklebustf8338832014-07-25 07:34:19 -0400710 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500711 if (!stid)
712 return NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400713
Jeff Layton4770d722014-07-29 21:34:10 -0400714 idr_preload(GFP_KERNEL);
715 spin_lock(&cl->cl_lock);
J. Bruce Fields78599c42019-04-22 15:26:23 -0400716 /* Reserving 0 for start of file in nfsdfs "states" file: */
717 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 1, 0, GFP_NOWAIT);
Jeff Layton4770d722014-07-29 21:34:10 -0400718 spin_unlock(&cl->cl_lock);
719 idr_preload_end();
Tejun Heoebd6c702013-03-13 14:59:37 -0700720 if (new_id < 0)
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500721 goto out_free;
Kinglong Meed19fb702017-01-18 19:04:42 +0800722
723 stid->sc_free = sc_free;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500724 stid->sc_client = cl;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500725 stid->sc_stateid.si_opaque.so_id = new_id;
726 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
727 /* Will be incremented before return to client: */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300728 refcount_set(&stid->sc_count, 1);
Jeff Layton9767feb2015-10-01 09:05:50 -0400729 spin_lock_init(&stid->sc_lock);
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400730 INIT_LIST_HEAD(&stid->sc_cp_list);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500731
J. Bruce Fields996e0932011-10-17 11:14:48 -0400732 /*
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500733 * It shouldn't be a problem to reuse an opaque stateid value.
734 * I don't think it is for 4.1. But with 4.0 I worry that, for
735 * example, a stray write retransmission could be accepted by
736 * the server when it should have been rejected. Therefore,
737 * adopt a trick from the sctp code to attempt to maximize the
738 * amount of time until an id is reused, by ensuring they always
739 * "increase" (mod INT_MAX):
J. Bruce Fields996e0932011-10-17 11:14:48 -0400740 */
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500741 return stid;
742out_free:
Wei Yongjun2c44a232013-04-09 14:15:31 +0800743 kmem_cache_free(slab, stid);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500744 return NULL;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400745}
746
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400747/*
748 * Create a unique stateid_t to represent each COPY.
749 */
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400750static int nfs4_init_cp_state(struct nfsd_net *nn, copy_stateid_t *stid,
751 unsigned char sc_type)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400752{
753 int new_id;
754
Arnd Bergmann9cc76802019-10-31 15:53:13 +0100755 stid->stid.si_opaque.so_clid.cl_boot = (u32)nn->boot_time;
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400756 stid->stid.si_opaque.so_clid.cl_id = nn->s2s_cp_cl_id;
757 stid->sc_type = sc_type;
758
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400759 idr_preload(GFP_KERNEL);
760 spin_lock(&nn->s2s_cp_lock);
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400761 new_id = idr_alloc_cyclic(&nn->s2s_cp_stateids, stid, 0, 0, GFP_NOWAIT);
762 stid->stid.si_opaque.so_id = new_id;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400763 spin_unlock(&nn->s2s_cp_lock);
764 idr_preload_end();
765 if (new_id < 0)
766 return 0;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400767 return 1;
768}
769
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400770int nfs4_init_copy_state(struct nfsd_net *nn, struct nfsd4_copy *copy)
771{
772 return nfs4_init_cp_state(nn, &copy->cp_stateid, NFS4_COPY_STID);
773}
774
775struct nfs4_cpntf_state *nfs4_alloc_init_cpntf_state(struct nfsd_net *nn,
776 struct nfs4_stid *p_stid)
777{
778 struct nfs4_cpntf_state *cps;
779
780 cps = kzalloc(sizeof(struct nfs4_cpntf_state), GFP_KERNEL);
781 if (!cps)
782 return NULL;
Arnd Bergmann20b7d862019-11-04 16:31:52 +0100783 cps->cpntf_time = ktime_get_boottime_seconds();
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400784 refcount_set(&cps->cp_stateid.sc_count, 1);
785 if (!nfs4_init_cp_state(nn, &cps->cp_stateid, NFS4_COPYNOTIFY_STID))
786 goto out_free;
787 spin_lock(&nn->s2s_cp_lock);
788 list_add(&cps->cp_list, &p_stid->sc_cp_list);
789 spin_unlock(&nn->s2s_cp_lock);
790 return cps;
791out_free:
792 kfree(cps);
793 return NULL;
794}
795
796void nfs4_free_copy_state(struct nfsd4_copy *copy)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400797{
798 struct nfsd_net *nn;
799
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400800 WARN_ON_ONCE(copy->cp_stateid.sc_type != NFS4_COPY_STID);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400801 nn = net_generic(copy->cp_clp->net, nfsd_net_id);
802 spin_lock(&nn->s2s_cp_lock);
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400803 idr_remove(&nn->s2s_cp_stateids,
804 copy->cp_stateid.stid.si_opaque.so_id);
805 spin_unlock(&nn->s2s_cp_lock);
806}
807
808static void nfs4_free_cpntf_statelist(struct net *net, struct nfs4_stid *stid)
809{
810 struct nfs4_cpntf_state *cps;
811 struct nfsd_net *nn;
812
813 nn = net_generic(net, nfsd_net_id);
814 spin_lock(&nn->s2s_cp_lock);
815 while (!list_empty(&stid->sc_cp_list)) {
816 cps = list_first_entry(&stid->sc_cp_list,
817 struct nfs4_cpntf_state, cp_list);
818 _free_cpntf_state_locked(nn, cps);
819 }
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400820 spin_unlock(&nn->s2s_cp_lock);
821}
822
Jeff Laytonb49e0842014-07-29 21:34:11 -0400823static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400824{
Trond Myklebust60116952014-07-29 21:34:06 -0400825 struct nfs4_stid *stid;
Trond Myklebust60116952014-07-29 21:34:06 -0400826
Kinglong Meed19fb702017-01-18 19:04:42 +0800827 stid = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_ol_stateid);
Trond Myklebust60116952014-07-29 21:34:06 -0400828 if (!stid)
829 return NULL;
830
Kinglong Meed19fb702017-01-18 19:04:42 +0800831 return openlockstateid(stid);
Trond Myklebust60116952014-07-29 21:34:06 -0400832}
833
834static void nfs4_free_deleg(struct nfs4_stid *stid)
835{
Trond Myklebust60116952014-07-29 21:34:06 -0400836 kmem_cache_free(deleg_slab, stid);
837 atomic_long_dec(&num_delegations);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400838}
839
NeilBrown6282cd52014-06-04 17:39:26 +1000840/*
841 * When we recall a delegation, we should be careful not to hand it
842 * out again straight away.
843 * To ensure this we keep a pair of bloom filters ('new' and 'old')
844 * in which the filehandles of recalled delegations are "stored".
845 * If a filehandle appear in either filter, a delegation is blocked.
846 * When a delegation is recalled, the filehandle is stored in the "new"
847 * filter.
848 * Every 30 seconds we swap the filters and clear the "new" one,
849 * unless both are empty of course.
850 *
851 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
852 * low 3 bytes as hash-table indices.
853 *
Jeff Laytonf54fe962014-07-25 07:34:26 -0400854 * 'blocked_delegations_lock', which is always taken in block_delegations(),
NeilBrown6282cd52014-06-04 17:39:26 +1000855 * is used to manage concurrent access. Testing does not need the lock
856 * except when swapping the two filters.
857 */
Jeff Laytonf54fe962014-07-25 07:34:26 -0400858static DEFINE_SPINLOCK(blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000859static struct bloom_pair {
860 int entries, old_entries;
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200861 time64_t swap_time;
NeilBrown6282cd52014-06-04 17:39:26 +1000862 int new; /* index into 'set' */
863 DECLARE_BITMAP(set[2], 256);
864} blocked_delegations;
865
866static int delegation_blocked(struct knfsd_fh *fh)
867{
868 u32 hash;
869 struct bloom_pair *bd = &blocked_delegations;
870
871 if (bd->entries == 0)
872 return 0;
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200873 if (ktime_get_seconds() - bd->swap_time > 30) {
Jeff Laytonf54fe962014-07-25 07:34:26 -0400874 spin_lock(&blocked_delegations_lock);
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200875 if (ktime_get_seconds() - bd->swap_time > 30) {
NeilBrown6282cd52014-06-04 17:39:26 +1000876 bd->entries -= bd->old_entries;
877 bd->old_entries = bd->entries;
878 memset(bd->set[bd->new], 0,
879 sizeof(bd->set[0]));
880 bd->new = 1-bd->new;
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200881 bd->swap_time = ktime_get_seconds();
NeilBrown6282cd52014-06-04 17:39:26 +1000882 }
Jeff Laytonf54fe962014-07-25 07:34:26 -0400883 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000884 }
Daniel Borkmann87545892014-12-10 16:33:11 +0100885 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000886 if (test_bit(hash&255, bd->set[0]) &&
887 test_bit((hash>>8)&255, bd->set[0]) &&
888 test_bit((hash>>16)&255, bd->set[0]))
889 return 1;
890
891 if (test_bit(hash&255, bd->set[1]) &&
892 test_bit((hash>>8)&255, bd->set[1]) &&
893 test_bit((hash>>16)&255, bd->set[1]))
894 return 1;
895
896 return 0;
897}
898
899static void block_delegations(struct knfsd_fh *fh)
900{
901 u32 hash;
902 struct bloom_pair *bd = &blocked_delegations;
903
Daniel Borkmann87545892014-12-10 16:33:11 +0100904 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000905
Jeff Laytonf54fe962014-07-25 07:34:26 -0400906 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000907 __set_bit(hash&255, bd->set[bd->new]);
908 __set_bit((hash>>8)&255, bd->set[bd->new]);
909 __set_bit((hash>>16)&255, bd->set[bd->new]);
910 if (bd->entries == 0)
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200911 bd->swap_time = ktime_get_seconds();
NeilBrown6282cd52014-06-04 17:39:26 +1000912 bd->entries += 1;
Jeff Laytonf54fe962014-07-25 07:34:26 -0400913 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000914}
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916static struct nfs4_delegation *
J. Bruce Fields86d29b12018-02-21 15:27:28 -0500917alloc_init_deleg(struct nfs4_client *clp, struct nfs4_file *fp,
918 struct svc_fh *current_fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +0200919 struct nfs4_clnt_odstate *odstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 struct nfs4_delegation *dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400922 long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 dprintk("NFSD alloc_init_deleg\n");
Trond Myklebust02a35082014-07-25 07:34:22 -0400925 n = atomic_long_inc_return(&num_delegations);
926 if (n < 0 || n > max_delegations)
927 goto out_dec;
NeilBrown6282cd52014-06-04 17:39:26 +1000928 if (delegation_blocked(&current_fh->fh_handle))
Trond Myklebust02a35082014-07-25 07:34:22 -0400929 goto out_dec;
Kinglong Meed19fb702017-01-18 19:04:42 +0800930 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab, nfs4_free_deleg));
NeilBrown5b2d21c2005-06-23 22:03:04 -0700931 if (dp == NULL)
Trond Myklebust02a35082014-07-25 07:34:22 -0400932 goto out_dec;
Trond Myklebust60116952014-07-29 21:34:06 -0400933
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400934 /*
935 * delegation seqid's are never incremented. The 4.1 special
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400936 * meaning of seqid 0 isn't meaningful, really, but let's avoid
937 * 0 anyway just for consistency and use 1:
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400938 */
939 dp->dl_stid.sc_stateid.si_generation = 1;
NeilBrownea1da632005-06-23 22:04:17 -0700940 INIT_LIST_HEAD(&dp->dl_perfile);
941 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 INIT_LIST_HEAD(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200943 dp->dl_clnt_odstate = odstate;
944 get_clnt_odstate(odstate);
J. Bruce Fields99c41512013-05-21 16:21:25 -0400945 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
Christoph Hellwigf0b5de12014-09-24 12:19:18 +0200946 dp->dl_retries = 1;
947 nfsd4_init_cb(&dp->dl_recall, dp->dl_stid.sc_client,
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200948 &nfsd4_cb_recall_ops, NFSPROC4_CLNT_CB_RECALL);
J. Bruce Fields86d29b12018-02-21 15:27:28 -0500949 get_nfs4_file(fp);
950 dp->dl_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400952out_dec:
953 atomic_long_dec(&num_delegations);
954 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957void
Trond Myklebust60116952014-07-29 21:34:06 -0400958nfs4_put_stid(struct nfs4_stid *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Trond Myklebust11b91642014-07-29 21:34:08 -0400960 struct nfs4_file *fp = s->sc_file;
Trond Myklebust60116952014-07-29 21:34:06 -0400961 struct nfs4_client *clp = s->sc_client;
962
Jeff Layton4770d722014-07-29 21:34:10 -0400963 might_lock(&clp->cl_lock);
964
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300965 if (!refcount_dec_and_lock(&s->sc_count, &clp->cl_lock)) {
Jeff Laytonb401be222014-07-29 21:34:33 -0400966 wake_up_all(&close_wq);
Trond Myklebust60116952014-07-29 21:34:06 -0400967 return;
Jeff Laytonb401be222014-07-29 21:34:33 -0400968 }
Trond Myklebust60116952014-07-29 21:34:06 -0400969 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400970 nfs4_free_cpntf_statelist(clp->net, s);
Jeff Layton4770d722014-07-29 21:34:10 -0400971 spin_unlock(&clp->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400972 s->sc_free(s);
Trond Myklebust11b91642014-07-29 21:34:08 -0400973 if (fp)
974 put_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
Jeff Layton9767feb2015-10-01 09:05:50 -0400977void
978nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid)
979{
980 stateid_t *src = &stid->sc_stateid;
981
982 spin_lock(&stid->sc_lock);
983 if (unlikely(++src->si_generation == 0))
984 src->si_generation = 1;
985 memcpy(dst, src, sizeof(*dst));
986 spin_unlock(&stid->sc_lock);
987}
988
J. Bruce Fields353601e2018-02-16 14:29:42 -0500989static void put_deleg_file(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400991 struct nfsd_file *nf = NULL;
J. Bruce Fields353601e2018-02-16 14:29:42 -0500992
993 spin_lock(&fp->fi_lock);
994 if (--fp->fi_delegees == 0)
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400995 swap(nf, fp->fi_deleg_file);
J. Bruce Fields353601e2018-02-16 14:29:42 -0500996 spin_unlock(&fp->fi_lock);
997
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400998 if (nf)
999 nfsd_file_put(nf);
J. Bruce Fields353601e2018-02-16 14:29:42 -05001000}
1001
1002static void nfs4_unlock_deleg_lease(struct nfs4_delegation *dp)
1003{
J. Bruce Fieldscba7b3d2018-02-15 15:50:49 -05001004 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001005 struct nfsd_file *nf = fp->fi_deleg_file;
Jeff Layton417c6622014-07-21 09:34:57 -04001006
J. Bruce Fieldsb8232d32018-02-15 15:29:15 -05001007 WARN_ON_ONCE(!fp->fi_delegees);
1008
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001009 vfs_setlease(nf->nf_file, F_UNLCK, NULL, (void **)&dp);
J. Bruce Fields353601e2018-02-16 14:29:42 -05001010 put_deleg_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001013static void destroy_unhashed_deleg(struct nfs4_delegation *dp)
1014{
1015 put_clnt_odstate(dp->dl_clnt_odstate);
J. Bruce Fields353601e2018-02-16 14:29:42 -05001016 nfs4_unlock_deleg_lease(dp);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001017 nfs4_put_stid(&dp->dl_stid);
1018}
1019
Christoph Hellwigcd61c522014-08-14 08:44:57 +02001020void nfs4_unhash_stid(struct nfs4_stid *s)
J. Bruce Fields6136d2b2011-09-23 16:21:15 -04001021{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05001022 s->sc_type = 0;
J. Bruce Fields6136d2b2011-09-23 16:21:15 -04001023}
1024
Andrew Elble34ed9872015-10-15 12:07:28 -04001025/**
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001026 * nfs4_delegation_exists - Discover if this delegation already exists
Andrew Elble34ed9872015-10-15 12:07:28 -04001027 * @clp: a pointer to the nfs4_client we're granting a delegation to
1028 * @fp: a pointer to the nfs4_file we're granting a delegation on
1029 *
1030 * Return:
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001031 * On success: true iff an existing delegation is found
Andrew Elble34ed9872015-10-15 12:07:28 -04001032 */
1033
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001034static bool
1035nfs4_delegation_exists(struct nfs4_client *clp, struct nfs4_file *fp)
Benny Halevy931ee562014-05-30 09:09:27 -04001036{
Andrew Elble34ed9872015-10-15 12:07:28 -04001037 struct nfs4_delegation *searchdp = NULL;
1038 struct nfs4_client *searchclp = NULL;
1039
Benny Halevycdc975052014-05-30 09:09:30 -04001040 lockdep_assert_held(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04001041 lockdep_assert_held(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -04001042
Andrew Elble34ed9872015-10-15 12:07:28 -04001043 list_for_each_entry(searchdp, &fp->fi_delegations, dl_perfile) {
1044 searchclp = searchdp->dl_stid.sc_client;
1045 if (clp == searchclp) {
Fengguang Wu51d87bc2018-03-22 13:37:20 +08001046 return true;
Andrew Elble34ed9872015-10-15 12:07:28 -04001047 }
1048 }
Fengguang Wu51d87bc2018-03-22 13:37:20 +08001049 return false;
Andrew Elble34ed9872015-10-15 12:07:28 -04001050}
1051
1052/**
1053 * hash_delegation_locked - Add a delegation to the appropriate lists
1054 * @dp: a pointer to the nfs4_delegation we are adding.
1055 * @fp: a pointer to the nfs4_file we're granting a delegation on
1056 *
1057 * Return:
1058 * On success: NULL if the delegation was successfully hashed.
1059 *
1060 * On error: -EAGAIN if one was previously granted to this
1061 * nfs4_client for this nfs4_file. Delegation is not hashed.
1062 *
1063 */
1064
1065static int
1066hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
1067{
Andrew Elble34ed9872015-10-15 12:07:28 -04001068 struct nfs4_client *clp = dp->dl_stid.sc_client;
1069
1070 lockdep_assert_held(&state_lock);
1071 lockdep_assert_held(&fp->fi_lock);
1072
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001073 if (nfs4_delegation_exists(clp, fp))
1074 return -EAGAIN;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03001075 refcount_inc(&dp->dl_stid.sc_count);
Benny Halevy3fb87d12014-05-30 09:09:31 -04001076 dp->dl_stid.sc_type = NFS4_DELEG_STID;
Benny Halevy931ee562014-05-30 09:09:27 -04001077 list_add(&dp->dl_perfile, &fp->fi_delegations);
Andrew Elble34ed9872015-10-15 12:07:28 -04001078 list_add(&dp->dl_perclnt, &clp->cl_delegations);
1079 return 0;
Benny Halevy931ee562014-05-30 09:09:27 -04001080}
1081
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001082static bool
Jeff Layton42690672014-07-25 07:34:20 -04001083unhash_delegation_locked(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Trond Myklebust11b91642014-07-29 21:34:08 -04001085 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Layton02e12152014-07-16 10:31:57 -04001086
Jeff Layton42690672014-07-25 07:34:20 -04001087 lockdep_assert_held(&state_lock);
1088
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001089 if (list_empty(&dp->dl_perfile))
1090 return false;
1091
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04001092 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
Jeff Laytond55a1662014-07-22 13:52:06 -04001093 /* Ensure that deleg break won't try to requeue it */
1094 ++dp->dl_time;
Jeff Layton417c6622014-07-21 09:34:57 -04001095 spin_lock(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -04001096 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 list_del_init(&dp->dl_recall_lru);
Jeff Layton02e12152014-07-16 10:31:57 -04001098 list_del_init(&dp->dl_perfile);
1099 spin_unlock(&fp->fi_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001100 return true;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001101}
1102
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001103static void destroy_delegation(struct nfs4_delegation *dp)
1104{
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001105 bool unhashed;
1106
Jeff Layton42690672014-07-25 07:34:20 -04001107 spin_lock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001108 unhashed = unhash_delegation_locked(dp);
Jeff Layton42690672014-07-25 07:34:20 -04001109 spin_unlock(&state_lock);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001110 if (unhashed)
1111 destroy_unhashed_deleg(dp);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001112}
1113
1114static void revoke_delegation(struct nfs4_delegation *dp)
1115{
1116 struct nfs4_client *clp = dp->dl_stid.sc_client;
1117
Jeff Layton2d4a5322014-07-25 07:34:21 -04001118 WARN_ON(!list_empty(&dp->dl_recall_lru));
1119
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001120 if (clp->cl_minorversion) {
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001121 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001122 refcount_inc(&dp->dl_stid.sc_count);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001123 spin_lock(&clp->cl_lock);
1124 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
1125 spin_unlock(&clp->cl_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001126 }
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001127 destroy_unhashed_deleg(dp);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001128}
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130/*
1131 * SETCLIENTID state
1132 */
1133
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001134static unsigned int clientid_hashval(u32 id)
1135{
1136 return id & CLIENT_HASH_MASK;
1137}
1138
Scott Mayhew6b189102019-03-26 18:06:26 -04001139static unsigned int clientstr_hashval(struct xdr_netobj name)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001140{
Scott Mayhew6b189102019-03-26 18:06:26 -04001141 return opaque_hashval(name.data, 8) & CLIENT_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/*
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001145 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1146 * st_{access,deny}_bmap field of the stateid, in order to track not
1147 * only what share bits are currently in force, but also what
1148 * combinations of share bits previous opens have used. This allows us
1149 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1150 * return an error if the client attempt to downgrade to a combination
1151 * of share bits not explicable by closing some of its previous opens.
1152 *
1153 * XXX: This enforcement is actually incomplete, since we don't keep
1154 * track of access/deny bit combinations; so, e.g., we allow:
1155 *
1156 * OPEN allow read, deny write
1157 * OPEN allow both, deny none
1158 * DOWNGRADE allow read, deny none
1159 *
1160 * which we should reject.
1161 */
Jeff Layton5ae037e2012-05-11 09:45:11 -04001162static unsigned int
1163bmap_to_share_mode(unsigned long bmap) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001164 int i;
Jeff Layton5ae037e2012-05-11 09:45:11 -04001165 unsigned int access = 0;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001166
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001167 for (i = 1; i < 4; i++) {
1168 if (test_bit(i, &bmap))
Jeff Layton5ae037e2012-05-11 09:45:11 -04001169 access |= i;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001170 }
Jeff Layton5ae037e2012-05-11 09:45:11 -04001171 return access;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001172}
1173
Jeff Layton82c5ff12012-05-11 09:45:13 -04001174/* set share access for a given stateid */
1175static inline void
1176set_access(u32 access, struct nfs4_ol_stateid *stp)
1177{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001178 unsigned char mask = 1 << access;
1179
1180 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1181 stp->st_access_bmap |= mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001182}
1183
1184/* clear share access for a given stateid */
1185static inline void
1186clear_access(u32 access, struct nfs4_ol_stateid *stp)
1187{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001188 unsigned char mask = 1 << access;
1189
1190 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1191 stp->st_access_bmap &= ~mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001192}
1193
1194/* test whether a given stateid has access */
1195static inline bool
1196test_access(u32 access, struct nfs4_ol_stateid *stp)
1197{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001198 unsigned char mask = 1 << access;
1199
1200 return (bool)(stp->st_access_bmap & mask);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001201}
1202
Jeff Laytonce0fc432012-05-11 09:45:14 -04001203/* set share deny for a given stateid */
1204static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001205set_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001206{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001207 unsigned char mask = 1 << deny;
1208
1209 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1210 stp->st_deny_bmap |= mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001211}
1212
1213/* clear share deny for a given stateid */
1214static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001215clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001216{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001217 unsigned char mask = 1 << deny;
1218
1219 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1220 stp->st_deny_bmap &= ~mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001221}
1222
1223/* test whether a given stateid is denying specific access */
1224static inline bool
Jeff Laytonc11c5912014-07-10 14:07:30 -04001225test_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001226{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001227 unsigned char mask = 1 << deny;
1228
1229 return (bool)(stp->st_deny_bmap & mask);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001230}
1231
1232static int nfs4_access_to_omode(u32 access)
1233{
J. Bruce Fields8f34a432010-09-02 15:23:16 -04001234 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001235 case NFS4_SHARE_ACCESS_READ:
1236 return O_RDONLY;
1237 case NFS4_SHARE_ACCESS_WRITE:
1238 return O_WRONLY;
1239 case NFS4_SHARE_ACCESS_BOTH:
1240 return O_RDWR;
1241 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05001242 WARN_ON_ONCE(1);
1243 return O_RDONLY;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001244}
1245
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001246/*
1247 * A stateid that had a deny mode associated with it is being released
1248 * or downgraded. Recalculate the deny mode on the file.
1249 */
1250static void
1251recalculate_deny_mode(struct nfs4_file *fp)
1252{
1253 struct nfs4_ol_stateid *stp;
1254
1255 spin_lock(&fp->fi_lock);
1256 fp->fi_share_deny = 0;
1257 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
1258 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
1259 spin_unlock(&fp->fi_lock);
1260}
1261
1262static void
1263reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
1264{
1265 int i;
1266 bool change = false;
1267
1268 for (i = 1; i < 4; i++) {
1269 if ((i & deny) != i) {
1270 change = true;
1271 clear_deny(i, stp);
1272 }
1273 }
1274
1275 /* Recalculate per-file deny mode if there was a change */
1276 if (change)
Trond Myklebust11b91642014-07-29 21:34:08 -04001277 recalculate_deny_mode(stp->st_stid.sc_file);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001278}
1279
Jeff Layton82c5ff12012-05-11 09:45:13 -04001280/* release all access and file references for a given stateid */
1281static void
1282release_all_access(struct nfs4_ol_stateid *stp)
1283{
1284 int i;
Trond Myklebust11b91642014-07-29 21:34:08 -04001285 struct nfs4_file *fp = stp->st_stid.sc_file;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001286
1287 if (fp && stp->st_deny_bmap != 0)
1288 recalculate_deny_mode(fp);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001289
1290 for (i = 1; i < 4; i++) {
1291 if (test_access(i, stp))
Trond Myklebust11b91642014-07-29 21:34:08 -04001292 nfs4_file_put_access(stp->st_stid.sc_file, i);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001293 clear_access(i, stp);
1294 }
1295}
1296
Kinglong Meed50ffde2015-07-16 12:05:07 +08001297static inline void nfs4_free_stateowner(struct nfs4_stateowner *sop)
1298{
1299 kfree(sop->so_owner.data);
1300 sop->so_ops->so_free(sop);
1301}
1302
Jeff Layton6b180f02014-07-29 21:34:26 -04001303static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
1304{
Jeff Laytona819ecc2014-07-29 21:34:38 -04001305 struct nfs4_client *clp = sop->so_client;
1306
1307 might_lock(&clp->cl_lock);
1308
1309 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock))
Jeff Layton6b180f02014-07-29 21:34:26 -04001310 return;
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001311 sop->so_ops->so_unhash(sop);
Jeff Laytona819ecc2014-07-29 21:34:38 -04001312 spin_unlock(&clp->cl_lock);
Kinglong Meed50ffde2015-07-16 12:05:07 +08001313 nfs4_free_stateowner(sop);
Jeff Layton6b180f02014-07-29 21:34:26 -04001314}
1315
Trond Myklebusta451b122020-03-01 18:21:38 -05001316static bool
1317nfs4_ol_stateid_unhashed(const struct nfs4_ol_stateid *stp)
1318{
1319 return list_empty(&stp->st_perfile);
1320}
1321
Jeff Laytone8568732015-08-24 12:41:47 -04001322static bool unhash_ol_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001323{
Trond Myklebust11b91642014-07-29 21:34:08 -04001324 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -04001325
Jeff Layton1c755dc2014-07-29 21:34:12 -04001326 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
1327
Jeff Laytone8568732015-08-24 12:41:47 -04001328 if (list_empty(&stp->st_perfile))
1329 return false;
1330
Trond Myklebust1d31a252014-07-10 14:07:25 -04001331 spin_lock(&fp->fi_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001332 list_del_init(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -04001333 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001334 list_del(&stp->st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001335 return true;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001336}
1337
Trond Myklebust60116952014-07-29 21:34:06 -04001338static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001339{
Trond Myklebust60116952014-07-29 21:34:06 -04001340 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -04001341
Sachin Bhamare8287f002015-04-27 14:50:14 +02001342 put_clnt_odstate(stp->st_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04001343 release_all_access(stp);
Jeff Laytond3134b12014-07-29 21:34:32 -04001344 if (stp->st_stateowner)
1345 nfs4_put_stateowner(stp->st_stateowner);
Trond Myklebust60116952014-07-29 21:34:06 -04001346 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001347}
1348
Jeff Laytonb49e0842014-07-29 21:34:11 -04001349static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001350{
Jeff Laytonb49e0842014-07-29 21:34:11 -04001351 struct nfs4_ol_stateid *stp = openlockstateid(stid);
1352 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001353 struct nfsd_file *nf;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001354
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001355 nf = find_any_file(stp->st_stid.sc_file);
1356 if (nf) {
1357 get_file(nf->nf_file);
1358 filp_close(nf->nf_file, (fl_owner_t)lo);
1359 nfsd_file_put(nf);
1360 }
Jeff Laytonb49e0842014-07-29 21:34:11 -04001361 nfs4_free_ol_stateid(stid);
1362}
1363
Jeff Layton2c41beb2014-07-29 21:34:41 -04001364/*
1365 * Put the persistent reference to an already unhashed generic stateid, while
1366 * holding the cl_lock. If it's the last reference, then put it onto the
1367 * reaplist for later destruction.
1368 */
1369static void put_ol_stateid_locked(struct nfs4_ol_stateid *stp,
1370 struct list_head *reaplist)
1371{
1372 struct nfs4_stid *s = &stp->st_stid;
1373 struct nfs4_client *clp = s->sc_client;
1374
1375 lockdep_assert_held(&clp->cl_lock);
1376
1377 WARN_ON_ONCE(!list_empty(&stp->st_locks));
1378
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03001379 if (!refcount_dec_and_test(&s->sc_count)) {
Jeff Layton2c41beb2014-07-29 21:34:41 -04001380 wake_up_all(&close_wq);
1381 return;
1382 }
1383
1384 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
1385 list_add(&stp->st_locks, reaplist);
1386}
1387
Jeff Laytone8568732015-08-24 12:41:47 -04001388static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Layton3c1c9952014-07-29 21:34:39 -04001389{
Chuck Leverf46c4452016-10-29 18:19:03 -04001390 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001391
Trond Myklebusta451b122020-03-01 18:21:38 -05001392 if (!unhash_ol_stateid(stp))
1393 return false;
Jeff Layton3c1c9952014-07-29 21:34:39 -04001394 list_del_init(&stp->st_locks);
Christoph Hellwigcd61c522014-08-14 08:44:57 +02001395 nfs4_unhash_stid(&stp->st_stid);
Trond Myklebusta451b122020-03-01 18:21:38 -05001396 return true;
Jeff Layton3c1c9952014-07-29 21:34:39 -04001397}
1398
Jeff Layton5adfd882014-07-29 21:34:31 -04001399static void release_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Laytonb49e0842014-07-29 21:34:11 -04001400{
Chuck Leverf46c4452016-10-29 18:19:03 -04001401 struct nfs4_client *clp = stp->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04001402 bool unhashed;
Jeff Layton1c755dc2014-07-29 21:34:12 -04001403
Chuck Leverf46c4452016-10-29 18:19:03 -04001404 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001405 unhashed = unhash_lock_stateid(stp);
Chuck Leverf46c4452016-10-29 18:19:03 -04001406 spin_unlock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001407 if (unhashed)
1408 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001409}
1410
Trond Myklebustc58c6612014-07-29 21:34:35 -04001411static void unhash_lockowner_locked(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001412{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001413 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustc58c6612014-07-29 21:34:35 -04001414
Trond Myklebustd4f04892014-07-29 21:34:36 -04001415 lockdep_assert_held(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04001416
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001417 list_del_init(&lo->lo_owner.so_strhash);
1418}
1419
Jeff Layton2c41beb2014-07-29 21:34:41 -04001420/*
1421 * Free a list of generic stateids that were collected earlier after being
1422 * fully unhashed.
1423 */
1424static void
1425free_ol_stateid_reaplist(struct list_head *reaplist)
1426{
1427 struct nfs4_ol_stateid *stp;
Kinglong Meefb94d762014-08-05 21:20:27 +08001428 struct nfs4_file *fp;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001429
1430 might_sleep();
1431
1432 while (!list_empty(reaplist)) {
1433 stp = list_first_entry(reaplist, struct nfs4_ol_stateid,
1434 st_locks);
1435 list_del(&stp->st_locks);
Kinglong Meefb94d762014-08-05 21:20:27 +08001436 fp = stp->st_stid.sc_file;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001437 stp->st_stid.sc_free(&stp->st_stid);
Kinglong Meefb94d762014-08-05 21:20:27 +08001438 if (fp)
1439 put_nfs4_file(fp);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001440 }
1441}
1442
Jeff Laytond83017f2014-07-29 21:34:42 -04001443static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp,
1444 struct list_head *reaplist)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001445{
1446 struct nfs4_ol_stateid *stp;
1447
Jeff Laytone8568732015-08-24 12:41:47 -04001448 lockdep_assert_held(&open_stp->st_stid.sc_client->cl_lock);
1449
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001450 while (!list_empty(&open_stp->st_locks)) {
1451 stp = list_entry(open_stp->st_locks.next,
1452 struct nfs4_ol_stateid, st_locks);
Jeff Laytone8568732015-08-24 12:41:47 -04001453 WARN_ON(!unhash_lock_stateid(stp));
Jeff Laytond83017f2014-07-29 21:34:42 -04001454 put_ol_stateid_locked(stp, reaplist);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001455 }
1456}
1457
Jeff Laytone8568732015-08-24 12:41:47 -04001458static bool unhash_open_stateid(struct nfs4_ol_stateid *stp,
Jeff Laytond83017f2014-07-29 21:34:42 -04001459 struct list_head *reaplist)
J. Bruce Fields22839632009-01-11 14:27:17 -05001460{
Jeff Layton2c41beb2014-07-29 21:34:41 -04001461 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1462
Trond Myklebusta451b122020-03-01 18:21:38 -05001463 if (!unhash_ol_stateid(stp))
1464 return false;
Jeff Laytond83017f2014-07-29 21:34:42 -04001465 release_open_stateid_locks(stp, reaplist);
Trond Myklebusta451b122020-03-01 18:21:38 -05001466 return true;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04001467}
1468
1469static void release_open_stateid(struct nfs4_ol_stateid *stp)
1470{
Jeff Layton2c41beb2014-07-29 21:34:41 -04001471 LIST_HEAD(reaplist);
1472
1473 spin_lock(&stp->st_stid.sc_client->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001474 if (unhash_open_stateid(stp, &reaplist))
1475 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001476 spin_unlock(&stp->st_stid.sc_client->cl_lock);
1477 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fields22839632009-01-11 14:27:17 -05001478}
1479
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001480static void unhash_openowner_locked(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001481{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001482 struct nfs4_client *clp = oo->oo_owner.so_client;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001483
Trond Myklebustd4f04892014-07-29 21:34:36 -04001484 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001485
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001486 list_del_init(&oo->oo_owner.so_strhash);
1487 list_del_init(&oo->oo_perclient);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001488}
1489
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001490static void release_last_closed_stateid(struct nfs4_openowner *oo)
1491{
Jeff Layton217526e2014-07-30 08:27:11 -04001492 struct nfsd_net *nn = net_generic(oo->oo_owner.so_client->net,
1493 nfsd_net_id);
1494 struct nfs4_ol_stateid *s;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001495
Jeff Layton217526e2014-07-30 08:27:11 -04001496 spin_lock(&nn->client_lock);
1497 s = oo->oo_last_closed_stid;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001498 if (s) {
Jeff Laytond3134b12014-07-29 21:34:32 -04001499 list_del_init(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001500 oo->oo_last_closed_stid = NULL;
1501 }
Jeff Layton217526e2014-07-30 08:27:11 -04001502 spin_unlock(&nn->client_lock);
1503 if (s)
1504 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001505}
1506
Jeff Layton2c41beb2014-07-29 21:34:41 -04001507static void release_openowner(struct nfs4_openowner *oo)
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001508{
1509 struct nfs4_ol_stateid *stp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001510 struct nfs4_client *clp = oo->oo_owner.so_client;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001511 struct list_head reaplist;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001512
Jeff Layton2c41beb2014-07-29 21:34:41 -04001513 INIT_LIST_HEAD(&reaplist);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001514
Trond Myklebustd4f04892014-07-29 21:34:36 -04001515 spin_lock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001516 unhash_openowner_locked(oo);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001517 while (!list_empty(&oo->oo_owner.so_stateids)) {
1518 stp = list_first_entry(&oo->oo_owner.so_stateids,
1519 struct nfs4_ol_stateid, st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001520 if (unhash_open_stateid(stp, &reaplist))
1521 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001522 }
Trond Myklebustd4f04892014-07-29 21:34:36 -04001523 spin_unlock(&clp->cl_lock);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001524 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001525 release_last_closed_stateid(oo);
Jeff Layton6b180f02014-07-29 21:34:26 -04001526 nfs4_put_stateowner(&oo->oo_owner);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001527}
1528
Marc Eshel5282fd72009-04-03 08:27:52 +03001529static inline int
1530hash_sessionid(struct nfs4_sessionid *sessionid)
1531{
1532 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1533
1534 return sid->sequence % SESSION_HASH_SIZE;
1535}
1536
Mark Salter135dd002015-04-06 09:46:00 -04001537#ifdef CONFIG_SUNRPC_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001538static inline void
1539dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1540{
1541 u32 *ptr = (u32 *)(&sessionid->data[0]);
1542 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1543}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001544#else
1545static inline void
1546dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1547{
1548}
1549#endif
1550
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001551/*
1552 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1553 * won't be used for replay.
1554 */
1555void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1556{
1557 struct nfs4_stateowner *so = cstate->replay_owner;
1558
1559 if (nfserr == nfserr_replay_me)
1560 return;
1561
1562 if (!seqid_mutating_err(ntohl(nfserr))) {
Jeff Layton58fb12e2014-07-29 21:34:27 -04001563 nfsd4_cstate_clear_replay(cstate);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001564 return;
1565 }
1566 if (!so)
1567 return;
1568 if (so->so_is_open_owner)
1569 release_last_closed_stateid(openowner(so));
1570 so->so_seqid++;
1571 return;
1572}
Marc Eshel5282fd72009-04-03 08:27:52 +03001573
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001574static void
1575gen_sessionid(struct nfsd4_session *ses)
1576{
1577 struct nfs4_client *clp = ses->se_client;
1578 struct nfsd4_sessionid *sid;
1579
1580 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1581 sid->clientid = clp->cl_clientid;
1582 sid->sequence = current_sessionid++;
1583 sid->reserved = 0;
1584}
1585
1586/*
Andy Adamsona649637c72009-08-28 08:45:01 -04001587 * The protocol defines ca_maxresponssize_cached to include the size of
1588 * the rpc header, but all we need to cache is the data starting after
1589 * the end of the initial SEQUENCE operation--the rest we regenerate
1590 * each time. Therefore we can advertise a ca_maxresponssize_cached
1591 * value that is the number of bytes in our cache plus a few additional
1592 * bytes. In order to stay on the safe side, and not promise more than
1593 * we can cache, those additional bytes must be the minimum possible: 24
1594 * bytes of rpc header (xid through accept state, with AUTH_NULL
1595 * verifier), 12 for the compound header (with zero-length tag), and 44
1596 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001597 */
Andy Adamsona649637c72009-08-28 08:45:01 -04001598#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1599
Andy Adamson557ce262009-08-28 08:45:04 -04001600static void
1601free_session_slots(struct nfsd4_session *ses)
1602{
1603 int i;
1604
J. Bruce Fields53da6a52017-10-17 20:38:49 -04001605 for (i = 0; i < ses->se_fchannel.maxreqs; i++) {
1606 free_svc_cred(&ses->se_slots[i]->sl_cred);
Andy Adamson557ce262009-08-28 08:45:04 -04001607 kfree(ses->se_slots[i]);
J. Bruce Fields53da6a52017-10-17 20:38:49 -04001608 }
Andy Adamson557ce262009-08-28 08:45:04 -04001609}
1610
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001611/*
1612 * We don't actually need to cache the rpc and session headers, so we
1613 * can allocate a little less for each slot:
1614 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001615static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001616{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001617 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001618
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001619 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1620 size = 0;
1621 else
1622 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1623 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001624}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001625
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001626/*
1627 * XXX: If we run out of reserved DRC memory we could (up to a point)
1628 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001629 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001630 */
NeilBrown2030ca52019-09-20 16:36:45 +10001631static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001632{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001633 u32 slotsize = slot_bytes(ca);
1634 u32 num = ca->maxreqs;
J. Bruce Fieldsc54f24e2019-02-21 10:47:00 -05001635 unsigned long avail, total_avail;
NeilBrown2030ca52019-09-20 16:36:45 +10001636 unsigned int scale_factor;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001637
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001638 spin_lock(&nfsd_drc_lock);
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001639 if (nfsd_drc_max_mem > nfsd_drc_mem_used)
1640 total_avail = nfsd_drc_max_mem - nfsd_drc_mem_used;
1641 else
1642 /* We have handed out more space than we chose in
1643 * set_max_drc() to allow. That isn't really a
1644 * problem as long as that doesn't make us think we
1645 * have lots more due to integer overflow.
1646 */
1647 total_avail = 0;
J. Bruce Fieldsc54f24e2019-02-21 10:47:00 -05001648 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION, total_avail);
J. Bruce Fieldsde766e52017-09-19 19:25:41 -04001649 /*
NeilBrown2030ca52019-09-20 16:36:45 +10001650 * Never use more than a fraction of the remaining memory,
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001651 * unless it's the only way to give this client a slot.
NeilBrown2030ca52019-09-20 16:36:45 +10001652 * The chosen fraction is either 1/8 or 1/number of threads,
1653 * whichever is smaller. This ensures there are adequate
1654 * slots to support multiple clients per thread.
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001655 * Give the client one slot even if that would require
1656 * over-allocation--it is better than failure.
J. Bruce Fieldsde766e52017-09-19 19:25:41 -04001657 */
NeilBrown2030ca52019-09-20 16:36:45 +10001658 scale_factor = max_t(unsigned int, 8, nn->nfsd_serv->sv_nrthreads);
1659
1660 avail = clamp_t(unsigned long, avail, slotsize,
1661 total_avail/scale_factor);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001662 num = min_t(int, num, avail / slotsize);
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001663 num = max_t(int, num, 1);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001664 nfsd_drc_mem_used += num * slotsize;
1665 spin_unlock(&nfsd_drc_lock);
1666
1667 return num;
1668}
1669
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001670static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001671{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001672 int slotsize = slot_bytes(ca);
1673
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001674 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001675 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001676 spin_unlock(&nfsd_drc_lock);
1677}
1678
Kinglong Mee60810e52014-01-01 00:35:47 +08001679static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1680 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001681{
Kinglong Mee60810e52014-01-01 00:35:47 +08001682 int numslots = fattrs->maxreqs;
1683 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001684 struct nfsd4_session *new;
1685 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001686
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001687 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001688 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1689 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001690
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001691 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001692 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001693 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001694 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001695 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001696 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001697 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001698 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001699 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001700
1701 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1702 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1703
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001704 return new;
1705out_free:
1706 while (i--)
1707 kfree(new->se_slots[i]);
1708 kfree(new);
1709 return NULL;
1710}
1711
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001712static void free_conn(struct nfsd4_conn *c)
1713{
1714 svc_xprt_put(c->cn_xprt);
1715 kfree(c);
1716}
1717
1718static void nfsd4_conn_lost(struct svc_xpt_user *u)
1719{
1720 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1721 struct nfs4_client *clp = c->cn_session->se_client;
1722
1723 spin_lock(&clp->cl_lock);
1724 if (!list_empty(&c->cn_persession)) {
1725 list_del(&c->cn_persession);
1726 free_conn(c);
1727 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001728 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001729 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001730}
1731
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001732static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001733{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001734 struct nfsd4_conn *conn;
1735
1736 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1737 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001738 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001739 svc_xprt_get(rqstp->rq_xprt);
1740 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001741 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001742 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1743 return conn;
1744}
1745
J. Bruce Fields328ead22010-09-29 16:11:06 -04001746static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1747{
1748 conn->cn_session = ses;
1749 list_add(&conn->cn_persession, &ses->se_conns);
1750}
1751
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001752static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1753{
1754 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001755
1756 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001757 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001758 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001759}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001760
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001761static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001762{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001763 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001764 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001765}
1766
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001767static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001768{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001769 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001770
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001771 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001772 ret = nfsd4_register_conn(conn);
1773 if (ret)
1774 /* oops; xprt is already down: */
1775 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001776 /* We may have gained or lost a callback channel: */
1777 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001778}
1779
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001780static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001781{
1782 u32 dir = NFS4_CDFC4_FORE;
1783
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001784 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001785 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001786 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001787}
1788
1789/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001790static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001791{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001792 struct nfs4_client *clp = s->se_client;
1793 struct nfsd4_conn *c;
1794
1795 spin_lock(&clp->cl_lock);
1796 while (!list_empty(&s->se_conns)) {
1797 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1798 list_del_init(&c->cn_persession);
1799 spin_unlock(&clp->cl_lock);
1800
1801 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1802 free_conn(c);
1803
1804 spin_lock(&clp->cl_lock);
1805 }
1806 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001807}
1808
J. Bruce Fields1377b692012-09-11 21:42:40 -04001809static void __free_session(struct nfsd4_session *ses)
1810{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001811 free_session_slots(ses);
1812 kfree(ses);
1813}
1814
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001815static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001816{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001817 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001818 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001819 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001820}
Andy Adamson557ce262009-08-28 08:45:04 -04001821
Fengguang Wu135ae822012-11-10 07:20:25 -05001822static 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 -04001823{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001824 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001825 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001826
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001827 new->se_client = clp;
1828 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001829
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001830 INIT_LIST_HEAD(&new->se_conns);
1831
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04001832 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001833 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001834 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001835 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001836 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001837 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001838 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001839 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001840 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001841 spin_unlock(&clp->cl_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001842
Chuck Leverb0d2e422014-08-22 15:10:59 -04001843 {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001844 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001845 /*
1846 * This is a little silly; with sessions there's no real
1847 * use for the callback address. Use the peer address
1848 * as a reasonable default for now, but consider fixing
1849 * the rpc client not to require an address in the
1850 * future:
1851 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001852 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1853 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001854 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001855}
1856
Benny Halevy9089f1b2010-05-12 00:12:26 +03001857/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001858static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001859__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001860{
1861 struct nfsd4_session *elem;
1862 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001863 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001864
Trond Myklebust0a880a22014-07-30 08:27:10 -04001865 lockdep_assert_held(&nn->client_lock);
1866
Marc Eshel5282fd72009-04-03 08:27:52 +03001867 dump_sessionid(__func__, sessionid);
1868 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001869 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001870 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001871 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1872 NFS4_MAX_SESSIONID_LEN)) {
1873 return elem;
1874 }
1875 }
1876
1877 dprintk("%s: session not found\n", __func__);
1878 return NULL;
1879}
1880
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001881static struct nfsd4_session *
1882find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1883 __be32 *ret)
1884{
1885 struct nfsd4_session *session;
1886 __be32 status = nfserr_badsession;
1887
1888 session = __find_in_sessionid_hashtbl(sessionid, net);
1889 if (!session)
1890 goto out;
1891 status = nfsd4_get_session_locked(session);
1892 if (status)
1893 session = NULL;
1894out:
1895 *ret = status;
1896 return session;
1897}
1898
Benny Halevy9089f1b2010-05-12 00:12:26 +03001899/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001900static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001901unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001902{
Trond Myklebust0a880a22014-07-30 08:27:10 -04001903 struct nfs4_client *clp = ses->se_client;
1904 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1905
1906 lockdep_assert_held(&nn->client_lock);
1907
Andy Adamson7116ed62009-04-03 08:27:43 +03001908 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001909 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001910 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001911 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001912}
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1915static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001916STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
J. Bruce Fieldsbbc7f332015-01-20 11:51:26 -05001918 /*
1919 * We're assuming the clid was not given out from a boot
1920 * precisely 2^32 (about 136 years) before this one. That seems
1921 * a safe assumption:
1922 */
1923 if (clid->cl_boot == (u32)nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 0;
Arnd Bergmann9cc76802019-10-31 15:53:13 +01001925 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08llx\n",
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001926 clid->cl_boot, clid->cl_id, nn->boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return 1;
1928}
1929
1930/*
1931 * XXX Should we use a slab cache ?
1932 * This type of memory management is somewhat inefficient, but we use it
1933 * anyway since SETCLIENTID is not a common operation.
1934 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001935static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
1937 struct nfs4_client *clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001938 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Jeff Layton9258a2d2018-03-16 09:47:22 -04001940 clp = kmem_cache_zalloc(client_slab, GFP_KERNEL);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001941 if (clp == NULL)
1942 return NULL;
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04001943 xdr_netobj_dup(&clp->cl_name, &name, GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001944 if (clp->cl_name.data == NULL)
1945 goto err_no_name;
Kees Cook6da2ec52018-06-12 13:55:00 -07001946 clp->cl_ownerstr_hashtbl = kmalloc_array(OWNER_HASH_SIZE,
1947 sizeof(struct list_head),
1948 GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001949 if (!clp->cl_ownerstr_hashtbl)
1950 goto err_no_hashtbl;
1951 for (i = 0; i < OWNER_HASH_SIZE; i++)
1952 INIT_LIST_HEAD(&clp->cl_ownerstr_hashtbl[i]);
Trond Myklebust5694c932014-04-18 14:43:56 -04001953 INIT_LIST_HEAD(&clp->cl_sessions);
1954 idr_init(&clp->cl_stateids);
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04001955 atomic_set(&clp->cl_rpc_users, 0);
Trond Myklebust5694c932014-04-18 14:43:56 -04001956 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1957 INIT_LIST_HEAD(&clp->cl_idhash);
1958 INIT_LIST_HEAD(&clp->cl_openowners);
1959 INIT_LIST_HEAD(&clp->cl_delegations);
1960 INIT_LIST_HEAD(&clp->cl_lru);
Trond Myklebust5694c932014-04-18 14:43:56 -04001961 INIT_LIST_HEAD(&clp->cl_revoked);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001962#ifdef CONFIG_NFSD_PNFS
1963 INIT_LIST_HEAD(&clp->cl_lo_states);
1964#endif
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001965 INIT_LIST_HEAD(&clp->async_copies);
1966 spin_lock_init(&clp->async_lock);
Trond Myklebust5694c932014-04-18 14:43:56 -04001967 spin_lock_init(&clp->cl_lock);
1968 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001970err_no_hashtbl:
1971 kfree(clp->cl_name.data);
1972err_no_name:
Jeff Layton9258a2d2018-03-16 09:47:22 -04001973 kmem_cache_free(client_slab, clp);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001974 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975}
1976
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001977static void __free_client(struct kref *k)
1978{
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04001979 struct nfsdfs_client *c = container_of(k, struct nfsdfs_client, cl_ref);
1980 struct nfs4_client *clp = container_of(c, struct nfs4_client, cl_nfsdfs);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001981
1982 free_svc_cred(&clp->cl_cred);
1983 kfree(clp->cl_ownerstr_hashtbl);
1984 kfree(clp->cl_name.data);
J. Bruce Fields79123442019-06-05 12:42:05 -04001985 kfree(clp->cl_nii_domain.data);
1986 kfree(clp->cl_nii_name.data);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001987 idr_destroy(&clp->cl_stateids);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001988 kmem_cache_free(client_slab, clp);
1989}
1990
YueHaibing297e57a2019-07-08 15:29:33 +08001991static void drop_client(struct nfs4_client *clp)
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001992{
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04001993 kref_put(&clp->cl_nfsdfs.cl_ref, __free_client);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001994}
1995
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001996static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997free_client(struct nfs4_client *clp)
1998{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001999 while (!list_empty(&clp->cl_sessions)) {
2000 struct nfsd4_session *ses;
2001 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
2002 se_perclnt);
2003 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002004 WARN_ON_ONCE(atomic_read(&ses->se_ref));
2005 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04002006 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04002007 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002008 if (clp->cl_nfsd_dentry) {
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002009 nfsd_client_rmdir(clp->cl_nfsd_dentry);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002010 clp->cl_nfsd_dentry = NULL;
2011 wake_up_all(&expiry_wq);
2012 }
J. Bruce Fields59f8e912019-03-20 20:03:02 -04002013 drop_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
2015
Benny Halevy84d38ac2010-05-12 00:13:16 +03002016/* must be called under the client_lock */
Trond Myklebust4beb3452014-07-30 08:27:02 -04002017static void
Benny Halevy84d38ac2010-05-12 00:13:16 +03002018unhash_client_locked(struct nfs4_client *clp)
2019{
Trond Myklebust4beb3452014-07-30 08:27:02 -04002020 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04002021 struct nfsd4_session *ses;
2022
Trond Myklebust0a880a22014-07-30 08:27:10 -04002023 lockdep_assert_held(&nn->client_lock);
2024
Trond Myklebust4beb3452014-07-30 08:27:02 -04002025 /* Mark the client as expired! */
2026 clp->cl_time = 0;
2027 /* Make it invisible */
2028 if (!list_empty(&clp->cl_idhash)) {
2029 list_del_init(&clp->cl_idhash);
2030 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
2031 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
2032 else
2033 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
2034 }
2035 list_del_init(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04002036 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04002037 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
2038 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04002039 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03002040}
2041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042static void
Trond Myklebust4beb3452014-07-30 08:27:02 -04002043unhash_client(struct nfs4_client *clp)
2044{
2045 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2046
2047 spin_lock(&nn->client_lock);
2048 unhash_client_locked(clp);
2049 spin_unlock(&nn->client_lock);
2050}
2051
Jeff Layton97403d92014-07-30 08:27:12 -04002052static __be32 mark_client_expired_locked(struct nfs4_client *clp)
2053{
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04002054 if (atomic_read(&clp->cl_rpc_users))
Jeff Layton97403d92014-07-30 08:27:12 -04002055 return nfserr_jukebox;
2056 unhash_client_locked(clp);
2057 return nfs_ok;
2058}
2059
Trond Myklebust4beb3452014-07-30 08:27:02 -04002060static void
2061__destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
Jeff Layton68ef3bc2018-03-16 11:32:02 -04002063 int i;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002064 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 struct list_head reaplist;
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04002069 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07002070 while (!list_empty(&clp->cl_delegations)) {
2071 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04002072 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04002073 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
Benny Halevycdc975052014-05-30 09:09:30 -04002075 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 while (!list_empty(&reaplist)) {
2077 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04002078 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05002079 destroy_unhashed_deleg(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04002081 while (!list_empty(&clp->cl_revoked)) {
Andrew Elblec8764862015-02-25 17:46:27 -05002082 dp = list_entry(clp->cl_revoked.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04002083 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04002084 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02002085 }
NeilBrownea1da632005-06-23 22:04:17 -07002086 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002087 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
Kinglong Meeb5971af2014-08-22 10:18:43 -04002088 nfs4_get_stateowner(&oo->oo_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002089 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
Jeff Layton68ef3bc2018-03-16 11:32:02 -04002091 for (i = 0; i < OWNER_HASH_SIZE; i++) {
2092 struct nfs4_stateowner *so, *tmp;
2093
2094 list_for_each_entry_safe(so, tmp, &clp->cl_ownerstr_hashtbl[i],
2095 so_strhash) {
2096 /* Should be no openowners at this point */
2097 WARN_ON_ONCE(so->so_is_open_owner);
2098 remove_blocked_locks(lockowner(so));
2099 }
2100 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002101 nfsd4_return_all_client_layouts(clp);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04002102 nfsd4_shutdown_copy(clp);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04002103 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002104 if (clp->cl_cb_conn.cb_xprt)
2105 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002106 free_client(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002107 wake_up_all(&expiry_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
Trond Myklebust4beb3452014-07-30 08:27:02 -04002110static void
2111destroy_client(struct nfs4_client *clp)
2112{
2113 unhash_client(clp);
2114 __destroy_client(clp);
2115}
2116
Scott Mayhew362063a2019-03-26 18:06:28 -04002117static void inc_reclaim_complete(struct nfs4_client *clp)
2118{
2119 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2120
2121 if (!nn->track_reclaim_completes)
2122 return;
2123 if (!nfsd4_find_reclaim_client(clp->cl_name, nn))
2124 return;
2125 if (atomic_inc_return(&nn->nr_reclaim_complete) ==
2126 nn->reclaim_str_hashtbl_size) {
2127 printk(KERN_INFO "NFSD: all clients done reclaiming, ending NFSv4 grace period (net %x)\n",
2128 clp->net->ns.inum);
2129 nfsd4_end_grace(nn);
2130 }
2131}
2132
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002133static void expire_client(struct nfs4_client *clp)
2134{
Trond Myklebust4beb3452014-07-30 08:27:02 -04002135 unhash_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002136 nfsd4_client_record_remove(clp);
Trond Myklebust4beb3452014-07-30 08:27:02 -04002137 __destroy_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002138}
2139
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05002140static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
2141{
2142 memcpy(target->cl_verifier.data, source->data,
2143 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144}
2145
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05002146static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
2147{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
2149 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
2150}
2151
J. Bruce Fields50043852015-11-20 15:58:37 -05002152static int copy_cred(struct svc_cred *target, struct svc_cred *source)
2153{
NeilBrown2f10fdc2017-03-23 16:57:36 +08002154 target->cr_principal = kstrdup(source->cr_principal, GFP_KERNEL);
2155 target->cr_raw_principal = kstrdup(source->cr_raw_principal,
2156 GFP_KERNEL);
Chuck Lever9abdda52018-08-16 12:05:59 -04002157 target->cr_targ_princ = kstrdup(source->cr_targ_princ, GFP_KERNEL);
2158 if ((source->cr_principal && !target->cr_principal) ||
2159 (source->cr_raw_principal && !target->cr_raw_principal) ||
2160 (source->cr_targ_princ && !target->cr_targ_princ))
NeilBrown2f10fdc2017-03-23 16:57:36 +08002161 return -ENOMEM;
J. Bruce Fields50043852015-11-20 15:58:37 -05002162
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04002163 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 target->cr_uid = source->cr_uid;
2165 target->cr_gid = source->cr_gid;
2166 target->cr_group_info = source->cr_group_info;
2167 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04002168 target->cr_gss_mech = source->cr_gss_mech;
2169 if (source->cr_gss_mech)
2170 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172}
2173
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002174static int
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002175compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
2176{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002177 if (o1->len < o2->len)
2178 return -1;
2179 if (o1->len > o2->len)
2180 return 1;
2181 return memcmp(o1->data, o2->data, o1->len);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002182}
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002185same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
2186{
2187 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188}
2189
2190static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002191same_clid(clientid_t *cl1, clientid_t *cl2)
2192{
2193 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002196static bool groups_equal(struct group_info *g1, struct group_info *g2)
2197{
2198 int i;
2199
2200 if (g1->ngroups != g2->ngroups)
2201 return false;
2202 for (i=0; i<g1->ngroups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -07002203 if (!gid_eq(g1->gid[i], g2->gid[i]))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002204 return false;
2205 return true;
2206}
2207
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002208/*
2209 * RFC 3530 language requires clid_inuse be returned when the
2210 * "principal" associated with a requests differs from that previously
2211 * used. We use uid, gid's, and gss principal string as our best
2212 * approximation. We also don't want to allow non-gss use of a client
2213 * established using gss: in theory cr_principal should catch that
2214 * change, but in practice cr_principal can be null even in the gss case
2215 * since gssd doesn't always pass down a principal string.
2216 */
2217static bool is_gss_cred(struct svc_cred *cr)
2218{
2219 /* Is cr_flavor one of the gss "pseudoflavors"?: */
2220 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
2221}
2222
2223
Vivek Trivedi5559b502012-07-24 21:18:20 +05302224static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002225same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
2226{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002227 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002228 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
2229 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002230 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
2231 return false;
Chuck Lever9abdda52018-08-16 12:05:59 -04002232 /* XXX: check that cr_targ_princ fields match ? */
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002233 if (cr1->cr_principal == cr2->cr_principal)
2234 return true;
2235 if (!cr1->cr_principal || !cr2->cr_principal)
2236 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05302237 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
J. Bruce Fields57266a62013-04-13 14:27:29 -04002240static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
2241{
2242 struct svc_cred *cr = &rqstp->rq_cred;
2243 u32 service;
2244
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04002245 if (!cr->cr_gss_mech)
2246 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002247 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
2248 return service == RPC_GSS_SVC_INTEGRITY ||
2249 service == RPC_GSS_SVC_PRIVACY;
2250}
2251
Andrew Elblededeb132016-06-15 12:52:08 -04002252bool nfsd4_mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
J. Bruce Fields57266a62013-04-13 14:27:29 -04002253{
2254 struct svc_cred *cr = &rqstp->rq_cred;
2255
2256 if (!cl->cl_mach_cred)
2257 return true;
2258 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
2259 return false;
2260 if (!svc_rqst_integrity_protected(rqstp))
2261 return false;
J. Bruce Fields414ca012015-11-20 10:48:02 -05002262 if (cl->cl_cred.cr_raw_principal)
2263 return 0 == strcmp(cl->cl_cred.cr_raw_principal,
2264 cr->cr_raw_principal);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002265 if (!cr->cr_principal)
2266 return false;
2267 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
2268}
2269
Jeff Layton294ac322014-07-30 08:27:15 -04002270static void gen_confirm(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05002271{
Chuck Leverab4684d2012-03-02 17:13:50 -05002272 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Jeff Laytonf4199922014-06-17 07:44:11 -04002274 /*
2275 * This is opaque to client, so no need to byte-swap. Use
2276 * __force to keep sparse happy
2277 */
Arnd Bergmann9104ae42019-11-04 16:45:30 +01002278 verf[0] = (__force __be32)(u32)ktime_get_real_seconds();
Kinglong Mee19311aa82015-07-18 07:33:31 +08002279 verf[1] = (__force __be32)nn->clverifier_counter++;
Chuck Leverab4684d2012-03-02 17:13:50 -05002280 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281}
2282
Jeff Layton294ac322014-07-30 08:27:15 -04002283static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
2284{
Arnd Bergmann9cc76802019-10-31 15:53:13 +01002285 clp->cl_clientid.cl_boot = (u32)nn->boot_time;
Jeff Layton294ac322014-07-30 08:27:15 -04002286 clp->cl_clientid.cl_id = nn->clientid_counter++;
2287 gen_confirm(clp, nn);
2288}
2289
Jeff Layton4770d722014-07-29 21:34:10 -04002290static struct nfs4_stid *
2291find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04002292{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05002293 struct nfs4_stid *ret;
2294
2295 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
2296 if (!ret || !ret->sc_type)
2297 return NULL;
2298 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04002299}
2300
Jeff Layton4770d722014-07-29 21:34:10 -04002301static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04002302find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04002303{
2304 struct nfs4_stid *s;
2305
Jeff Layton4770d722014-07-29 21:34:10 -04002306 spin_lock(&cl->cl_lock);
2307 s = find_stateid_locked(cl, t);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002308 if (s != NULL) {
2309 if (typemask & s->sc_type)
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03002310 refcount_inc(&s->sc_count);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002311 else
2312 s = NULL;
2313 }
Jeff Layton4770d722014-07-29 21:34:10 -04002314 spin_unlock(&cl->cl_lock);
2315 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04002316}
2317
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002318static struct nfs4_client *get_nfsdfs_clp(struct inode *inode)
2319{
2320 struct nfsdfs_client *nc;
2321 nc = get_nfsdfs_client(inode);
2322 if (!nc)
2323 return NULL;
2324 return container_of(nc, struct nfs4_client, cl_nfsdfs);
2325}
2326
J. Bruce Fields169319f2019-06-19 12:39:46 -04002327static void seq_quote_mem(struct seq_file *m, char *data, int len)
2328{
2329 seq_printf(m, "\"");
2330 seq_escape_mem_ascii(m, data, len);
2331 seq_printf(m, "\"");
2332}
2333
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002334static int client_info_show(struct seq_file *m, void *v)
2335{
2336 struct inode *inode = m->private;
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002337 struct nfs4_client *clp;
2338 u64 clid;
2339
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002340 clp = get_nfsdfs_clp(inode);
2341 if (!clp)
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002342 return -ENXIO;
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002343 memcpy(&clid, &clp->cl_clientid, sizeof(clid));
2344 seq_printf(m, "clientid: 0x%llx\n", clid);
J. Bruce Fields169319f2019-06-19 12:39:46 -04002345 seq_printf(m, "address: \"%pISpc\"\n", (struct sockaddr *)&clp->cl_addr);
2346 seq_printf(m, "name: ");
2347 seq_quote_mem(m, clp->cl_name.data, clp->cl_name.len);
2348 seq_printf(m, "\nminor version: %d\n", clp->cl_minorversion);
J. Bruce Fields79123442019-06-05 12:42:05 -04002349 if (clp->cl_nii_domain.data) {
2350 seq_printf(m, "Implementation domain: ");
2351 seq_quote_mem(m, clp->cl_nii_domain.data,
2352 clp->cl_nii_domain.len);
2353 seq_printf(m, "\nImplementation name: ");
2354 seq_quote_mem(m, clp->cl_nii_name.data, clp->cl_nii_name.len);
Arnd Bergmanne29f4702019-10-31 14:52:43 +01002355 seq_printf(m, "\nImplementation time: [%lld, %ld]\n",
J. Bruce Fields79123442019-06-05 12:42:05 -04002356 clp->cl_nii_time.tv_sec, clp->cl_nii_time.tv_nsec);
2357 }
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002358 drop_client(clp);
2359
2360 return 0;
2361}
2362
2363static int client_info_open(struct inode *inode, struct file *file)
2364{
2365 return single_open(file, client_info_show, inode);
2366}
2367
2368static const struct file_operations client_info_fops = {
2369 .open = client_info_open,
2370 .read = seq_read,
2371 .llseek = seq_lseek,
2372 .release = single_release,
2373};
2374
J. Bruce Fields78599c42019-04-22 15:26:23 -04002375static void *states_start(struct seq_file *s, loff_t *pos)
2376 __acquires(&clp->cl_lock)
2377{
2378 struct nfs4_client *clp = s->private;
2379 unsigned long id = *pos;
2380 void *ret;
2381
2382 spin_lock(&clp->cl_lock);
2383 ret = idr_get_next_ul(&clp->cl_stateids, &id);
2384 *pos = id;
2385 return ret;
2386}
2387
2388static void *states_next(struct seq_file *s, void *v, loff_t *pos)
2389{
2390 struct nfs4_client *clp = s->private;
2391 unsigned long id = *pos;
2392 void *ret;
2393
2394 id = *pos;
2395 id++;
2396 ret = idr_get_next_ul(&clp->cl_stateids, &id);
2397 *pos = id;
2398 return ret;
2399}
2400
2401static void states_stop(struct seq_file *s, void *v)
2402 __releases(&clp->cl_lock)
2403{
2404 struct nfs4_client *clp = s->private;
2405
2406 spin_unlock(&clp->cl_lock);
2407}
2408
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002409static void nfs4_show_superblock(struct seq_file *s, struct nfsd_file *f)
J. Bruce Fields78599c42019-04-22 15:26:23 -04002410{
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002411 struct inode *inode = f->nf_inode;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002412
2413 seq_printf(s, "superblock: \"%02x:%02x:%ld\"",
2414 MAJOR(inode->i_sb->s_dev),
2415 MINOR(inode->i_sb->s_dev),
2416 inode->i_ino);
2417}
2418
2419static void nfs4_show_owner(struct seq_file *s, struct nfs4_stateowner *oo)
2420{
2421 seq_printf(s, "owner: ");
2422 seq_quote_mem(s, oo->so_owner.data, oo->so_owner.len);
2423}
2424
2425static int nfs4_show_open(struct seq_file *s, struct nfs4_stid *st)
2426{
2427 struct nfs4_ol_stateid *ols;
2428 struct nfs4_file *nf;
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002429 struct nfsd_file *file;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002430 struct nfs4_stateowner *oo;
2431 unsigned int access, deny;
2432
2433 if (st->sc_type != NFS4_OPEN_STID && st->sc_type != NFS4_LOCK_STID)
2434 return 0; /* XXX: or SEQ_SKIP? */
2435 ols = openlockstateid(st);
2436 oo = ols->st_stateowner;
2437 nf = st->sc_file;
2438 file = find_any_file(nf);
2439
2440 seq_printf(s, "- 0x%16phN: { type: open, ", &st->sc_stateid);
2441
2442 access = bmap_to_share_mode(ols->st_access_bmap);
2443 deny = bmap_to_share_mode(ols->st_deny_bmap);
2444
J. Bruce Fieldsc4b77ed2019-10-03 12:33:08 -04002445 seq_printf(s, "access: %s%s, ",
J. Bruce Fields78599c42019-04-22 15:26:23 -04002446 access & NFS4_SHARE_ACCESS_READ ? "r" : "-",
2447 access & NFS4_SHARE_ACCESS_WRITE ? "w" : "-");
J. Bruce Fieldsc4b77ed2019-10-03 12:33:08 -04002448 seq_printf(s, "deny: %s%s, ",
J. Bruce Fields78599c42019-04-22 15:26:23 -04002449 deny & NFS4_SHARE_ACCESS_READ ? "r" : "-",
2450 deny & NFS4_SHARE_ACCESS_WRITE ? "w" : "-");
2451
2452 nfs4_show_superblock(s, file);
2453 seq_printf(s, ", ");
2454 nfs4_show_owner(s, oo);
2455 seq_printf(s, " }\n");
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002456 nfsd_file_put(file);
J. Bruce Fields78599c42019-04-22 15:26:23 -04002457
2458 return 0;
2459}
2460
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002461static int nfs4_show_lock(struct seq_file *s, struct nfs4_stid *st)
2462{
2463 struct nfs4_ol_stateid *ols;
2464 struct nfs4_file *nf;
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002465 struct nfsd_file *file;
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002466 struct nfs4_stateowner *oo;
2467
2468 ols = openlockstateid(st);
2469 oo = ols->st_stateowner;
2470 nf = st->sc_file;
2471 file = find_any_file(nf);
2472
2473 seq_printf(s, "- 0x%16phN: { type: lock, ", &st->sc_stateid);
2474
2475 /*
2476 * Note: a lock stateid isn't really the same thing as a lock,
2477 * it's the locking state held by one owner on a file, and there
2478 * may be multiple (or no) lock ranges associated with it.
2479 * (Same for the matter is true of open stateids.)
2480 */
2481
2482 nfs4_show_superblock(s, file);
2483 /* XXX: open stateid? */
2484 seq_printf(s, ", ");
2485 nfs4_show_owner(s, oo);
2486 seq_printf(s, " }\n");
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002487 nfsd_file_put(file);
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002488
2489 return 0;
2490}
2491
2492static int nfs4_show_deleg(struct seq_file *s, struct nfs4_stid *st)
2493{
2494 struct nfs4_delegation *ds;
2495 struct nfs4_file *nf;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04002496 struct nfsd_file *file;
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002497
2498 ds = delegstateid(st);
2499 nf = st->sc_file;
2500 file = nf->fi_deleg_file;
2501
2502 seq_printf(s, "- 0x%16phN: { type: deleg, ", &st->sc_stateid);
2503
2504 /* Kinda dead code as long as we only support read delegs: */
2505 seq_printf(s, "access: %s, ",
2506 ds->dl_type == NFS4_OPEN_DELEGATE_READ ? "r" : "w");
2507
2508 /* XXX: lease time, whether it's being recalled. */
2509
2510 nfs4_show_superblock(s, file);
2511 seq_printf(s, " }\n");
2512
2513 return 0;
2514}
2515
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002516static int nfs4_show_layout(struct seq_file *s, struct nfs4_stid *st)
2517{
2518 struct nfs4_layout_stateid *ls;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04002519 struct nfsd_file *file;
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002520
2521 ls = container_of(st, struct nfs4_layout_stateid, ls_stid);
2522 file = ls->ls_file;
2523
2524 seq_printf(s, "- 0x%16phN: { type: layout, ", &st->sc_stateid);
2525
2526 /* XXX: What else would be useful? */
2527
2528 nfs4_show_superblock(s, file);
2529 seq_printf(s, " }\n");
2530
2531 return 0;
2532}
2533
J. Bruce Fields78599c42019-04-22 15:26:23 -04002534static int states_show(struct seq_file *s, void *v)
2535{
2536 struct nfs4_stid *st = v;
2537
2538 switch (st->sc_type) {
2539 case NFS4_OPEN_STID:
2540 return nfs4_show_open(s, st);
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002541 case NFS4_LOCK_STID:
2542 return nfs4_show_lock(s, st);
2543 case NFS4_DELEG_STID:
2544 return nfs4_show_deleg(s, st);
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002545 case NFS4_LAYOUT_STID:
2546 return nfs4_show_layout(s, st);
J. Bruce Fields78599c42019-04-22 15:26:23 -04002547 default:
2548 return 0; /* XXX: or SEQ_SKIP? */
2549 }
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002550 /* XXX: copy stateids? */
J. Bruce Fields78599c42019-04-22 15:26:23 -04002551}
2552
2553static struct seq_operations states_seq_ops = {
2554 .start = states_start,
2555 .next = states_next,
2556 .stop = states_stop,
2557 .show = states_show
2558};
2559
2560static int client_states_open(struct inode *inode, struct file *file)
2561{
J. Bruce Fields78599c42019-04-22 15:26:23 -04002562 struct seq_file *s;
2563 struct nfs4_client *clp;
2564 int ret;
2565
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002566 clp = get_nfsdfs_clp(inode);
2567 if (!clp)
J. Bruce Fields78599c42019-04-22 15:26:23 -04002568 return -ENXIO;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002569
2570 ret = seq_open(file, &states_seq_ops);
2571 if (ret)
2572 return ret;
2573 s = file->private_data;
2574 s->private = clp;
2575 return 0;
2576}
2577
2578static int client_opens_release(struct inode *inode, struct file *file)
2579{
2580 struct seq_file *m = file->private_data;
2581 struct nfs4_client *clp = m->private;
2582
2583 /* XXX: alternatively, we could get/drop in seq start/stop */
2584 drop_client(clp);
2585 return 0;
2586}
2587
2588static const struct file_operations client_states_fops = {
2589 .open = client_states_open,
2590 .read = seq_read,
2591 .llseek = seq_lseek,
2592 .release = client_opens_release,
2593};
2594
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002595/*
2596 * Normally we refuse to destroy clients that are in use, but here the
2597 * administrator is telling us to just do it. We also want to wait
2598 * so the caller has a guarantee that the client's locks are gone by
2599 * the time the write returns:
2600 */
YueHaibing297e57a2019-07-08 15:29:33 +08002601static void force_expire_client(struct nfs4_client *clp)
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002602{
2603 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2604 bool already_expired;
2605
2606 spin_lock(&clp->cl_lock);
2607 clp->cl_time = 0;
2608 spin_unlock(&clp->cl_lock);
2609
2610 wait_event(expiry_wq, atomic_read(&clp->cl_rpc_users) == 0);
2611 spin_lock(&nn->client_lock);
2612 already_expired = list_empty(&clp->cl_lru);
2613 if (!already_expired)
2614 unhash_client_locked(clp);
2615 spin_unlock(&nn->client_lock);
2616
2617 if (!already_expired)
2618 expire_client(clp);
2619 else
2620 wait_event(expiry_wq, clp->cl_nfsd_dentry == NULL);
2621}
2622
2623static ssize_t client_ctl_write(struct file *file, const char __user *buf,
2624 size_t size, loff_t *pos)
2625{
2626 char *data;
2627 struct nfs4_client *clp;
2628
2629 data = simple_transaction_get(file, buf, size);
2630 if (IS_ERR(data))
2631 return PTR_ERR(data);
2632 if (size != 7 || 0 != memcmp(data, "expire\n", 7))
2633 return -EINVAL;
2634 clp = get_nfsdfs_clp(file_inode(file));
2635 if (!clp)
2636 return -ENXIO;
2637 force_expire_client(clp);
2638 drop_client(clp);
2639 return 7;
2640}
2641
2642static const struct file_operations client_ctl_fops = {
2643 .write = client_ctl_write,
2644 .release = simple_transaction_release,
2645};
2646
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002647static const struct tree_descr client_files[] = {
2648 [0] = {"info", &client_info_fops, S_IRUSR},
J. Bruce Fields78599c42019-04-22 15:26:23 -04002649 [1] = {"states", &client_states_fops, S_IRUSR},
Petr Vorel6cbfad52020-03-13 13:39:57 +01002650 [2] = {"ctl", &client_ctl_fops, S_IWUSR},
J. Bruce Fields78599c42019-04-22 15:26:23 -04002651 [3] = {""},
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002652};
2653
Jeff Layton2216d442012-11-12 15:00:57 -05002654static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002655 struct svc_rqst *rqstp, nfs4_verifier *verf)
2656{
2657 struct nfs4_client *clp;
2658 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002659 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002660 struct net *net = SVC_NET(rqstp);
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002661 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002662
2663 clp = alloc_client(name);
2664 if (clp == NULL)
2665 return NULL;
2666
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002667 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
2668 if (ret) {
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002669 free_client(clp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002670 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002671 }
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002672 gen_clid(clp, nn);
2673 kref_init(&clp->cl_nfsdfs.cl_ref);
Christoph Hellwig0162ac22014-09-24 12:19:19 +02002674 nfsd4_init_cb(&clp->cl_cb_null, clp, NULL, NFSPROC4_CLNT_CB_NULL);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01002675 clp->cl_time = ktime_get_boottime_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002676 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002677 copy_verf(clp, verf);
J. Bruce Fields3bade242019-05-14 21:38:11 -04002678 memcpy(&clp->cl_addr, sa, sizeof(struct sockaddr_storage));
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04002679 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002680 clp->net = net;
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002681 clp->cl_nfsd_dentry = nfsd_client_mkdir(nn, &clp->cl_nfsdfs,
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002682 clp->cl_clientid.cl_id - nn->clientid_base,
2683 client_files);
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002684 if (!clp->cl_nfsd_dentry) {
2685 free_client(clp);
2686 return NULL;
2687 }
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002688 return clp;
2689}
2690
NeilBrownfd39ca92005-06-23 22:04:03 -07002691static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002692add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
2693{
2694 struct rb_node **new = &(root->rb_node), *parent = NULL;
2695 struct nfs4_client *clp;
2696
2697 while (*new) {
2698 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
2699 parent = *new;
2700
2701 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
2702 new = &((*new)->rb_left);
2703 else
2704 new = &((*new)->rb_right);
2705 }
2706
2707 rb_link_node(&new_clp->cl_namenode, parent, new);
2708 rb_insert_color(&new_clp->cl_namenode, root);
2709}
2710
2711static struct nfs4_client *
2712find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
2713{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002714 int cmp;
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002715 struct rb_node *node = root->rb_node;
2716 struct nfs4_client *clp;
2717
2718 while (node) {
2719 clp = rb_entry(node, struct nfs4_client, cl_namenode);
2720 cmp = compare_blob(&clp->cl_name, name);
2721 if (cmp > 0)
2722 node = node->rb_left;
2723 else if (cmp < 0)
2724 node = node->rb_right;
2725 else
2726 return clp;
2727 }
2728 return NULL;
2729}
2730
2731static void
2732add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
2734 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002735 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Trond Myklebust0a880a22014-07-30 08:27:10 -04002737 lockdep_assert_held(&nn->client_lock);
2738
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002739 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002740 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002742 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002743 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744}
2745
NeilBrownfd39ca92005-06-23 22:04:03 -07002746static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747move_to_confirmed(struct nfs4_client *clp)
2748{
2749 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002750 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Trond Myklebust0a880a22014-07-30 08:27:10 -04002752 lockdep_assert_held(&nn->client_lock);
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002755 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002756 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002757 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002758 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002759 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760}
2761
2762static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002763find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764{
2765 struct nfs4_client *clp;
2766 unsigned int idhashval = clientid_hashval(clid->cl_id);
2767
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002768 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002769 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04002770 if ((bool)clp->cl_minorversion != sessions)
2771 return NULL;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002772 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 }
2776 return NULL;
2777}
2778
2779static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002780find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
2781{
2782 struct list_head *tbl = nn->conf_id_hashtbl;
2783
Trond Myklebust0a880a22014-07-30 08:27:10 -04002784 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002785 return find_client_in_id_table(tbl, clid, sessions);
2786}
2787
2788static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002789find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002791 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
Trond Myklebust0a880a22014-07-30 08:27:10 -04002793 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002794 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
2796
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002797static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002798{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002799 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002800}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002801
NeilBrown28ce6052005-06-23 22:03:56 -07002802static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002803find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002804{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002805 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002806 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002807}
2808
2809static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002810find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002811{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002812 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002813 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002814}
2815
NeilBrownfd39ca92005-06-23 22:04:03 -07002816static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002817gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
J. Bruce Fields07263f12010-05-31 19:09:40 -04002819 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002820 struct sockaddr *sa = svc_addr(rqstp);
2821 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04002822 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Jeff Layton7077ecb2009-08-14 12:57:58 -04002824 /* Currently, we only support tcp and tcp6 for the callback channel */
2825 if (se->se_callback_netid_len == 3 &&
2826 !memcmp(se->se_callback_netid_val, "tcp", 3))
2827 expected_family = AF_INET;
2828 else if (se->se_callback_netid_len == 4 &&
2829 !memcmp(se->se_callback_netid_val, "tcp6", 4))
2830 expected_family = AF_INET6;
2831 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 goto out_err;
2833
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002834 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002835 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04002836 (struct sockaddr *)&conn->cb_addr,
2837 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002838
J. Bruce Fields07263f12010-05-31 19:09:40 -04002839 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002841
J. Bruce Fields07263f12010-05-31 19:09:40 -04002842 if (conn->cb_addr.ss_family == AF_INET6)
2843 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04002844
J. Bruce Fields07263f12010-05-31 19:09:40 -04002845 conn->cb_prog = se->se_callback_prog;
2846 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08002847 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 return;
2849out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04002850 conn->cb_addr.ss_family = AF_UNSPEC;
2851 conn->cb_addrlen = 0;
Rasmus Villemoes4ab495b2017-02-24 01:15:55 +01002852 dprintk("NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 "will not receive delegations\n",
2854 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
2855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 return;
2857}
2858
Andy Adamson074fe892009-04-03 08:28:15 +03002859/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04002860 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03002861 */
Trond Myklebustb6076642014-06-30 11:48:35 -04002862static void
Andy Adamson074fe892009-04-03 08:28:15 +03002863nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
2864{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002865 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04002866 struct nfsd4_slot *slot = resp->cstate.slot;
2867 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03002868
Andy Adamson557ce262009-08-28 08:45:04 -04002869 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002870
J. Bruce Fields085def32017-10-18 16:17:18 -04002871 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamson557ce262009-08-28 08:45:04 -04002872 slot->sl_opcnt = resp->opcnt;
2873 slot->sl_status = resp->cstate.status;
J. Bruce Fields53da6a52017-10-17 20:38:49 -04002874 free_svc_cred(&slot->sl_cred);
2875 copy_cred(&slot->sl_cred, &resp->rqstp->rq_cred);
Andy Adamsonbf864a32009-04-03 08:28:35 +03002876
J. Bruce Fields085def32017-10-18 16:17:18 -04002877 if (!nfsd4_cache_this(resp)) {
2878 slot->sl_flags &= ~NFSD4_SLOT_CACHED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03002879 return;
2880 }
J. Bruce Fields085def32017-10-18 16:17:18 -04002881 slot->sl_flags |= NFSD4_SLOT_CACHED;
2882
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002883 base = resp->cstate.data_offset;
2884 slot->sl_datalen = buf->len - base;
2885 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Dan Carpenterd3f03402015-11-21 13:28:50 +03002886 WARN(1, "%s: sessions DRC could not cache compound\n",
2887 __func__);
Andy Adamson557ce262009-08-28 08:45:04 -04002888 return;
Andy Adamson074fe892009-04-03 08:28:15 +03002889}
2890
2891/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04002892 * Encode the replay sequence operation from the slot values.
2893 * If cachethis is FALSE encode the uncached rep error on the next
2894 * operation which sets resp->p and increments resp->opcnt for
2895 * nfs4svc_encode_compoundres.
2896 *
Andy Adamson074fe892009-04-03 08:28:15 +03002897 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04002898static __be32
2899nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
2900 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03002901{
Andy Adamsonabfabf82009-07-23 19:02:18 -04002902 struct nfsd4_op *op;
2903 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03002904
Andy Adamsonabfabf82009-07-23 19:02:18 -04002905 /* Encode the replayed sequence operation */
2906 op = &args->ops[resp->opcnt - 1];
2907 nfsd4_encode_operation(resp, op);
2908
J. Bruce Fields085def32017-10-18 16:17:18 -04002909 if (slot->sl_flags & NFSD4_SLOT_CACHED)
2910 return op->status;
2911 if (args->opcnt == 1) {
2912 /*
2913 * The original operation wasn't a solo sequence--we
2914 * always cache those--so this retry must not match the
2915 * original:
2916 */
2917 op->status = nfserr_seq_false_retry;
2918 } else {
Andy Adamsonabfabf82009-07-23 19:02:18 -04002919 op = &args->ops[resp->opcnt++];
2920 op->status = nfserr_retry_uncached_rep;
2921 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03002922 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04002923 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03002924}
2925
2926/*
Andy Adamson557ce262009-08-28 08:45:04 -04002927 * The sequence operation is not cached because we can use the slot and
2928 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03002929 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04002930static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03002931nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
2932 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03002933{
Andy Adamson557ce262009-08-28 08:45:04 -04002934 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002935 struct xdr_stream *xdr = &resp->xdr;
2936 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03002937 __be32 status;
2938
Andy Adamson557ce262009-08-28 08:45:04 -04002939 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002940
Andy Adamsonabfabf82009-07-23 19:02:18 -04002941 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04002942 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04002943 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03002944
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002945 p = xdr_reserve_space(xdr, slot->sl_datalen);
2946 if (!p) {
2947 WARN_ON_ONCE(1);
2948 return nfserr_serverfault;
2949 }
2950 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
2951 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03002952
Andy Adamson557ce262009-08-28 08:45:04 -04002953 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002954 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03002955}
2956
Andy Adamson0733d212009-04-03 08:28:01 +03002957/*
2958 * Set the exchange_id flags returned by the server.
2959 */
2960static void
2961nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
2962{
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002963#ifdef CONFIG_NFSD_PNFS
2964 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_PNFS_MDS;
2965#else
Andy Adamson0733d212009-04-03 08:28:01 +03002966 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002967#endif
Andy Adamson0733d212009-04-03 08:28:01 +03002968
2969 /* Referrals are supported, Migration is not. */
2970 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
2971
2972 /* set the wire flags to return to client. */
2973 clid->flags = new->cl_exchange_flags;
2974}
2975
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002976static bool client_has_openowners(struct nfs4_client *clp)
2977{
2978 struct nfs4_openowner *oo;
2979
2980 list_for_each_entry(oo, &clp->cl_openowners, oo_perclient) {
2981 if (!list_empty(&oo->oo_owner.so_stateids))
2982 return true;
2983 }
2984 return false;
2985}
2986
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002987static bool client_has_state(struct nfs4_client *clp)
2988{
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002989 return client_has_openowners(clp)
Kinglong Mee47e970b2015-07-21 13:09:17 +08002990#ifdef CONFIG_NFSD_PNFS
2991 || !list_empty(&clp->cl_lo_states)
2992#endif
J. Bruce Fields6eccece2012-05-29 16:37:44 -04002993 || !list_empty(&clp->cl_delegations)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04002994 || !list_empty(&clp->cl_sessions)
2995 || !list_empty(&clp->async_copies);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002996}
2997
J. Bruce Fields79123442019-06-05 12:42:05 -04002998static __be32 copy_impl_id(struct nfs4_client *clp,
2999 struct nfsd4_exchange_id *exid)
3000{
3001 if (!exid->nii_domain.data)
3002 return 0;
3003 xdr_netobj_dup(&clp->cl_nii_domain, &exid->nii_domain, GFP_KERNEL);
3004 if (!clp->cl_nii_domain.data)
3005 return nfserr_jukebox;
3006 xdr_netobj_dup(&clp->cl_nii_name, &exid->nii_name, GFP_KERNEL);
3007 if (!clp->cl_nii_name.data)
3008 return nfserr_jukebox;
Arnd Bergmanne29f4702019-10-31 14:52:43 +01003009 clp->cl_nii_time = exid->nii_time;
J. Bruce Fields79123442019-06-05 12:42:05 -04003010 return 0;
3011}
3012
Al Virob37ad282006-10-19 23:28:59 -07003013__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003014nfsd4_exchange_id(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3015 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003016{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003017 struct nfsd4_exchange_id *exid = &u->exchange_id;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003018 struct nfs4_client *conf, *new;
3019 struct nfs4_client *unconf = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003020 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04003021 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03003022 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04003023 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04003024 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003025 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03003026
Jeff Layton363168b2009-08-14 12:57:56 -04003027 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03003028 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04003029 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03003030 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04003031 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03003032
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04003033 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03003034 return nfserr_inval;
3035
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003036 new = create_client(exid->clname, rqstp, &verf);
3037 if (new == NULL)
3038 return nfserr_jukebox;
J. Bruce Fields79123442019-06-05 12:42:05 -04003039 status = copy_impl_id(new, exid);
3040 if (status)
3041 goto out_nolock;
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003042
Andy Adamson0733d212009-04-03 08:28:01 +03003043 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04003044 case SP4_MACH_CRED:
Andrew Elbleed941642016-06-15 12:52:09 -04003045 exid->spo_must_enforce[0] = 0;
3046 exid->spo_must_enforce[1] = (
3047 1 << (OP_BIND_CONN_TO_SESSION - 32) |
3048 1 << (OP_EXCHANGE_ID - 32) |
3049 1 << (OP_CREATE_SESSION - 32) |
3050 1 << (OP_DESTROY_SESSION - 32) |
3051 1 << (OP_DESTROY_CLIENTID - 32));
3052
3053 exid->spo_must_allow[0] &= (1 << (OP_CLOSE) |
3054 1 << (OP_OPEN_DOWNGRADE) |
3055 1 << (OP_LOCKU) |
3056 1 << (OP_DELEGRETURN));
3057
3058 exid->spo_must_allow[1] &= (
3059 1 << (OP_TEST_STATEID - 32) |
3060 1 << (OP_FREE_STATEID - 32));
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003061 if (!svc_rqst_integrity_protected(rqstp)) {
3062 status = nfserr_inval;
3063 goto out_nolock;
3064 }
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05003065 /*
3066 * Sometimes userspace doesn't give us a principal.
3067 * Which is a bug, really. Anyway, we can't enforce
3068 * MACH_CRED in that case, better to give up now:
3069 */
J. Bruce Fields414ca012015-11-20 10:48:02 -05003070 if (!new->cl_cred.cr_principal &&
3071 !new->cl_cred.cr_raw_principal) {
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05003072 status = nfserr_serverfault;
3073 goto out_nolock;
3074 }
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003075 new->cl_mach_cred = true;
Andy Adamson0733d212009-04-03 08:28:01 +03003076 case SP4_NONE:
3077 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05003078 default: /* checked by xdr code */
3079 WARN_ON_ONCE(1);
Gustavo A. R. Silva0a4c9262019-01-23 02:48:28 -06003080 /* fall through */
Andy Adamson0733d212009-04-03 08:28:01 +03003081 case SP4_SSV:
Kinglong Mee8edf4b02016-02-26 22:36:42 +08003082 status = nfserr_encr_alg_unsupp;
3083 goto out_nolock;
Andy Adamson0733d212009-04-03 08:28:01 +03003084 }
3085
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003086 /* Cases below refer to rfc 5661 section 18.35.4: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003087 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003088 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03003089 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04003090 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
3091 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
3092
J. Bruce Fields136e6582012-05-12 20:37:23 -04003093 if (update) {
3094 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003095 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03003096 goto out;
3097 }
Andrew Elblededeb132016-06-15 12:52:08 -04003098 if (!nfsd4_mach_creds_match(conf, rqstp)) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04003099 status = nfserr_wrong_cred;
3100 goto out;
3101 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003102 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03003103 status = nfserr_perm;
3104 goto out;
3105 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003106 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03003107 status = nfserr_not_same;
3108 goto out;
3109 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003110 /* case 6 */
3111 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003112 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03003113 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003114 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04003115 if (client_has_state(conf)) {
3116 status = nfserr_clid_inuse;
3117 goto out;
3118 }
Andy Adamson0733d212009-04-03 08:28:01 +03003119 goto out_new;
3120 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003121 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04003122 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003123 goto out_copy;
3124 }
3125 /* case 5, client reboot */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003126 conf = NULL;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003127 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03003128 }
3129
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003130 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03003131 status = nfserr_noent;
3132 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03003133 }
3134
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003135 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003136 if (unconf) /* case 4, possible retry or client restart */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003137 unhash_client_locked(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03003138
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003139 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03003140out_new:
Jeff Laytonfd699b82014-07-30 08:27:14 -04003141 if (conf) {
3142 status = mark_client_expired_locked(conf);
3143 if (status)
3144 goto out;
3145 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04003146 new->cl_minorversion = cstate->minorversion;
Andrew Elbleed941642016-06-15 12:52:09 -04003147 new->cl_spo_must_allow.u.words[0] = exid->spo_must_allow[0];
3148 new->cl_spo_must_allow.u.words[1] = exid->spo_must_allow[1];
Andy Adamson0733d212009-04-03 08:28:01 +03003149
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003150 add_to_unconfirmed(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003151 swap(new, conf);
Andy Adamson0733d212009-04-03 08:28:01 +03003152out_copy:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003153 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
3154 exid->clientid.cl_id = conf->cl_clientid.cl_id;
Andy Adamson0733d212009-04-03 08:28:01 +03003155
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003156 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
3157 nfsd4_set_ex_flags(conf, exid);
Andy Adamson0733d212009-04-03 08:28:01 +03003158
3159 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003160 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03003161 status = nfs_ok;
3162
3163out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003164 spin_unlock(&nn->client_lock);
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003165out_nolock:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003166 if (new)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003167 expire_client(new);
3168 if (unconf)
3169 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03003170 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003171}
3172
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003173static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04003174check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003175{
Andy Adamson88e588d2009-07-23 19:02:15 -04003176 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
3177 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003178
3179 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04003180 if (slot_inuse) {
3181 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003182 return nfserr_jukebox;
3183 else
3184 return nfserr_seq_misordered;
3185 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05003186 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04003187 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03003188 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04003189 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003190 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003191 return nfserr_seq_misordered;
3192}
3193
Andy Adamson49557cc2009-07-23 19:02:16 -04003194/*
3195 * Cache the create session result into the create session single DRC
3196 * slot cache by saving the xdr structure. sl_seqid has been set.
3197 * Do this for solo or embedded create session operations.
3198 */
3199static void
3200nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003201 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04003202{
3203 slot->sl_status = nfserr;
3204 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
3205}
3206
3207static __be32
3208nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
3209 struct nfsd4_clid_slot *slot)
3210{
3211 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
3212 return slot->sl_status;
3213}
3214
Mi Jinlong1b74c252011-07-14 14:50:17 +08003215#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
3216 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
3217 1 + /* MIN tag is length with zero, only length */ \
3218 3 + /* version, opcount, opcode */ \
3219 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3220 /* seqid, slotID, slotID, cache */ \
3221 4 ) * sizeof(__be32))
3222
3223#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
3224 2 + /* verifier: AUTH_NULL, length 0 */\
3225 1 + /* status */ \
3226 1 + /* MIN tag is length with zero, only length */ \
3227 3 + /* opcount, opcode, opstatus*/ \
3228 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3229 /* seqid, slotID, slotID, slotID, status */ \
3230 5 ) * sizeof(__be32))
3231
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003232static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08003233{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003234 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
3235
J. Bruce Fields373cd402013-04-08 15:42:12 -04003236 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
3237 return nfserr_toosmall;
3238 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
3239 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003240 ca->headerpadsz = 0;
3241 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
3242 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
3243 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
3244 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
3245 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
3246 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
3247 /*
3248 * Note decreasing slot size below client's request may make it
3249 * difficult for client to function correctly, whereas
3250 * decreasing the number of slots will (just?) affect
3251 * performance. When short on memory we therefore prefer to
3252 * decrease number of slots instead of their size. Clients that
3253 * request larger slots than they need will get poor results:
NeilBrown7f49fd5d2019-09-20 16:33:16 +10003254 * Note that we always allow at least one slot, because our
3255 * accounting is soft and provides no guarantees either way.
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003256 */
NeilBrown2030ca52019-09-20 16:36:45 +10003257 ca->maxreqs = nfsd4_get_drc_mem(ca, nn);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003258
J. Bruce Fields373cd402013-04-08 15:42:12 -04003259 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08003260}
3261
Chuck Lever45006322016-03-01 13:06:02 -05003262/*
3263 * Server's NFSv4.1 backchannel support is AUTH_SYS-only for now.
3264 * These are based on similar macros in linux/sunrpc/msg_prot.h .
3265 */
3266#define RPC_MAX_HEADER_WITH_AUTH_SYS \
3267 (RPC_CALLHDRSIZE + 2 * (2 + UNX_CALLSLACK))
3268
3269#define RPC_MAX_REPHEADER_WITH_AUTH_SYS \
3270 (RPC_REPHDRSIZE + (2 + NUL_REPLYSLACK))
3271
Kinglong Mee8a891632013-12-23 18:11:02 +08003272#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05003273 RPC_MAX_HEADER_WITH_AUTH_SYS) * sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08003274#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05003275 RPC_MAX_REPHEADER_WITH_AUTH_SYS) * \
3276 sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08003277
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003278static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
3279{
3280 ca->headerpadsz = 0;
3281
Kinglong Mee8a891632013-12-23 18:11:02 +08003282 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003283 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08003284 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003285 return nfserr_toosmall;
3286 ca->maxresp_cached = 0;
3287 if (ca->maxops < 2)
3288 return nfserr_toosmall;
3289
3290 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003291}
3292
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003293static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
3294{
3295 switch (cbs->flavor) {
3296 case RPC_AUTH_NULL:
3297 case RPC_AUTH_UNIX:
3298 return nfs_ok;
3299 default:
3300 /*
3301 * GSS case: the spec doesn't allow us to return this
3302 * error. But it also doesn't allow us not to support
3303 * GSS.
3304 * I'd rather this fail hard than return some error the
3305 * client might think it can already handle:
3306 */
3307 return nfserr_encr_alg_unsupp;
3308 }
3309}
3310
Andy Adamson069b6ad2009-04-03 08:27:58 +03003311__be32
3312nfsd4_create_session(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003313 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003314{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003315 struct nfsd4_create_session *cr_ses = &u->create_session;
Jeff Layton363168b2009-08-14 12:57:56 -04003316 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003317 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003318 struct nfs4_client *old = NULL;
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04003319 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003320 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003321 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003322 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003323 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003324
Mi Jinlonga62573d2011-03-23 17:57:07 +08003325 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
3326 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003327 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
3328 if (status)
3329 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003330 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04003331 if (status)
3332 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003333 status = check_backchannel_attrs(&cr_ses->back_channel);
3334 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08003335 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003336 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08003337 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003338 if (!new)
3339 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003340 conn = alloc_conn_from_crses(rqstp, cr_ses);
3341 if (!conn)
3342 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08003343
Jeff Laytond20c11d2014-07-30 08:27:07 -04003344 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003345 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003346 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003347 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003348
3349 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04003350 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003351 if (!nfsd4_mach_creds_match(conf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003352 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003353 cs_slot = &conf->cl_cs_slot;
3354 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Kinglong Meef5e22bb2015-07-13 17:32:34 +08003355 if (status) {
3356 if (status == nfserr_replay_cache)
3357 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003358 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003359 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003360 } else if (unconf) {
3361 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04003362 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003363 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003364 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003365 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04003366 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003367 if (!nfsd4_mach_creds_match(unconf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003368 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003369 cs_slot = &unconf->cl_cs_slot;
3370 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03003371 if (status) {
3372 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003373 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003374 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003375 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003376 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003377 if (old) {
Jeff Laytond20c11d2014-07-30 08:27:07 -04003378 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04003379 if (status) {
3380 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003381 goto out_free_conn;
Jeff Layton7abea1e2014-07-30 08:27:13 -04003382 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003383 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04003384 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003385 conf = unconf;
3386 } else {
3387 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003388 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003389 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003390 status = nfs_ok;
Chuck Lever4ce85c82016-03-01 13:05:27 -05003391 /* Persistent sessions are not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04003392 cr_ses->flags &= ~SESSION4_PERSIST;
Chuck Lever4ce85c82016-03-01 13:05:27 -05003393 /* Upshifting from TCP to RDMA is not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04003394 cr_ses->flags &= ~SESSION4_RDMA;
3395
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003396 init_session(rqstp, new, conf, cr_ses);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003397 nfsd4_get_session_locked(new);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003398
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04003399 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003400 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04003401 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04003402 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003403
Jeff Laytond20c11d2014-07-30 08:27:07 -04003404 /* cache solo and embedded create sessions under the client_lock */
Andy Adamson49557cc2009-07-23 19:02:16 -04003405 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003406 spin_unlock(&nn->client_lock);
3407 /* init connection and backchannel */
3408 nfsd4_init_conn(rqstp, conn, new);
3409 nfsd4_put_session(new);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003410 if (old)
3411 expire_client(old);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003412 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003413out_free_conn:
Jeff Laytond20c11d2014-07-30 08:27:07 -04003414 spin_unlock(&nn->client_lock);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003415 free_conn(conn);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003416 if (old)
3417 expire_client(old);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003418out_free_session:
3419 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003420out_release_drc_mem:
3421 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04003422 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003423}
3424
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003425static __be32 nfsd4_map_bcts_dir(u32 *dir)
3426{
3427 switch (*dir) {
3428 case NFS4_CDFC4_FORE:
3429 case NFS4_CDFC4_BACK:
3430 return nfs_ok;
3431 case NFS4_CDFC4_FORE_OR_BOTH:
3432 case NFS4_CDFC4_BACK_OR_BOTH:
3433 *dir = NFS4_CDFC4_BOTH;
3434 return nfs_ok;
zhengbinfc5fc5d2019-12-19 17:29:20 +08003435 }
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003436 return nfserr_inval;
3437}
3438
Christoph Hellwigeb698532017-05-08 20:58:35 +02003439__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp,
3440 struct nfsd4_compound_state *cstate,
3441 union nfsd4_op_u *u)
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003442{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003443 struct nfsd4_backchannel_ctl *bc = &u->backchannel_ctl;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003444 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003445 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003446 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003447
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003448 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
3449 if (status)
3450 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003451 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003452 session->se_cb_prog = bc->bc_cb_program;
3453 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003454 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003455
3456 nfsd4_probe_callback(session->se_client);
3457
3458 return nfs_ok;
3459}
3460
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003461__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
3462 struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003463 union nfsd4_op_u *u)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003464{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003465 struct nfsd4_bind_conn_to_session *bcts = &u->bind_conn_to_session;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003466 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003467 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003468 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003469 struct net *net = SVC_NET(rqstp);
3470 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003471
3472 if (!nfsd4_last_compound_op(rqstp))
3473 return nfserr_not_only_op;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003474 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003475 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003476 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003477 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003478 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003479 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003480 if (!nfsd4_mach_creds_match(session->se_client, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003481 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003482 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003483 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003484 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003485 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003486 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003487 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003488 goto out;
3489 nfsd4_init_conn(rqstp, conn, session);
3490 status = nfs_ok;
3491out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003492 nfsd4_put_session(session);
3493out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003494 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003495}
3496
J. Bruce Fields665d5072018-04-11 16:53:36 -04003497static bool nfsd4_compound_in_session(struct nfsd4_compound_state *cstate, struct nfs4_sessionid *sid)
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04003498{
J. Bruce Fields665d5072018-04-11 16:53:36 -04003499 if (!cstate->session)
Fengguang Wu51d87bc2018-03-22 13:37:20 +08003500 return false;
J. Bruce Fields665d5072018-04-11 16:53:36 -04003501 return !memcmp(sid, &cstate->session->se_sessionid, sizeof(*sid));
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04003502}
3503
Andy Adamson069b6ad2009-04-03 08:27:58 +03003504__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003505nfsd4_destroy_session(struct svc_rqst *r, struct nfsd4_compound_state *cstate,
3506 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003507{
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003508 struct nfs4_sessionid *sessionid = &u->destroy_session.sessionid;
Benny Halevye10e0cf2009-04-03 08:28:38 +03003509 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003510 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003511 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003512 struct net *net = SVC_NET(r);
3513 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003514
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003515 status = nfserr_not_only_op;
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003516 if (nfsd4_compound_in_session(cstate, sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04003517 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003518 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003519 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04003520 }
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003521 dump_sessionid(__func__, sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003522 spin_lock(&nn->client_lock);
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003523 ses = find_in_sessionid_hashtbl(sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003524 if (!ses)
3525 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003526 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003527 if (!nfsd4_mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003528 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003529 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003530 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003531 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03003532 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003533 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003534
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05003535 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04003536
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003537 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003538 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003539out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003540 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003541out_client_lock:
3542 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003543out:
Benny Halevye10e0cf2009-04-03 08:28:38 +03003544 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003545}
3546
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003547static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003548{
3549 struct nfsd4_conn *c;
3550
3551 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003552 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04003553 return c;
3554 }
3555 }
3556 return NULL;
3557}
3558
J. Bruce Fields57266a62013-04-13 14:27:29 -04003559static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003560{
3561 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003562 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003563 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003564 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003565
3566 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003567 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003568 if (c)
3569 goto out_free;
3570 status = nfserr_conn_not_bound_to_session;
3571 if (clp->cl_mach_cred)
3572 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003573 __nfsd4_hash_conn(new, ses);
3574 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003575 ret = nfsd4_register_conn(new);
3576 if (ret)
3577 /* oops; xprt is already down: */
3578 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003579 return nfs_ok;
3580out_free:
3581 spin_unlock(&clp->cl_lock);
3582 free_conn(new);
3583 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003584}
3585
Mi Jinlong868b89c2011-04-27 09:09:58 +08003586static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
3587{
3588 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3589
3590 return args->opcnt > session->se_fchannel.maxops;
3591}
3592
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003593static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
3594 struct nfsd4_session *session)
3595{
3596 struct xdr_buf *xb = &rqstp->rq_arg;
3597
3598 return xb->len > session->se_fchannel.maxreq_sz;
3599}
3600
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003601static bool replay_matches_cache(struct svc_rqst *rqstp,
3602 struct nfsd4_sequence *seq, struct nfsd4_slot *slot)
3603{
3604 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3605
3606 if ((bool)(slot->sl_flags & NFSD4_SLOT_CACHETHIS) !=
3607 (bool)seq->cachethis)
3608 return false;
3609 /*
Scott Mayhew6e73e922019-10-09 15:11:37 -04003610 * If there's an error then the reply can have fewer ops than
3611 * the call.
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003612 */
Scott Mayhew6e73e922019-10-09 15:11:37 -04003613 if (slot->sl_opcnt < argp->opcnt && !slot->sl_status)
3614 return false;
3615 /*
3616 * But if we cached a reply with *more* ops than the call you're
3617 * sending us now, then this new call is clearly not really a
3618 * replay of the old one:
3619 */
3620 if (slot->sl_opcnt > argp->opcnt)
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003621 return false;
3622 /* This is the only check explicitly called by spec: */
3623 if (!same_creds(&rqstp->rq_cred, &slot->sl_cred))
3624 return false;
3625 /*
3626 * There may be more comparisons we could actually do, but the
3627 * spec doesn't require us to catch every case where the calls
3628 * don't match (that would require caching the call as well as
3629 * the reply), so we don't bother.
3630 */
3631 return true;
3632}
3633
Andy Adamson069b6ad2009-04-03 08:27:58 +03003634__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003635nfsd4_sequence(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3636 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003637{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003638 struct nfsd4_sequence *seq = &u->sequence;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003639 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003640 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003641 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003642 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003643 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003644 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003645 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003646 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003647 struct net *net = SVC_NET(rqstp);
3648 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003649
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003650 if (resp->opcnt != 1)
3651 return nfserr_sequence_pos;
3652
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003653 /*
3654 * Will be either used or freed by nfsd4_sequence_check_conn
3655 * below.
3656 */
3657 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
3658 if (!conn)
3659 return nfserr_jukebox;
3660
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003661 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003662 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003663 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04003664 goto out_no_session;
3665 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003666
Mi Jinlong868b89c2011-04-27 09:09:58 +08003667 status = nfserr_too_many_ops;
3668 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003669 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08003670
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003671 status = nfserr_req_too_big;
3672 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003673 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003674
Benny Halevyb85d4c02009-04-03 08:28:08 +03003675 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003676 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003677 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003678
Andy Adamson557ce262009-08-28 08:45:04 -04003679 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03003680 dprintk("%s: slotid %d\n", __func__, seq->slotid);
3681
Andy Adamsona8dfdae2009-08-28 08:45:02 -04003682 /* We do not negotiate the number of slots yet, so set the
3683 * maxslots to the session maxreqs which is used to encode
3684 * sr_highest_slotid and the sr_target_slot id to maxslots */
3685 seq->maxslots = session->se_fchannel.maxreqs;
3686
J. Bruce Fields73e79482012-02-13 16:39:00 -05003687 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
3688 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003689 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003690 status = nfserr_seq_misordered;
3691 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003692 goto out_put_session;
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003693 status = nfserr_seq_false_retry;
3694 if (!replay_matches_cache(rqstp, seq, slot))
3695 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003696 cstate->slot = slot;
3697 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003698 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03003699 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04003700 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03003701 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003702 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003703 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003704 }
3705 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003706 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003707
J. Bruce Fields57266a62013-04-13 14:27:29 -04003708 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003709 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003710 if (status)
3711 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003712
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003713 buflen = (seq->cachethis) ?
3714 session->se_fchannel.maxresp_cached :
3715 session->se_fchannel.maxresp_sz;
3716 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
3717 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04003718 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003719 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04003720 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003721
3722 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003723 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003724 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003725 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05003726 if (seq->cachethis)
3727 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003728 else
3729 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003730
3731 cstate->slot = slot;
3732 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003733 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003734
Benny Halevyb85d4c02009-04-03 08:28:08 +03003735out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04003736 switch (clp->cl_cb_state) {
3737 case NFSD4_CB_DOWN:
3738 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
3739 break;
3740 case NFSD4_CB_FAULT:
3741 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
3742 break;
3743 default:
3744 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003745 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04003746 if (!list_empty(&clp->cl_revoked))
3747 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003748out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08003749 if (conn)
3750 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003751 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003752 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003753out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003754 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003755 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003756}
3757
Trond Myklebustb6076642014-06-30 11:48:35 -04003758void
3759nfsd4_sequence_done(struct nfsd4_compoundres *resp)
3760{
3761 struct nfsd4_compound_state *cs = &resp->cstate;
3762
3763 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04003764 if (cs->status != nfserr_replay_cache) {
3765 nfsd4_store_cache_entry(resp);
3766 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
3767 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003768 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04003769 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003770 } else if (cs->clp)
3771 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04003772}
3773
Mi Jinlong345c2842011-10-20 17:51:39 +08003774__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003775nfsd4_destroy_clientid(struct svc_rqst *rqstp,
3776 struct nfsd4_compound_state *cstate,
3777 union nfsd4_op_u *u)
Mi Jinlong345c2842011-10-20 17:51:39 +08003778{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003779 struct nfsd4_destroy_clientid *dc = &u->destroy_clientid;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003780 struct nfs4_client *conf, *unconf;
3781 struct nfs4_client *clp = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003782 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003783 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08003784
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003785 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003786 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003787 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003788 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08003789
3790 if (conf) {
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04003791 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08003792 status = nfserr_clientid_busy;
3793 goto out;
3794 }
Jeff Laytonfd699b82014-07-30 08:27:14 -04003795 status = mark_client_expired_locked(conf);
3796 if (status)
3797 goto out;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003798 clp = conf;
Mi Jinlong345c2842011-10-20 17:51:39 +08003799 } else if (unconf)
3800 clp = unconf;
3801 else {
3802 status = nfserr_stale_clientid;
3803 goto out;
3804 }
Andrew Elblededeb132016-06-15 12:52:08 -04003805 if (!nfsd4_mach_creds_match(clp, rqstp)) {
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003806 clp = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003807 status = nfserr_wrong_cred;
3808 goto out;
3809 }
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003810 unhash_client_locked(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003811out:
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003812 spin_unlock(&nn->client_lock);
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003813 if (clp)
3814 expire_client(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003815 return status;
3816}
3817
Andy Adamson069b6ad2009-04-03 08:27:58 +03003818__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003819nfsd4_reclaim_complete(struct svc_rqst *rqstp,
3820 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003821{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003822 struct nfsd4_reclaim_complete *rc = &u->reclaim_complete;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003823 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003824
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003825 if (rc->rca_one_fs) {
3826 if (!cstate->current_fh.fh_dentry)
3827 return nfserr_nofilehandle;
3828 /*
3829 * We don't take advantage of the rca_one_fs case.
3830 * That's OK, it's optional, we can safely ignore it.
3831 */
Christophe JAILLETd28c4422016-07-02 08:24:32 +02003832 return nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003833 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003834
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003835 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04003836 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
3837 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003838 goto out;
3839
3840 status = nfserr_stale_clientid;
3841 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003842 /*
3843 * The following error isn't really legal.
3844 * But we only get here if the client just explicitly
3845 * destroyed the client. Surely it no longer cares what
3846 * error it gets back on an operation for the dead
3847 * client.
3848 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003849 goto out;
3850
3851 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04003852 nfsd4_client_record_create(cstate->session->se_client);
Scott Mayhew362063a2019-03-26 18:06:28 -04003853 inc_reclaim_complete(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003854out:
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003855 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003856}
3857
3858__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003859nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003860 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003862 struct nfsd4_setclientid *setclid = &u->setclientid;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04003863 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 nfs4_verifier clverifier = setclid->se_verf;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003865 struct nfs4_client *conf, *new;
3866 struct nfs4_client *unconf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003867 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003868 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3869
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003870 new = create_client(clname, rqstp, &clverifier);
3871 if (new == NULL)
3872 return nfserr_jukebox;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003873 /* Cases below refer to rfc 3530 section 14.2.33: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003874 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003875 conf = find_confirmed_client_by_name(&clname, nn);
J. Bruce Fields2b634822015-10-15 15:33:23 -04003876 if (conf && client_has_state(conf)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003877 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05003879 if (clp_used_exchangeid(conf))
3880 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04003881 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04003882 char addr_str[INET6_ADDRSTRLEN];
3883 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
3884 sizeof(addr_str));
3885 dprintk("NFSD: setclientid: string in use by client "
3886 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 goto out;
3888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003890 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04003891 if (unconf)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003892 unhash_client_locked(unconf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003893 if (conf && same_verf(&conf->cl_verifier, &clverifier)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003894 /* case 1: probable callback update */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 copy_clid(new, conf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003896 gen_confirm(new, nn);
3897 } else /* case 4 (new client) or cases 2, 3 (client reboot): */
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04003898 ;
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04003899 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09003900 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003901 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
3903 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
3904 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003905 new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 status = nfs_ok;
3907out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003908 spin_unlock(&nn->client_lock);
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003909 if (new)
3910 free_client(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003911 if (unconf)
3912 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 return status;
3914}
3915
3916
Al Virob37ad282006-10-19 23:28:59 -07003917__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003918nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003919 struct nfsd4_compound_state *cstate,
3920 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003922 struct nfsd4_setclientid_confirm *setclientid_confirm =
3923 &u->setclientid_confirm;
NeilBrown21ab45a2005-06-23 22:04:14 -07003924 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003925 struct nfs4_client *old = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
3927 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07003928 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003929 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003931 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 return nfserr_stale_clientid;
NeilBrown21ab45a2005-06-23 22:04:14 -07003933
Jeff Laytond20c11d2014-07-30 08:27:07 -04003934 spin_lock(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003935 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003936 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003937 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04003938 * We try hard to give out unique clientid's, so if we get an
3939 * attempt to confirm the same clientid with a different cred,
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003940 * the client may be buggy; this should never happen.
3941 *
3942 * Nevertheless, RFC 7530 recommends INUSE for this case:
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003943 */
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003944 status = nfserr_clid_inuse;
J. Bruce Fields8695b902012-05-19 10:05:58 -04003945 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
3946 goto out;
3947 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
3948 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003949 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003950 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003951 if (conf && same_verf(&confirm, &conf->cl_confirm)) {
3952 /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 status = nfs_ok;
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003954 } else /* case 4: client hasn't noticed we rebooted yet? */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003955 status = nfserr_stale_clientid;
3956 goto out;
3957 }
3958 status = nfs_ok;
3959 if (conf) { /* case 1: callback update */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003960 old = unconf;
3961 unhash_client_locked(old);
J. Bruce Fields8695b902012-05-19 10:05:58 -04003962 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003963 } else { /* case 3: normal case; new or rebooted client */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003964 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
3965 if (old) {
J. Bruce Fields2b634822015-10-15 15:33:23 -04003966 status = nfserr_clid_inuse;
3967 if (client_has_state(old)
3968 && !same_creds(&unconf->cl_cred,
3969 &old->cl_cred))
3970 goto out;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003971 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04003972 if (status) {
3973 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003974 goto out;
Jeff Layton7abea1e2014-07-30 08:27:13 -04003975 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003976 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04003977 move_to_confirmed(unconf);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003978 conf = unconf;
NeilBrown08e89872005-06-23 22:04:11 -07003979 }
Jeff Laytond20c11d2014-07-30 08:27:07 -04003980 get_client_locked(conf);
3981 spin_unlock(&nn->client_lock);
3982 nfsd4_probe_callback(conf);
3983 spin_lock(&nn->client_lock);
3984 put_client_renew_locked(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985out:
Jeff Laytond20c11d2014-07-30 08:27:07 -04003986 spin_unlock(&nn->client_lock);
3987 if (old)
3988 expire_client(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 return status;
3990}
3991
J. Bruce Fields32513b42011-10-13 16:00:16 -04003992static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993{
J. Bruce Fields32513b42011-10-13 16:00:16 -04003994 return kmem_cache_alloc(file_slab, GFP_KERNEL);
3995}
3996
3997/* OPEN Share state helper functions */
Jeff Layton5b095e92014-10-23 08:01:02 -04003998static void nfsd4_init_file(struct knfsd_fh *fh, unsigned int hashval,
3999 struct nfs4_file *fp)
J. Bruce Fields32513b42011-10-13 16:00:16 -04004000{
Trond Myklebust950e0112014-06-30 11:48:31 -04004001 lockdep_assert_held(&state_lock);
4002
Elena Reshetova818a34e2017-10-20 12:53:30 +03004003 refcount_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04004004 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04004005 INIT_LIST_HEAD(&fp->fi_stateids);
4006 INIT_LIST_HEAD(&fp->fi_delegations);
Sachin Bhamare8287f002015-04-27 14:50:14 +02004007 INIT_LIST_HEAD(&fp->fi_clnt_odstate);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04004008 fh_copy_shallow(&fp->fi_fhandle, fh);
Jeff Layton0c637be2014-08-22 12:05:43 -04004009 fp->fi_deleg_file = NULL;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004010 fp->fi_had_conflict = false;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004011 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004012 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
4013 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004014#ifdef CONFIG_NFSD_PNFS
4015 INIT_LIST_HEAD(&fp->fi_lo_states);
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02004016 atomic_set(&fp->fi_lo_recalls, 0);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004017#endif
Jeff Layton5b095e92014-10-23 08:01:02 -04004018 hlist_add_head_rcu(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019}
4020
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004021void
NeilBrowne60d4392005-06-23 22:03:01 -07004022nfsd4_free_slabs(void)
4023{
Jeff Layton9258a2d2018-03-16 09:47:22 -04004024 kmem_cache_destroy(client_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07004025 kmem_cache_destroy(openowner_slab);
4026 kmem_cache_destroy(lockowner_slab);
4027 kmem_cache_destroy(file_slab);
4028 kmem_cache_destroy(stateid_slab);
4029 kmem_cache_destroy(deleg_slab);
Jeff Layton9258a2d2018-03-16 09:47:22 -04004030 kmem_cache_destroy(odstate_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07004031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
Bryan Schumaker72083392011-11-01 15:24:59 -04004033int
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034nfsd4_init_slabs(void)
4035{
Jeff Layton9258a2d2018-03-16 09:47:22 -04004036 client_slab = kmem_cache_create("nfsd4_clients",
4037 sizeof(struct nfs4_client), 0, 0, NULL);
4038 if (client_slab == NULL)
4039 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004040 openowner_slab = kmem_cache_create("nfsd4_openowners",
4041 sizeof(struct nfs4_openowner), 0, 0, NULL);
4042 if (openowner_slab == NULL)
Jeff Layton9258a2d2018-03-16 09:47:22 -04004043 goto out_free_client_slab;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004044 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08004045 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004046 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07004047 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07004048 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09004049 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07004050 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07004051 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07004052 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004053 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07004054 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07004055 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07004056 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09004057 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07004058 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07004059 goto out_free_stateid_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +02004060 odstate_slab = kmem_cache_create("nfsd4_odstate",
4061 sizeof(struct nfs4_clnt_odstate), 0, 0, NULL);
4062 if (odstate_slab == NULL)
4063 goto out_free_deleg_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07004065
Sachin Bhamare8287f002015-04-27 14:50:14 +02004066out_free_deleg_slab:
4067 kmem_cache_destroy(deleg_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07004068out_free_stateid_slab:
4069 kmem_cache_destroy(stateid_slab);
4070out_free_file_slab:
4071 kmem_cache_destroy(file_slab);
4072out_free_lockowner_slab:
4073 kmem_cache_destroy(lockowner_slab);
4074out_free_openowner_slab:
4075 kmem_cache_destroy(openowner_slab);
Jeff Layton9258a2d2018-03-16 09:47:22 -04004076out_free_client_slab:
4077 kmem_cache_destroy(client_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07004078out:
NeilBrowne60d4392005-06-23 22:03:01 -07004079 dprintk("nfsd4: out of memory while initializing nfsv4\n");
4080 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081}
4082
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004083static void init_nfs4_replay(struct nfs4_replay *rp)
4084{
4085 rp->rp_status = nfserr_serverfault;
4086 rp->rp_buflen = 0;
4087 rp->rp_buf = rp->rp_ibuf;
Jeff Layton58fb12e2014-07-29 21:34:27 -04004088 mutex_init(&rp->rp_mutex);
4089}
4090
4091static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
4092 struct nfs4_stateowner *so)
4093{
4094 if (!nfsd4_has_session(cstate)) {
4095 mutex_lock(&so->so_replay.rp_mutex);
Kinglong Meeb5971af2014-08-22 10:18:43 -04004096 cstate->replay_owner = nfs4_get_stateowner(so);
Jeff Layton58fb12e2014-07-29 21:34:27 -04004097 }
4098}
4099
4100void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
4101{
4102 struct nfs4_stateowner *so = cstate->replay_owner;
4103
4104 if (so != NULL) {
4105 cstate->replay_owner = NULL;
4106 mutex_unlock(&so->so_replay.rp_mutex);
4107 nfs4_put_stateowner(so);
4108 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004109}
4110
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004111static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112{
4113 struct nfs4_stateowner *sop;
4114
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004115 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004116 if (!sop)
4117 return NULL;
4118
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04004119 xdr_netobj_dup(&sop->so_owner, owner, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004120 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004121 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004122 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004124
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004125 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004126 sop->so_client = clp;
4127 init_nfs4_replay(&sop->so_replay);
Jeff Layton6b180f02014-07-29 21:34:26 -04004128 atomic_set(&sop->so_count, 1);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004129 return sop;
4130}
4131
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004132static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004133{
Trond Myklebustd4f04892014-07-29 21:34:36 -04004134 lockdep_assert_held(&clp->cl_lock);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03004135
Trond Myklebustd4f04892014-07-29 21:34:36 -04004136 list_add(&oo->oo_owner.so_strhash,
4137 &clp->cl_ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004138 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139}
4140
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004141static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
4142{
Trond Myklebustd4f04892014-07-29 21:34:36 -04004143 unhash_openowner_locked(openowner(so));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004144}
4145
Jeff Layton6b180f02014-07-29 21:34:26 -04004146static void nfs4_free_openowner(struct nfs4_stateowner *so)
4147{
4148 struct nfs4_openowner *oo = openowner(so);
4149
4150 kmem_cache_free(openowner_slab, oo);
4151}
4152
4153static const struct nfs4_stateowner_operations openowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004154 .so_unhash = nfs4_unhash_openowner,
4155 .so_free = nfs4_free_openowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04004156};
4157
Andrew Elble7fc05642015-11-05 20:42:43 -05004158static struct nfs4_ol_stateid *
4159nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
4160{
4161 struct nfs4_ol_stateid *local, *ret = NULL;
4162 struct nfs4_openowner *oo = open->op_openowner;
4163
4164 lockdep_assert_held(&fp->fi_lock);
4165
4166 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
4167 /* ignore lock owners */
4168 if (local->st_stateowner->so_is_open_owner == 0)
4169 continue;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004170 if (local->st_stateowner != &oo->oo_owner)
4171 continue;
4172 if (local->st_stid.sc_type == NFS4_OPEN_STID) {
Andrew Elble7fc05642015-11-05 20:42:43 -05004173 ret = local;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004174 refcount_inc(&ret->st_stid.sc_count);
Andrew Elble7fc05642015-11-05 20:42:43 -05004175 break;
4176 }
4177 }
4178 return ret;
4179}
4180
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004181static __be32
4182nfsd4_verify_open_stid(struct nfs4_stid *s)
4183{
4184 __be32 ret = nfs_ok;
4185
4186 switch (s->sc_type) {
4187 default:
4188 break;
Trond Myklebust4f176412018-01-12 17:42:30 -05004189 case 0:
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004190 case NFS4_CLOSED_STID:
4191 case NFS4_CLOSED_DELEG_STID:
4192 ret = nfserr_bad_stateid;
4193 break;
4194 case NFS4_REVOKED_DELEG_STID:
4195 ret = nfserr_deleg_revoked;
4196 }
4197 return ret;
4198}
4199
4200/* Lock the stateid st_mutex, and deal with races with CLOSE */
4201static __be32
4202nfsd4_lock_ol_stateid(struct nfs4_ol_stateid *stp)
4203{
4204 __be32 ret;
4205
Andrew Elble4f34bd02017-11-08 17:29:51 -05004206 mutex_lock_nested(&stp->st_mutex, LOCK_STATEID_MUTEX);
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004207 ret = nfsd4_verify_open_stid(&stp->st_stid);
4208 if (ret != nfs_ok)
4209 mutex_unlock(&stp->st_mutex);
4210 return ret;
4211}
4212
4213static struct nfs4_ol_stateid *
4214nfsd4_find_and_lock_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
4215{
4216 struct nfs4_ol_stateid *stp;
4217 for (;;) {
4218 spin_lock(&fp->fi_lock);
4219 stp = nfsd4_find_existing_open(fp, open);
4220 spin_unlock(&fp->fi_lock);
4221 if (!stp || nfsd4_lock_ol_stateid(stp) == nfs_ok)
4222 break;
4223 nfs4_put_stid(&stp->st_stid);
4224 }
4225 return stp;
4226}
4227
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004228static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04004229alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004230 struct nfsd4_compound_state *cstate)
4231{
Trond Myklebust13d6f662014-06-30 11:48:45 -04004232 struct nfs4_client *clp = cstate->clp;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04004233 struct nfs4_openowner *oo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004235 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
4236 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 return NULL;
Jeff Layton6b180f02014-07-29 21:34:26 -04004238 oo->oo_owner.so_ops = &openowner_ops;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004239 oo->oo_owner.so_is_open_owner = 1;
4240 oo->oo_owner.so_seqid = open->op_seqid;
Jeff Laytond3134b12014-07-29 21:34:32 -04004241 oo->oo_flags = 0;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004242 if (nfsd4_has_session(cstate))
4243 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004244 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04004245 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004246 INIT_LIST_HEAD(&oo->oo_close_lru);
Trond Myklebustd4f04892014-07-29 21:34:36 -04004247 spin_lock(&clp->cl_lock);
4248 ret = find_openstateowner_str_locked(strhashval, open, clp);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04004249 if (ret == NULL) {
4250 hash_openowner(oo, clp, strhashval);
4251 ret = oo;
4252 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08004253 nfs4_free_stateowner(&oo->oo_owner);
4254
Trond Myklebustd4f04892014-07-29 21:34:36 -04004255 spin_unlock(&clp->cl_lock);
Jeff Laytonc5952332015-03-23 10:53:42 -04004256 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257}
4258
Andrew Elble7fc05642015-11-05 20:42:43 -05004259static struct nfs4_ol_stateid *
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004260init_open_stateid(struct nfs4_file *fp, struct nfsd4_open *open)
Andrew Elble7fc05642015-11-05 20:42:43 -05004261{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Andrew Elble7fc05642015-11-05 20:42:43 -05004263 struct nfs4_openowner *oo = open->op_openowner;
4264 struct nfs4_ol_stateid *retstp = NULL;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004265 struct nfs4_ol_stateid *stp;
Andrew Elble7fc05642015-11-05 20:42:43 -05004266
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004267 stp = open->op_stp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004268 /* We are moving these outside of the spinlocks to avoid the warnings */
4269 mutex_init(&stp->st_mutex);
Andrew Elble4f34bd02017-11-08 17:29:51 -05004270 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004271
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004272retry:
Andrew Elble7fc05642015-11-05 20:42:43 -05004273 spin_lock(&oo->oo_owner.so_client->cl_lock);
4274 spin_lock(&fp->fi_lock);
4275
4276 retstp = nfsd4_find_existing_open(fp, open);
4277 if (retstp)
4278 goto out_unlock;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004279
4280 open->op_stp = NULL;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004281 refcount_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05004282 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04004283 INIT_LIST_HEAD(&stp->st_locks);
Kinglong Meeb5971af2014-08-22 10:18:43 -04004284 stp->st_stateowner = nfs4_get_stateowner(&oo->oo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07004285 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04004286 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 stp->st_access_bmap = 0;
4288 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07004289 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04004290 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04004291 list_add(&stp->st_perfile, &fp->fi_stateids);
Andrew Elble7fc05642015-11-05 20:42:43 -05004292
4293out_unlock:
Trond Myklebust1d31a252014-07-10 14:07:25 -04004294 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04004295 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004296 if (retstp) {
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004297 /* Handle races with CLOSE */
4298 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
4299 nfs4_put_stid(&retstp->st_stid);
4300 goto retry;
4301 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004302 /* To keep mutex tracking happy */
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004303 mutex_unlock(&stp->st_mutex);
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004304 stp = retstp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004305 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004306 return stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307}
4308
Jeff Laytond3134b12014-07-29 21:34:32 -04004309/*
4310 * In the 4.0 case we need to keep the owners around a little while to handle
4311 * CLOSE replay. We still do need to release any file access that is held by
4312 * them before returning however.
4313 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314static void
Jeff Laytond3134b12014-07-29 21:34:32 -04004315move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316{
Jeff Layton217526e2014-07-30 08:27:11 -04004317 struct nfs4_ol_stateid *last;
Jeff Laytond3134b12014-07-29 21:34:32 -04004318 struct nfs4_openowner *oo = openowner(s->st_stateowner);
4319 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
4320 nfsd_net_id);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03004321
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004322 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323
Jeff Laytonb401be222014-07-29 21:34:33 -04004324 /*
4325 * We know that we hold one reference via nfsd4_close, and another
4326 * "persistent" reference for the client. If the refcount is higher
4327 * than 2, then there are still calls in progress that are using this
4328 * stateid. We can't put the sc_file reference until they are finished.
4329 * Wait for the refcount to drop to 2. Since it has been unhashed,
4330 * there should be no danger of the refcount going back up again at
4331 * this point.
4332 */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004333 wait_event(close_wq, refcount_read(&s->st_stid.sc_count) == 2);
Jeff Laytonb401be222014-07-29 21:34:33 -04004334
Jeff Laytond3134b12014-07-29 21:34:32 -04004335 release_all_access(s);
4336 if (s->st_stid.sc_file) {
4337 put_nfs4_file(s->st_stid.sc_file);
4338 s->st_stid.sc_file = NULL;
4339 }
Jeff Layton217526e2014-07-30 08:27:11 -04004340
4341 spin_lock(&nn->client_lock);
4342 last = oo->oo_last_closed_stid;
Jeff Laytond3134b12014-07-29 21:34:32 -04004343 oo->oo_last_closed_stid = s;
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03004344 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01004345 oo->oo_time = ktime_get_boottime_seconds();
Jeff Layton217526e2014-07-30 08:27:11 -04004346 spin_unlock(&nn->client_lock);
4347 if (last)
4348 nfs4_put_stid(&last->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349}
4350
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351/* search file_hashtbl[] for file */
4352static struct nfs4_file *
Jeff Layton5b095e92014-10-23 08:01:02 -04004353find_file_locked(struct knfsd_fh *fh, unsigned int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 struct nfs4_file *fp;
4356
Madhuparna Bhowmik36a80492020-02-13 20:33:31 +05304357 hlist_for_each_entry_rcu(fp, &file_hashtbl[hashval], fi_hash,
4358 lockdep_is_held(&state_lock)) {
Christoph Hellwig4d94c2e2014-08-14 08:41:48 +02004359 if (fh_match(&fp->fi_fhandle, fh)) {
Elena Reshetova818a34e2017-10-20 12:53:30 +03004360 if (refcount_inc_not_zero(&fp->fi_ref))
Jeff Layton5b095e92014-10-23 08:01:02 -04004361 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07004362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 }
4364 return NULL;
4365}
4366
Christoph Hellwige6ba76e2014-08-14 08:50:16 +02004367struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04004368find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04004369{
4370 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04004371 unsigned int hashval = file_hashval(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04004372
Jeff Layton5b095e92014-10-23 08:01:02 -04004373 rcu_read_lock();
4374 fp = find_file_locked(fh, hashval);
4375 rcu_read_unlock();
Trond Myklebust950e0112014-06-30 11:48:31 -04004376 return fp;
4377}
4378
4379static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004380find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04004381{
4382 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04004383 unsigned int hashval = file_hashval(fh);
4384
4385 rcu_read_lock();
4386 fp = find_file_locked(fh, hashval);
4387 rcu_read_unlock();
4388 if (fp)
4389 return fp;
Trond Myklebust950e0112014-06-30 11:48:31 -04004390
4391 spin_lock(&state_lock);
Jeff Layton5b095e92014-10-23 08:01:02 -04004392 fp = find_file_locked(fh, hashval);
4393 if (likely(fp == NULL)) {
4394 nfsd4_init_file(fh, hashval, new);
Trond Myklebust950e0112014-06-30 11:48:31 -04004395 fp = new;
4396 }
4397 spin_unlock(&state_lock);
4398
4399 return fp;
4400}
4401
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04004402/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 * Called to check deny when READ with all zero stateid or
4404 * WRITE with all zero or all one stateid
4405 */
Al Virob37ad282006-10-19 23:28:59 -07004406static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
4408{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004410 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Trond Myklebustca943212014-07-23 16:17:39 -04004412 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07004413 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004414 return ret;
4415 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04004416 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004417 if (fp->fi_share_deny & deny_type)
4418 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04004419 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07004420 put_nfs4_file(fp);
4421 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422}
4423
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004424static void nfsd4_cb_recall_prepare(struct nfsd4_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425{
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004426 struct nfs4_delegation *dp = cb_to_delegation(cb);
Trond Myklebust11b91642014-07-29 21:34:08 -04004427 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
4428 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04004429
Trond Myklebust11b91642014-07-29 21:34:08 -04004430 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04004431
Jeff Layton02e12152014-07-16 10:31:57 -04004432 /*
4433 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04004434 * already holding inode->i_lock.
4435 *
Jeff Laytondff13992014-07-08 14:02:49 -04004436 * If the dl_time != 0, then we know that it has already been
4437 * queued for a lease break. Don't queue it again.
4438 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04004439 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04004440 if (dp->dl_time == 0) {
Arnd Bergmann20b7d862019-11-04 16:31:52 +01004441 dp->dl_time = ktime_get_boottime_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04004442 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04004443 }
Jeff Layton02e12152014-07-16 10:31:57 -04004444 spin_unlock(&state_lock);
4445}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004447static int nfsd4_cb_recall_done(struct nfsd4_callback *cb,
4448 struct rpc_task *task)
4449{
4450 struct nfs4_delegation *dp = cb_to_delegation(cb);
4451
Andrew Elblea4579742015-08-31 12:06:41 -04004452 if (dp->dl_stid.sc_type == NFS4_CLOSED_DELEG_STID)
4453 return 1;
4454
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004455 switch (task->tk_status) {
4456 case 0:
4457 return 1;
Scott Mayhew1c73b9d2019-05-02 13:32:12 -04004458 case -NFS4ERR_DELAY:
4459 rpc_delay(task, 2 * HZ);
4460 return 0;
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004461 case -EBADHANDLE:
4462 case -NFS4ERR_BAD_STATEID:
4463 /*
4464 * Race: client probably got cb_recall before open reply
4465 * granting delegation.
4466 */
4467 if (dp->dl_retries--) {
4468 rpc_delay(task, 2 * HZ);
4469 return 0;
4470 }
4471 /*FALLTHRU*/
4472 default:
Scott Mayhew1c73b9d2019-05-02 13:32:12 -04004473 return 1;
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004474 }
4475}
4476
4477static void nfsd4_cb_recall_release(struct nfsd4_callback *cb)
4478{
4479 struct nfs4_delegation *dp = cb_to_delegation(cb);
4480
4481 nfs4_put_stid(&dp->dl_stid);
4482}
4483
Julia Lawallc4cb8972015-11-21 22:57:39 +01004484static const struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004485 .prepare = nfsd4_cb_recall_prepare,
4486 .done = nfsd4_cb_recall_done,
4487 .release = nfsd4_cb_recall_release,
4488};
4489
Jeff Layton02e12152014-07-16 10:31:57 -04004490static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
4491{
4492 /*
4493 * We're assuming the state code never drops its reference
4494 * without first removing the lease. Since we're in this lease
J. Bruce Fields4a269efb2018-04-13 17:34:35 -04004495 * callback (and since the lease code is serialized by the
4496 * i_lock) we know the server hasn't removed the lease yet, and
4497 * we know it's safe to take a reference.
Jeff Layton02e12152014-07-16 10:31:57 -04004498 */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004499 refcount_inc(&dp->dl_stid.sc_count);
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02004500 nfsd4_run_cb(&dp->dl_recall);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004501}
4502
Jeff Layton1c8c6012013-06-21 08:58:15 -04004503/* Called from break_lease() with i_lock held. */
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004504static bool
4505nfsd_break_deleg_cb(struct file_lock *fl)
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004506{
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004507 bool ret = false;
J. Bruce Fields653e5142018-02-15 22:08:45 -05004508 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
4509 struct nfs4_file *fp = dp->dl_stid.sc_file;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004510
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04004511 /*
4512 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004513 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004514 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04004515 */
4516 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
Jeff Layton02e12152014-07-16 10:31:57 -04004518 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004519 fp->fi_had_conflict = true;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004520 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04004521 spin_unlock(&fp->fi_lock);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004522 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523}
4524
Jeff Laytonc45198e2014-09-01 07:12:07 -04004525static int
Jeff Layton7448cc32015-01-16 15:05:57 -05004526nfsd_change_deleg_cb(struct file_lock *onlist, int arg,
4527 struct list_head *dispose)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528{
4529 if (arg & F_UNLCK)
Jeff Laytonc45198e2014-09-01 07:12:07 -04004530 return lease_modify(onlist, arg, dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 else
4532 return -EAGAIN;
4533}
4534
Alexey Dobriyan7b021962009-09-21 17:01:12 -07004535static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04004536 .lm_break = nfsd_break_deleg_cb,
4537 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538};
4539
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04004540static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
4541{
4542 if (nfsd4_has_session(cstate))
4543 return nfs_ok;
4544 if (seqid == so->so_seqid - 1)
4545 return nfserr_replay_me;
4546 if (seqid == so->so_seqid)
4547 return nfs_ok;
4548 return nfserr_bad_seqid;
4549}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
Jeff Layton4b24ca72014-06-30 11:48:44 -04004551static __be32 lookup_clientid(clientid_t *clid,
4552 struct nfsd4_compound_state *cstate,
Olga Kornievskaiab7342202019-09-06 15:17:21 -04004553 struct nfsd_net *nn,
4554 bool sessions)
Jeff Layton4b24ca72014-06-30 11:48:44 -04004555{
4556 struct nfs4_client *found;
4557
4558 if (cstate->clp) {
4559 found = cstate->clp;
4560 if (!same_clid(&found->cl_clientid, clid))
4561 return nfserr_stale_clientid;
4562 return nfs_ok;
4563 }
4564
4565 if (STALE_CLIENTID(clid, nn))
4566 return nfserr_stale_clientid;
4567
4568 /*
4569 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
4570 * cached already then we know this is for is for v4.0 and "sessions"
4571 * will be false.
4572 */
4573 WARN_ON_ONCE(cstate->session);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004574 spin_lock(&nn->client_lock);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04004575 found = find_confirmed_client(clid, sessions, nn);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004576 if (!found) {
4577 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004578 return nfserr_expired;
Trond Myklebust3e339f92014-07-30 08:27:09 -04004579 }
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04004580 atomic_inc(&found->cl_rpc_users);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004581 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004582
4583 /* Cache the nfs4_client in cstate! */
4584 cstate->clp = found;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004585 return nfs_ok;
4586}
4587
Al Virob37ad282006-10-19 23:28:59 -07004588__be32
Andy Adamson66689582009-04-03 08:28:45 +03004589nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004590 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 clientid_t *clientid = &open->op_clientid;
4593 struct nfs4_client *clp = NULL;
4594 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004595 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004596 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004598 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004600 /*
4601 * In case we need it later, after we've already created the
4602 * file and don't want to risk a further failure:
4603 */
4604 open->op_file = nfsd4_alloc_file();
4605 if (open->op_file == NULL)
4606 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
Olga Kornievskaiab7342202019-09-06 15:17:21 -04004608 status = lookup_clientid(clientid, cstate, nn, false);
Trond Myklebust2d91e892014-06-30 11:48:46 -04004609 if (status)
4610 return status;
4611 clp = cstate->clp;
4612
Trond Myklebustd4f04892014-07-29 21:34:36 -04004613 strhashval = ownerstr_hashval(&open->op_owner);
4614 oo = find_openstateowner_str(strhashval, open, clp);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004615 open->op_openowner = oo;
4616 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004617 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004619 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004620 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004621 release_openowner(oo);
4622 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004623 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004624 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004625 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
4626 if (status)
4627 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004628 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004629new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04004630 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004631 if (oo == NULL)
4632 return nfserr_jukebox;
4633 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004634alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04004635 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004636 if (!open->op_stp)
4637 return nfserr_jukebox;
Sachin Bhamare8287f002015-04-27 14:50:14 +02004638
4639 if (nfsd4_has_session(cstate) &&
4640 (cstate->current_fh.fh_export->ex_flags & NFSEXP_PNFS)) {
4641 open->op_odstate = alloc_clnt_odstate(clp);
4642 if (!open->op_odstate)
4643 return nfserr_jukebox;
4644 }
4645
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004646 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647}
4648
Al Virob37ad282006-10-19 23:28:59 -07004649static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07004650nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
4651{
4652 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
4653 return nfserr_openmode;
4654 else
4655 return nfs_ok;
4656}
4657
Daniel Mackc47d8322011-05-16 16:38:14 +02004658static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04004659{
J. Bruce Fields24a01112010-05-18 20:01:35 -04004660 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
4661}
4662
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004663static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004664{
4665 struct nfs4_stid *ret;
4666
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004667 ret = find_stateid_by_type(cl, s,
4668 NFS4_DELEG_STID|NFS4_REVOKED_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004669 if (!ret)
4670 return NULL;
4671 return delegstateid(ret);
4672}
4673
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004674static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
4675{
4676 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
4677 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
4678}
4679
Al Virob37ad282006-10-19 23:28:59 -07004680static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04004681nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07004682 struct nfs4_delegation **dp)
4683{
4684 int flags;
Al Virob37ad282006-10-19 23:28:59 -07004685 __be32 status = nfserr_bad_stateid;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004686 struct nfs4_delegation *deleg;
NeilBrown567d9822005-06-23 22:02:53 -07004687
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004688 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
4689 if (deleg == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07004690 goto out;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004691 if (deleg->dl_stid.sc_type == NFS4_REVOKED_DELEG_STID) {
4692 nfs4_put_stid(&deleg->dl_stid);
4693 if (cl->cl_minorversion)
4694 status = nfserr_deleg_revoked;
4695 goto out;
4696 }
J. Bruce Fields24a01112010-05-18 20:01:35 -04004697 flags = share_access_to_flags(open->op_share_access);
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004698 status = nfs4_check_delegmode(deleg, flags);
4699 if (status) {
4700 nfs4_put_stid(&deleg->dl_stid);
4701 goto out;
4702 }
4703 *dp = deleg;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004704out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004705 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004706 return nfs_ok;
4707 if (status)
4708 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004709 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004710 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07004711}
4712
J. Bruce Fields21fb4012010-07-28 12:21:23 -04004713static inline int nfs4_access_to_access(u32 nfs4_access)
4714{
4715 int flags = 0;
4716
4717 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
4718 flags |= NFSD_MAY_READ;
4719 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
4720 flags |= NFSD_MAY_WRITE;
4721 return flags;
4722}
4723
Al Virob37ad282006-10-19 23:28:59 -07004724static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
4726 struct nfsd4_open *open)
4727{
4728 struct iattr iattr = {
4729 .ia_valid = ATTR_SIZE,
4730 .ia_size = 0,
4731 };
4732 if (!open->op_truncate)
4733 return 0;
4734 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08004735 return nfserr_inval;
Arnd Bergmann2a1aa482019-11-03 17:50:18 +01004736 return nfsd_setattr(rqstp, fh, &iattr, 0, (time64_t)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737}
4738
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004739static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004740 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
4741 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004742{
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004743 struct nfsd_file *nf = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004744 __be32 status;
4745 int oflag = nfs4_access_to_omode(open->op_share_access);
4746 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004747 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004748
Trond Myklebustde186432014-07-10 14:07:26 -04004749 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004750
4751 /*
4752 * Are we trying to set a deny mode that would conflict with
4753 * current access?
4754 */
4755 status = nfs4_file_check_deny(fp, open->op_share_deny);
4756 if (status != nfs_ok) {
4757 spin_unlock(&fp->fi_lock);
4758 goto out;
4759 }
4760
4761 /* set access to the file */
4762 status = nfs4_file_get_access(fp, open->op_share_access);
4763 if (status != nfs_ok) {
4764 spin_unlock(&fp->fi_lock);
4765 goto out;
4766 }
4767
4768 /* Set access bits in stateid */
4769 old_access_bmap = stp->st_access_bmap;
4770 set_access(open->op_share_access, stp);
4771
4772 /* Set new deny mask */
4773 old_deny_bmap = stp->st_deny_bmap;
4774 set_deny(open->op_share_deny, stp);
4775 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4776
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004777 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04004778 spin_unlock(&fp->fi_lock);
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004779 status = nfsd_file_acquire(rqstp, cur_fh, access, &nf);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004780 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004781 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04004782 spin_lock(&fp->fi_lock);
4783 if (!fp->fi_fds[oflag]) {
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004784 fp->fi_fds[oflag] = nf;
4785 nf = NULL;
Trond Myklebustde186432014-07-10 14:07:26 -04004786 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004787 }
Trond Myklebustde186432014-07-10 14:07:26 -04004788 spin_unlock(&fp->fi_lock);
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004789 if (nf)
4790 nfsd_file_put(nf);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004791
4792 status = nfsd4_truncate(rqstp, cur_fh, open);
4793 if (status)
4794 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004795out:
4796 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004797out_put_access:
4798 stp->st_access_bmap = old_access_bmap;
4799 nfs4_file_put_access(fp, open->op_share_access);
4800 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
4801 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004802}
4803
Al Virob37ad282006-10-19 23:28:59 -07004804static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004805nfs4_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 -07004806{
Al Virob37ad282006-10-19 23:28:59 -07004807 __be32 status;
Arnd Bergmann6ac75362015-05-12 23:31:29 +02004808 unsigned char old_deny_bmap = stp->st_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004810 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004811 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004812
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004813 /* test and set deny mode */
4814 spin_lock(&fp->fi_lock);
4815 status = nfs4_file_check_deny(fp, open->op_share_deny);
4816 if (status == nfs_ok) {
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004817 set_deny(open->op_share_deny, stp);
4818 fp->fi_share_deny |=
4819 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4820 }
4821 spin_unlock(&fp->fi_lock);
4822
4823 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004826 status = nfsd4_truncate(rqstp, cur_fh, open);
4827 if (status != nfs_ok)
4828 reset_union_bmap_deny(old_deny_bmap, stp);
4829 return status;
4830}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004832/* Should we give out recallable state?: */
4833static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
4834{
4835 if (clp->cl_cb_state == NFSD4_CB_UP)
4836 return true;
4837 /*
4838 * In the sessions case, since we don't have to establish a
4839 * separate connection for callbacks, we assume it's OK
4840 * until we hear otherwise:
4841 */
4842 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
4843}
4844
J. Bruce Fields653e5142018-02-15 22:08:45 -05004845static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp,
4846 int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004847{
4848 struct file_lock *fl;
4849
4850 fl = locks_alloc_lock();
4851 if (!fl)
4852 return NULL;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004853 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04004854 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004855 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
4856 fl->fl_end = OFFSET_MAX;
J. Bruce Fields653e5142018-02-15 22:08:45 -05004857 fl->fl_owner = (fl_owner_t)dp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004858 fl->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004859 fl->fl_file = dp->dl_stid.sc_file->fi_deleg_file->nf_file;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004860 return fl;
4861}
4862
Jeff Layton0b266932014-07-25 07:34:25 -04004863static struct nfs4_delegation *
4864nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +02004865 struct nfs4_file *fp, struct nfs4_clnt_odstate *odstate)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004866{
J. Bruce Fields68b18f52018-02-19 11:38:33 -05004867 int status = 0;
Jeff Layton0b266932014-07-25 07:34:25 -04004868 struct nfs4_delegation *dp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004869 struct nfsd_file *nf;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004870 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04004871
J. Bruce Fields353601e2018-02-16 14:29:42 -05004872 /*
4873 * The fi_had_conflict and nfs_get_existing_delegation checks
4874 * here are just optimizations; we'll need to recheck them at
4875 * the end:
4876 */
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004877 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04004878 return ERR_PTR(-EAGAIN);
4879
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004880 nf = find_readable_file(fp);
4881 if (!nf) {
J. Bruce Fields353601e2018-02-16 14:29:42 -05004882 /* We should always have a readable file here */
4883 WARN_ON_ONCE(1);
4884 return ERR_PTR(-EBADF);
4885 }
Andrew Elble34ed9872015-10-15 12:07:28 -04004886 spin_lock(&state_lock);
4887 spin_lock(&fp->fi_lock);
J. Bruce Fields68b18f52018-02-19 11:38:33 -05004888 if (nfs4_delegation_exists(clp, fp))
4889 status = -EAGAIN;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004890 else if (!fp->fi_deleg_file) {
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004891 fp->fi_deleg_file = nf;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004892 /* increment early to prevent fi_deleg_file from being
4893 * cleared */
4894 fp->fi_delegees = 1;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004895 nf = NULL;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004896 } else
4897 fp->fi_delegees++;
4898 spin_unlock(&fp->fi_lock);
4899 spin_unlock(&state_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004900 if (nf)
4901 nfsd_file_put(nf);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004902 if (status)
4903 return ERR_PTR(status);
4904
4905 status = -ENOMEM;
4906 dp = alloc_init_deleg(clp, fp, fh, odstate);
4907 if (!dp)
4908 goto out_delegees;
4909
4910 fl = nfs4_alloc_init_lease(dp, NFS4_OPEN_DELEGATE_READ);
4911 if (!fl)
Andrew Elblebd8d7252018-10-05 09:32:08 -04004912 goto out_clnt_odstate;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004913
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004914 status = vfs_setlease(fp->fi_deleg_file->nf_file, fl->fl_type, &fl, NULL);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004915 if (fl)
4916 locks_free_lock(fl);
4917 if (status)
4918 goto out_clnt_odstate;
4919
4920 spin_lock(&state_lock);
4921 spin_lock(&fp->fi_lock);
4922 if (fp->fi_had_conflict)
4923 status = -EAGAIN;
4924 else
4925 status = hash_delegation_locked(dp, fp);
Andrew Elble34ed9872015-10-15 12:07:28 -04004926 spin_unlock(&fp->fi_lock);
4927 spin_unlock(&state_lock);
4928
4929 if (status)
Andrew Elble692ad282018-04-18 17:04:37 -04004930 goto out_unlock;
4931
Jeff Layton0b266932014-07-25 07:34:25 -04004932 return dp;
Andrew Elble692ad282018-04-18 17:04:37 -04004933out_unlock:
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004934 vfs_setlease(fp->fi_deleg_file->nf_file, F_UNLCK, NULL, (void **)&dp);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004935out_clnt_odstate:
4936 put_clnt_odstate(dp->dl_clnt_odstate);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004937 nfs4_put_stid(&dp->dl_stid);
4938out_delegees:
4939 put_deleg_file(fp);
4940 return ERR_PTR(status);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004941}
4942
Benny Halevy4aa89132012-02-21 14:16:44 -08004943static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
4944{
4945 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4946 if (status == -EAGAIN)
4947 open->op_why_no_deleg = WND4_CONTENTION;
4948 else {
4949 open->op_why_no_deleg = WND4_RESOURCE;
4950 switch (open->op_deleg_want) {
4951 case NFS4_SHARE_WANT_READ_DELEG:
4952 case NFS4_SHARE_WANT_WRITE_DELEG:
4953 case NFS4_SHARE_WANT_ANY_DELEG:
4954 break;
4955 case NFS4_SHARE_WANT_CANCEL:
4956 open->op_why_no_deleg = WND4_CANCELLED;
4957 break;
4958 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004959 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08004960 }
4961 }
4962}
4963
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964/*
4965 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04004966 *
4967 * Note we don't support write delegations, and won't until the vfs has
4968 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969 */
4970static void
Jeff Layton4cf59222014-07-25 07:34:24 -04004971nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
4972 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973{
4974 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04004975 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
4976 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004977 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004978 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004980 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07004981 open->op_recall = 0;
4982 switch (open->op_claim_type) {
4983 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05004984 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07004985 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004986 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
4987 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004988 break;
4989 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00004990 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004991 /*
4992 * Let's not give out any delegations till everyone's
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004993 * had the chance to reclaim theirs, *and* until
4994 * NLM locks have all been reclaimed:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004995 */
Jeff Layton4cf59222014-07-25 07:34:24 -04004996 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004997 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004998 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004999 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04005000 /*
5001 * Also, if the file was opened for write or
5002 * create, there's a good chance the client's
5003 * about to write to it, resulting in an
5004 * immediate recall (since we don't support
5005 * write delegations):
5006 */
NeilBrown7b190fe2005-06-23 22:03:23 -07005007 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04005008 goto out_no_deleg;
5009 if (open->op_create == NFS4_OPEN_CREATE)
5010 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07005011 break;
5012 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04005013 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07005014 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02005015 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file, stp->st_clnt_odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04005016 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05005017 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04005019 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005021 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04005022 STATEID_VAL(&dp->dl_stid.sc_stateid));
J. Bruce Fields99c41512013-05-21 16:21:25 -04005023 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04005024 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05005025 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05005026out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04005027 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
5028 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04005029 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04005030 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04005031 open->op_recall = 1;
5032 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04005033
5034 /* 4.1 client asking for a delegation? */
5035 if (open->op_deleg_want)
5036 nfsd4_open_deleg_none_ext(open, status);
5037 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038}
5039
Benny Halevye27f49c2012-02-21 14:16:54 -08005040static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
5041 struct nfs4_delegation *dp)
5042{
5043 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
5044 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
5045 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5046 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
5047 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
5048 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
5049 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5050 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
5051 }
5052 /* Otherwise the client must be confused wanting a delegation
5053 * it already has, therefore we don't return
5054 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
5055 */
5056}
5057
Al Virob37ad282006-10-19 23:28:59 -07005058__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
5060{
Andy Adamson66689582009-04-03 08:28:45 +03005061 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005062 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005064 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07005065 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005066 __be32 status;
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005067 bool new_stp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 /*
5070 * Lookup file; if found, lookup stateid and check open request,
5071 * and check for delegations in the process of being recalled.
5072 * If not found, create the nfs4_file struct
5073 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005074 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04005075 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04005076 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07005077 if (status)
5078 goto out;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04005079 stp = nfsd4_find_and_lock_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04005081 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07005082 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04005083 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07005084 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 }
5086
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005087 if (!stp) {
5088 stp = init_open_stateid(fp, open);
5089 if (!open->op_stp)
5090 new_stp = true;
5091 }
5092
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 /*
5094 * OPEN the file, or upgrade an existing OPEN.
5095 * If truncate fails, the OPEN fails.
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005096 *
5097 * stp is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098 */
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005099 if (!new_stp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005101 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005102 if (status) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005103 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 goto out;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 } else {
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005107 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
5108 if (status) {
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005109 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005110 release_open_stateid(stp);
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005111 mutex_unlock(&stp->st_mutex);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005112 goto out;
5113 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02005114
5115 stp->st_clnt_odstate = find_or_hash_clnt_odstate(fp,
5116 open->op_odstate);
5117 if (stp->st_clnt_odstate == open->op_odstate)
5118 open->op_odstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 }
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005120
Jeff Layton9767feb2015-10-01 09:05:50 -04005121 nfs4_inc_and_copy_stateid(&open->op_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005122 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123
Benny Halevyd24433c2012-02-16 20:57:17 +02005124 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02005125 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
5126 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5127 open->op_why_no_deleg = WND4_NOT_WANTED;
5128 goto nodeleg;
5129 }
5130 }
5131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 /*
5133 * Attempt to hand out a delegation. No error return, because the
5134 * OPEN succeeds even if we fail.
5135 */
Jeff Layton4cf59222014-07-25 07:34:24 -04005136 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02005137nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 status = nfs_ok;
5139
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005140 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005141 STATEID_VAL(&stp->st_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142out:
Benny Halevyd24433c2012-02-16 20:57:17 +02005143 /* 4.1 client trying to upgrade/downgrade delegation? */
5144 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08005145 open->op_deleg_want)
5146 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02005147
NeilBrown13cd2182005-06-23 22:03:10 -07005148 if (fp)
5149 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07005150 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
Kinglong Mee87186022015-07-13 17:32:59 +08005151 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 /*
5153 * To finish the open response, we just need to set the rflags.
5154 */
5155 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Jeff Layton19e4c342016-09-16 16:28:27 -04005156 if (nfsd4_has_session(&resp->cstate))
5157 open->op_rflags |= NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK;
5158 else if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
Jeff Layton19e4c342016-09-16 16:28:27 -04005160
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04005161 if (dp)
5162 nfs4_put_stid(&dp->dl_stid);
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04005163 if (stp)
5164 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165
5166 return status;
5167}
5168
Jeff Layton58fb12e2014-07-29 21:34:27 -04005169void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
Jeff Layton42297892015-03-23 10:53:44 -04005170 struct nfsd4_open *open)
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005171{
5172 if (open->op_openowner) {
Jeff Laytond3134b12014-07-29 21:34:32 -04005173 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005174
Jeff Laytond3134b12014-07-29 21:34:32 -04005175 nfsd4_cstate_assign_replay(cstate, so);
5176 nfs4_put_stateowner(so);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005177 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04005178 if (open->op_file)
Jeff Layton5b095e92014-10-23 08:01:02 -04005179 kmem_cache_free(file_slab, open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04005180 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04005181 nfs4_put_stid(&open->op_stp->st_stid);
Sachin Bhamare8287f002015-04-27 14:50:14 +02005182 if (open->op_odstate)
5183 kmem_cache_free(odstate_slab, open->op_odstate);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005184}
5185
Al Virob37ad282006-10-19 23:28:59 -07005186__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08005187nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005188 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005190 clientid_t *clid = &u->renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07005192 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005193 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 dprintk("process_renew(%08x/%08x): starting\n",
5196 clid->cl_boot, clid->cl_id);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005197 status = lookup_clientid(clid, cstate, nn, false);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005198 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005200 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07005202 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04005203 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204 goto out;
5205 status = nfs_ok;
5206out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 return status;
5208}
5209
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04005210void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03005211nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07005212{
Jeff Layton33dcc482012-04-10 11:08:48 -04005213 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005214 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04005215 return;
5216
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005217 nn->grace_ended = true;
J. Bruce Fields70b28232014-09-16 17:37:32 -04005218 /*
5219 * If the server goes down again right now, an NFSv4
5220 * client will still be allowed to reclaim after it comes back up,
5221 * even if it hasn't yet had a chance to reclaim state this time.
5222 *
5223 */
Jeff Layton919b8042014-09-12 16:40:20 -04005224 nfsd4_record_grace_done(nn);
J. Bruce Fields70b28232014-09-16 17:37:32 -04005225 /*
5226 * At this point, NFSv4 clients can still reclaim. But if the
5227 * server crashes, any that have not yet reclaimed will be out
5228 * of luck on the next boot.
5229 *
5230 * (NFSv4.1+ clients are considered to have reclaimed once they
5231 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
5232 * have reclaimed after their first OPEN.)
5233 */
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005234 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fields70b28232014-09-16 17:37:32 -04005235 /*
5236 * At this point, and once lockd and/or any other containers
5237 * exit their grace period, further reclaims will fail and
5238 * regular locking can resume.
5239 */
NeilBrowna76b4312005-06-23 22:04:01 -07005240}
5241
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005242/*
5243 * If we've waited a lease period but there are still clients trying to
5244 * reclaim, wait a little longer to give them a chance to finish.
5245 */
5246static bool clients_still_reclaiming(struct nfsd_net *nn)
5247{
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005248 time64_t double_grace_period_end = nn->boot_time +
5249 2 * nn->nfsd4_lease;
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005250
Scott Mayhew362063a2019-03-26 18:06:28 -04005251 if (nn->track_reclaim_completes &&
5252 atomic_read(&nn->nr_reclaim_complete) ==
5253 nn->reclaim_str_hashtbl_size)
5254 return false;
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005255 if (!nn->somebody_reclaimed)
5256 return false;
5257 nn->somebody_reclaimed = false;
5258 /*
5259 * If we've given them *two* lease times to reclaim, and they're
5260 * still not done, give up:
5261 */
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005262 if (ktime_get_boottime_seconds() > double_grace_period_end)
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005263 return false;
5264 return true;
5265}
5266
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005267static time64_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005268nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269{
5270 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005271 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 struct nfs4_delegation *dp;
Jeff Layton217526e2014-07-30 08:27:11 -04005273 struct nfs4_ol_stateid *stp;
Jeff Layton7919d0a2016-09-16 16:28:25 -04005274 struct nfsd4_blocked_lock *nbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 struct list_head *pos, *next, reaplist;
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005276 time64_t cutoff = ktime_get_boottime_seconds() - nn->nfsd4_lease;
5277 time64_t t, new_timeo = nn->nfsd4_lease;
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005278 struct nfs4_cpntf_state *cps;
5279 copy_stateid_t *cps_t;
5280 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005283
5284 if (clients_still_reclaiming(nn)) {
5285 new_timeo = 0;
5286 goto out;
5287 }
Scott Mayhew362063a2019-03-26 18:06:28 -04005288 dprintk("NFSD: end of grace period\n");
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03005289 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03005290 INIT_LIST_HEAD(&reaplist);
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005291
5292 spin_lock(&nn->s2s_cp_lock);
5293 idr_for_each_entry(&nn->s2s_cp_stateids, cps_t, i) {
5294 cps = container_of(cps_t, struct nfs4_cpntf_state, cp_stateid);
5295 if (cps->cp_stateid.sc_type == NFS4_COPYNOTIFY_STID &&
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005296 cps->cpntf_time > cutoff)
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005297 _free_cpntf_state_locked(nn, cps);
5298 }
5299 spin_unlock(&nn->s2s_cp_lock);
5300
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005301 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005302 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 clp = list_entry(pos, struct nfs4_client, cl_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005304 if (clp->cl_time > cutoff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04005306 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 break;
5308 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04005309 if (mark_client_expired_locked(clp)) {
Benny Halevyd7682982010-05-12 00:13:54 +03005310 dprintk("NFSD: client in use (clientid %08x)\n",
5311 clp->cl_clientid.cl_id);
5312 continue;
5313 }
Trond Myklebust4864af92014-07-30 08:27:03 -04005314 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03005315 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005316 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03005317 list_for_each_safe(pos, next, &reaplist) {
5318 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 dprintk("NFSD: purging unused client (clientid %08x)\n",
5320 clp->cl_clientid.cl_id);
Trond Myklebust4864af92014-07-30 08:27:03 -04005321 list_del_init(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 expire_client(clp);
5323 }
Benny Halevycdc975052014-05-30 09:09:30 -04005324 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005325 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005327 if (dp->dl_time > cutoff) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04005328 t = dp->dl_time - cutoff;
5329 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 break;
5331 }
Jeff Layton3fcbbd22015-08-24 12:41:48 -04005332 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04005333 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 }
Benny Halevycdc975052014-05-30 09:09:30 -04005335 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005336 while (!list_empty(&reaplist)) {
5337 dp = list_first_entry(&reaplist, struct nfs4_delegation,
5338 dl_recall_lru);
5339 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005340 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 }
Jeff Layton217526e2014-07-30 08:27:11 -04005342
5343 spin_lock(&nn->client_lock);
5344 while (!list_empty(&nn->close_lru)) {
5345 oo = list_first_entry(&nn->close_lru, struct nfs4_openowner,
5346 oo_close_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005347 if (oo->oo_time > cutoff) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04005348 t = oo->oo_time - cutoff;
5349 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 break;
5351 }
Jeff Layton217526e2014-07-30 08:27:11 -04005352 list_del_init(&oo->oo_close_lru);
5353 stp = oo->oo_last_closed_stid;
5354 oo->oo_last_closed_stid = NULL;
5355 spin_unlock(&nn->client_lock);
5356 nfs4_put_stid(&stp->st_stid);
5357 spin_lock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 }
Jeff Layton217526e2014-07-30 08:27:11 -04005359 spin_unlock(&nn->client_lock);
5360
Jeff Layton7919d0a2016-09-16 16:28:25 -04005361 /*
5362 * It's possible for a client to try and acquire an already held lock
5363 * that is being held for a long time, and then lose interest in it.
5364 * So, we clean out any un-revisited request after a lease period
5365 * under the assumption that the client is no longer interested.
5366 *
5367 * RFC5661, sec. 9.6 states that the client must not rely on getting
5368 * notifications and must continue to poll for locks, even when the
5369 * server supports them. Thus this shouldn't lead to clients blocking
5370 * indefinitely once the lock does become free.
5371 */
5372 BUG_ON(!list_empty(&reaplist));
Jeff Layton0cc11a62016-10-20 09:34:31 -04005373 spin_lock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005374 while (!list_empty(&nn->blocked_locks_lru)) {
5375 nbl = list_first_entry(&nn->blocked_locks_lru,
5376 struct nfsd4_blocked_lock, nbl_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005377 if (nbl->nbl_time > cutoff) {
Jeff Layton7919d0a2016-09-16 16:28:25 -04005378 t = nbl->nbl_time - cutoff;
5379 new_timeo = min(new_timeo, t);
5380 break;
5381 }
5382 list_move(&nbl->nbl_lru, &reaplist);
5383 list_del_init(&nbl->nbl_list);
5384 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04005385 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005386
5387 while (!list_empty(&reaplist)) {
Naofumi Honda64ebe1242017-11-09 10:57:16 -05005388 nbl = list_first_entry(&reaplist,
Jeff Layton7919d0a2016-09-16 16:28:25 -04005389 struct nfsd4_blocked_lock, nbl_lru);
5390 list_del_init(&nbl->nbl_lru);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005391 free_blocked_lock(nbl);
5392 }
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005393out:
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005394 new_timeo = max_t(time64_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Jeff Laytona832e7a2014-05-30 09:09:26 -04005395 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396}
5397
Harvey Harrisona254b242008-02-20 12:49:00 -08005398static struct workqueue_struct *laundry_wq;
5399static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08005400
5401static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005402laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403{
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005404 time64_t t;
Geliang Tang2e55f3a2016-01-01 22:06:28 +08005405 struct delayed_work *dwork = to_delayed_work(laundry);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005406 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
5407 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005409 t = nfs4_laundromat(nn);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005410 dprintk("NFSD: laundromat_main - sleeping for %lld seconds\n", t);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005411 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412}
5413
Jeff Layton8fcd4612015-07-30 06:57:46 -04005414static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07005415{
Jeff Layton8fcd4612015-07-30 06:57:46 -04005416 if (!fh_match(&fhp->fh_handle, &stp->sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005417 return nfserr_bad_stateid;
5418 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419}
5420
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04005422access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005424 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
5425 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
5426 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427}
5428
5429static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04005430access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005432 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
5433 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434}
5435
5436static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005437__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438{
Al Virob37ad282006-10-19 23:28:59 -07005439 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
J. Bruce Fields02921912010-07-29 15:16:59 -04005441 /* For lock stateid's, we test the parent open, not the lock: */
5442 if (stp->st_openstp)
5443 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005444 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005446 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447 goto out;
5448 status = nfs_ok;
5449out:
5450 return status;
5451}
5452
Al Virob37ad282006-10-19 23:28:59 -07005453static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005454check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005456 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 return nfs_ok;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04005458 else if (opens_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005459 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 * conflicting state; so we must wait out the grace period. */
5461 return nfserr_grace;
5462 } else if (flags & WR_STATE)
5463 return nfs4_share_conflict(current_fh,
5464 NFS4_SHARE_DENY_WRITE);
5465 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
5466 return nfs4_share_conflict(current_fh,
5467 NFS4_SHARE_DENY_READ);
5468}
5469
5470/*
5471 * Allow READ/WRITE during grace period on recovered state only for files
5472 * that are not able to provide mandatory locking.
5473 */
5474static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005475grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476{
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04005477 return opens_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478}
5479
J. Bruce Fields57b7b432012-04-25 17:58:50 -04005480static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05005481{
Andy Adamson66689582009-04-03 08:28:45 +03005482 /*
5483 * When sessions are used the stateid generation number is ignored
5484 * when it is zero.
5485 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04005486 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04005487 return nfs_ok;
5488
5489 if (in->si_generation == ref->si_generation)
5490 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03005491
J. Bruce Fields0836f582008-01-26 19:08:12 -05005492 /* If the client sends us a stateid from the future, it's buggy: */
Jeff Layton14b7f4a2016-05-05 06:53:47 -04005493 if (nfsd4_stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05005494 return nfserr_bad_stateid;
5495 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04005496 * However, we could see a stateid from the past, even from a
5497 * non-buggy client. For example, if the client sends a lock
5498 * while some IO is outstanding, the lock may bump si_generation
5499 * while the IO is still in flight. The client could avoid that
5500 * situation by waiting for responses on all the IO requests,
5501 * but better performance may result in retrying IO that
5502 * receives an old_stateid error if requests are rarely
5503 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05005504 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04005505 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05005506}
5507
Trond Myklebust03da3162017-11-03 08:00:16 -04005508static __be32 nfsd4_stid_check_stateid_generation(stateid_t *in, struct nfs4_stid *s, bool has_session)
5509{
5510 __be32 ret;
5511
5512 spin_lock(&s->sc_lock);
5513 ret = nfsd4_verify_open_stid(s);
5514 if (ret == nfs_ok)
5515 ret = check_stateid_generation(in, &s->sc_stateid, has_session);
5516 spin_unlock(&s->sc_lock);
5517 return ret;
5518}
5519
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02005520static __be32 nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid *ols)
5521{
5522 if (ols->st_stateowner->so_is_open_owner &&
5523 !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
5524 return nfserr_bad_stateid;
5525 return nfs_ok;
5526}
5527
Chuck Lever7df302f2012-05-29 13:56:37 -04005528static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04005529{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04005530 struct nfs4_stid *s;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005531 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04005532
Andrew Elbleae254dac2017-11-09 13:41:10 -05005533 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5534 CLOSE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04005535 return status;
J. Bruce Fields663e36f2020-03-19 10:18:49 -04005536 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04005537 return status;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005538 spin_lock(&cl->cl_lock);
5539 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04005540 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005541 goto out_unlock;
Trond Myklebust03da3162017-11-03 08:00:16 -04005542 status = nfsd4_stid_check_stateid_generation(stateid, s, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04005543 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005544 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04005545 switch (s->sc_type) {
5546 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005547 status = nfs_ok;
5548 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005549 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005550 status = nfserr_deleg_revoked;
5551 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04005552 case NFS4_OPEN_STID:
5553 case NFS4_LOCK_STID:
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02005554 status = nfsd4_check_openowner_confirmed(openlockstateid(s));
Jeff Layton1af71cc2014-07-29 21:34:14 -04005555 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04005556 default:
5557 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04005558 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04005559 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04005560 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005561 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04005562 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04005563out_unlock:
5564 spin_unlock(&cl->cl_lock);
5565 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04005566}
5567
Christoph Hellwigcd61c522014-08-14 08:44:57 +02005568__be32
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005569nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
5570 stateid_t *stateid, unsigned char typemask,
5571 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005572{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005573 __be32 status;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04005574 bool return_revoked = false;
5575
5576 /*
5577 * only return revoked delegations if explicitly asked.
5578 * otherwise we report revoked or bad_stateid status.
5579 */
5580 if (typemask & NFS4_REVOKED_DELEG_STID)
5581 return_revoked = true;
5582 else if (typemask & NFS4_DELEG_STID)
5583 typemask |= NFS4_REVOKED_DELEG_STID;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005584
Andrew Elbleae254dac2017-11-09 13:41:10 -05005585 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5586 CLOSE_STATEID(stateid))
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005587 return nfserr_bad_stateid;
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005588 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn,
5589 false);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005590 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005591 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005592 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005593 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005594 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005595 if (status)
5596 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005597 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005598 if (!*s)
5599 return nfserr_bad_stateid;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04005600 if (((*s)->sc_type == NFS4_REVOKED_DELEG_STID) && !return_revoked) {
5601 nfs4_put_stid(*s);
5602 if (cstate->minorversion)
5603 return nfserr_deleg_revoked;
5604 return nfserr_bad_stateid;
5605 }
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005606 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005607}
5608
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005609static struct nfsd_file *
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005610nfs4_find_file(struct nfs4_stid *s, int flags)
5611{
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005612 if (!s)
5613 return NULL;
5614
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005615 switch (s->sc_type) {
5616 case NFS4_DELEG_STID:
5617 if (WARN_ON_ONCE(!s->sc_file->fi_deleg_file))
5618 return NULL;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005619 return nfsd_file_get(s->sc_file->fi_deleg_file);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005620 case NFS4_OPEN_STID:
5621 case NFS4_LOCK_STID:
5622 if (flags & RD_STATE)
5623 return find_readable_file(s->sc_file);
5624 else
5625 return find_writeable_file(s->sc_file);
5626 break;
5627 }
5628
5629 return NULL;
5630}
5631
5632static __be32
J. Bruce Fieldsd8836f72018-11-05 20:04:06 -05005633nfs4_check_olstateid(struct nfs4_ol_stateid *ols, int flags)
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005634{
5635 __be32 status;
5636
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005637 status = nfsd4_check_openowner_confirmed(ols);
5638 if (status)
5639 return status;
5640 return nfs4_check_openmode(ols, flags);
5641}
5642
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005643static __be32
5644nfs4_check_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfs4_stid *s,
Jeff Layton5c4583b2019-08-18 14:18:54 -04005645 struct nfsd_file **nfp, int flags)
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005646{
5647 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005648 struct nfsd_file *nf;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005649 __be32 status;
5650
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005651 nf = nfs4_find_file(s, flags);
5652 if (nf) {
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005653 status = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
5654 acc | NFSD_MAY_OWNER_OVERRIDE);
Jeff Layton5c4583b2019-08-18 14:18:54 -04005655 if (status) {
5656 nfsd_file_put(nf);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005657 goto out;
Jeff Layton5c4583b2019-08-18 14:18:54 -04005658 }
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005659 } else {
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005660 status = nfsd_file_acquire(rqstp, fhp, acc, &nf);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005661 if (status)
5662 return status;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005663 }
Jeff Layton5c4583b2019-08-18 14:18:54 -04005664 *nfp = nf;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005665out:
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005666 return status;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005667}
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005668static void
5669_free_cpntf_state_locked(struct nfsd_net *nn, struct nfs4_cpntf_state *cps)
5670{
5671 WARN_ON_ONCE(cps->cp_stateid.sc_type != NFS4_COPYNOTIFY_STID);
5672 if (!refcount_dec_and_test(&cps->cp_stateid.sc_count))
5673 return;
5674 list_del(&cps->cp_list);
5675 idr_remove(&nn->s2s_cp_stateids,
5676 cps->cp_stateid.stid.si_opaque.so_id);
5677 kfree(cps);
5678}
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005679/*
5680 * A READ from an inter server to server COPY will have a
5681 * copy stateid. Look up the copy notify stateid from the
5682 * idr structure and take a reference on it.
5683 */
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04005684__be32 manage_cpntf_state(struct nfsd_net *nn, stateid_t *st,
5685 struct nfs4_client *clp,
5686 struct nfs4_cpntf_state **cps)
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005687{
5688 copy_stateid_t *cps_t;
5689 struct nfs4_cpntf_state *state = NULL;
5690
5691 if (st->si_opaque.so_clid.cl_id != nn->s2s_cp_cl_id)
5692 return nfserr_bad_stateid;
5693 spin_lock(&nn->s2s_cp_lock);
5694 cps_t = idr_find(&nn->s2s_cp_stateids, st->si_opaque.so_id);
5695 if (cps_t) {
5696 state = container_of(cps_t, struct nfs4_cpntf_state,
5697 cp_stateid);
Dan Carpenter5277a792019-12-04 10:59:36 +03005698 if (state->cp_stateid.sc_type != NFS4_COPYNOTIFY_STID) {
5699 state = NULL;
5700 goto unlock;
5701 }
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04005702 if (!clp)
5703 refcount_inc(&state->cp_stateid.sc_count);
5704 else
5705 _free_cpntf_state_locked(nn, state);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005706 }
Dan Carpenter5277a792019-12-04 10:59:36 +03005707unlock:
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005708 spin_unlock(&nn->s2s_cp_lock);
5709 if (!state)
5710 return nfserr_bad_stateid;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04005711 if (!clp && state)
5712 *cps = state;
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005713 return 0;
5714}
5715
5716static __be32 find_cpntf_state(struct nfsd_net *nn, stateid_t *st,
5717 struct nfs4_stid **stid)
5718{
5719 __be32 status;
5720 struct nfs4_cpntf_state *cps = NULL;
5721 struct nfsd4_compound_state cstate;
5722
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04005723 status = manage_cpntf_state(nn, st, NULL, &cps);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005724 if (status)
5725 return status;
5726
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005727 cps->cpntf_time = ktime_get_boottime_seconds();
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005728 memset(&cstate, 0, sizeof(cstate));
5729 status = lookup_clientid(&cps->cp_p_clid, &cstate, nn, true);
5730 if (status)
5731 goto out;
5732 status = nfsd4_lookup_stateid(&cstate, &cps->cp_p_stateid,
5733 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
5734 stid, nn);
5735 put_client_renew(cstate.clp);
5736out:
5737 nfs4_put_cpntf_state(nn, cps);
5738 return status;
5739}
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005740
5741void nfs4_put_cpntf_state(struct nfsd_net *nn, struct nfs4_cpntf_state *cps)
5742{
5743 spin_lock(&nn->s2s_cp_lock);
5744 _free_cpntf_state_locked(nn, cps);
5745 spin_unlock(&nn->s2s_cp_lock);
5746}
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005747
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748/*
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005749 * Checks for stateid operations
5750 */
Al Virob37ad282006-10-19 23:28:59 -07005751__be32
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005752nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01005753 struct nfsd4_compound_state *cstate, struct svc_fh *fhp,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005754 stateid_t *stateid, int flags, struct nfsd_file **nfp,
5755 struct nfs4_stid **cstid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756{
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005757 struct inode *ino = d_inode(fhp->fh_dentry);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005758 struct net *net = SVC_NET(rqstp);
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005759 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005760 struct nfs4_stid *s = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005761 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762
Jeff Layton5c4583b2019-08-18 14:18:54 -04005763 if (nfp)
5764 *nfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005766 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 return nfserr_grace;
5768
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005769 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
5770 status = check_special_stateids(net, fhp, stateid, flags);
5771 goto done;
5772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005774 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04005775 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005776 &s, nn);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005777 if (status == nfserr_bad_stateid)
5778 status = find_cpntf_state(nn, stateid, &s);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005779 if (status)
Trond Myklebustc2d1d6a2014-07-30 08:27:25 -04005780 return status;
Trond Myklebust03da3162017-11-03 08:00:16 -04005781 status = nfsd4_stid_check_stateid_generation(stateid, s,
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005782 nfsd4_has_session(cstate));
J. Bruce Fields69064a22011-09-09 11:54:57 -04005783 if (status)
5784 goto out;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005785
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005786 switch (s->sc_type) {
5787 case NFS4_DELEG_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005788 status = nfs4_check_delegmode(delegstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005789 break;
5790 case NFS4_OPEN_STID:
5791 case NFS4_LOCK_STID:
J. Bruce Fieldsd8836f72018-11-05 20:04:06 -05005792 status = nfs4_check_olstateid(openlockstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005793 break;
5794 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04005795 status = nfserr_bad_stateid;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005796 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797 }
Jeff Layton8fcd4612015-07-30 06:57:46 -04005798 if (status)
5799 goto out;
5800 status = nfs4_check_fh(fhp, s);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005801
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005802done:
Jeff Layton5c4583b2019-08-18 14:18:54 -04005803 if (status == nfs_ok && nfp)
5804 status = nfs4_check_file(rqstp, fhp, s, nfp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805out:
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005806 if (s) {
5807 if (!status && cstid)
5808 *cstid = s;
5809 else
5810 nfs4_put_stid(s);
5811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 return status;
5813}
5814
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005815/*
Bryan Schumaker17456802011-07-13 10:50:48 -04005816 * Test if the stateid is valid
5817 */
5818__be32
5819nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005820 union nfsd4_op_u *u)
Bryan Schumaker17456802011-07-13 10:50:48 -04005821{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005822 struct nfsd4_test_stateid *test_stateid = &u->test_stateid;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005823 struct nfsd4_test_stateid_id *stateid;
5824 struct nfs4_client *cl = cstate->session->se_client;
5825
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005826 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04005827 stateid->ts_id_status =
5828 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005829
Bryan Schumaker17456802011-07-13 10:50:48 -04005830 return nfs_ok;
5831}
5832
Chuck Lever42691392016-08-11 10:37:30 -04005833static __be32
5834nfsd4_free_lock_stateid(stateid_t *stateid, struct nfs4_stid *s)
5835{
5836 struct nfs4_ol_stateid *stp = openlockstateid(s);
5837 __be32 ret;
5838
Trond Myklebust659aefb2017-11-03 08:00:13 -04005839 ret = nfsd4_lock_ol_stateid(stp);
5840 if (ret)
5841 goto out_put_stid;
Chuck Lever42691392016-08-11 10:37:30 -04005842
5843 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5844 if (ret)
5845 goto out;
5846
5847 ret = nfserr_locks_held;
5848 if (check_for_locks(stp->st_stid.sc_file,
5849 lockowner(stp->st_stateowner)))
5850 goto out;
5851
5852 release_lock_stateid(stp);
5853 ret = nfs_ok;
5854
5855out:
5856 mutex_unlock(&stp->st_mutex);
Trond Myklebust659aefb2017-11-03 08:00:13 -04005857out_put_stid:
Chuck Lever42691392016-08-11 10:37:30 -04005858 nfs4_put_stid(s);
5859 return ret;
5860}
5861
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005862__be32
5863nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005864 union nfsd4_op_u *u)
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005865{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005866 struct nfsd4_free_stateid *free_stateid = &u->free_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005867 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005868 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005869 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005870 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005871 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005872
Jeff Layton1af71cc2014-07-29 21:34:14 -04005873 spin_lock(&cl->cl_lock);
5874 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005875 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005876 goto out_unlock;
Trond Myklebust03da3162017-11-03 08:00:16 -04005877 spin_lock(&s->sc_lock);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005878 switch (s->sc_type) {
5879 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005880 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005881 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005882 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005883 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5884 if (ret)
5885 break;
5886 ret = nfserr_locks_held;
5887 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005888 case NFS4_LOCK_STID:
Trond Myklebust03da3162017-11-03 08:00:16 -04005889 spin_unlock(&s->sc_lock);
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03005890 refcount_inc(&s->sc_count);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005891 spin_unlock(&cl->cl_lock);
Chuck Lever42691392016-08-11 10:37:30 -04005892 ret = nfsd4_free_lock_stateid(stateid, s);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005893 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005894 case NFS4_REVOKED_DELEG_STID:
Trond Myklebust03da3162017-11-03 08:00:16 -04005895 spin_unlock(&s->sc_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005896 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005897 list_del_init(&dp->dl_recall_lru);
5898 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04005899 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005900 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005901 goto out;
5902 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005903 }
Trond Myklebust03da3162017-11-03 08:00:16 -04005904 spin_unlock(&s->sc_lock);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005905out_unlock:
5906 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005907out:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005908 return ret;
5909}
5910
NeilBrown4c4cd222005-07-07 17:59:27 -07005911static inline int
5912setlkflg (int type)
5913{
5914 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
5915 RD_STATE : WR_STATE;
5916}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005918static __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 -04005919{
5920 struct svc_fh *current_fh = &cstate->current_fh;
5921 struct nfs4_stateowner *sop = stp->st_stateowner;
5922 __be32 status;
5923
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005924 status = nfsd4_check_seqid(cstate, sop, seqid);
5925 if (status)
5926 return status;
Trond Myklebust9271d7e2017-11-03 08:00:15 -04005927 status = nfsd4_lock_ol_stateid(stp);
5928 if (status != nfs_ok)
5929 return status;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005930 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
Jeff Layton35a92fe2015-09-17 07:47:08 -04005931 if (status == nfs_ok)
5932 status = nfs4_check_fh(current_fh, &stp->st_stid);
5933 if (status != nfs_ok)
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005934 mutex_unlock(&stp->st_mutex);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005935 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005936}
5937
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938/*
5939 * Checks for sequence id mutating operations.
5940 */
Al Virob37ad282006-10-19 23:28:59 -07005941static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03005942nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04005943 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005944 struct nfs4_ol_stateid **stpp,
5945 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946{
J. Bruce Fields0836f582008-01-26 19:08:12 -05005947 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005948 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005949 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005951 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
5952 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07005953
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005955 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005956 if (status)
5957 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005958 stp = openlockstateid(s);
Jeff Layton58fb12e2014-07-29 21:34:27 -04005959 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005961 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
Trond Myklebustfd911012014-07-29 21:34:24 -04005962 if (!status)
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005963 *stpp = stp;
Trond Myklebustfd911012014-07-29 21:34:24 -04005964 else
5965 nfs4_put_stid(&stp->st_stid);
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005966 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005967}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05005968
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005969static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
5970 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005971{
5972 __be32 status;
5973 struct nfs4_openowner *oo;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005974 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005976 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005977 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04005978 if (status)
5979 return status;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005980 oo = openowner(stp->st_stateowner);
5981 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005982 mutex_unlock(&stp->st_mutex);
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005983 nfs4_put_stid(&stp->st_stid);
NeilBrown3a4f98b2005-07-07 17:59:26 -07005984 return nfserr_bad_stateid;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005985 }
5986 *stpp = stp;
NeilBrown3a4f98b2005-07-07 17:59:26 -07005987 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988}
5989
Al Virob37ad282006-10-19 23:28:59 -07005990__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005991nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005992 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005994 struct nfsd4_open_confirm *oc = &u->open_confirm;
Al Virob37ad282006-10-19 23:28:59 -07005995 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005996 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005997 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005998 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
Al Viroa6a9f182013-09-16 10:57:01 -04006000 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
6001 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006003 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07006004 if (status)
6005 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006007 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006008 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006009 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006010 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04006011 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006012 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04006013 status = nfserr_bad_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04006014 if (oo->oo_flags & NFS4_OO_CONFIRMED) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006015 mutex_unlock(&stp->st_mutex);
Trond Myklebust2585fc72014-07-29 21:34:21 -04006016 goto put_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04006017 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04006018 oo->oo_flags |= NFS4_OO_CONFIRMED;
Jeff Layton9767feb2015-10-01 09:05:50 -04006019 nfs4_inc_and_copy_stateid(&oc->oc_resp_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006020 mutex_unlock(&stp->st_mutex);
Benny Halevy8c10cbd2009-10-19 12:04:53 +02006021 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006022 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07006023
Jeff Layton2a4317c2012-03-21 16:42:43 -04006024 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04006025 status = nfs_ok;
Trond Myklebust2585fc72014-07-29 21:34:21 -04006026put_stateid:
6027 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006029 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030 return status;
6031}
6032
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006033static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034{
Jeff Layton82c5ff12012-05-11 09:45:13 -04006035 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006036 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04006037 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04006038 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006039}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04006040
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006041static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
6042{
6043 switch (to_access) {
6044 case NFS4_SHARE_ACCESS_READ:
6045 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
6046 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
6047 break;
6048 case NFS4_SHARE_ACCESS_WRITE:
6049 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
6050 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
6051 break;
6052 case NFS4_SHARE_ACCESS_BOTH:
6053 break;
6054 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006055 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056 }
6057}
6058
Al Virob37ad282006-10-19 23:28:59 -07006059__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006060nfsd4_open_downgrade(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006061 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006063 struct nfsd4_open_downgrade *od = &u->open_downgrade;
Al Virob37ad282006-10-19 23:28:59 -07006064 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006065 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006066 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
Al Viroa6a9f182013-09-16 10:57:01 -04006068 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
6069 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04006071 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02006072 if (od->od_deleg_want)
6073 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
6074 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006076 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006077 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006078 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04006081 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04006082 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083 stp->st_access_bmap, od->od_share_access);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006084 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04006086 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04006087 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 stp->st_deny_bmap, od->od_share_deny);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006089 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006091 nfs4_stateid_downgrade(stp, od->od_share_access);
Jeff Laytonce0fc432012-05-11 09:45:14 -04006092 reset_union_bmap_deny(od->od_share_deny, stp);
Jeff Layton9767feb2015-10-01 09:05:50 -04006093 nfs4_inc_and_copy_stateid(&od->od_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094 status = nfs_ok;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006095put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006096 mutex_unlock(&stp->st_mutex);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006097 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006099 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100 return status;
6101}
6102
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04006103static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
6104{
Trond Myklebustacf92952014-06-30 11:48:37 -04006105 struct nfs4_client *clp = s->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04006106 bool unhashed;
Jeff Laytond83017f2014-07-29 21:34:42 -04006107 LIST_HEAD(reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04006108
Jeff Layton2c41beb2014-07-29 21:34:41 -04006109 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04006110 unhashed = unhash_open_stateid(s, &reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04006111
Jeff Laytond83017f2014-07-29 21:34:42 -04006112 if (clp->cl_minorversion) {
Jeff Laytone8568732015-08-24 12:41:47 -04006113 if (unhashed)
6114 put_ol_stateid_locked(s, &reaplist);
Jeff Laytond83017f2014-07-29 21:34:42 -04006115 spin_unlock(&clp->cl_lock);
6116 free_ol_stateid_reaplist(&reaplist);
6117 } else {
6118 spin_unlock(&clp->cl_lock);
6119 free_ol_stateid_reaplist(&reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04006120 if (unhashed)
6121 move_to_close_lru(s, clp->net);
Jeff Laytond83017f2014-07-29 21:34:42 -04006122 }
J. Bruce Fields38c387b2011-09-16 17:42:48 -04006123}
6124
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125/*
6126 * nfs4_unlock_state() called after encode
6127 */
Al Virob37ad282006-10-19 23:28:59 -07006128__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006129nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006130 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006132 struct nfsd4_close *close = &u->close;
Al Virob37ad282006-10-19 23:28:59 -07006133 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006134 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006135 struct net *net = SVC_NET(rqstp);
6136 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137
Al Viroa6a9f182013-09-16 10:57:01 -04006138 dprintk("NFSD: nfsd4_close on file %pd\n",
6139 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04006141 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
6142 &close->cl_stateid,
6143 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006144 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006145 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006146 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 goto out;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04006148
6149 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Laytonbd2deca2018-02-15 15:16:18 -05006150
6151 /*
6152 * Technically we don't _really_ have to increment or copy it, since
6153 * it should just be gone after this operation and we clobber the
6154 * copied value below, but we continue to do so here just to ensure
6155 * that racing ops see that there was a state change.
6156 */
Jeff Layton9767feb2015-10-01 09:05:50 -04006157 nfs4_inc_and_copy_stateid(&close->cl_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04006159 nfsd4_close_open_stateid(stp);
Trond Myklebust15ca08d2017-11-03 08:00:10 -04006160 mutex_unlock(&stp->st_mutex);
Trond Myklebust8a0b5892014-07-29 21:34:20 -04006161
Jeff Laytonbd2deca2018-02-15 15:16:18 -05006162 /* v4.1+ suggests that we send a special stateid in here, since the
6163 * clients should just ignore this anyway. Since this is not useful
6164 * for v4.0 clients either, we set it to the special close_stateid
6165 * universally.
6166 *
6167 * See RFC5661 section 18.2.4, and RFC7530 section 16.2.5
6168 */
6169 memcpy(&close->cl_stateid, &close_stateid, sizeof(close->cl_stateid));
Trond Myklebustfb500a72017-11-03 08:00:12 -04006170
Trond Myklebust8a0b5892014-07-29 21:34:20 -04006171 /* put reference from nfs4_preprocess_seqid_op */
6172 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174 return status;
6175}
6176
Al Virob37ad282006-10-19 23:28:59 -07006177__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006178nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006179 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006181 struct nfsd4_delegreturn *dr = &u->delegreturn;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006182 struct nfs4_delegation *dp;
6183 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006184 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07006185 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006186 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006188 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006189 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190
Trond Myklebust2dd6e452014-06-30 11:48:43 -04006191 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006192 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006193 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006194 dp = delegstateid(s);
Trond Myklebust03da3162017-11-03 08:00:16 -04006195 status = nfsd4_stid_check_stateid_generation(stateid, &dp->dl_stid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006196 if (status)
Trond Myklebustfd911012014-07-29 21:34:24 -04006197 goto put_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006198
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04006199 destroy_delegation(dp);
Trond Myklebustfd911012014-07-29 21:34:24 -04006200put_stateid:
6201 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202out:
6203 return status;
6204}
6205
Benny Halevy87df4de2008-12-15 19:42:03 +02006206static inline u64
6207end_offset(u64 start, u64 len)
6208{
6209 u64 end;
6210
6211 end = start + len;
6212 return end >= start ? end: NFS4_MAX_UINT64;
6213}
6214
6215/* last octet in a range */
6216static inline u64
6217last_byte_offset(u64 start, u64 len)
6218{
6219 u64 end;
6220
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006221 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02006222 end = start + len;
6223 return end > start ? end - 1: NFS4_MAX_UINT64;
6224}
6225
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226/*
6227 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
6228 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
6229 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
6230 * locking, this prevents us from being completely protocol-compliant. The
6231 * real solution to this problem is to start using unsigned file offsets in
6232 * the VFS, but this is a very deep change!
6233 */
6234static inline void
6235nfs4_transform_lock_offset(struct file_lock *lock)
6236{
6237 if (lock->fl_start < 0)
6238 lock->fl_start = OFFSET_MAX;
6239 if (lock->fl_end < 0)
6240 lock->fl_end = OFFSET_MAX;
6241}
6242
Jeff Laytoncae80b32015-04-03 09:04:04 -04006243static fl_owner_t
6244nfsd4_fl_get_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04006245{
Jeff Laytoncae80b32015-04-03 09:04:04 -04006246 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
6247
6248 nfs4_get_stateowner(&lo->lo_owner);
6249 return owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04006250}
6251
Jeff Laytoncae80b32015-04-03 09:04:04 -04006252static void
6253nfsd4_fl_put_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04006254{
Jeff Laytoncae80b32015-04-03 09:04:04 -04006255 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04006256
Jeff Laytoncae80b32015-04-03 09:04:04 -04006257 if (lo)
Kinglong Meeaef95832014-08-22 10:18:44 -04006258 nfs4_put_stateowner(&lo->lo_owner);
Kinglong Meeaef95832014-08-22 10:18:44 -04006259}
6260
Jeff Layton76d348f2016-09-16 16:28:24 -04006261static void
6262nfsd4_lm_notify(struct file_lock *fl)
6263{
6264 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)fl->fl_owner;
6265 struct net *net = lo->lo_owner.so_client->net;
6266 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
6267 struct nfsd4_blocked_lock *nbl = container_of(fl,
6268 struct nfsd4_blocked_lock, nbl_lock);
6269 bool queue = false;
6270
Jeff Layton7919d0a2016-09-16 16:28:25 -04006271 /* An empty list means that something else is going to be using it */
Jeff Layton0cc11a62016-10-20 09:34:31 -04006272 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006273 if (!list_empty(&nbl->nbl_list)) {
6274 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006275 list_del_init(&nbl->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -04006276 queue = true;
6277 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04006278 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006279
6280 if (queue)
6281 nfsd4_run_cb(&nbl->nbl_cb);
6282}
6283
Alexey Dobriyan7b021962009-09-21 17:01:12 -07006284static const struct lock_manager_operations nfsd_posix_mng_ops = {
Jeff Layton76d348f2016-09-16 16:28:24 -04006285 .lm_notify = nfsd4_lm_notify,
Kinglong Meeaef95832014-08-22 10:18:44 -04006286 .lm_get_owner = nfsd4_fl_get_owner,
6287 .lm_put_owner = nfsd4_fl_put_owner,
NeilBrownd5b90262006-04-10 22:55:22 -07006288};
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289
6290static inline void
6291nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
6292{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006293 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294
NeilBrownd5b90262006-04-10 22:55:22 -07006295 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006296 lo = (struct nfs4_lockowner *) fl->fl_owner;
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04006297 xdr_netobj_dup(&deny->ld_owner, &lo->lo_owner.so_owner,
6298 GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04006299 if (!deny->ld_owner.data)
6300 /* We just don't care that much */
6301 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006302 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07006303 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04006304nevermind:
6305 deny->ld_owner.len = 0;
6306 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07006307 deny->ld_clientid.cl_boot = 0;
6308 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309 }
6310 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02006311 deny->ld_length = NFS4_MAX_UINT64;
6312 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313 deny->ld_length = fl->fl_end - fl->fl_start + 1;
6314 deny->ld_type = NFS4_READ_LT;
6315 if (fl->fl_type != F_RDLCK)
6316 deny->ld_type = NFS4_WRITE_LT;
6317}
6318
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006319static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08006320find_lockowner_str_locked(struct nfs4_client *clp, struct xdr_netobj *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321{
Trond Myklebustd4f04892014-07-29 21:34:36 -04006322 unsigned int strhashval = ownerstr_hashval(owner);
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04006323 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324
Trond Myklebust0a880a22014-07-30 08:27:10 -04006325 lockdep_assert_held(&clp->cl_lock);
6326
Trond Myklebustd4f04892014-07-29 21:34:36 -04006327 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[strhashval],
6328 so_strhash) {
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04006329 if (so->so_is_open_owner)
6330 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -04006331 if (same_owner_str(so, owner))
6332 return lockowner(nfs4_get_stateowner(so));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333 }
6334 return NULL;
6335}
6336
Trond Myklebustc58c6612014-07-29 21:34:35 -04006337static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08006338find_lockowner_str(struct nfs4_client *clp, struct xdr_netobj *owner)
Trond Myklebustc58c6612014-07-29 21:34:35 -04006339{
6340 struct nfs4_lockowner *lo;
6341
Trond Myklebustd4f04892014-07-29 21:34:36 -04006342 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08006343 lo = find_lockowner_str_locked(clp, owner);
Trond Myklebustd4f04892014-07-29 21:34:36 -04006344 spin_unlock(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006345 return lo;
6346}
6347
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006348static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
6349{
Trond Myklebustc58c6612014-07-29 21:34:35 -04006350 unhash_lockowner_locked(lockowner(sop));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006351}
6352
Jeff Layton6b180f02014-07-29 21:34:26 -04006353static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
6354{
6355 struct nfs4_lockowner *lo = lockowner(sop);
6356
6357 kmem_cache_free(lockowner_slab, lo);
6358}
6359
6360static const struct nfs4_stateowner_operations lockowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006361 .so_unhash = nfs4_unhash_lockowner,
6362 .so_free = nfs4_free_lockowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04006363};
6364
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365/*
6366 * Alloc a lock owner structure.
6367 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006368 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05006370 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006372static struct nfs4_lockowner *
Trond Myklebustc58c6612014-07-29 21:34:35 -04006373alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp,
6374 struct nfs4_ol_stateid *open_stp,
6375 struct nfsd4_lock *lock)
6376{
Trond Myklebustc58c6612014-07-29 21:34:35 -04006377 struct nfs4_lockowner *lo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006379 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
6380 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381 return NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04006382 INIT_LIST_HEAD(&lo->lo_blocked);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006383 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
6384 lo->lo_owner.so_is_open_owner = 0;
Jeff Layton5db1c032014-07-29 21:34:28 -04006385 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
Jeff Layton6b180f02014-07-29 21:34:26 -04006386 lo->lo_owner.so_ops = &lockowner_ops;
Trond Myklebustd4f04892014-07-29 21:34:36 -04006387 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08006388 ret = find_lockowner_str_locked(clp, &lock->lk_new_owner);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006389 if (ret == NULL) {
6390 list_add(&lo->lo_owner.so_strhash,
Trond Myklebustd4f04892014-07-29 21:34:36 -04006391 &clp->cl_ownerstr_hashtbl[strhashval]);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006392 ret = lo;
6393 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08006394 nfs4_free_stateowner(&lo->lo_owner);
6395
Trond Myklebustd4f04892014-07-29 21:34:36 -04006396 spin_unlock(&clp->cl_lock);
J. Bruce Fields340f0ba2015-03-23 11:02:30 -04006397 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398}
6399
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006400static struct nfs4_ol_stateid *
Trond Myklebusta451b122020-03-01 18:21:38 -05006401find_lock_stateid(const struct nfs4_lockowner *lo,
6402 const struct nfs4_ol_stateid *ost)
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006403{
6404 struct nfs4_ol_stateid *lst;
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006405
Trond Myklebusta451b122020-03-01 18:21:38 -05006406 lockdep_assert_held(&ost->st_stid.sc_client->cl_lock);
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006407
Trond Myklebusta451b122020-03-01 18:21:38 -05006408 /* If ost is not hashed, ost->st_locks will not be valid */
6409 if (!nfs4_ol_stateid_unhashed(ost))
6410 list_for_each_entry(lst, &ost->st_locks, st_locks) {
6411 if (lst->st_stateowner == &lo->lo_owner) {
6412 refcount_inc(&lst->st_stid.sc_count);
6413 return lst;
6414 }
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006415 }
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006416 return NULL;
6417}
6418
Trond Myklebustbeeca192017-11-03 08:00:14 -04006419static struct nfs4_ol_stateid *
Jeff Layton356a95e2014-07-29 21:34:13 -04006420init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
6421 struct nfs4_file *fp, struct inode *inode,
6422 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04006424 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustbeeca192017-11-03 08:00:14 -04006425 struct nfs4_ol_stateid *retstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
Trond Myklebustbeeca192017-11-03 08:00:14 -04006427 mutex_init(&stp->st_mutex);
Andrew Elble4f34bd02017-11-08 17:29:51 -05006428 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006429retry:
6430 spin_lock(&clp->cl_lock);
Trond Myklebusta451b122020-03-01 18:21:38 -05006431 if (nfs4_ol_stateid_unhashed(open_stp))
6432 goto out_close;
6433 retstp = find_lock_stateid(lo, open_stp);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006434 if (retstp)
Trond Myklebusta451b122020-03-01 18:21:38 -05006435 goto out_found;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03006436 refcount_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05006437 stp->st_stid.sc_type = NFS4_LOCK_STID;
Kinglong Meeb5971af2014-08-22 10:18:43 -04006438 stp->st_stateowner = nfs4_get_stateowner(&lo->lo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07006439 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04006440 stp->st_stid.sc_file = fp;
J. Bruce Fields0997b172011-03-02 18:01:35 -05006441 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07006443 stp->st_openstp = open_stp;
Trond Myklebusta451b122020-03-01 18:21:38 -05006444 spin_lock(&fp->fi_lock);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006445 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04006446 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04006447 list_add(&stp->st_perfile, &fp->fi_stateids);
6448 spin_unlock(&fp->fi_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006449 spin_unlock(&clp->cl_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006450 return stp;
Trond Myklebusta451b122020-03-01 18:21:38 -05006451out_found:
6452 spin_unlock(&clp->cl_lock);
6453 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
6454 nfs4_put_stid(&retstp->st_stid);
6455 goto retry;
6456 }
6457 /* To keep mutex tracking happy */
6458 mutex_unlock(&stp->st_mutex);
6459 return retstp;
6460out_close:
6461 spin_unlock(&clp->cl_lock);
6462 mutex_unlock(&stp->st_mutex);
6463 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464}
6465
Jeff Laytonc53530d2014-06-30 11:48:39 -04006466static struct nfs4_ol_stateid *
Jeff Layton356a95e2014-07-29 21:34:13 -04006467find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
6468 struct inode *inode, struct nfs4_ol_stateid *ost,
6469 bool *new)
6470{
6471 struct nfs4_stid *ns = NULL;
6472 struct nfs4_ol_stateid *lst;
6473 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
6474 struct nfs4_client *clp = oo->oo_owner.so_client;
6475
Trond Myklebustbeeca192017-11-03 08:00:14 -04006476 *new = false;
Jeff Layton356a95e2014-07-29 21:34:13 -04006477 spin_lock(&clp->cl_lock);
Trond Myklebusta451b122020-03-01 18:21:38 -05006478 lst = find_lock_stateid(lo, ost);
Jeff Layton356a95e2014-07-29 21:34:13 -04006479 spin_unlock(&clp->cl_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006480 if (lst != NULL) {
6481 if (nfsd4_lock_ol_stateid(lst) == nfs_ok)
6482 goto out;
6483 nfs4_put_stid(&lst->st_stid);
6484 }
6485 ns = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_lock_stateid);
6486 if (ns == NULL)
6487 return NULL;
6488
6489 lst = init_lock_stateid(openlockstateid(ns), lo, fi, inode, ost);
6490 if (lst == openlockstateid(ns))
6491 *new = true;
6492 else
Jeff Layton356a95e2014-07-29 21:34:13 -04006493 nfs4_put_stid(ns);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006494out:
Jeff Layton356a95e2014-07-29 21:34:13 -04006495 return lst;
6496}
Jeff Laytonc53530d2014-06-30 11:48:39 -04006497
NeilBrownfd39ca92005-06-23 22:04:03 -07006498static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499check_lock_length(u64 offset, u64 length)
6500{
Kinglong Meee7969312015-07-13 17:34:19 +08006501 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
6502 (length > ~offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503}
6504
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006505static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006506{
Trond Myklebust11b91642014-07-29 21:34:08 -04006507 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05006508
Jeff Layton7214e862014-07-10 14:07:33 -04006509 lockdep_assert_held(&fp->fi_lock);
6510
Jeff Layton82c5ff12012-05-11 09:45:13 -04006511 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05006512 return;
Jeff Layton12659652014-07-10 14:07:28 -04006513 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04006514 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05006515}
6516
Jeff Layton356a95e2014-07-29 21:34:13 -04006517static __be32
6518lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
6519 struct nfs4_ol_stateid *ost,
6520 struct nfsd4_lock *lock,
Jeff Laytondd257932016-08-11 10:37:39 -04006521 struct nfs4_ol_stateid **plst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006522{
Jeff Layton5db1c032014-07-29 21:34:28 -04006523 __be32 status;
Trond Myklebust11b91642014-07-29 21:34:08 -04006524 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006525 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
6526 struct nfs4_client *cl = oo->oo_owner.so_client;
David Howells2b0143b2015-03-17 22:25:59 +00006527 struct inode *inode = d_inode(cstate->current_fh.fh_dentry);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006528 struct nfs4_lockowner *lo;
Jeff Laytondd257932016-08-11 10:37:39 -04006529 struct nfs4_ol_stateid *lst;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006530 unsigned int strhashval;
6531
Kinglong Meec8623992015-07-13 17:35:37 +08006532 lo = find_lockowner_str(cl, &lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04006533 if (!lo) {
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006534 strhashval = ownerstr_hashval(&lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04006535 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
6536 if (lo == NULL)
6537 return nfserr_jukebox;
6538 } else {
6539 /* with an existing lockowner, seqids must be the same */
Jeff Layton5db1c032014-07-29 21:34:28 -04006540 status = nfserr_bad_seqid;
Jeff Laytonc53530d2014-06-30 11:48:39 -04006541 if (!cstate->minorversion &&
6542 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
Jeff Layton5db1c032014-07-29 21:34:28 -04006543 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006544 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04006545
Jeff Laytondd257932016-08-11 10:37:39 -04006546 lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
6547 if (lst == NULL) {
Jeff Layton5db1c032014-07-29 21:34:28 -04006548 status = nfserr_jukebox;
6549 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006550 }
Jeff Laytondd257932016-08-11 10:37:39 -04006551
Jeff Layton5db1c032014-07-29 21:34:28 -04006552 status = nfs_ok;
Jeff Laytondd257932016-08-11 10:37:39 -04006553 *plst = lst;
Jeff Layton5db1c032014-07-29 21:34:28 -04006554out:
6555 nfs4_put_stateowner(&lo->lo_owner);
6556 return status;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006557}
6558
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559/*
6560 * LOCK operation
6561 */
Al Virob37ad282006-10-19 23:28:59 -07006562__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006563nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006564 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006566 struct nfsd4_lock *lock = &u->lock;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006567 struct nfs4_openowner *open_sop = NULL;
6568 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006569 struct nfs4_ol_stateid *lock_stp = NULL;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006570 struct nfs4_ol_stateid *open_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04006571 struct nfs4_file *fp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006572 struct nfsd_file *nf = NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04006573 struct nfsd4_blocked_lock *nbl = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006574 struct file_lock *file_lock = NULL;
6575 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006576 __be32 status = 0;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006577 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07006578 int err;
Jeff Layton5db1c032014-07-29 21:34:28 -04006579 bool new = false;
Jeff Layton76d348f2016-09-16 16:28:24 -04006580 unsigned char fl_type;
6581 unsigned int fl_flags = FL_POSIX;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006582 struct net *net = SVC_NET(rqstp);
6583 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584
6585 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
6586 (long long) lock->lk_offset,
6587 (long long) lock->lk_length);
6588
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589 if (check_lock_length(lock->lk_offset, lock->lk_length))
6590 return nfserr_inval;
6591
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006592 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02006593 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08006594 dprintk("NFSD: nfsd4_lock: permission denied!\n");
6595 return status;
6596 }
6597
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598 if (lock->lk_is_new) {
J. Bruce Fields684e5632011-11-04 17:08:10 -04006599 if (nfsd4_has_session(cstate))
6600 /* See rfc 5661 18.10.3: given clientid is ignored: */
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006601 memcpy(&lock->lk_new_clientid,
J. Bruce Fields684e5632011-11-04 17:08:10 -04006602 &cstate->session->se_client->cl_clientid,
6603 sizeof(clientid_t));
6604
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04006606 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006610 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611 lock->lk_new_open_seqid,
6612 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006613 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07006614 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615 goto out;
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006616 mutex_unlock(&open_stp->st_mutex);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006617 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006618 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04006619 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006620 &lock->lk_new_clientid))
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006621 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006622 status = lookup_or_create_lock_state(cstate, open_stp, lock,
Jeff Layton5db1c032014-07-29 21:34:28 -04006623 &lock_stp, &new);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006624 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03006625 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006626 lock->lk_old_lock_seqid,
6627 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006628 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006629 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04006630 if (status)
6631 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006632 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006634 lkflg = setlkflg(lock->lk_type);
6635 status = nfs4_check_openmode(lock_stp, lkflg);
6636 if (status)
6637 goto out;
6638
NeilBrown0dd395d2005-07-07 17:59:15 -07006639 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006640 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07006641 goto out;
6642 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006643 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07006644 goto out;
6645
Trond Myklebust11b91642014-07-29 21:34:08 -04006646 fp = lock_stp->st_stid.sc_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647 switch (lock->lk_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648 case NFS4_READW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04006649 if (nfsd4_has_session(cstate))
6650 fl_flags |= FL_SLEEP;
6651 /* Fallthrough */
6652 case NFS4_READ_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04006653 spin_lock(&fp->fi_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006654 nf = find_readable_file_locked(fp);
6655 if (nf)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006656 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04006657 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006658 fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05006659 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660 case NFS4_WRITEW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04006661 if (nfsd4_has_session(cstate))
6662 fl_flags |= FL_SLEEP;
6663 /* Fallthrough */
6664 case NFS4_WRITE_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04006665 spin_lock(&fp->fi_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006666 nf = find_writeable_file_locked(fp);
6667 if (nf)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006668 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04006669 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006670 fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05006671 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672 default:
6673 status = nfserr_inval;
6674 goto out;
6675 }
Jeff Layton76d348f2016-09-16 16:28:24 -04006676
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006677 if (!nf) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006678 status = nfserr_openmode;
6679 goto out;
6680 }
Kinglong Meeaef95832014-08-22 10:18:44 -04006681
Jeff Layton76d348f2016-09-16 16:28:24 -04006682 nbl = find_or_allocate_block(lock_sop, &fp->fi_fhandle, nn);
6683 if (!nbl) {
6684 dprintk("NFSD: %s: unable to allocate block!\n", __func__);
6685 status = nfserr_jukebox;
6686 goto out;
6687 }
6688
6689 file_lock = &nbl->nbl_lock;
6690 file_lock->fl_type = fl_type;
Kinglong Meeaef95832014-08-22 10:18:44 -04006691 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lock_sop->lo_owner));
Jeff Layton21179d82012-08-21 08:03:32 -04006692 file_lock->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006693 file_lock->fl_file = nf->nf_file;
Jeff Layton76d348f2016-09-16 16:28:24 -04006694 file_lock->fl_flags = fl_flags;
Jeff Layton21179d82012-08-21 08:03:32 -04006695 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6696 file_lock->fl_start = lock->lk_offset;
6697 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
6698 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006699
Jeff Layton21179d82012-08-21 08:03:32 -04006700 conflock = locks_alloc_lock();
6701 if (!conflock) {
6702 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6703 status = nfserr_jukebox;
6704 goto out;
6705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706
Jeff Layton76d348f2016-09-16 16:28:24 -04006707 if (fl_flags & FL_SLEEP) {
Arnd Bergmann20b7d862019-11-04 16:31:52 +01006708 nbl->nbl_time = ktime_get_boottime_seconds();
Jeff Layton0cc11a62016-10-20 09:34:31 -04006709 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006710 list_add_tail(&nbl->nbl_list, &lock_sop->lo_blocked);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006711 list_add_tail(&nbl->nbl_lru, &nn->blocked_locks_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006712 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006713 }
6714
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006715 err = vfs_lock_file(nf->nf_file, F_SETLK, file_lock, conflock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006716 switch (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717 case 0: /* success! */
Jeff Layton9767feb2015-10-01 09:05:50 -04006718 nfs4_inc_and_copy_stateid(&lock->lk_resp_stateid, &lock_stp->st_stid);
Al Virob8dd7b92006-10-19 23:29:01 -07006719 status = 0;
J. Bruce Fields03f318c2018-06-08 12:28:47 -04006720 if (lock->lk_reclaim)
6721 nn->somebody_reclaimed = true;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006722 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006723 case FILE_LOCK_DEFERRED:
6724 nbl = NULL;
6725 /* Fallthrough */
6726 case -EAGAIN: /* conflock holds conflicting lock */
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006727 status = nfserr_denied;
6728 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04006729 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006730 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006731 case -EDEADLK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006733 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04006734 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05006735 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04006736 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739out:
Jeff Layton76d348f2016-09-16 16:28:24 -04006740 if (nbl) {
6741 /* dequeue it if we queued it before */
6742 if (fl_flags & FL_SLEEP) {
Jeff Layton0cc11a62016-10-20 09:34:31 -04006743 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006744 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006745 list_del_init(&nbl->nbl_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006746 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006747 }
6748 free_blocked_lock(nbl);
6749 }
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006750 if (nf)
6751 nfsd_file_put(nf);
Jeff Layton5db1c032014-07-29 21:34:28 -04006752 if (lock_stp) {
6753 /* Bump seqid manually if the 4.0 replay owner is openowner */
6754 if (cstate->replay_owner &&
6755 cstate->replay_owner != &lock_sop->lo_owner &&
6756 seqid_mutating_err(ntohl(status)))
6757 lock_sop->lo_owner.so_seqid++;
6758
6759 /*
6760 * If this is a new, never-before-used stateid, and we are
6761 * returning an error, then just go ahead and release it.
6762 */
J. Bruce Fields25020722018-01-17 16:25:59 -05006763 if (status && new)
Jeff Layton5db1c032014-07-29 21:34:28 -04006764 release_lock_stateid(lock_stp);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006765
6766 mutex_unlock(&lock_stp->st_mutex);
Jeff Layton5db1c032014-07-29 21:34:28 -04006767
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006768 nfs4_put_stid(&lock_stp->st_stid);
Jeff Layton5db1c032014-07-29 21:34:28 -04006769 }
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006770 if (open_stp)
6771 nfs4_put_stid(&open_stp->st_stid);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006772 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006773 if (conflock)
6774 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775 return status;
6776}
6777
6778/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006779 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
6780 * so we do a temporary open here just to get an open file to pass to
6781 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
6782 * inode operation.)
6783 */
Al Viro04da6e92012-04-13 00:00:04 -04006784static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006785{
Jeff Layton6b556ca2019-08-18 14:18:55 -04006786 struct nfsd_file *nf;
6787 __be32 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf);
Al Viro04da6e92012-04-13 00:00:04 -04006788 if (!err) {
Jeff Layton6b556ca2019-08-18 14:18:55 -04006789 err = nfserrno(vfs_test_lock(nf->nf_file, lock));
6790 nfsd_file_put(nf);
Al Viro04da6e92012-04-13 00:00:04 -04006791 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006792 return err;
6793}
6794
6795/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796 * LOCKT operation
6797 */
Al Virob37ad282006-10-19 23:28:59 -07006798__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006799nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006800 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006802 struct nfsd4_lockt *lockt = &u->lockt;
Jeff Layton21179d82012-08-21 08:03:32 -04006803 struct file_lock *file_lock = NULL;
Jeff Layton5db1c032014-07-29 21:34:28 -04006804 struct nfs4_lockowner *lo = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006805 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006806 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04006808 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809 return nfserr_grace;
6810
6811 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
6812 return nfserr_inval;
6813
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006814 if (!nfsd4_has_session(cstate)) {
Olga Kornievskaiab7342202019-09-06 15:17:21 -04006815 status = lookup_clientid(&lockt->lt_clientid, cstate, nn,
6816 false);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006817 if (status)
6818 goto out;
6819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820
J. Bruce Fields75c096f2011-08-15 18:39:32 -04006821 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823
Jeff Layton21179d82012-08-21 08:03:32 -04006824 file_lock = locks_alloc_lock();
6825 if (!file_lock) {
6826 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6827 status = nfserr_jukebox;
6828 goto out;
6829 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006830
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831 switch (lockt->lt_type) {
6832 case NFS4_READ_LT:
6833 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006834 file_lock->fl_type = F_RDLCK;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006835 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836 case NFS4_WRITE_LT:
6837 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006838 file_lock->fl_type = F_WRLCK;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006839 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04006841 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842 status = nfserr_inval;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006843 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844 }
6845
Kinglong Meec8623992015-07-13 17:35:37 +08006846 lo = find_lockowner_str(cstate->clp, &lockt->lt_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006847 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04006848 file_lock->fl_owner = (fl_owner_t)lo;
6849 file_lock->fl_pid = current->tgid;
6850 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851
Jeff Layton21179d82012-08-21 08:03:32 -04006852 file_lock->fl_start = lockt->lt_offset;
6853 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854
Jeff Layton21179d82012-08-21 08:03:32 -04006855 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856
Jeff Layton21179d82012-08-21 08:03:32 -04006857 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04006858 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05006859 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04006860
Jeff Layton21179d82012-08-21 08:03:32 -04006861 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04006863 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864 }
6865out:
Jeff Layton5db1c032014-07-29 21:34:28 -04006866 if (lo)
6867 nfs4_put_stateowner(&lo->lo_owner);
Jeff Layton21179d82012-08-21 08:03:32 -04006868 if (file_lock)
6869 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870 return status;
6871}
6872
Al Virob37ad282006-10-19 23:28:59 -07006873__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006874nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006875 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006877 struct nfsd4_locku *locku = &u->locku;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006878 struct nfs4_ol_stateid *stp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006879 struct nfsd_file *nf = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006880 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006881 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07006882 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006883 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
6884
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
6886 (long long) locku->lu_offset,
6887 (long long) locku->lu_length);
6888
6889 if (check_lock_length(locku->lu_offset, locku->lu_length))
6890 return nfserr_inval;
6891
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006892 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006893 &locku->lu_stateid, NFS4_LOCK_STID,
6894 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006895 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896 goto out;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006897 nf = find_any_file(stp->st_stid.sc_file);
6898 if (!nf) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006899 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04006900 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006901 }
Jeff Layton21179d82012-08-21 08:03:32 -04006902 file_lock = locks_alloc_lock();
6903 if (!file_lock) {
6904 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6905 status = nfserr_jukebox;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006906 goto put_file;
Jeff Layton21179d82012-08-21 08:03:32 -04006907 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006908
Jeff Layton21179d82012-08-21 08:03:32 -04006909 file_lock->fl_type = F_UNLCK;
Kinglong Meeaef95832014-08-22 10:18:44 -04006910 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(stp->st_stateowner));
Jeff Layton21179d82012-08-21 08:03:32 -04006911 file_lock->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006912 file_lock->fl_file = nf->nf_file;
Jeff Layton21179d82012-08-21 08:03:32 -04006913 file_lock->fl_flags = FL_POSIX;
6914 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6915 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916
Jeff Layton21179d82012-08-21 08:03:32 -04006917 file_lock->fl_end = last_byte_offset(locku->lu_offset,
6918 locku->lu_length);
6919 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006921 err = vfs_lock_file(nf->nf_file, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07006922 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05006923 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924 goto out_nfserr;
6925 }
Jeff Layton9767feb2015-10-01 09:05:50 -04006926 nfs4_inc_and_copy_stateid(&locku->lu_stateid, &stp->st_stid);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006927put_file:
6928 nfsd_file_put(nf);
Trond Myklebust858cc572014-07-29 21:34:16 -04006929put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006930 mutex_unlock(&stp->st_mutex);
Trond Myklebust858cc572014-07-29 21:34:16 -04006931 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006933 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006934 if (file_lock)
6935 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936 return status;
6937
6938out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07006939 status = nfserrno(err);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006940 goto put_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941}
6942
6943/*
6944 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006945 * true: locks held by lockowner
6946 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006948static bool
6949check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950{
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006951 struct file_lock *fl;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006952 int status = false;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006953 struct nfsd_file *nf = find_any_file(fp);
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006954 struct inode *inode;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006955 struct file_lock_context *flctx;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006956
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006957 if (!nf) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006958 /* Any valid lock stateid should have some sort of access */
6959 WARN_ON_ONCE(1);
6960 return status;
6961 }
6962
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006963 inode = locks_inode(nf->nf_file);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006964 flctx = inode->i_flctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006966 if (flctx && !list_empty_careful(&flctx->flc_posix)) {
Jeff Layton6109c852015-01-16 15:05:57 -05006967 spin_lock(&flctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006968 list_for_each_entry(fl, &flctx->flc_posix, fl_list) {
6969 if (fl->fl_owner == (fl_owner_t)lowner) {
6970 status = true;
6971 break;
6972 }
J. Bruce Fields796dadf2006-01-18 17:43:22 -08006973 }
Jeff Layton6109c852015-01-16 15:05:57 -05006974 spin_unlock(&flctx->flc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975 }
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006976 nfsd_file_put(nf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977 return status;
6978}
6979
Al Virob37ad282006-10-19 23:28:59 -07006980__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08006981nfsd4_release_lockowner(struct svc_rqst *rqstp,
6982 struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006983 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006985 struct nfsd4_release_lockowner *rlockowner = &u->release_lockowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Layton882e9d22014-07-29 21:34:37 -04006987 struct nfs4_stateowner *sop;
6988 struct nfs4_lockowner *lo = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006989 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990 struct xdr_netobj *owner = &rlockowner->rl_owner;
Trond Myklebustd4f04892014-07-29 21:34:36 -04006991 unsigned int hashval = ownerstr_hashval(owner);
Al Virob37ad282006-10-19 23:28:59 -07006992 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006993 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006994 struct nfs4_client *clp;
Chuck Lever88584812016-07-13 16:40:14 -04006995 LIST_HEAD (reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996
6997 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
6998 clid->cl_boot, clid->cl_id);
6999
Olga Kornievskaiab7342202019-09-06 15:17:21 -04007000 status = lookup_clientid(clid, cstate, nn, false);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05007001 if (status)
Trond Myklebust51f5e782014-07-30 08:27:27 -04007002 return status;
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05007003
Trond Myklebustd4f04892014-07-29 21:34:36 -04007004 clp = cstate->clp;
Jeff Laytonfd449072014-06-30 11:48:41 -04007005 /* Find the matching lock stateowner */
Trond Myklebustd4f04892014-07-29 21:34:36 -04007006 spin_lock(&clp->cl_lock);
Jeff Layton882e9d22014-07-29 21:34:37 -04007007 list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval],
Trond Myklebustd4f04892014-07-29 21:34:36 -04007008 so_strhash) {
Jeff Layton882e9d22014-07-29 21:34:37 -04007009
7010 if (sop->so_is_open_owner || !same_owner_str(sop, owner))
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05007011 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04007012
Jeff Layton882e9d22014-07-29 21:34:37 -04007013 /* see if there are still any locks associated with it */
7014 lo = lockowner(sop);
7015 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
7016 if (check_for_locks(stp->st_stid.sc_file, lo)) {
7017 status = nfserr_locks_held;
7018 spin_unlock(&clp->cl_lock);
Trond Myklebust51f5e782014-07-30 08:27:27 -04007019 return status;
Jeff Layton882e9d22014-07-29 21:34:37 -04007020 }
Jeff Layton5adfd882014-07-29 21:34:31 -04007021 }
Jeff Layton882e9d22014-07-29 21:34:37 -04007022
Kinglong Meeb5971af2014-08-22 10:18:43 -04007023 nfs4_get_stateowner(sop);
Jeff Layton882e9d22014-07-29 21:34:37 -04007024 break;
Jeff Laytonfd449072014-06-30 11:48:41 -04007025 }
Chuck Lever88584812016-07-13 16:40:14 -04007026 if (!lo) {
7027 spin_unlock(&clp->cl_lock);
7028 return status;
7029 }
7030
7031 unhash_lockowner_locked(lo);
7032 while (!list_empty(&lo->lo_owner.so_stateids)) {
7033 stp = list_first_entry(&lo->lo_owner.so_stateids,
7034 struct nfs4_ol_stateid,
7035 st_perstateowner);
7036 WARN_ON(!unhash_lock_stateid(stp));
7037 put_ol_stateid_locked(stp, &reaplist);
7038 }
Trond Myklebustc58c6612014-07-29 21:34:35 -04007039 spin_unlock(&clp->cl_lock);
Chuck Lever88584812016-07-13 16:40:14 -04007040 free_ol_stateid_reaplist(&reaplist);
Jeff Layton68ef3bc2018-03-16 11:32:02 -04007041 remove_blocked_locks(lo);
Chuck Lever88584812016-07-13 16:40:14 -04007042 nfs4_put_stateowner(&lo->lo_owner);
7043
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044 return status;
7045}
7046
7047static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07007048alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049{
NeilBrowna55370a2005-06-23 22:03:52 -07007050 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051}
7052
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05007053bool
Scott Mayhew6b189102019-03-26 18:06:26 -04007054nfs4_has_reclaimed_state(struct xdr_netobj name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07007055{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05007056 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07007057
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007058 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05007059 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07007060}
7061
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062/*
7063 * failure => all reset bets are off, nfserr_no_grace...
Scott Mayhew6b189102019-03-26 18:06:26 -04007064 *
7065 * The caller is responsible for freeing name.data if NULL is returned (it
7066 * will be freed in nfs4_remove_reclaim_record in the normal case).
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05007068struct nfs4_client_reclaim *
Scott Mayhew6ee95d12019-09-09 16:10:31 -04007069nfs4_client_to_reclaim(struct xdr_netobj name, struct xdr_netobj princhash,
7070 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071{
7072 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05007073 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074
Scott Mayhew6b189102019-03-26 18:06:26 -04007075 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", name.len, name.data);
NeilBrowna55370a2005-06-23 22:03:52 -07007076 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05007077 if (crp) {
7078 strhashval = clientstr_hashval(name);
7079 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007080 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Scott Mayhew6b189102019-03-26 18:06:26 -04007081 crp->cr_name.data = name.data;
7082 crp->cr_name.len = name.len;
Scott Mayhew6ee95d12019-09-09 16:10:31 -04007083 crp->cr_princhash.data = princhash.data;
7084 crp->cr_princhash.len = princhash.len;
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05007085 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007086 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05007087 }
7088 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089}
7090
Jeff Layton2a4317c2012-03-21 16:42:43 -04007091void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007092nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05007093{
7094 list_del(&crp->cr_strhash);
Scott Mayhew6b189102019-03-26 18:06:26 -04007095 kfree(crp->cr_name.data);
Scott Mayhew6ee95d12019-09-09 16:10:31 -04007096 kfree(crp->cr_princhash.data);
Jeff Laytonce30e532012-11-12 15:00:53 -05007097 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007098 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05007099}
7100
7101void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007102nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103{
7104 struct nfs4_client_reclaim *crp = NULL;
7105 int i;
7106
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007108 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
7109 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007111 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112 }
7113 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05007114 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115}
7116
7117/*
7118 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04007119struct nfs4_client_reclaim *
Scott Mayhew6b189102019-03-26 18:06:26 -04007120nfsd4_find_reclaim_client(struct xdr_netobj name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007121{
7122 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123 struct nfs4_client_reclaim *crp = NULL;
7124
Scott Mayhew6b189102019-03-26 18:06:26 -04007125 dprintk("NFSD: nfs4_find_reclaim_client for name %.*s\n", name.len, name.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007126
Scott Mayhew6b189102019-03-26 18:06:26 -04007127 strhashval = clientstr_hashval(name);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007128 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Scott Mayhew6b189102019-03-26 18:06:26 -04007129 if (compare_blob(&crp->cr_name, &name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007130 return crp;
7131 }
7132 }
7133 return NULL;
7134}
7135
7136/*
7137* Called from OPEN. Look for clientid in reclaim list.
7138*/
Al Virob37ad282006-10-19 23:28:59 -07007139__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04007140nfs4_check_open_reclaim(clientid_t *clid,
7141 struct nfsd4_compound_state *cstate,
7142 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04007144 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04007145
7146 /* find clientid in conf_id_hashtbl */
Olga Kornievskaiab7342202019-09-06 15:17:21 -04007147 status = lookup_clientid(clid, cstate, nn, false);
Trond Myklebust0fe492d2014-06-30 11:48:47 -04007148 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04007149 return nfserr_reclaim_bad;
7150
Jeff Layton3b3e7b72014-09-12 16:40:22 -04007151 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags))
7152 return nfserr_no_grace;
7153
Trond Myklebust0fe492d2014-06-30 11:48:47 -04007154 if (nfsd4_client_record_check(cstate->clp))
7155 return nfserr_reclaim_bad;
7156
7157 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007158}
7159
Bryan Schumaker65178db2011-11-01 13:35:21 -04007160#ifdef CONFIG_NFSD_FAULT_INJECTION
Jeff Layton016200c2014-07-30 08:27:21 -04007161static inline void
7162put_client(struct nfs4_client *clp)
7163{
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007164 atomic_dec(&clp->cl_rpc_users);
Jeff Layton016200c2014-07-30 08:27:21 -04007165}
7166
Jeff Layton285abde2014-07-30 08:27:24 -04007167static struct nfs4_client *
7168nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
7169{
7170 struct nfs4_client *clp;
7171 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7172 nfsd_net_id);
7173
7174 if (!nfsd_netns_ready(nn))
7175 return NULL;
7176
7177 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7178 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
7179 return clp;
7180 }
7181 return NULL;
7182}
7183
Jeff Layton7ec0e362014-07-30 08:27:17 -04007184u64
Jeff Layton285abde2014-07-30 08:27:24 -04007185nfsd_inject_print_clients(void)
Jeff Layton7ec0e362014-07-30 08:27:17 -04007186{
7187 struct nfs4_client *clp;
7188 u64 count = 0;
7189 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7190 nfsd_net_id);
7191 char buf[INET6_ADDRSTRLEN];
7192
7193 if (!nfsd_netns_ready(nn))
7194 return 0;
7195
7196 spin_lock(&nn->client_lock);
7197 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7198 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
7199 pr_info("NFS Client: %s\n", buf);
7200 ++count;
7201 }
7202 spin_unlock(&nn->client_lock);
7203
7204 return count;
7205}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007206
Jeff Laytona0926d12014-07-30 08:27:18 -04007207u64
Jeff Layton285abde2014-07-30 08:27:24 -04007208nfsd_inject_forget_client(struct sockaddr_storage *addr, size_t addr_size)
Jeff Laytona0926d12014-07-30 08:27:18 -04007209{
7210 u64 count = 0;
7211 struct nfs4_client *clp;
7212 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7213 nfsd_net_id);
7214
7215 if (!nfsd_netns_ready(nn))
7216 return count;
7217
7218 spin_lock(&nn->client_lock);
7219 clp = nfsd_find_client(addr, addr_size);
7220 if (clp) {
7221 if (mark_client_expired_locked(clp) == nfs_ok)
7222 ++count;
7223 else
7224 clp = NULL;
7225 }
7226 spin_unlock(&nn->client_lock);
7227
7228 if (clp)
7229 expire_client(clp);
7230
7231 return count;
7232}
7233
Jeff Layton69fc9ed2014-07-30 08:27:19 -04007234u64
Jeff Layton285abde2014-07-30 08:27:24 -04007235nfsd_inject_forget_clients(u64 max)
Jeff Layton69fc9ed2014-07-30 08:27:19 -04007236{
7237 u64 count = 0;
7238 struct nfs4_client *clp, *next;
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_safe(clp, next, &nn->client_lru, cl_lru) {
7248 if (mark_client_expired_locked(clp) == nfs_ok) {
7249 list_add(&clp->cl_lru, &reaplist);
7250 if (max != 0 && ++count >= max)
7251 break;
7252 }
7253 }
7254 spin_unlock(&nn->client_lock);
7255
7256 list_for_each_entry_safe(clp, next, &reaplist, cl_lru)
7257 expire_client(clp);
7258
7259 return count;
7260}
7261
Bryan Schumaker184c1842012-11-29 11:40:44 -05007262static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
7263 const char *type)
7264{
7265 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05007266 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05007267 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
7268}
7269
Jeff Layton016200c2014-07-30 08:27:21 -04007270static void
7271nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid *lst,
7272 struct list_head *collect)
7273{
7274 struct nfs4_client *clp = lst->st_stid.sc_client;
7275 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7276 nfsd_net_id);
7277
7278 if (!collect)
7279 return;
7280
7281 lockdep_assert_held(&nn->client_lock);
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007282 atomic_inc(&clp->cl_rpc_users);
Jeff Layton016200c2014-07-30 08:27:21 -04007283 list_add(&lst->st_locks, collect);
7284}
7285
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007286static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
Jeff Layton3738d502014-07-30 08:27:20 -04007287 struct list_head *collect,
Jeff Laytone8568732015-08-24 12:41:47 -04007288 bool (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05007289{
7290 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007291 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007292 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007293 u64 count = 0;
7294
Jeff Layton016200c2014-07-30 08:27:21 -04007295 spin_lock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007296 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007297 list_for_each_entry_safe(stp, st_next,
7298 &oop->oo_owner.so_stateids, st_perstateowner) {
7299 list_for_each_entry_safe(lst, lst_next,
7300 &stp->st_locks, st_locks) {
Jeff Layton3738d502014-07-30 08:27:20 -04007301 if (func) {
Jeff Laytone8568732015-08-24 12:41:47 -04007302 if (func(lst))
7303 nfsd_inject_add_lock_to_list(lst,
7304 collect);
Jeff Layton3738d502014-07-30 08:27:20 -04007305 }
Jeff Layton016200c2014-07-30 08:27:21 -04007306 ++count;
7307 /*
7308 * Despite the fact that these functions deal
7309 * with 64-bit integers for "count", we must
7310 * ensure that it doesn't blow up the
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007311 * clp->cl_rpc_users. Throw a warning if we
Jeff Layton016200c2014-07-30 08:27:21 -04007312 * start to approach INT_MAX here.
7313 */
7314 WARN_ON_ONCE(count == (INT_MAX / 2));
7315 if (count == max)
7316 goto out;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007317 }
7318 }
7319 }
Jeff Layton016200c2014-07-30 08:27:21 -04007320out:
7321 spin_unlock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007322
7323 return count;
7324}
7325
Jeff Layton016200c2014-07-30 08:27:21 -04007326static u64
7327nfsd_collect_client_locks(struct nfs4_client *clp, struct list_head *collect,
7328 u64 max)
Bryan Schumakerfc291712012-11-29 11:40:40 -05007329{
Jeff Layton016200c2014-07-30 08:27:21 -04007330 return nfsd_foreach_client_lock(clp, max, collect, unhash_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007331}
7332
Jeff Layton016200c2014-07-30 08:27:21 -04007333static u64
7334nfsd_print_client_locks(struct nfs4_client *clp)
Bryan Schumaker184c1842012-11-29 11:40:44 -05007335{
Jeff Layton016200c2014-07-30 08:27:21 -04007336 u64 count = nfsd_foreach_client_lock(clp, 0, NULL, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007337 nfsd_print_count(clp, count, "locked files");
7338 return count;
7339}
7340
Jeff Layton016200c2014-07-30 08:27:21 -04007341u64
Jeff Layton285abde2014-07-30 08:27:24 -04007342nfsd_inject_print_locks(void)
Jeff Layton016200c2014-07-30 08:27:21 -04007343{
7344 struct nfs4_client *clp;
7345 u64 count = 0;
7346 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7347 nfsd_net_id);
7348
7349 if (!nfsd_netns_ready(nn))
7350 return 0;
7351
7352 spin_lock(&nn->client_lock);
7353 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7354 count += nfsd_print_client_locks(clp);
7355 spin_unlock(&nn->client_lock);
7356
7357 return count;
7358}
7359
7360static void
7361nfsd_reap_locks(struct list_head *reaplist)
7362{
7363 struct nfs4_client *clp;
7364 struct nfs4_ol_stateid *stp, *next;
7365
7366 list_for_each_entry_safe(stp, next, reaplist, st_locks) {
7367 list_del_init(&stp->st_locks);
7368 clp = stp->st_stid.sc_client;
7369 nfs4_put_stid(&stp->st_stid);
7370 put_client(clp);
7371 }
7372}
7373
7374u64
Jeff Layton285abde2014-07-30 08:27:24 -04007375nfsd_inject_forget_client_locks(struct sockaddr_storage *addr, size_t addr_size)
Jeff Layton016200c2014-07-30 08:27:21 -04007376{
7377 unsigned int count = 0;
7378 struct nfs4_client *clp;
7379 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7380 nfsd_net_id);
7381 LIST_HEAD(reaplist);
7382
7383 if (!nfsd_netns_ready(nn))
7384 return count;
7385
7386 spin_lock(&nn->client_lock);
7387 clp = nfsd_find_client(addr, addr_size);
7388 if (clp)
7389 count = nfsd_collect_client_locks(clp, &reaplist, 0);
7390 spin_unlock(&nn->client_lock);
7391 nfsd_reap_locks(&reaplist);
7392 return count;
7393}
7394
7395u64
Jeff Layton285abde2014-07-30 08:27:24 -04007396nfsd_inject_forget_locks(u64 max)
Jeff Layton016200c2014-07-30 08:27:21 -04007397{
7398 u64 count = 0;
7399 struct nfs4_client *clp;
7400 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7401 nfsd_net_id);
7402 LIST_HEAD(reaplist);
7403
7404 if (!nfsd_netns_ready(nn))
7405 return count;
7406
7407 spin_lock(&nn->client_lock);
7408 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7409 count += nfsd_collect_client_locks(clp, &reaplist, max - count);
7410 if (max != 0 && count >= max)
7411 break;
7412 }
7413 spin_unlock(&nn->client_lock);
7414 nfsd_reap_locks(&reaplist);
7415 return count;
7416}
7417
Jeff Layton82e05ef2014-07-30 08:27:22 -04007418static u64
7419nfsd_foreach_client_openowner(struct nfs4_client *clp, u64 max,
7420 struct list_head *collect,
7421 void (*func)(struct nfs4_openowner *))
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007422{
7423 struct nfs4_openowner *oop, *next;
Jeff Layton82e05ef2014-07-30 08:27:22 -04007424 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7425 nfsd_net_id);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007426 u64 count = 0;
7427
Jeff Layton82e05ef2014-07-30 08:27:22 -04007428 lockdep_assert_held(&nn->client_lock);
7429
7430 spin_lock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007431 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
Jeff Layton82e05ef2014-07-30 08:27:22 -04007432 if (func) {
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007433 func(oop);
Jeff Layton82e05ef2014-07-30 08:27:22 -04007434 if (collect) {
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007435 atomic_inc(&clp->cl_rpc_users);
Jeff Layton82e05ef2014-07-30 08:27:22 -04007436 list_add(&oop->oo_perclient, collect);
7437 }
7438 }
7439 ++count;
7440 /*
7441 * Despite the fact that these functions deal with
7442 * 64-bit integers for "count", we must ensure that
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007443 * it doesn't blow up the clp->cl_rpc_users. Throw a
Jeff Layton82e05ef2014-07-30 08:27:22 -04007444 * warning if we start to approach INT_MAX here.
7445 */
7446 WARN_ON_ONCE(count == (INT_MAX / 2));
7447 if (count == max)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007448 break;
7449 }
Jeff Layton82e05ef2014-07-30 08:27:22 -04007450 spin_unlock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007451
7452 return count;
7453}
7454
Jeff Layton82e05ef2014-07-30 08:27:22 -04007455static u64
7456nfsd_print_client_openowners(struct nfs4_client *clp)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007457{
Jeff Layton82e05ef2014-07-30 08:27:22 -04007458 u64 count = nfsd_foreach_client_openowner(clp, 0, NULL, NULL);
7459
7460 nfsd_print_count(clp, count, "openowners");
7461 return count;
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007462}
7463
Jeff Layton82e05ef2014-07-30 08:27:22 -04007464static u64
7465nfsd_collect_client_openowners(struct nfs4_client *clp,
7466 struct list_head *collect, u64 max)
Bryan Schumaker184c1842012-11-29 11:40:44 -05007467{
Jeff Layton82e05ef2014-07-30 08:27:22 -04007468 return nfsd_foreach_client_openowner(clp, max, collect,
7469 unhash_openowner_locked);
7470}
7471
7472u64
Jeff Layton285abde2014-07-30 08:27:24 -04007473nfsd_inject_print_openowners(void)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007474{
7475 struct nfs4_client *clp;
7476 u64 count = 0;
7477 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7478 nfsd_net_id);
7479
7480 if (!nfsd_netns_ready(nn))
7481 return 0;
7482
7483 spin_lock(&nn->client_lock);
7484 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7485 count += nfsd_print_client_openowners(clp);
7486 spin_unlock(&nn->client_lock);
7487
7488 return count;
7489}
7490
7491static void
7492nfsd_reap_openowners(struct list_head *reaplist)
7493{
7494 struct nfs4_client *clp;
7495 struct nfs4_openowner *oop, *next;
7496
7497 list_for_each_entry_safe(oop, next, reaplist, oo_perclient) {
7498 list_del_init(&oop->oo_perclient);
7499 clp = oop->oo_owner.so_client;
7500 release_openowner(oop);
7501 put_client(clp);
7502 }
7503}
7504
7505u64
Jeff Layton285abde2014-07-30 08:27:24 -04007506nfsd_inject_forget_client_openowners(struct sockaddr_storage *addr,
7507 size_t addr_size)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007508{
7509 unsigned int count = 0;
7510 struct nfs4_client *clp;
7511 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7512 nfsd_net_id);
7513 LIST_HEAD(reaplist);
7514
7515 if (!nfsd_netns_ready(nn))
7516 return count;
7517
7518 spin_lock(&nn->client_lock);
7519 clp = nfsd_find_client(addr, addr_size);
7520 if (clp)
7521 count = nfsd_collect_client_openowners(clp, &reaplist, 0);
7522 spin_unlock(&nn->client_lock);
7523 nfsd_reap_openowners(&reaplist);
7524 return count;
7525}
7526
7527u64
Jeff Layton285abde2014-07-30 08:27:24 -04007528nfsd_inject_forget_openowners(u64 max)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007529{
7530 u64 count = 0;
7531 struct nfs4_client *clp;
7532 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7533 nfsd_net_id);
7534 LIST_HEAD(reaplist);
7535
7536 if (!nfsd_netns_ready(nn))
7537 return count;
7538
7539 spin_lock(&nn->client_lock);
7540 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7541 count += nfsd_collect_client_openowners(clp, &reaplist,
7542 max - count);
7543 if (max != 0 && count >= max)
7544 break;
7545 }
7546 spin_unlock(&nn->client_lock);
7547 nfsd_reap_openowners(&reaplist);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007548 return count;
7549}
7550
Bryan Schumaker269de302012-11-29 11:40:42 -05007551static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
7552 struct list_head *victims)
7553{
7554 struct nfs4_delegation *dp, *next;
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007555 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7556 nfsd_net_id);
Bryan Schumaker269de302012-11-29 11:40:42 -05007557 u64 count = 0;
7558
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007559 lockdep_assert_held(&nn->client_lock);
7560
7561 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05007562 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04007563 if (victims) {
7564 /*
7565 * It's not safe to mess with delegations that have a
7566 * non-zero dl_time. They might have already been broken
7567 * and could be processed by the laundromat outside of
7568 * the state_lock. Just leave them be.
7569 */
7570 if (dp->dl_time != 0)
7571 continue;
7572
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007573 atomic_inc(&clp->cl_rpc_users);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007574 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007575 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04007576 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007577 ++count;
7578 /*
7579 * Despite the fact that these functions deal with
7580 * 64-bit integers for "count", we must ensure that
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007581 * it doesn't blow up the clp->cl_rpc_users. Throw a
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007582 * warning if we start to approach INT_MAX here.
7583 */
7584 WARN_ON_ONCE(count == (INT_MAX / 2));
7585 if (count == max)
Bryan Schumaker269de302012-11-29 11:40:42 -05007586 break;
7587 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007588 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05007589 return count;
7590}
7591
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007592static u64
7593nfsd_print_client_delegations(struct nfs4_client *clp)
Bryan Schumaker269de302012-11-29 11:40:42 -05007594{
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007595 u64 count = nfsd_find_all_delegations(clp, 0, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007596
7597 nfsd_print_count(clp, count, "delegations");
7598 return count;
7599}
7600
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007601u64
Jeff Layton285abde2014-07-30 08:27:24 -04007602nfsd_inject_print_delegations(void)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007603{
7604 struct nfs4_client *clp;
7605 u64 count = 0;
7606 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7607 nfsd_net_id);
7608
7609 if (!nfsd_netns_ready(nn))
7610 return 0;
7611
7612 spin_lock(&nn->client_lock);
7613 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7614 count += nfsd_print_client_delegations(clp);
7615 spin_unlock(&nn->client_lock);
7616
7617 return count;
7618}
7619
7620static void
7621nfsd_forget_delegations(struct list_head *reaplist)
7622{
7623 struct nfs4_client *clp;
7624 struct nfs4_delegation *dp, *next;
7625
7626 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
7627 list_del_init(&dp->dl_recall_lru);
7628 clp = dp->dl_stid.sc_client;
7629 revoke_delegation(dp);
7630 put_client(clp);
7631 }
7632}
7633
7634u64
Jeff Layton285abde2014-07-30 08:27:24 -04007635nfsd_inject_forget_client_delegations(struct sockaddr_storage *addr,
7636 size_t addr_size)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007637{
7638 u64 count = 0;
7639 struct nfs4_client *clp;
7640 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7641 nfsd_net_id);
7642 LIST_HEAD(reaplist);
7643
7644 if (!nfsd_netns_ready(nn))
7645 return count;
7646
7647 spin_lock(&nn->client_lock);
7648 clp = nfsd_find_client(addr, addr_size);
7649 if (clp)
7650 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7651 spin_unlock(&nn->client_lock);
7652
7653 nfsd_forget_delegations(&reaplist);
7654 return count;
7655}
7656
7657u64
Jeff Layton285abde2014-07-30 08:27:24 -04007658nfsd_inject_forget_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007659{
7660 u64 count = 0;
7661 struct nfs4_client *clp;
7662 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7663 nfsd_net_id);
7664 LIST_HEAD(reaplist);
7665
7666 if (!nfsd_netns_ready(nn))
7667 return count;
7668
7669 spin_lock(&nn->client_lock);
7670 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7671 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7672 if (max != 0 && count >= max)
7673 break;
7674 }
7675 spin_unlock(&nn->client_lock);
7676 nfsd_forget_delegations(&reaplist);
7677 return count;
7678}
7679
7680static void
7681nfsd_recall_delegations(struct list_head *reaplist)
7682{
7683 struct nfs4_client *clp;
7684 struct nfs4_delegation *dp, *next;
7685
7686 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
7687 list_del_init(&dp->dl_recall_lru);
7688 clp = dp->dl_stid.sc_client;
7689 /*
7690 * We skipped all entries that had a zero dl_time before,
7691 * so we can now reset the dl_time back to 0. If a delegation
7692 * break comes in now, then it won't make any difference since
7693 * we're recalling it either way.
7694 */
7695 spin_lock(&state_lock);
7696 dp->dl_time = 0;
7697 spin_unlock(&state_lock);
7698 nfsd_break_one_deleg(dp);
7699 put_client(clp);
7700 }
7701}
7702
7703u64
Jeff Layton285abde2014-07-30 08:27:24 -04007704nfsd_inject_recall_client_delegations(struct sockaddr_storage *addr,
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007705 size_t addr_size)
7706{
7707 u64 count = 0;
7708 struct nfs4_client *clp;
7709 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7710 nfsd_net_id);
7711 LIST_HEAD(reaplist);
7712
7713 if (!nfsd_netns_ready(nn))
7714 return count;
7715
7716 spin_lock(&nn->client_lock);
7717 clp = nfsd_find_client(addr, addr_size);
7718 if (clp)
7719 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7720 spin_unlock(&nn->client_lock);
7721
7722 nfsd_recall_delegations(&reaplist);
7723 return count;
7724}
7725
7726u64
Jeff Layton285abde2014-07-30 08:27:24 -04007727nfsd_inject_recall_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007728{
7729 u64 count = 0;
7730 struct nfs4_client *clp, *next;
7731 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7732 nfsd_net_id);
7733 LIST_HEAD(reaplist);
7734
7735 if (!nfsd_netns_ready(nn))
7736 return count;
7737
7738 spin_lock(&nn->client_lock);
7739 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
7740 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7741 if (max != 0 && ++count >= max)
7742 break;
7743 }
7744 spin_unlock(&nn->client_lock);
7745 nfsd_recall_delegations(&reaplist);
7746 return count;
7747}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007748#endif /* CONFIG_NFSD_FAULT_INJECTION */
7749
Meelap Shahc2f1a552007-07-17 04:04:39 -07007750/*
7751 * Since the lifetime of a delegation isn't limited to that of an open, a
7752 * client may quite reasonably hang on to a delegation as long as it has
7753 * the inode cached. This becomes an obvious problem the first time a
7754 * client's inode cache approaches the size of the server's total memory.
7755 *
7756 * For now we avoid this problem by imposing a hard limit on the number
7757 * of delegations, which varies according to the server's memory size.
7758 */
7759static void
7760set_max_delegations(void)
7761{
7762 /*
7763 * Allow at most 4 delegations per megabyte of RAM. Quick
7764 * estimates suggest that in the worst case (where every delegation
7765 * is for a different inode), a delegation could take about 1.5K,
7766 * giving a worst case usage of about 6% of memory.
7767 */
7768 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
7769}
7770
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007771static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007772{
7773 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7774 int i;
7775
Kees Cook6da2ec52018-06-12 13:55:00 -07007776 nn->conf_id_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
7777 sizeof(struct list_head),
7778 GFP_KERNEL);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007779 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007780 goto err;
Kees Cook6da2ec52018-06-12 13:55:00 -07007781 nn->unconf_id_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
7782 sizeof(struct list_head),
7783 GFP_KERNEL);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007784 if (!nn->unconf_id_hashtbl)
7785 goto err_unconf_id;
Kees Cook6da2ec52018-06-12 13:55:00 -07007786 nn->sessionid_hashtbl = kmalloc_array(SESSION_HASH_SIZE,
7787 sizeof(struct list_head),
7788 GFP_KERNEL);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007789 if (!nn->sessionid_hashtbl)
7790 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007791
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007792 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007793 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007794 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007795 }
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007796 for (i = 0; i < SESSION_HASH_SIZE; i++)
7797 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007798 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007799 nn->unconf_name_tree = RB_ROOT;
Arnd Bergmann9cc76802019-10-31 15:53:13 +01007800 nn->boot_time = ktime_get_real_seconds();
Vasily Averin81833de2017-11-13 07:25:40 +03007801 nn->grace_ended = false;
7802 nn->nfsd4_manager.block_opens = true;
7803 INIT_LIST_HEAD(&nn->nfsd4_manager.list);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03007804 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03007805 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007806 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03007807 spin_lock_init(&nn->client_lock);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04007808 spin_lock_init(&nn->s2s_cp_lock);
7809 idr_init(&nn->s2s_cp_stateids);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007810
Jeff Layton0cc11a62016-10-20 09:34:31 -04007811 spin_lock_init(&nn->blocked_locks_lock);
7812 INIT_LIST_HEAD(&nn->blocked_locks_lru);
7813
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007814 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007815 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007816
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007817 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007818
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007819err_sessionid:
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03007820 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007821err_unconf_id:
7822 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007823err:
7824 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007825}
7826
7827static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007828nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007829{
7830 int i;
7831 struct nfs4_client *clp = NULL;
7832 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7833
7834 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7835 while (!list_empty(&nn->conf_id_hashtbl[i])) {
7836 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7837 destroy_client(clp);
7838 }
7839 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007840
Jeff Layton68ef3bc2018-03-16 11:32:02 -04007841 WARN_ON(!list_empty(&nn->blocked_locks_lru));
7842
Kinglong Mee2b905632014-03-26 22:09:30 +08007843 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7844 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
7845 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7846 destroy_client(clp);
7847 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007848 }
7849
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007850 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007851 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007852 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007853 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007854}
7855
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007856int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007857nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07007858{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04007859 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007860 int ret;
7861
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007862 ret = nfs4_state_create_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007863 if (ret)
7864 return ret;
Jeff Laytond4318ac2014-09-12 16:40:21 -04007865 locks_start_grace(net, &nn->nfsd4_manager);
7866 nfsd4_client_tracking_init(net);
Scott Mayhew362063a2019-03-26 18:06:28 -04007867 if (nn->track_reclaim_completes && nn->reclaim_str_hashtbl_size == 0)
7868 goto skip_grace;
Arnd Bergmann20b7d862019-11-04 16:31:52 +01007869 printk(KERN_INFO "NFSD: starting %lld-second grace period (net %x)\n",
Vasily Averin7e981a82017-11-06 16:46:04 +03007870 nn->nfsd4_grace, net->ns.inum);
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03007871 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007872 return 0;
Scott Mayhew362063a2019-03-26 18:06:28 -04007873
7874skip_grace:
7875 printk(KERN_INFO "NFSD: no clients to reclaim, skipping NFSv4 grace period (net %x)\n",
7876 net->ns.inum);
7877 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_lease * HZ);
7878 nfsd4_end_grace(nn);
7879 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007880}
7881
7882/* initialization to perform when the nfsd service is started: */
7883
7884int
7885nfs4_state_start(void)
7886{
7887 int ret;
7888
Jeff Layton51a54562015-08-20 07:17:01 -04007889 laundry_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, "nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05007890 if (laundry_wq == NULL) {
7891 ret = -ENOMEM;
Chuck Levera26dd642018-08-16 12:06:09 -04007892 goto out;
Jeff Laytona6d6b782012-03-05 11:42:36 -05007893 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007894 ret = nfsd4_create_callback_queue();
7895 if (ret)
7896 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007897
Meelap Shahc2f1a552007-07-17 04:04:39 -07007898 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007899 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007900
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007901out_free_laundry:
7902 destroy_workqueue(laundry_wq);
Chuck Levera26dd642018-08-16 12:06:09 -04007903out:
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007904 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007905}
7906
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007907void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007908nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007911 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007912 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007914 cancel_delayed_work_sync(&nn->laundromat_work);
7915 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05007916
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04007918 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007919 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007921 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007922 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923 }
Benny Halevycdc975052014-05-30 09:09:30 -04007924 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007925 list_for_each_safe(pos, next, &reaplist) {
7926 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04007927 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05007928 destroy_unhashed_deleg(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929 }
7930
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03007931 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007932 nfs4_state_destroy_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933}
7934
7935void
7936nfs4_state_shutdown(void)
7937{
NeilBrown5e8d5c22006-04-10 22:55:37 -07007938 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04007939 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007941
7942static void
7943get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7944{
Olga Kornievskaia51100d22018-09-13 13:58:24 -04007945 if (HAS_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG) &&
7946 CURRENT_STATEID(stateid))
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007947 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007948}
7949
7950static void
7951put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7952{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007953 if (cstate->minorversion) {
7954 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
Olga Kornievskaia51100d22018-09-13 13:58:24 -04007955 SET_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007956 }
7957}
7958
7959void
7960clear_current_stateid(struct nfsd4_compound_state *cstate)
7961{
Olga Kornievskaia51100d22018-09-13 13:58:24 -04007962 CLEAR_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007963}
7964
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007965/*
7966 * functions to set current state id
7967 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007968void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007969nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate,
7970 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007971{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007972 put_stateid(cstate, &u->open_downgrade.od_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007973}
7974
7975void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007976nfsd4_set_openstateid(struct nfsd4_compound_state *cstate,
7977 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007978{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007979 put_stateid(cstate, &u->open.op_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007980}
7981
7982void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007983nfsd4_set_closestateid(struct nfsd4_compound_state *cstate,
7984 union nfsd4_op_u *u)
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007985{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007986 put_stateid(cstate, &u->close.cl_stateid);
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007987}
7988
7989void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007990nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate,
7991 union nfsd4_op_u *u)
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007992{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007993 put_stateid(cstate, &u->lock.lk_resp_stateid);
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007994}
7995
7996/*
7997 * functions to consume current state id
7998 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007999
8000void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008001nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate,
8002 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008003{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008004 get_stateid(cstate, &u->open_downgrade.od_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008005}
8006
8007void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008008nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate,
8009 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008010{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008011 get_stateid(cstate, &u->delegreturn.dr_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008012}
8013
8014void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008015nfsd4_get_freestateid(struct nfsd4_compound_state *cstate,
8016 union nfsd4_op_u *u)
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008017{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008018 get_stateid(cstate, &u->free_stateid.fr_stateid);
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008019}
8020
8021void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008022nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate,
8023 union nfsd4_op_u *u)
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008024{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008025 get_stateid(cstate, &u->setattr.sa_stateid);
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008026}
8027
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01008028void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008029nfsd4_get_closestateid(struct nfsd4_compound_state *cstate,
8030 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008031{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008032 get_stateid(cstate, &u->close.cl_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008033}
8034
8035void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008036nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate,
8037 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008038{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008039 get_stateid(cstate, &u->locku.lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008040}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008041
8042void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008043nfsd4_get_readstateid(struct nfsd4_compound_state *cstate,
8044 union nfsd4_op_u *u)
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008045{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008046 get_stateid(cstate, &u->read.rd_stateid);
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008047}
8048
8049void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008050nfsd4_get_writestateid(struct nfsd4_compound_state *cstate,
8051 union nfsd4_op_u *u)
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008052{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008053 get_stateid(cstate, &u->write.wr_stateid);
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008054}