blob: cce2510b2ccaaf10793d382094e04f845b98a91d [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"
Chuck Leverdd5e3fb2020-04-05 11:42:29 -040054#include "trace.h"
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +040055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define NFSDDBG_FACILITY NFSDDBG_PROC
57
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050058#define all_ones {{~0,~0},~0}
59static const stateid_t one_stateid = {
60 .si_generation = ~0,
61 .si_opaque = all_ones,
62};
63static const stateid_t zero_stateid = {
64 /* all fields zero */
65};
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010066static const stateid_t currentstateid = {
67 .si_generation = 1,
68};
Trond Myklebustfb500a72017-11-03 08:00:12 -040069static const stateid_t close_stateid = {
70 .si_generation = 0xffffffffU,
71};
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050072
Andy Adamsonec6b5d72009-04-03 08:28:28 +030073static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070074
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050075#define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
76#define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010077#define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
Andrew Elbleae254dac2017-11-09 13:41:10 -050078#define CLOSE_STATEID(stateid) (!memcmp((stateid), &close_stateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* forward declarations */
Jeff Laytonf9c00c32014-07-23 16:17:41 -040081static bool check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner);
Trond Myklebust60116952014-07-29 21:34:06 -040082static void nfs4_free_ol_stateid(struct nfs4_stid *stid);
Scott Mayhew362063a2019-03-26 18:06:28 -040083void nfsd4_end_grace(struct nfsd_net *nn);
Olga Kornievskaia624322f2019-10-04 16:34:26 -040084static void _free_cpntf_state_locked(struct nfsd_net *nn, struct nfs4_cpntf_state *cps);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
J. Bruce Fields8b671b82009-02-22 14:51:34 -080086/* Locking: */
87
J. Bruce Fields8b671b82009-02-22 14:51:34 -080088/*
89 * Currently used for the del_recall_lru and file hash table. In an
90 * effort to decrease the scope of the client_mutex, this spinlock may
91 * eventually cover more:
92 */
Benny Halevycdc975052014-05-30 09:09:30 -040093static DEFINE_SPINLOCK(state_lock);
J. Bruce Fields8b671b82009-02-22 14:51:34 -080094
Andrew Elble4f34bd02017-11-08 17:29:51 -050095enum nfsd4_st_mutex_lock_subclass {
96 OPEN_STATEID_MUTEX = 0,
97 LOCK_STATEID_MUTEX = 1,
98};
99
Jeff Laytonb401be222014-07-29 21:34:33 -0400100/*
101 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
102 * the refcount on the open stateid to drop.
103 */
104static DECLARE_WAIT_QUEUE_HEAD(close_wq);
105
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400106/*
107 * A waitqueue where a writer to clients/#/ctl destroying a client can
108 * wait for cl_rpc_users to drop to 0 and then for the client to be
109 * unhashed.
110 */
111static DECLARE_WAIT_QUEUE_HEAD(expiry_wq);
112
Jeff Layton9258a2d2018-03-16 09:47:22 -0400113static struct kmem_cache *client_slab;
Christoph Hellwigabf11352014-05-21 07:43:03 -0700114static struct kmem_cache *openowner_slab;
115static struct kmem_cache *lockowner_slab;
116static struct kmem_cache *file_slab;
117static struct kmem_cache *stateid_slab;
118static struct kmem_cache *deleg_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +0200119static struct kmem_cache *odstate_slab;
NeilBrowne60d4392005-06-23 22:03:01 -0700120
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400121static void free_session(struct nfsd4_session *);
Benny Halevy508dc6e2012-02-23 17:40:52 -0800122
Julia Lawallc4cb8972015-11-21 22:57:39 +0100123static const struct nfsd4_callback_ops nfsd4_cb_recall_ops;
Jeff Layton76d348f2016-09-16 16:28:24 -0400124static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops;
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200125
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400126static bool is_session_dead(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -0800127{
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400128 return ses->se_flags & NFS4_SESSION_DEAD;
129}
130
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -0400131static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
132{
133 if (atomic_read(&ses->se_ref) > ref_held_by_me)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400134 return nfserr_jukebox;
135 ses->se_flags |= NFS4_SESSION_DEAD;
136 return nfs_ok;
137}
138
J. Bruce Fields221a6872013-04-01 22:23:49 -0400139static bool is_client_expired(struct nfs4_client *clp)
140{
141 return clp->cl_time == 0;
142}
143
J. Bruce Fields221a6872013-04-01 22:23:49 -0400144static __be32 get_client_locked(struct nfs4_client *clp)
145{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400146 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
147
148 lockdep_assert_held(&nn->client_lock);
149
J. Bruce Fields221a6872013-04-01 22:23:49 -0400150 if (is_client_expired(clp))
151 return nfserr_expired;
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400152 atomic_inc(&clp->cl_rpc_users);
J. Bruce Fields221a6872013-04-01 22:23:49 -0400153 return nfs_ok;
154}
155
156/* must be called under the client_lock */
157static inline void
158renew_client_locked(struct nfs4_client *clp)
159{
160 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
161
162 if (is_client_expired(clp)) {
163 WARN_ON(1);
164 printk("%s: client (clientid %08x/%08x) already expired\n",
165 __func__,
166 clp->cl_clientid.cl_boot,
167 clp->cl_clientid.cl_id);
168 return;
169 }
170
J. Bruce Fields221a6872013-04-01 22:23:49 -0400171 list_move_tail(&clp->cl_lru, &nn->client_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +0100172 clp->cl_time = ktime_get_boottime_seconds();
J. Bruce Fields221a6872013-04-01 22:23:49 -0400173}
174
Fengguang Wuba138432013-04-16 22:14:15 -0400175static void put_client_renew_locked(struct nfs4_client *clp)
J. Bruce Fields221a6872013-04-01 22:23:49 -0400176{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400177 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
178
179 lockdep_assert_held(&nn->client_lock);
180
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400181 if (!atomic_dec_and_test(&clp->cl_rpc_users))
J. Bruce Fields221a6872013-04-01 22:23:49 -0400182 return;
183 if (!is_client_expired(clp))
184 renew_client_locked(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400185 else
186 wake_up_all(&expiry_wq);
J. Bruce Fields221a6872013-04-01 22:23:49 -0400187}
188
Jeff Layton4b24ca72014-06-30 11:48:44 -0400189static void put_client_renew(struct nfs4_client *clp)
190{
191 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
192
J. Bruce Fields14ed14c2019-03-20 11:54:11 -0400193 if (!atomic_dec_and_lock(&clp->cl_rpc_users, &nn->client_lock))
Jeff Laytond6c249b2014-07-08 14:02:50 -0400194 return;
195 if (!is_client_expired(clp))
196 renew_client_locked(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -0400197 else
198 wake_up_all(&expiry_wq);
Jeff Layton4b24ca72014-06-30 11:48:44 -0400199 spin_unlock(&nn->client_lock);
200}
201
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400202static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
203{
204 __be32 status;
205
206 if (is_session_dead(ses))
207 return nfserr_badsession;
208 status = get_client_locked(ses->se_client);
209 if (status)
210 return status;
211 atomic_inc(&ses->se_ref);
212 return nfs_ok;
213}
214
215static void nfsd4_put_session_locked(struct nfsd4_session *ses)
216{
217 struct nfs4_client *clp = ses->se_client;
Trond Myklebust0a880a22014-07-30 08:27:10 -0400218 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
219
220 lockdep_assert_held(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400221
222 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
223 free_session(ses);
224 put_client_renew_locked(clp);
225}
226
227static void nfsd4_put_session(struct nfsd4_session *ses)
228{
229 struct nfs4_client *clp = ses->se_client;
230 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
231
232 spin_lock(&nn->client_lock);
233 nfsd4_put_session_locked(ses);
234 spin_unlock(&nn->client_lock);
235}
236
Jeff Layton76d348f2016-09-16 16:28:24 -0400237static struct nfsd4_blocked_lock *
238find_blocked_lock(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
239 struct nfsd_net *nn)
240{
241 struct nfsd4_blocked_lock *cur, *found = NULL;
242
Jeff Layton0cc11a62016-10-20 09:34:31 -0400243 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400244 list_for_each_entry(cur, &lo->lo_blocked, nbl_list) {
245 if (fh_match(fh, &cur->nbl_fh)) {
246 list_del_init(&cur->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -0400247 list_del_init(&cur->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -0400248 found = cur;
249 break;
250 }
251 }
Jeff Layton0cc11a62016-10-20 09:34:31 -0400252 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400253 if (found)
NeilBrowncb03f942018-11-30 10:04:08 +1100254 locks_delete_block(&found->nbl_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400255 return found;
256}
257
258static struct nfsd4_blocked_lock *
259find_or_allocate_block(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
260 struct nfsd_net *nn)
261{
262 struct nfsd4_blocked_lock *nbl;
263
264 nbl = find_blocked_lock(lo, fh, nn);
265 if (!nbl) {
266 nbl= kmalloc(sizeof(*nbl), GFP_KERNEL);
267 if (nbl) {
Vasily Averine1e83992020-03-27 07:50:40 +0300268 INIT_LIST_HEAD(&nbl->nbl_list);
269 INIT_LIST_HEAD(&nbl->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -0400270 fh_copy_shallow(&nbl->nbl_fh, fh);
271 locks_init_lock(&nbl->nbl_lock);
272 nfsd4_init_cb(&nbl->nbl_cb, lo->lo_owner.so_client,
273 &nfsd4_cb_notify_lock_ops,
274 NFSPROC4_CLNT_CB_NOTIFY_LOCK);
275 }
276 }
277 return nbl;
278}
279
280static void
281free_blocked_lock(struct nfsd4_blocked_lock *nbl)
282{
Jeff Layton6aaafc42019-04-22 12:34:23 -0400283 locks_delete_block(&nbl->nbl_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400284 locks_release_private(&nbl->nbl_lock);
285 kfree(nbl);
286}
287
Jeff Layton68ef3bc2018-03-16 11:32:02 -0400288static void
289remove_blocked_locks(struct nfs4_lockowner *lo)
290{
291 struct nfs4_client *clp = lo->lo_owner.so_client;
292 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
293 struct nfsd4_blocked_lock *nbl;
294 LIST_HEAD(reaplist);
295
296 /* Dequeue all blocked locks */
297 spin_lock(&nn->blocked_locks_lock);
298 while (!list_empty(&lo->lo_blocked)) {
299 nbl = list_first_entry(&lo->lo_blocked,
300 struct nfsd4_blocked_lock,
301 nbl_list);
302 list_del_init(&nbl->nbl_list);
303 list_move(&nbl->nbl_lru, &reaplist);
304 }
305 spin_unlock(&nn->blocked_locks_lock);
306
307 /* Now free them */
308 while (!list_empty(&reaplist)) {
309 nbl = list_first_entry(&reaplist, struct nfsd4_blocked_lock,
310 nbl_lru);
311 list_del_init(&nbl->nbl_lru);
Jeff Layton68ef3bc2018-03-16 11:32:02 -0400312 free_blocked_lock(nbl);
313 }
314}
315
Jeff Laytonf4564582019-04-22 12:34:24 -0400316static void
317nfsd4_cb_notify_lock_prepare(struct nfsd4_callback *cb)
318{
319 struct nfsd4_blocked_lock *nbl = container_of(cb,
320 struct nfsd4_blocked_lock, nbl_cb);
321 locks_delete_block(&nbl->nbl_lock);
322}
323
Jeff Layton76d348f2016-09-16 16:28:24 -0400324static int
325nfsd4_cb_notify_lock_done(struct nfsd4_callback *cb, struct rpc_task *task)
326{
327 /*
328 * Since this is just an optimization, we don't try very hard if it
329 * turns out not to succeed. We'll requeue it on NFS4ERR_DELAY, and
330 * just quit trying on anything else.
331 */
332 switch (task->tk_status) {
333 case -NFS4ERR_DELAY:
334 rpc_delay(task, 1 * HZ);
335 return 0;
336 default:
337 return 1;
338 }
339}
340
341static void
342nfsd4_cb_notify_lock_release(struct nfsd4_callback *cb)
343{
344 struct nfsd4_blocked_lock *nbl = container_of(cb,
345 struct nfsd4_blocked_lock, nbl_cb);
346
347 free_blocked_lock(nbl);
348}
349
350static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops = {
Jeff Laytonf4564582019-04-22 12:34:24 -0400351 .prepare = nfsd4_cb_notify_lock_prepare,
Jeff Layton76d348f2016-09-16 16:28:24 -0400352 .done = nfsd4_cb_notify_lock_done,
353 .release = nfsd4_cb_notify_lock_release,
354};
355
Kinglong Meeb5971af2014-08-22 10:18:43 -0400356static inline struct nfs4_stateowner *
357nfs4_get_stateowner(struct nfs4_stateowner *sop)
358{
359 atomic_inc(&sop->so_count);
360 return sop;
361}
362
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400363static int
Trond Myklebustd4f04892014-07-29 21:34:36 -0400364same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400365{
366 return (sop->so_owner.len == owner->len) &&
Trond Myklebustd4f04892014-07-29 21:34:36 -0400367 0 == memcmp(sop->so_owner.data, owner->data, owner->len);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400368}
369
370static struct nfs4_openowner *
371find_openstateowner_str_locked(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400372 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400373{
374 struct nfs4_stateowner *so;
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400375
Trond Myklebustd4f04892014-07-29 21:34:36 -0400376 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400377
Trond Myklebustd4f04892014-07-29 21:34:36 -0400378 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[hashval],
379 so_strhash) {
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400380 if (!so->so_is_open_owner)
381 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -0400382 if (same_owner_str(so, &open->op_owner))
383 return openowner(nfs4_get_stateowner(so));
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400384 }
385 return NULL;
386}
387
388static struct nfs4_openowner *
389find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400390 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400391{
392 struct nfs4_openowner *oo;
393
Trond Myklebustd4f04892014-07-29 21:34:36 -0400394 spin_lock(&clp->cl_lock);
395 oo = find_openstateowner_str_locked(hashval, open, clp);
396 spin_unlock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400397 return oo;
398}
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static inline u32
401opaque_hashval(const void *ptr, int nbytes)
402{
403 unsigned char *cptr = (unsigned char *) ptr;
404
405 u32 x = 0;
406 while (nbytes--) {
407 x *= 37;
408 x += *cptr++;
409 }
410 return x;
411}
412
Jeff Layton5b095e92014-10-23 08:01:02 -0400413static void nfsd4_free_file_rcu(struct rcu_head *rcu)
J. Bruce Fields32513b42011-10-13 16:00:16 -0400414{
Jeff Layton5b095e92014-10-23 08:01:02 -0400415 struct nfs4_file *fp = container_of(rcu, struct nfs4_file, fi_rcu);
416
417 kmem_cache_free(file_slab, fp);
J. Bruce Fields32513b42011-10-13 16:00:16 -0400418}
419
Christoph Hellwige6ba76e2014-08-14 08:50:16 +0200420void
NeilBrown13cd2182005-06-23 22:03:10 -0700421put_nfs4_file(struct nfs4_file *fi)
422{
Jeff Layton02e12152014-07-16 10:31:57 -0400423 might_lock(&state_lock);
424
Elena Reshetova818a34e2017-10-20 12:53:30 +0300425 if (refcount_dec_and_lock(&fi->fi_ref, &state_lock)) {
Jeff Layton5b095e92014-10-23 08:01:02 -0400426 hlist_del_rcu(&fi->fi_hash);
Benny Halevycdc975052014-05-30 09:09:30 -0400427 spin_unlock(&state_lock);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200428 WARN_ON_ONCE(!list_empty(&fi->fi_clnt_odstate));
Jeff Layton5b095e92014-10-23 08:01:02 -0400429 WARN_ON_ONCE(!list_empty(&fi->fi_delegations));
430 call_rcu(&fi->fi_rcu, nfsd4_free_file_rcu);
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800431 }
NeilBrown13cd2182005-06-23 22:03:10 -0700432}
433
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400434static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400435__nfs4_get_fd(struct nfs4_file *f, int oflag)
436{
437 if (f->fi_fds[oflag])
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400438 return nfsd_file_get(f->fi_fds[oflag]);
Trond Myklebustde186432014-07-10 14:07:26 -0400439 return NULL;
440}
441
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400442static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400443find_writeable_file_locked(struct nfs4_file *f)
444{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400445 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400446
447 lockdep_assert_held(&f->fi_lock);
448
449 ret = __nfs4_get_fd(f, O_WRONLY);
450 if (!ret)
451 ret = __nfs4_get_fd(f, O_RDWR);
452 return ret;
453}
454
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400455static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400456find_writeable_file(struct nfs4_file *f)
457{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400458 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400459
460 spin_lock(&f->fi_lock);
461 ret = find_writeable_file_locked(f);
462 spin_unlock(&f->fi_lock);
463
464 return ret;
465}
466
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400467static struct nfsd_file *
468find_readable_file_locked(struct nfs4_file *f)
Trond Myklebustde186432014-07-10 14:07:26 -0400469{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400470 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400471
472 lockdep_assert_held(&f->fi_lock);
473
474 ret = __nfs4_get_fd(f, O_RDONLY);
475 if (!ret)
476 ret = __nfs4_get_fd(f, O_RDWR);
477 return ret;
478}
479
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400480static struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400481find_readable_file(struct nfs4_file *f)
482{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400483 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400484
485 spin_lock(&f->fi_lock);
486 ret = find_readable_file_locked(f);
487 spin_unlock(&f->fi_lock);
488
489 return ret;
490}
491
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400492struct nfsd_file *
Trond Myklebustde186432014-07-10 14:07:26 -0400493find_any_file(struct nfs4_file *f)
494{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400495 struct nfsd_file *ret;
Trond Myklebustde186432014-07-10 14:07:26 -0400496
Trond Myklebusta451b122020-03-01 18:21:38 -0500497 if (!f)
498 return NULL;
Trond Myklebustde186432014-07-10 14:07:26 -0400499 spin_lock(&f->fi_lock);
500 ret = __nfs4_get_fd(f, O_RDWR);
501 if (!ret) {
502 ret = __nfs4_get_fd(f, O_WRONLY);
503 if (!ret)
504 ret = __nfs4_get_fd(f, O_RDONLY);
505 }
506 spin_unlock(&f->fi_lock);
507 return ret;
508}
509
Trond Myklebust02a35082014-07-25 07:34:22 -0400510static atomic_long_t num_delegations;
Zhang Yanfei697ce9b2013-02-22 16:35:47 -0800511unsigned long max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700512
513/*
514 * Open owner state (share locks)
515 */
516
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500517/* hash tables for lock and open owners */
518#define OWNER_HASH_BITS 8
519#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
520#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700521
Trond Myklebustd4f04892014-07-29 21:34:36 -0400522static unsigned int ownerstr_hashval(struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400523{
524 unsigned int ret;
525
526 ret = opaque_hashval(ownername->data, ownername->len);
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500527 return ret & OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400528}
NeilBrownef0f3392006-04-10 22:55:41 -0700529
NeilBrownef0f3392006-04-10 22:55:41 -0700530/* hash table for nfs4_file */
531#define FILE_HASH_BITS 8
532#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800533
Trond Myklebustca943212014-07-23 16:17:39 -0400534static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400535{
Trond Myklebustca943212014-07-23 16:17:39 -0400536 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
537}
538
539static unsigned int file_hashval(struct knfsd_fh *fh)
540{
541 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
542}
543
Jeff Layton89876f82013-04-02 09:01:59 -0400544static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700545
Jeff Layton12659652014-07-10 14:07:28 -0400546static void
547__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields34775652013-08-23 17:55:18 -0400548{
Jeff Layton7214e862014-07-10 14:07:33 -0400549 lockdep_assert_held(&fp->fi_lock);
550
Jeff Layton12659652014-07-10 14:07:28 -0400551 if (access & NFS4_SHARE_ACCESS_WRITE)
552 atomic_inc(&fp->fi_access[O_WRONLY]);
553 if (access & NFS4_SHARE_ACCESS_READ)
554 atomic_inc(&fp->fi_access[O_RDONLY]);
J. Bruce Fields34775652013-08-23 17:55:18 -0400555}
556
Jeff Layton12659652014-07-10 14:07:28 -0400557static __be32
558nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400559{
Jeff Layton7214e862014-07-10 14:07:33 -0400560 lockdep_assert_held(&fp->fi_lock);
561
Jeff Layton12659652014-07-10 14:07:28 -0400562 /* Does this access mode make sense? */
563 if (access & ~NFS4_SHARE_ACCESS_BOTH)
564 return nfserr_inval;
565
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400566 /* Does it conflict with a deny mode already set? */
567 if ((access & fp->fi_share_deny) != 0)
568 return nfserr_share_denied;
569
Jeff Layton12659652014-07-10 14:07:28 -0400570 __nfs4_file_get_access(fp, access);
571 return nfs_ok;
J. Bruce Fields998db522010-08-07 09:21:41 -0400572}
573
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400574static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
575{
576 /* Common case is that there is no deny mode. */
577 if (deny) {
578 /* Does this deny mode make sense? */
579 if (deny & ~NFS4_SHARE_DENY_BOTH)
580 return nfserr_inval;
581
582 if ((deny & NFS4_SHARE_DENY_READ) &&
583 atomic_read(&fp->fi_access[O_RDONLY]))
584 return nfserr_share_denied;
585
586 if ((deny & NFS4_SHARE_DENY_WRITE) &&
587 atomic_read(&fp->fi_access[O_WRONLY]))
588 return nfserr_share_denied;
589 }
590 return nfs_ok;
591}
592
J. Bruce Fields998db522010-08-07 09:21:41 -0400593static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400594{
Trond Myklebustde186432014-07-10 14:07:26 -0400595 might_lock(&fp->fi_lock);
596
597 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400598 struct nfsd_file *f1 = NULL;
599 struct nfsd_file *f2 = NULL;
Trond Myklebustde186432014-07-10 14:07:26 -0400600
Jeff Layton6d338b52014-07-10 14:07:29 -0400601 swap(f1, fp->fi_fds[oflag]);
J. Bruce Fields0c7c3e62013-03-28 20:37:14 -0400602 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
Jeff Layton6d338b52014-07-10 14:07:29 -0400603 swap(f2, fp->fi_fds[O_RDWR]);
Trond Myklebustde186432014-07-10 14:07:26 -0400604 spin_unlock(&fp->fi_lock);
605 if (f1)
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400606 nfsd_file_put(f1);
Trond Myklebustde186432014-07-10 14:07:26 -0400607 if (f2)
Jeff Laytonfd4f83f2019-08-18 14:18:52 -0400608 nfsd_file_put(f2);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400609 }
610}
611
Jeff Layton12659652014-07-10 14:07:28 -0400612static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400613{
Jeff Layton12659652014-07-10 14:07:28 -0400614 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
615
616 if (access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields998db522010-08-07 09:21:41 -0400617 __nfs4_file_put_access(fp, O_WRONLY);
Jeff Layton12659652014-07-10 14:07:28 -0400618 if (access & NFS4_SHARE_ACCESS_READ)
619 __nfs4_file_put_access(fp, O_RDONLY);
J. Bruce Fields998db522010-08-07 09:21:41 -0400620}
621
Sachin Bhamare8287f002015-04-27 14:50:14 +0200622/*
623 * Allocate a new open/delegation state counter. This is needed for
624 * pNFS for proper return on close semantics.
625 *
626 * Note that we only allocate it for pNFS-enabled exports, otherwise
627 * all pointers to struct nfs4_clnt_odstate are always NULL.
628 */
629static struct nfs4_clnt_odstate *
630alloc_clnt_odstate(struct nfs4_client *clp)
631{
632 struct nfs4_clnt_odstate *co;
633
634 co = kmem_cache_zalloc(odstate_slab, GFP_KERNEL);
635 if (co) {
636 co->co_client = clp;
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300637 refcount_set(&co->co_odcount, 1);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200638 }
639 return co;
640}
641
642static void
643hash_clnt_odstate_locked(struct nfs4_clnt_odstate *co)
644{
645 struct nfs4_file *fp = co->co_file;
646
647 lockdep_assert_held(&fp->fi_lock);
648 list_add(&co->co_perfile, &fp->fi_clnt_odstate);
649}
650
651static inline void
652get_clnt_odstate(struct nfs4_clnt_odstate *co)
653{
654 if (co)
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300655 refcount_inc(&co->co_odcount);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200656}
657
658static void
659put_clnt_odstate(struct nfs4_clnt_odstate *co)
660{
661 struct nfs4_file *fp;
662
663 if (!co)
664 return;
665
666 fp = co->co_file;
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300667 if (refcount_dec_and_lock(&co->co_odcount, &fp->fi_lock)) {
Sachin Bhamare8287f002015-04-27 14:50:14 +0200668 list_del(&co->co_perfile);
669 spin_unlock(&fp->fi_lock);
670
671 nfsd4_return_all_file_layouts(co->co_client, fp);
672 kmem_cache_free(odstate_slab, co);
673 }
674}
675
676static struct nfs4_clnt_odstate *
677find_or_hash_clnt_odstate(struct nfs4_file *fp, struct nfs4_clnt_odstate *new)
678{
679 struct nfs4_clnt_odstate *co;
680 struct nfs4_client *cl;
681
682 if (!new)
683 return NULL;
684
685 cl = new->co_client;
686
687 spin_lock(&fp->fi_lock);
688 list_for_each_entry(co, &fp->fi_clnt_odstate, co_perfile) {
689 if (co->co_client == cl) {
690 get_clnt_odstate(co);
691 goto out;
692 }
693 }
694 co = new;
695 co->co_file = fp;
696 hash_clnt_odstate_locked(new);
697out:
698 spin_unlock(&fp->fi_lock);
699 return co;
700}
701
Kinglong Meed19fb702017-01-18 19:04:42 +0800702struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab,
703 void (*sc_free)(struct nfs4_stid *))
J. Bruce Fields996e0932011-10-17 11:14:48 -0400704{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500705 struct nfs4_stid *stid;
706 int new_id;
707
Trond Myklebustf8338832014-07-25 07:34:19 -0400708 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500709 if (!stid)
710 return NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400711
Jeff Layton4770d722014-07-29 21:34:10 -0400712 idr_preload(GFP_KERNEL);
713 spin_lock(&cl->cl_lock);
J. Bruce Fields78599c42019-04-22 15:26:23 -0400714 /* Reserving 0 for start of file in nfsdfs "states" file: */
715 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 1, 0, GFP_NOWAIT);
Jeff Layton4770d722014-07-29 21:34:10 -0400716 spin_unlock(&cl->cl_lock);
717 idr_preload_end();
Tejun Heoebd6c702013-03-13 14:59:37 -0700718 if (new_id < 0)
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500719 goto out_free;
Kinglong Meed19fb702017-01-18 19:04:42 +0800720
721 stid->sc_free = sc_free;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500722 stid->sc_client = cl;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500723 stid->sc_stateid.si_opaque.so_id = new_id;
724 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
725 /* Will be incremented before return to client: */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300726 refcount_set(&stid->sc_count, 1);
Jeff Layton9767feb2015-10-01 09:05:50 -0400727 spin_lock_init(&stid->sc_lock);
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400728 INIT_LIST_HEAD(&stid->sc_cp_list);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500729
J. Bruce Fields996e0932011-10-17 11:14:48 -0400730 /*
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500731 * It shouldn't be a problem to reuse an opaque stateid value.
732 * I don't think it is for 4.1. But with 4.0 I worry that, for
733 * example, a stray write retransmission could be accepted by
734 * the server when it should have been rejected. Therefore,
735 * adopt a trick from the sctp code to attempt to maximize the
736 * amount of time until an id is reused, by ensuring they always
737 * "increase" (mod INT_MAX):
J. Bruce Fields996e0932011-10-17 11:14:48 -0400738 */
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500739 return stid;
740out_free:
Wei Yongjun2c44a232013-04-09 14:15:31 +0800741 kmem_cache_free(slab, stid);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500742 return NULL;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400743}
744
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400745/*
746 * Create a unique stateid_t to represent each COPY.
747 */
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400748static int nfs4_init_cp_state(struct nfsd_net *nn, copy_stateid_t *stid,
749 unsigned char sc_type)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400750{
751 int new_id;
752
Arnd Bergmann9cc76802019-10-31 15:53:13 +0100753 stid->stid.si_opaque.so_clid.cl_boot = (u32)nn->boot_time;
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400754 stid->stid.si_opaque.so_clid.cl_id = nn->s2s_cp_cl_id;
755 stid->sc_type = sc_type;
756
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400757 idr_preload(GFP_KERNEL);
758 spin_lock(&nn->s2s_cp_lock);
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400759 new_id = idr_alloc_cyclic(&nn->s2s_cp_stateids, stid, 0, 0, GFP_NOWAIT);
760 stid->stid.si_opaque.so_id = new_id;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400761 spin_unlock(&nn->s2s_cp_lock);
762 idr_preload_end();
763 if (new_id < 0)
764 return 0;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400765 return 1;
766}
767
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400768int nfs4_init_copy_state(struct nfsd_net *nn, struct nfsd4_copy *copy)
769{
770 return nfs4_init_cp_state(nn, &copy->cp_stateid, NFS4_COPY_STID);
771}
772
773struct nfs4_cpntf_state *nfs4_alloc_init_cpntf_state(struct nfsd_net *nn,
774 struct nfs4_stid *p_stid)
775{
776 struct nfs4_cpntf_state *cps;
777
778 cps = kzalloc(sizeof(struct nfs4_cpntf_state), GFP_KERNEL);
779 if (!cps)
780 return NULL;
Arnd Bergmann20b7d862019-11-04 16:31:52 +0100781 cps->cpntf_time = ktime_get_boottime_seconds();
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400782 refcount_set(&cps->cp_stateid.sc_count, 1);
783 if (!nfs4_init_cp_state(nn, &cps->cp_stateid, NFS4_COPYNOTIFY_STID))
784 goto out_free;
785 spin_lock(&nn->s2s_cp_lock);
786 list_add(&cps->cp_list, &p_stid->sc_cp_list);
787 spin_unlock(&nn->s2s_cp_lock);
788 return cps;
789out_free:
790 kfree(cps);
791 return NULL;
792}
793
794void nfs4_free_copy_state(struct nfsd4_copy *copy)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400795{
796 struct nfsd_net *nn;
797
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400798 WARN_ON_ONCE(copy->cp_stateid.sc_type != NFS4_COPY_STID);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400799 nn = net_generic(copy->cp_clp->net, nfsd_net_id);
800 spin_lock(&nn->s2s_cp_lock);
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400801 idr_remove(&nn->s2s_cp_stateids,
802 copy->cp_stateid.stid.si_opaque.so_id);
803 spin_unlock(&nn->s2s_cp_lock);
804}
805
806static void nfs4_free_cpntf_statelist(struct net *net, struct nfs4_stid *stid)
807{
808 struct nfs4_cpntf_state *cps;
809 struct nfsd_net *nn;
810
811 nn = net_generic(net, nfsd_net_id);
812 spin_lock(&nn->s2s_cp_lock);
813 while (!list_empty(&stid->sc_cp_list)) {
814 cps = list_first_entry(&stid->sc_cp_list,
815 struct nfs4_cpntf_state, cp_list);
816 _free_cpntf_state_locked(nn, cps);
817 }
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -0400818 spin_unlock(&nn->s2s_cp_lock);
819}
820
Jeff Laytonb49e0842014-07-29 21:34:11 -0400821static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400822{
Trond Myklebust60116952014-07-29 21:34:06 -0400823 struct nfs4_stid *stid;
Trond Myklebust60116952014-07-29 21:34:06 -0400824
Kinglong Meed19fb702017-01-18 19:04:42 +0800825 stid = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_ol_stateid);
Trond Myklebust60116952014-07-29 21:34:06 -0400826 if (!stid)
827 return NULL;
828
Kinglong Meed19fb702017-01-18 19:04:42 +0800829 return openlockstateid(stid);
Trond Myklebust60116952014-07-29 21:34:06 -0400830}
831
832static void nfs4_free_deleg(struct nfs4_stid *stid)
833{
Trond Myklebust60116952014-07-29 21:34:06 -0400834 kmem_cache_free(deleg_slab, stid);
835 atomic_long_dec(&num_delegations);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400836}
837
NeilBrown6282cd52014-06-04 17:39:26 +1000838/*
839 * When we recall a delegation, we should be careful not to hand it
840 * out again straight away.
841 * To ensure this we keep a pair of bloom filters ('new' and 'old')
842 * in which the filehandles of recalled delegations are "stored".
843 * If a filehandle appear in either filter, a delegation is blocked.
844 * When a delegation is recalled, the filehandle is stored in the "new"
845 * filter.
846 * Every 30 seconds we swap the filters and clear the "new" one,
847 * unless both are empty of course.
848 *
849 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
850 * low 3 bytes as hash-table indices.
851 *
Jeff Laytonf54fe962014-07-25 07:34:26 -0400852 * 'blocked_delegations_lock', which is always taken in block_delegations(),
NeilBrown6282cd52014-06-04 17:39:26 +1000853 * is used to manage concurrent access. Testing does not need the lock
854 * except when swapping the two filters.
855 */
Jeff Laytonf54fe962014-07-25 07:34:26 -0400856static DEFINE_SPINLOCK(blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000857static struct bloom_pair {
858 int entries, old_entries;
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200859 time64_t swap_time;
NeilBrown6282cd52014-06-04 17:39:26 +1000860 int new; /* index into 'set' */
861 DECLARE_BITMAP(set[2], 256);
862} blocked_delegations;
863
864static int delegation_blocked(struct knfsd_fh *fh)
865{
866 u32 hash;
867 struct bloom_pair *bd = &blocked_delegations;
868
869 if (bd->entries == 0)
870 return 0;
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200871 if (ktime_get_seconds() - bd->swap_time > 30) {
Jeff Laytonf54fe962014-07-25 07:34:26 -0400872 spin_lock(&blocked_delegations_lock);
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200873 if (ktime_get_seconds() - bd->swap_time > 30) {
NeilBrown6282cd52014-06-04 17:39:26 +1000874 bd->entries -= bd->old_entries;
875 bd->old_entries = bd->entries;
876 memset(bd->set[bd->new], 0,
877 sizeof(bd->set[0]));
878 bd->new = 1-bd->new;
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200879 bd->swap_time = ktime_get_seconds();
NeilBrown6282cd52014-06-04 17:39:26 +1000880 }
Jeff Laytonf54fe962014-07-25 07:34:26 -0400881 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000882 }
Daniel Borkmann87545892014-12-10 16:33:11 +0100883 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000884 if (test_bit(hash&255, bd->set[0]) &&
885 test_bit((hash>>8)&255, bd->set[0]) &&
886 test_bit((hash>>16)&255, bd->set[0]))
887 return 1;
888
889 if (test_bit(hash&255, bd->set[1]) &&
890 test_bit((hash>>8)&255, bd->set[1]) &&
891 test_bit((hash>>16)&255, bd->set[1]))
892 return 1;
893
894 return 0;
895}
896
897static void block_delegations(struct knfsd_fh *fh)
898{
899 u32 hash;
900 struct bloom_pair *bd = &blocked_delegations;
901
Daniel Borkmann87545892014-12-10 16:33:11 +0100902 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000903
Jeff Laytonf54fe962014-07-25 07:34:26 -0400904 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000905 __set_bit(hash&255, bd->set[bd->new]);
906 __set_bit((hash>>8)&255, bd->set[bd->new]);
907 __set_bit((hash>>16)&255, bd->set[bd->new]);
908 if (bd->entries == 0)
Arnd Bergmannb3f255e2017-10-20 11:25:34 +0200909 bd->swap_time = ktime_get_seconds();
NeilBrown6282cd52014-06-04 17:39:26 +1000910 bd->entries += 1;
Jeff Laytonf54fe962014-07-25 07:34:26 -0400911 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000912}
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914static struct nfs4_delegation *
J. Bruce Fields86d29b12018-02-21 15:27:28 -0500915alloc_init_deleg(struct nfs4_client *clp, struct nfs4_file *fp,
916 struct svc_fh *current_fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +0200917 struct nfs4_clnt_odstate *odstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 struct nfs4_delegation *dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400920 long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 dprintk("NFSD alloc_init_deleg\n");
Trond Myklebust02a35082014-07-25 07:34:22 -0400923 n = atomic_long_inc_return(&num_delegations);
924 if (n < 0 || n > max_delegations)
925 goto out_dec;
NeilBrown6282cd52014-06-04 17:39:26 +1000926 if (delegation_blocked(&current_fh->fh_handle))
Trond Myklebust02a35082014-07-25 07:34:22 -0400927 goto out_dec;
Kinglong Meed19fb702017-01-18 19:04:42 +0800928 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab, nfs4_free_deleg));
NeilBrown5b2d21c2005-06-23 22:03:04 -0700929 if (dp == NULL)
Trond Myklebust02a35082014-07-25 07:34:22 -0400930 goto out_dec;
Trond Myklebust60116952014-07-29 21:34:06 -0400931
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400932 /*
933 * delegation seqid's are never incremented. The 4.1 special
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400934 * meaning of seqid 0 isn't meaningful, really, but let's avoid
935 * 0 anyway just for consistency and use 1:
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400936 */
937 dp->dl_stid.sc_stateid.si_generation = 1;
NeilBrownea1da632005-06-23 22:04:17 -0700938 INIT_LIST_HEAD(&dp->dl_perfile);
939 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 INIT_LIST_HEAD(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200941 dp->dl_clnt_odstate = odstate;
942 get_clnt_odstate(odstate);
J. Bruce Fields99c41512013-05-21 16:21:25 -0400943 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
Christoph Hellwigf0b5de12014-09-24 12:19:18 +0200944 dp->dl_retries = 1;
945 nfsd4_init_cb(&dp->dl_recall, dp->dl_stid.sc_client,
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200946 &nfsd4_cb_recall_ops, NFSPROC4_CLNT_CB_RECALL);
J. Bruce Fields86d29b12018-02-21 15:27:28 -0500947 get_nfs4_file(fp);
948 dp->dl_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400950out_dec:
951 atomic_long_dec(&num_delegations);
952 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
955void
Trond Myklebust60116952014-07-29 21:34:06 -0400956nfs4_put_stid(struct nfs4_stid *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Trond Myklebust11b91642014-07-29 21:34:08 -0400958 struct nfs4_file *fp = s->sc_file;
Trond Myklebust60116952014-07-29 21:34:06 -0400959 struct nfs4_client *clp = s->sc_client;
960
Jeff Layton4770d722014-07-29 21:34:10 -0400961 might_lock(&clp->cl_lock);
962
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300963 if (!refcount_dec_and_lock(&s->sc_count, &clp->cl_lock)) {
Jeff Laytonb401be222014-07-29 21:34:33 -0400964 wake_up_all(&close_wq);
Trond Myklebust60116952014-07-29 21:34:06 -0400965 return;
Jeff Laytonb401be222014-07-29 21:34:33 -0400966 }
Trond Myklebust60116952014-07-29 21:34:06 -0400967 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400968 nfs4_free_cpntf_statelist(clp->net, s);
Jeff Layton4770d722014-07-29 21:34:10 -0400969 spin_unlock(&clp->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400970 s->sc_free(s);
Trond Myklebust11b91642014-07-29 21:34:08 -0400971 if (fp)
972 put_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Jeff Layton9767feb2015-10-01 09:05:50 -0400975void
976nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid)
977{
978 stateid_t *src = &stid->sc_stateid;
979
980 spin_lock(&stid->sc_lock);
981 if (unlikely(++src->si_generation == 0))
982 src->si_generation = 1;
983 memcpy(dst, src, sizeof(*dst));
984 spin_unlock(&stid->sc_lock);
985}
986
J. Bruce Fields353601e2018-02-16 14:29:42 -0500987static void put_deleg_file(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400989 struct nfsd_file *nf = NULL;
J. Bruce Fields353601e2018-02-16 14:29:42 -0500990
991 spin_lock(&fp->fi_lock);
992 if (--fp->fi_delegees == 0)
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400993 swap(nf, fp->fi_deleg_file);
J. Bruce Fields353601e2018-02-16 14:29:42 -0500994 spin_unlock(&fp->fi_lock);
995
Jeff Laytoneb82dd32019-08-18 14:18:53 -0400996 if (nf)
997 nfsd_file_put(nf);
J. Bruce Fields353601e2018-02-16 14:29:42 -0500998}
999
1000static void nfs4_unlock_deleg_lease(struct nfs4_delegation *dp)
1001{
J. Bruce Fieldscba7b3d2018-02-15 15:50:49 -05001002 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001003 struct nfsd_file *nf = fp->fi_deleg_file;
Jeff Layton417c6622014-07-21 09:34:57 -04001004
J. Bruce Fieldsb8232d32018-02-15 15:29:15 -05001005 WARN_ON_ONCE(!fp->fi_delegees);
1006
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001007 vfs_setlease(nf->nf_file, F_UNLCK, NULL, (void **)&dp);
J. Bruce Fields353601e2018-02-16 14:29:42 -05001008 put_deleg_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001011static void destroy_unhashed_deleg(struct nfs4_delegation *dp)
1012{
1013 put_clnt_odstate(dp->dl_clnt_odstate);
J. Bruce Fields353601e2018-02-16 14:29:42 -05001014 nfs4_unlock_deleg_lease(dp);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001015 nfs4_put_stid(&dp->dl_stid);
1016}
1017
Christoph Hellwigcd61c522014-08-14 08:44:57 +02001018void nfs4_unhash_stid(struct nfs4_stid *s)
J. Bruce Fields6136d2b2011-09-23 16:21:15 -04001019{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05001020 s->sc_type = 0;
J. Bruce Fields6136d2b2011-09-23 16:21:15 -04001021}
1022
Andrew Elble34ed9872015-10-15 12:07:28 -04001023/**
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001024 * nfs4_delegation_exists - Discover if this delegation already exists
Andrew Elble34ed9872015-10-15 12:07:28 -04001025 * @clp: a pointer to the nfs4_client we're granting a delegation to
1026 * @fp: a pointer to the nfs4_file we're granting a delegation on
1027 *
1028 * Return:
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001029 * On success: true iff an existing delegation is found
Andrew Elble34ed9872015-10-15 12:07:28 -04001030 */
1031
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001032static bool
1033nfs4_delegation_exists(struct nfs4_client *clp, struct nfs4_file *fp)
Benny Halevy931ee562014-05-30 09:09:27 -04001034{
Andrew Elble34ed9872015-10-15 12:07:28 -04001035 struct nfs4_delegation *searchdp = NULL;
1036 struct nfs4_client *searchclp = NULL;
1037
Benny Halevycdc975052014-05-30 09:09:30 -04001038 lockdep_assert_held(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04001039 lockdep_assert_held(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -04001040
Andrew Elble34ed9872015-10-15 12:07:28 -04001041 list_for_each_entry(searchdp, &fp->fi_delegations, dl_perfile) {
1042 searchclp = searchdp->dl_stid.sc_client;
1043 if (clp == searchclp) {
Fengguang Wu51d87bc2018-03-22 13:37:20 +08001044 return true;
Andrew Elble34ed9872015-10-15 12:07:28 -04001045 }
1046 }
Fengguang Wu51d87bc2018-03-22 13:37:20 +08001047 return false;
Andrew Elble34ed9872015-10-15 12:07:28 -04001048}
1049
1050/**
1051 * hash_delegation_locked - Add a delegation to the appropriate lists
1052 * @dp: a pointer to the nfs4_delegation we are adding.
1053 * @fp: a pointer to the nfs4_file we're granting a delegation on
1054 *
1055 * Return:
1056 * On success: NULL if the delegation was successfully hashed.
1057 *
1058 * On error: -EAGAIN if one was previously granted to this
1059 * nfs4_client for this nfs4_file. Delegation is not hashed.
1060 *
1061 */
1062
1063static int
1064hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
1065{
Andrew Elble34ed9872015-10-15 12:07:28 -04001066 struct nfs4_client *clp = dp->dl_stid.sc_client;
1067
1068 lockdep_assert_held(&state_lock);
1069 lockdep_assert_held(&fp->fi_lock);
1070
J. Bruce Fields68b18f52018-02-19 11:38:33 -05001071 if (nfs4_delegation_exists(clp, fp))
1072 return -EAGAIN;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03001073 refcount_inc(&dp->dl_stid.sc_count);
Benny Halevy3fb87d12014-05-30 09:09:31 -04001074 dp->dl_stid.sc_type = NFS4_DELEG_STID;
Benny Halevy931ee562014-05-30 09:09:27 -04001075 list_add(&dp->dl_perfile, &fp->fi_delegations);
Andrew Elble34ed9872015-10-15 12:07:28 -04001076 list_add(&dp->dl_perclnt, &clp->cl_delegations);
1077 return 0;
Benny Halevy931ee562014-05-30 09:09:27 -04001078}
1079
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001080static bool
Jeff Layton42690672014-07-25 07:34:20 -04001081unhash_delegation_locked(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Trond Myklebust11b91642014-07-29 21:34:08 -04001083 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Layton02e12152014-07-16 10:31:57 -04001084
Jeff Layton42690672014-07-25 07:34:20 -04001085 lockdep_assert_held(&state_lock);
1086
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001087 if (list_empty(&dp->dl_perfile))
1088 return false;
1089
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04001090 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
Jeff Laytond55a1662014-07-22 13:52:06 -04001091 /* Ensure that deleg break won't try to requeue it */
1092 ++dp->dl_time;
Jeff Layton417c6622014-07-21 09:34:57 -04001093 spin_lock(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -04001094 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 list_del_init(&dp->dl_recall_lru);
Jeff Layton02e12152014-07-16 10:31:57 -04001096 list_del_init(&dp->dl_perfile);
1097 spin_unlock(&fp->fi_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001098 return true;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001099}
1100
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001101static void destroy_delegation(struct nfs4_delegation *dp)
1102{
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001103 bool unhashed;
1104
Jeff Layton42690672014-07-25 07:34:20 -04001105 spin_lock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001106 unhashed = unhash_delegation_locked(dp);
Jeff Layton42690672014-07-25 07:34:20 -04001107 spin_unlock(&state_lock);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001108 if (unhashed)
1109 destroy_unhashed_deleg(dp);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001110}
1111
1112static void revoke_delegation(struct nfs4_delegation *dp)
1113{
1114 struct nfs4_client *clp = dp->dl_stid.sc_client;
1115
Jeff Layton2d4a5322014-07-25 07:34:21 -04001116 WARN_ON(!list_empty(&dp->dl_recall_lru));
1117
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001118 if (clp->cl_minorversion) {
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001119 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001120 refcount_inc(&dp->dl_stid.sc_count);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001121 spin_lock(&clp->cl_lock);
1122 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
1123 spin_unlock(&clp->cl_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001124 }
J. Bruce Fields0af6e692018-02-21 15:11:03 -05001125 destroy_unhashed_deleg(dp);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001126}
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128/*
1129 * SETCLIENTID state
1130 */
1131
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001132static unsigned int clientid_hashval(u32 id)
1133{
1134 return id & CLIENT_HASH_MASK;
1135}
1136
Scott Mayhew6b189102019-03-26 18:06:26 -04001137static unsigned int clientstr_hashval(struct xdr_netobj name)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001138{
Scott Mayhew6b189102019-03-26 18:06:26 -04001139 return opaque_hashval(name.data, 8) & CLIENT_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/*
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001143 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1144 * st_{access,deny}_bmap field of the stateid, in order to track not
1145 * only what share bits are currently in force, but also what
1146 * combinations of share bits previous opens have used. This allows us
1147 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1148 * return an error if the client attempt to downgrade to a combination
1149 * of share bits not explicable by closing some of its previous opens.
1150 *
1151 * XXX: This enforcement is actually incomplete, since we don't keep
1152 * track of access/deny bit combinations; so, e.g., we allow:
1153 *
1154 * OPEN allow read, deny write
1155 * OPEN allow both, deny none
1156 * DOWNGRADE allow read, deny none
1157 *
1158 * which we should reject.
1159 */
Jeff Layton5ae037e2012-05-11 09:45:11 -04001160static unsigned int
1161bmap_to_share_mode(unsigned long bmap) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001162 int i;
Jeff Layton5ae037e2012-05-11 09:45:11 -04001163 unsigned int access = 0;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001164
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001165 for (i = 1; i < 4; i++) {
1166 if (test_bit(i, &bmap))
Jeff Layton5ae037e2012-05-11 09:45:11 -04001167 access |= i;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001168 }
Jeff Layton5ae037e2012-05-11 09:45:11 -04001169 return access;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001170}
1171
Jeff Layton82c5ff12012-05-11 09:45:13 -04001172/* set share access for a given stateid */
1173static inline void
1174set_access(u32 access, struct nfs4_ol_stateid *stp)
1175{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001176 unsigned char mask = 1 << access;
1177
1178 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1179 stp->st_access_bmap |= mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001180}
1181
1182/* clear share access for a given stateid */
1183static inline void
1184clear_access(u32 access, struct nfs4_ol_stateid *stp)
1185{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001186 unsigned char mask = 1 << access;
1187
1188 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1189 stp->st_access_bmap &= ~mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001190}
1191
1192/* test whether a given stateid has access */
1193static inline bool
1194test_access(u32 access, struct nfs4_ol_stateid *stp)
1195{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001196 unsigned char mask = 1 << access;
1197
1198 return (bool)(stp->st_access_bmap & mask);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001199}
1200
Jeff Laytonce0fc432012-05-11 09:45:14 -04001201/* set share deny for a given stateid */
1202static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001203set_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001204{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001205 unsigned char mask = 1 << deny;
1206
1207 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1208 stp->st_deny_bmap |= mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001209}
1210
1211/* clear share deny for a given stateid */
1212static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001213clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001214{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001215 unsigned char mask = 1 << deny;
1216
1217 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1218 stp->st_deny_bmap &= ~mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001219}
1220
1221/* test whether a given stateid is denying specific access */
1222static inline bool
Jeff Laytonc11c5912014-07-10 14:07:30 -04001223test_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001224{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001225 unsigned char mask = 1 << deny;
1226
1227 return (bool)(stp->st_deny_bmap & mask);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001228}
1229
1230static int nfs4_access_to_omode(u32 access)
1231{
J. Bruce Fields8f34a432010-09-02 15:23:16 -04001232 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001233 case NFS4_SHARE_ACCESS_READ:
1234 return O_RDONLY;
1235 case NFS4_SHARE_ACCESS_WRITE:
1236 return O_WRONLY;
1237 case NFS4_SHARE_ACCESS_BOTH:
1238 return O_RDWR;
1239 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05001240 WARN_ON_ONCE(1);
1241 return O_RDONLY;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001242}
1243
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001244/*
1245 * A stateid that had a deny mode associated with it is being released
1246 * or downgraded. Recalculate the deny mode on the file.
1247 */
1248static void
1249recalculate_deny_mode(struct nfs4_file *fp)
1250{
1251 struct nfs4_ol_stateid *stp;
1252
1253 spin_lock(&fp->fi_lock);
1254 fp->fi_share_deny = 0;
1255 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
1256 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
1257 spin_unlock(&fp->fi_lock);
1258}
1259
1260static void
1261reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
1262{
1263 int i;
1264 bool change = false;
1265
1266 for (i = 1; i < 4; i++) {
1267 if ((i & deny) != i) {
1268 change = true;
1269 clear_deny(i, stp);
1270 }
1271 }
1272
1273 /* Recalculate per-file deny mode if there was a change */
1274 if (change)
Trond Myklebust11b91642014-07-29 21:34:08 -04001275 recalculate_deny_mode(stp->st_stid.sc_file);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001276}
1277
Jeff Layton82c5ff12012-05-11 09:45:13 -04001278/* release all access and file references for a given stateid */
1279static void
1280release_all_access(struct nfs4_ol_stateid *stp)
1281{
1282 int i;
Trond Myklebust11b91642014-07-29 21:34:08 -04001283 struct nfs4_file *fp = stp->st_stid.sc_file;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001284
1285 if (fp && stp->st_deny_bmap != 0)
1286 recalculate_deny_mode(fp);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001287
1288 for (i = 1; i < 4; i++) {
1289 if (test_access(i, stp))
Trond Myklebust11b91642014-07-29 21:34:08 -04001290 nfs4_file_put_access(stp->st_stid.sc_file, i);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001291 clear_access(i, stp);
1292 }
1293}
1294
Kinglong Meed50ffde2015-07-16 12:05:07 +08001295static inline void nfs4_free_stateowner(struct nfs4_stateowner *sop)
1296{
1297 kfree(sop->so_owner.data);
1298 sop->so_ops->so_free(sop);
1299}
1300
Jeff Layton6b180f02014-07-29 21:34:26 -04001301static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
1302{
Jeff Laytona819ecc2014-07-29 21:34:38 -04001303 struct nfs4_client *clp = sop->so_client;
1304
1305 might_lock(&clp->cl_lock);
1306
1307 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock))
Jeff Layton6b180f02014-07-29 21:34:26 -04001308 return;
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001309 sop->so_ops->so_unhash(sop);
Jeff Laytona819ecc2014-07-29 21:34:38 -04001310 spin_unlock(&clp->cl_lock);
Kinglong Meed50ffde2015-07-16 12:05:07 +08001311 nfs4_free_stateowner(sop);
Jeff Layton6b180f02014-07-29 21:34:26 -04001312}
1313
Trond Myklebusta451b122020-03-01 18:21:38 -05001314static bool
1315nfs4_ol_stateid_unhashed(const struct nfs4_ol_stateid *stp)
1316{
1317 return list_empty(&stp->st_perfile);
1318}
1319
Jeff Laytone8568732015-08-24 12:41:47 -04001320static bool unhash_ol_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001321{
Trond Myklebust11b91642014-07-29 21:34:08 -04001322 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -04001323
Jeff Layton1c755dc2014-07-29 21:34:12 -04001324 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
1325
Jeff Laytone8568732015-08-24 12:41:47 -04001326 if (list_empty(&stp->st_perfile))
1327 return false;
1328
Trond Myklebust1d31a252014-07-10 14:07:25 -04001329 spin_lock(&fp->fi_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001330 list_del_init(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -04001331 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001332 list_del(&stp->st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001333 return true;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001334}
1335
Trond Myklebust60116952014-07-29 21:34:06 -04001336static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001337{
Trond Myklebust60116952014-07-29 21:34:06 -04001338 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -04001339
Sachin Bhamare8287f002015-04-27 14:50:14 +02001340 put_clnt_odstate(stp->st_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04001341 release_all_access(stp);
Jeff Laytond3134b12014-07-29 21:34:32 -04001342 if (stp->st_stateowner)
1343 nfs4_put_stateowner(stp->st_stateowner);
Trond Myklebust60116952014-07-29 21:34:06 -04001344 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001345}
1346
Jeff Laytonb49e0842014-07-29 21:34:11 -04001347static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001348{
Jeff Laytonb49e0842014-07-29 21:34:11 -04001349 struct nfs4_ol_stateid *stp = openlockstateid(stid);
1350 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001351 struct nfsd_file *nf;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001352
Jeff Laytoneb82dd32019-08-18 14:18:53 -04001353 nf = find_any_file(stp->st_stid.sc_file);
1354 if (nf) {
1355 get_file(nf->nf_file);
1356 filp_close(nf->nf_file, (fl_owner_t)lo);
1357 nfsd_file_put(nf);
1358 }
Jeff Laytonb49e0842014-07-29 21:34:11 -04001359 nfs4_free_ol_stateid(stid);
1360}
1361
Jeff Layton2c41beb2014-07-29 21:34:41 -04001362/*
1363 * Put the persistent reference to an already unhashed generic stateid, while
1364 * holding the cl_lock. If it's the last reference, then put it onto the
1365 * reaplist for later destruction.
1366 */
1367static void put_ol_stateid_locked(struct nfs4_ol_stateid *stp,
1368 struct list_head *reaplist)
1369{
1370 struct nfs4_stid *s = &stp->st_stid;
1371 struct nfs4_client *clp = s->sc_client;
1372
1373 lockdep_assert_held(&clp->cl_lock);
1374
1375 WARN_ON_ONCE(!list_empty(&stp->st_locks));
1376
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03001377 if (!refcount_dec_and_test(&s->sc_count)) {
Jeff Layton2c41beb2014-07-29 21:34:41 -04001378 wake_up_all(&close_wq);
1379 return;
1380 }
1381
1382 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
1383 list_add(&stp->st_locks, reaplist);
1384}
1385
Jeff Laytone8568732015-08-24 12:41:47 -04001386static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Layton3c1c9952014-07-29 21:34:39 -04001387{
Chuck Leverf46c4452016-10-29 18:19:03 -04001388 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001389
Trond Myklebusta451b122020-03-01 18:21:38 -05001390 if (!unhash_ol_stateid(stp))
1391 return false;
Jeff Layton3c1c9952014-07-29 21:34:39 -04001392 list_del_init(&stp->st_locks);
Christoph Hellwigcd61c522014-08-14 08:44:57 +02001393 nfs4_unhash_stid(&stp->st_stid);
Trond Myklebusta451b122020-03-01 18:21:38 -05001394 return true;
Jeff Layton3c1c9952014-07-29 21:34:39 -04001395}
1396
Jeff Layton5adfd882014-07-29 21:34:31 -04001397static void release_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Laytonb49e0842014-07-29 21:34:11 -04001398{
Chuck Leverf46c4452016-10-29 18:19:03 -04001399 struct nfs4_client *clp = stp->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04001400 bool unhashed;
Jeff Layton1c755dc2014-07-29 21:34:12 -04001401
Chuck Leverf46c4452016-10-29 18:19:03 -04001402 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001403 unhashed = unhash_lock_stateid(stp);
Chuck Leverf46c4452016-10-29 18:19:03 -04001404 spin_unlock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001405 if (unhashed)
1406 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001407}
1408
Trond Myklebustc58c6612014-07-29 21:34:35 -04001409static void unhash_lockowner_locked(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001410{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001411 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustc58c6612014-07-29 21:34:35 -04001412
Trond Myklebustd4f04892014-07-29 21:34:36 -04001413 lockdep_assert_held(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04001414
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001415 list_del_init(&lo->lo_owner.so_strhash);
1416}
1417
Jeff Layton2c41beb2014-07-29 21:34:41 -04001418/*
1419 * Free a list of generic stateids that were collected earlier after being
1420 * fully unhashed.
1421 */
1422static void
1423free_ol_stateid_reaplist(struct list_head *reaplist)
1424{
1425 struct nfs4_ol_stateid *stp;
Kinglong Meefb94d762014-08-05 21:20:27 +08001426 struct nfs4_file *fp;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001427
1428 might_sleep();
1429
1430 while (!list_empty(reaplist)) {
1431 stp = list_first_entry(reaplist, struct nfs4_ol_stateid,
1432 st_locks);
1433 list_del(&stp->st_locks);
Kinglong Meefb94d762014-08-05 21:20:27 +08001434 fp = stp->st_stid.sc_file;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001435 stp->st_stid.sc_free(&stp->st_stid);
Kinglong Meefb94d762014-08-05 21:20:27 +08001436 if (fp)
1437 put_nfs4_file(fp);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001438 }
1439}
1440
Jeff Laytond83017f2014-07-29 21:34:42 -04001441static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp,
1442 struct list_head *reaplist)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001443{
1444 struct nfs4_ol_stateid *stp;
1445
Jeff Laytone8568732015-08-24 12:41:47 -04001446 lockdep_assert_held(&open_stp->st_stid.sc_client->cl_lock);
1447
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001448 while (!list_empty(&open_stp->st_locks)) {
1449 stp = list_entry(open_stp->st_locks.next,
1450 struct nfs4_ol_stateid, st_locks);
Jeff Laytone8568732015-08-24 12:41:47 -04001451 WARN_ON(!unhash_lock_stateid(stp));
Jeff Laytond83017f2014-07-29 21:34:42 -04001452 put_ol_stateid_locked(stp, reaplist);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001453 }
1454}
1455
Jeff Laytone8568732015-08-24 12:41:47 -04001456static bool unhash_open_stateid(struct nfs4_ol_stateid *stp,
Jeff Laytond83017f2014-07-29 21:34:42 -04001457 struct list_head *reaplist)
J. Bruce Fields22839632009-01-11 14:27:17 -05001458{
Jeff Layton2c41beb2014-07-29 21:34:41 -04001459 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1460
Trond Myklebusta451b122020-03-01 18:21:38 -05001461 if (!unhash_ol_stateid(stp))
1462 return false;
Jeff Laytond83017f2014-07-29 21:34:42 -04001463 release_open_stateid_locks(stp, reaplist);
Trond Myklebusta451b122020-03-01 18:21:38 -05001464 return true;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04001465}
1466
1467static void release_open_stateid(struct nfs4_ol_stateid *stp)
1468{
Jeff Layton2c41beb2014-07-29 21:34:41 -04001469 LIST_HEAD(reaplist);
1470
1471 spin_lock(&stp->st_stid.sc_client->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001472 if (unhash_open_stateid(stp, &reaplist))
1473 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001474 spin_unlock(&stp->st_stid.sc_client->cl_lock);
1475 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fields22839632009-01-11 14:27:17 -05001476}
1477
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001478static void unhash_openowner_locked(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001479{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001480 struct nfs4_client *clp = oo->oo_owner.so_client;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001481
Trond Myklebustd4f04892014-07-29 21:34:36 -04001482 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001483
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001484 list_del_init(&oo->oo_owner.so_strhash);
1485 list_del_init(&oo->oo_perclient);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001486}
1487
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001488static void release_last_closed_stateid(struct nfs4_openowner *oo)
1489{
Jeff Layton217526e2014-07-30 08:27:11 -04001490 struct nfsd_net *nn = net_generic(oo->oo_owner.so_client->net,
1491 nfsd_net_id);
1492 struct nfs4_ol_stateid *s;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001493
Jeff Layton217526e2014-07-30 08:27:11 -04001494 spin_lock(&nn->client_lock);
1495 s = oo->oo_last_closed_stid;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001496 if (s) {
Jeff Laytond3134b12014-07-29 21:34:32 -04001497 list_del_init(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001498 oo->oo_last_closed_stid = NULL;
1499 }
Jeff Layton217526e2014-07-30 08:27:11 -04001500 spin_unlock(&nn->client_lock);
1501 if (s)
1502 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001503}
1504
Jeff Layton2c41beb2014-07-29 21:34:41 -04001505static void release_openowner(struct nfs4_openowner *oo)
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001506{
1507 struct nfs4_ol_stateid *stp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001508 struct nfs4_client *clp = oo->oo_owner.so_client;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001509 struct list_head reaplist;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001510
Jeff Layton2c41beb2014-07-29 21:34:41 -04001511 INIT_LIST_HEAD(&reaplist);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001512
Trond Myklebustd4f04892014-07-29 21:34:36 -04001513 spin_lock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001514 unhash_openowner_locked(oo);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001515 while (!list_empty(&oo->oo_owner.so_stateids)) {
1516 stp = list_first_entry(&oo->oo_owner.so_stateids,
1517 struct nfs4_ol_stateid, st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001518 if (unhash_open_stateid(stp, &reaplist))
1519 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001520 }
Trond Myklebustd4f04892014-07-29 21:34:36 -04001521 spin_unlock(&clp->cl_lock);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001522 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001523 release_last_closed_stateid(oo);
Jeff Layton6b180f02014-07-29 21:34:26 -04001524 nfs4_put_stateowner(&oo->oo_owner);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001525}
1526
Marc Eshel5282fd72009-04-03 08:27:52 +03001527static inline int
1528hash_sessionid(struct nfs4_sessionid *sessionid)
1529{
1530 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1531
1532 return sid->sequence % SESSION_HASH_SIZE;
1533}
1534
Mark Salter135dd002015-04-06 09:46:00 -04001535#ifdef CONFIG_SUNRPC_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001536static inline void
1537dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1538{
1539 u32 *ptr = (u32 *)(&sessionid->data[0]);
1540 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1541}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001542#else
1543static inline void
1544dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1545{
1546}
1547#endif
1548
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001549/*
1550 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1551 * won't be used for replay.
1552 */
1553void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1554{
1555 struct nfs4_stateowner *so = cstate->replay_owner;
1556
1557 if (nfserr == nfserr_replay_me)
1558 return;
1559
1560 if (!seqid_mutating_err(ntohl(nfserr))) {
Jeff Layton58fb12e2014-07-29 21:34:27 -04001561 nfsd4_cstate_clear_replay(cstate);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001562 return;
1563 }
1564 if (!so)
1565 return;
1566 if (so->so_is_open_owner)
1567 release_last_closed_stateid(openowner(so));
1568 so->so_seqid++;
1569 return;
1570}
Marc Eshel5282fd72009-04-03 08:27:52 +03001571
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001572static void
1573gen_sessionid(struct nfsd4_session *ses)
1574{
1575 struct nfs4_client *clp = ses->se_client;
1576 struct nfsd4_sessionid *sid;
1577
1578 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1579 sid->clientid = clp->cl_clientid;
1580 sid->sequence = current_sessionid++;
1581 sid->reserved = 0;
1582}
1583
1584/*
Andy Adamsona649637c72009-08-28 08:45:01 -04001585 * The protocol defines ca_maxresponssize_cached to include the size of
1586 * the rpc header, but all we need to cache is the data starting after
1587 * the end of the initial SEQUENCE operation--the rest we regenerate
1588 * each time. Therefore we can advertise a ca_maxresponssize_cached
1589 * value that is the number of bytes in our cache plus a few additional
1590 * bytes. In order to stay on the safe side, and not promise more than
1591 * we can cache, those additional bytes must be the minimum possible: 24
1592 * bytes of rpc header (xid through accept state, with AUTH_NULL
1593 * verifier), 12 for the compound header (with zero-length tag), and 44
1594 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001595 */
Andy Adamsona649637c72009-08-28 08:45:01 -04001596#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1597
Andy Adamson557ce262009-08-28 08:45:04 -04001598static void
1599free_session_slots(struct nfsd4_session *ses)
1600{
1601 int i;
1602
J. Bruce Fields53da6a52017-10-17 20:38:49 -04001603 for (i = 0; i < ses->se_fchannel.maxreqs; i++) {
1604 free_svc_cred(&ses->se_slots[i]->sl_cred);
Andy Adamson557ce262009-08-28 08:45:04 -04001605 kfree(ses->se_slots[i]);
J. Bruce Fields53da6a52017-10-17 20:38:49 -04001606 }
Andy Adamson557ce262009-08-28 08:45:04 -04001607}
1608
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001609/*
1610 * We don't actually need to cache the rpc and session headers, so we
1611 * can allocate a little less for each slot:
1612 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001613static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001614{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001615 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001616
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001617 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1618 size = 0;
1619 else
1620 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1621 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001622}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001623
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001624/*
1625 * XXX: If we run out of reserved DRC memory we could (up to a point)
1626 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001627 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001628 */
NeilBrown2030ca52019-09-20 16:36:45 +10001629static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001630{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001631 u32 slotsize = slot_bytes(ca);
1632 u32 num = ca->maxreqs;
J. Bruce Fieldsc54f24e2019-02-21 10:47:00 -05001633 unsigned long avail, total_avail;
NeilBrown2030ca52019-09-20 16:36:45 +10001634 unsigned int scale_factor;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001635
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001636 spin_lock(&nfsd_drc_lock);
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001637 if (nfsd_drc_max_mem > nfsd_drc_mem_used)
1638 total_avail = nfsd_drc_max_mem - nfsd_drc_mem_used;
1639 else
1640 /* We have handed out more space than we chose in
1641 * set_max_drc() to allow. That isn't really a
1642 * problem as long as that doesn't make us think we
1643 * have lots more due to integer overflow.
1644 */
1645 total_avail = 0;
J. Bruce Fieldsc54f24e2019-02-21 10:47:00 -05001646 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION, total_avail);
J. Bruce Fieldsde766e52017-09-19 19:25:41 -04001647 /*
NeilBrown2030ca52019-09-20 16:36:45 +10001648 * Never use more than a fraction of the remaining memory,
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001649 * unless it's the only way to give this client a slot.
NeilBrown2030ca52019-09-20 16:36:45 +10001650 * The chosen fraction is either 1/8 or 1/number of threads,
1651 * whichever is smaller. This ensures there are adequate
1652 * slots to support multiple clients per thread.
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001653 * Give the client one slot even if that would require
1654 * over-allocation--it is better than failure.
J. Bruce Fieldsde766e52017-09-19 19:25:41 -04001655 */
NeilBrown2030ca52019-09-20 16:36:45 +10001656 scale_factor = max_t(unsigned int, 8, nn->nfsd_serv->sv_nrthreads);
1657
1658 avail = clamp_t(unsigned long, avail, slotsize,
1659 total_avail/scale_factor);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001660 num = min_t(int, num, avail / slotsize);
NeilBrown7f49fd5d2019-09-20 16:33:16 +10001661 num = max_t(int, num, 1);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001662 nfsd_drc_mem_used += num * slotsize;
1663 spin_unlock(&nfsd_drc_lock);
1664
1665 return num;
1666}
1667
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001668static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001669{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001670 int slotsize = slot_bytes(ca);
1671
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001672 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001673 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001674 spin_unlock(&nfsd_drc_lock);
1675}
1676
Kinglong Mee60810e52014-01-01 00:35:47 +08001677static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1678 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001679{
Kinglong Mee60810e52014-01-01 00:35:47 +08001680 int numslots = fattrs->maxreqs;
1681 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001682 struct nfsd4_session *new;
1683 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001684
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001685 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001686 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1687 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001688
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001689 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001690 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001691 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001692 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001693 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001694 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001695 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001696 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001697 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001698
1699 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1700 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1701
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001702 return new;
1703out_free:
1704 while (i--)
1705 kfree(new->se_slots[i]);
1706 kfree(new);
1707 return NULL;
1708}
1709
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001710static void free_conn(struct nfsd4_conn *c)
1711{
1712 svc_xprt_put(c->cn_xprt);
1713 kfree(c);
1714}
1715
1716static void nfsd4_conn_lost(struct svc_xpt_user *u)
1717{
1718 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1719 struct nfs4_client *clp = c->cn_session->se_client;
1720
1721 spin_lock(&clp->cl_lock);
1722 if (!list_empty(&c->cn_persession)) {
1723 list_del(&c->cn_persession);
1724 free_conn(c);
1725 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001726 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001727 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001728}
1729
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001730static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001731{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001732 struct nfsd4_conn *conn;
1733
1734 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1735 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001736 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001737 svc_xprt_get(rqstp->rq_xprt);
1738 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001739 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001740 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1741 return conn;
1742}
1743
J. Bruce Fields328ead22010-09-29 16:11:06 -04001744static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1745{
1746 conn->cn_session = ses;
1747 list_add(&conn->cn_persession, &ses->se_conns);
1748}
1749
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001750static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1751{
1752 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001753
1754 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001755 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001756 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001757}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001758
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001759static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001760{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001761 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001762 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001763}
1764
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001765static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001766{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001767 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001768
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001769 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001770 ret = nfsd4_register_conn(conn);
1771 if (ret)
1772 /* oops; xprt is already down: */
1773 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001774 /* We may have gained or lost a callback channel: */
1775 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001776}
1777
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001778static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001779{
1780 u32 dir = NFS4_CDFC4_FORE;
1781
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001782 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001783 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001784 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001785}
1786
1787/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001788static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001789{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001790 struct nfs4_client *clp = s->se_client;
1791 struct nfsd4_conn *c;
1792
1793 spin_lock(&clp->cl_lock);
1794 while (!list_empty(&s->se_conns)) {
1795 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1796 list_del_init(&c->cn_persession);
1797 spin_unlock(&clp->cl_lock);
1798
1799 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1800 free_conn(c);
1801
1802 spin_lock(&clp->cl_lock);
1803 }
1804 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001805}
1806
J. Bruce Fields1377b692012-09-11 21:42:40 -04001807static void __free_session(struct nfsd4_session *ses)
1808{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001809 free_session_slots(ses);
1810 kfree(ses);
1811}
1812
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001813static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001814{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001815 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001816 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001817 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001818}
Andy Adamson557ce262009-08-28 08:45:04 -04001819
Fengguang Wu135ae822012-11-10 07:20:25 -05001820static 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 -04001821{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001822 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001823 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001824
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001825 new->se_client = clp;
1826 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001827
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001828 INIT_LIST_HEAD(&new->se_conns);
1829
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04001830 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001831 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001832 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001833 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001834 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001835 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001836 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001837 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001838 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001839 spin_unlock(&clp->cl_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001840
Chuck Leverb0d2e422014-08-22 15:10:59 -04001841 {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001842 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001843 /*
1844 * This is a little silly; with sessions there's no real
1845 * use for the callback address. Use the peer address
1846 * as a reasonable default for now, but consider fixing
1847 * the rpc client not to require an address in the
1848 * future:
1849 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001850 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1851 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001852 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001853}
1854
Benny Halevy9089f1b2010-05-12 00:12:26 +03001855/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001856static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001857__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001858{
1859 struct nfsd4_session *elem;
1860 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001861 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001862
Trond Myklebust0a880a22014-07-30 08:27:10 -04001863 lockdep_assert_held(&nn->client_lock);
1864
Marc Eshel5282fd72009-04-03 08:27:52 +03001865 dump_sessionid(__func__, sessionid);
1866 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001867 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001868 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001869 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1870 NFS4_MAX_SESSIONID_LEN)) {
1871 return elem;
1872 }
1873 }
1874
1875 dprintk("%s: session not found\n", __func__);
1876 return NULL;
1877}
1878
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001879static struct nfsd4_session *
1880find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1881 __be32 *ret)
1882{
1883 struct nfsd4_session *session;
1884 __be32 status = nfserr_badsession;
1885
1886 session = __find_in_sessionid_hashtbl(sessionid, net);
1887 if (!session)
1888 goto out;
1889 status = nfsd4_get_session_locked(session);
1890 if (status)
1891 session = NULL;
1892out:
1893 *ret = status;
1894 return session;
1895}
1896
Benny Halevy9089f1b2010-05-12 00:12:26 +03001897/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001898static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001899unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001900{
Trond Myklebust0a880a22014-07-30 08:27:10 -04001901 struct nfs4_client *clp = ses->se_client;
1902 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1903
1904 lockdep_assert_held(&nn->client_lock);
1905
Andy Adamson7116ed62009-04-03 08:27:43 +03001906 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001907 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001908 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001909 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001910}
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1913static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001914STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
J. Bruce Fieldsbbc7f332015-01-20 11:51:26 -05001916 /*
1917 * We're assuming the clid was not given out from a boot
1918 * precisely 2^32 (about 136 years) before this one. That seems
1919 * a safe assumption:
1920 */
1921 if (clid->cl_boot == (u32)nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 return 0;
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04001923 trace_nfsd_clid_stale(clid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 1;
1925}
1926
1927/*
1928 * XXX Should we use a slab cache ?
1929 * This type of memory management is somewhat inefficient, but we use it
1930 * anyway since SETCLIENTID is not a common operation.
1931 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001932static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 struct nfs4_client *clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001935 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Jeff Layton9258a2d2018-03-16 09:47:22 -04001937 clp = kmem_cache_zalloc(client_slab, GFP_KERNEL);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001938 if (clp == NULL)
1939 return NULL;
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04001940 xdr_netobj_dup(&clp->cl_name, &name, GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001941 if (clp->cl_name.data == NULL)
1942 goto err_no_name;
Kees Cook6da2ec52018-06-12 13:55:00 -07001943 clp->cl_ownerstr_hashtbl = kmalloc_array(OWNER_HASH_SIZE,
1944 sizeof(struct list_head),
1945 GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001946 if (!clp->cl_ownerstr_hashtbl)
1947 goto err_no_hashtbl;
1948 for (i = 0; i < OWNER_HASH_SIZE; i++)
1949 INIT_LIST_HEAD(&clp->cl_ownerstr_hashtbl[i]);
Trond Myklebust5694c932014-04-18 14:43:56 -04001950 INIT_LIST_HEAD(&clp->cl_sessions);
1951 idr_init(&clp->cl_stateids);
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04001952 atomic_set(&clp->cl_rpc_users, 0);
Trond Myklebust5694c932014-04-18 14:43:56 -04001953 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1954 INIT_LIST_HEAD(&clp->cl_idhash);
1955 INIT_LIST_HEAD(&clp->cl_openowners);
1956 INIT_LIST_HEAD(&clp->cl_delegations);
1957 INIT_LIST_HEAD(&clp->cl_lru);
Trond Myklebust5694c932014-04-18 14:43:56 -04001958 INIT_LIST_HEAD(&clp->cl_revoked);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001959#ifdef CONFIG_NFSD_PNFS
1960 INIT_LIST_HEAD(&clp->cl_lo_states);
1961#endif
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001962 INIT_LIST_HEAD(&clp->async_copies);
1963 spin_lock_init(&clp->async_lock);
Trond Myklebust5694c932014-04-18 14:43:56 -04001964 spin_lock_init(&clp->cl_lock);
1965 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001967err_no_hashtbl:
1968 kfree(clp->cl_name.data);
1969err_no_name:
Jeff Layton9258a2d2018-03-16 09:47:22 -04001970 kmem_cache_free(client_slab, clp);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001971 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001974static void __free_client(struct kref *k)
1975{
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04001976 struct nfsdfs_client *c = container_of(k, struct nfsdfs_client, cl_ref);
1977 struct nfs4_client *clp = container_of(c, struct nfs4_client, cl_nfsdfs);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001978
1979 free_svc_cred(&clp->cl_cred);
1980 kfree(clp->cl_ownerstr_hashtbl);
1981 kfree(clp->cl_name.data);
J. Bruce Fields79123442019-06-05 12:42:05 -04001982 kfree(clp->cl_nii_domain.data);
1983 kfree(clp->cl_nii_name.data);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001984 idr_destroy(&clp->cl_stateids);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001985 kmem_cache_free(client_slab, clp);
1986}
1987
YueHaibing297e57a2019-07-08 15:29:33 +08001988static void drop_client(struct nfs4_client *clp)
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001989{
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04001990 kref_put(&clp->cl_nfsdfs.cl_ref, __free_client);
J. Bruce Fields59f8e912019-03-20 20:03:02 -04001991}
1992
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001993static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994free_client(struct nfs4_client *clp)
1995{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001996 while (!list_empty(&clp->cl_sessions)) {
1997 struct nfsd4_session *ses;
1998 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1999 se_perclnt);
2000 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002001 WARN_ON_ONCE(atomic_read(&ses->se_ref));
2002 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04002003 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04002004 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002005 if (clp->cl_nfsd_dentry) {
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002006 nfsd_client_rmdir(clp->cl_nfsd_dentry);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002007 clp->cl_nfsd_dentry = NULL;
2008 wake_up_all(&expiry_wq);
2009 }
J. Bruce Fields59f8e912019-03-20 20:03:02 -04002010 drop_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012
Benny Halevy84d38ac2010-05-12 00:13:16 +03002013/* must be called under the client_lock */
Trond Myklebust4beb3452014-07-30 08:27:02 -04002014static void
Benny Halevy84d38ac2010-05-12 00:13:16 +03002015unhash_client_locked(struct nfs4_client *clp)
2016{
Trond Myklebust4beb3452014-07-30 08:27:02 -04002017 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04002018 struct nfsd4_session *ses;
2019
Trond Myklebust0a880a22014-07-30 08:27:10 -04002020 lockdep_assert_held(&nn->client_lock);
2021
Trond Myklebust4beb3452014-07-30 08:27:02 -04002022 /* Mark the client as expired! */
2023 clp->cl_time = 0;
2024 /* Make it invisible */
2025 if (!list_empty(&clp->cl_idhash)) {
2026 list_del_init(&clp->cl_idhash);
2027 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
2028 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
2029 else
2030 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
2031 }
2032 list_del_init(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04002033 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04002034 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
2035 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04002036 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03002037}
2038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039static void
Trond Myklebust4beb3452014-07-30 08:27:02 -04002040unhash_client(struct nfs4_client *clp)
2041{
2042 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2043
2044 spin_lock(&nn->client_lock);
2045 unhash_client_locked(clp);
2046 spin_unlock(&nn->client_lock);
2047}
2048
Jeff Layton97403d92014-07-30 08:27:12 -04002049static __be32 mark_client_expired_locked(struct nfs4_client *clp)
2050{
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04002051 if (atomic_read(&clp->cl_rpc_users))
Jeff Layton97403d92014-07-30 08:27:12 -04002052 return nfserr_jukebox;
2053 unhash_client_locked(clp);
2054 return nfs_ok;
2055}
2056
Trond Myklebust4beb3452014-07-30 08:27:02 -04002057static void
2058__destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
Jeff Layton68ef3bc2018-03-16 11:32:02 -04002060 int i;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002061 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 struct list_head reaplist;
2064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04002066 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07002067 while (!list_empty(&clp->cl_delegations)) {
2068 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04002069 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04002070 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
Benny Halevycdc975052014-05-30 09:09:30 -04002072 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 while (!list_empty(&reaplist)) {
2074 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04002075 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05002076 destroy_unhashed_deleg(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04002078 while (!list_empty(&clp->cl_revoked)) {
Andrew Elblec8764862015-02-25 17:46:27 -05002079 dp = list_entry(clp->cl_revoked.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04002080 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04002081 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02002082 }
NeilBrownea1da632005-06-23 22:04:17 -07002083 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002084 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
Kinglong Meeb5971af2014-08-22 10:18:43 -04002085 nfs4_get_stateowner(&oo->oo_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04002086 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
Jeff Layton68ef3bc2018-03-16 11:32:02 -04002088 for (i = 0; i < OWNER_HASH_SIZE; i++) {
2089 struct nfs4_stateowner *so, *tmp;
2090
2091 list_for_each_entry_safe(so, tmp, &clp->cl_ownerstr_hashtbl[i],
2092 so_strhash) {
2093 /* Should be no openowners at this point */
2094 WARN_ON_ONCE(so->so_is_open_owner);
2095 remove_blocked_locks(lockowner(so));
2096 }
2097 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002098 nfsd4_return_all_client_layouts(clp);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04002099 nfsd4_shutdown_copy(clp);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04002100 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002101 if (clp->cl_cb_conn.cb_xprt)
2102 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002103 free_client(clp);
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002104 wake_up_all(&expiry_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
2106
Trond Myklebust4beb3452014-07-30 08:27:02 -04002107static void
2108destroy_client(struct nfs4_client *clp)
2109{
2110 unhash_client(clp);
2111 __destroy_client(clp);
2112}
2113
Scott Mayhew362063a2019-03-26 18:06:28 -04002114static void inc_reclaim_complete(struct nfs4_client *clp)
2115{
2116 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2117
2118 if (!nn->track_reclaim_completes)
2119 return;
2120 if (!nfsd4_find_reclaim_client(clp->cl_name, nn))
2121 return;
2122 if (atomic_inc_return(&nn->nr_reclaim_complete) ==
2123 nn->reclaim_str_hashtbl_size) {
2124 printk(KERN_INFO "NFSD: all clients done reclaiming, ending NFSv4 grace period (net %x)\n",
2125 clp->net->ns.inum);
2126 nfsd4_end_grace(nn);
2127 }
2128}
2129
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002130static void expire_client(struct nfs4_client *clp)
2131{
Trond Myklebust4beb3452014-07-30 08:27:02 -04002132 unhash_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002133 nfsd4_client_record_remove(clp);
Trond Myklebust4beb3452014-07-30 08:27:02 -04002134 __destroy_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04002135}
2136
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05002137static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
2138{
2139 memcpy(target->cl_verifier.data, source->data,
2140 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
2142
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05002143static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
2144{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
2146 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
2147}
2148
J. Bruce Fields50043852015-11-20 15:58:37 -05002149static int copy_cred(struct svc_cred *target, struct svc_cred *source)
2150{
NeilBrown2f10fdc2017-03-23 16:57:36 +08002151 target->cr_principal = kstrdup(source->cr_principal, GFP_KERNEL);
2152 target->cr_raw_principal = kstrdup(source->cr_raw_principal,
2153 GFP_KERNEL);
Chuck Lever9abdda52018-08-16 12:05:59 -04002154 target->cr_targ_princ = kstrdup(source->cr_targ_princ, GFP_KERNEL);
2155 if ((source->cr_principal && !target->cr_principal) ||
2156 (source->cr_raw_principal && !target->cr_raw_principal) ||
2157 (source->cr_targ_princ && !target->cr_targ_princ))
NeilBrown2f10fdc2017-03-23 16:57:36 +08002158 return -ENOMEM;
J. Bruce Fields50043852015-11-20 15:58:37 -05002159
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04002160 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 target->cr_uid = source->cr_uid;
2162 target->cr_gid = source->cr_gid;
2163 target->cr_group_info = source->cr_group_info;
2164 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04002165 target->cr_gss_mech = source->cr_gss_mech;
2166 if (source->cr_gss_mech)
2167 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002171static int
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002172compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
2173{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002174 if (o1->len < o2->len)
2175 return -1;
2176 if (o1->len > o2->len)
2177 return 1;
2178 return memcmp(o1->data, o2->data, o1->len);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002179}
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002182same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
2183{
2184 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185}
2186
2187static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002188same_clid(clientid_t *cl1, clientid_t *cl2)
2189{
2190 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002193static bool groups_equal(struct group_info *g1, struct group_info *g2)
2194{
2195 int i;
2196
2197 if (g1->ngroups != g2->ngroups)
2198 return false;
2199 for (i=0; i<g1->ngroups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -07002200 if (!gid_eq(g1->gid[i], g2->gid[i]))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002201 return false;
2202 return true;
2203}
2204
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002205/*
2206 * RFC 3530 language requires clid_inuse be returned when the
2207 * "principal" associated with a requests differs from that previously
2208 * used. We use uid, gid's, and gss principal string as our best
2209 * approximation. We also don't want to allow non-gss use of a client
2210 * established using gss: in theory cr_principal should catch that
2211 * change, but in practice cr_principal can be null even in the gss case
2212 * since gssd doesn't always pass down a principal string.
2213 */
2214static bool is_gss_cred(struct svc_cred *cr)
2215{
2216 /* Is cr_flavor one of the gss "pseudoflavors"?: */
2217 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
2218}
2219
2220
Vivek Trivedi5559b502012-07-24 21:18:20 +05302221static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002222same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
2223{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002224 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002225 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
2226 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002227 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
2228 return false;
Chuck Lever9abdda52018-08-16 12:05:59 -04002229 /* XXX: check that cr_targ_princ fields match ? */
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002230 if (cr1->cr_principal == cr2->cr_principal)
2231 return true;
2232 if (!cr1->cr_principal || !cr2->cr_principal)
2233 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05302234 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235}
2236
J. Bruce Fields57266a62013-04-13 14:27:29 -04002237static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
2238{
2239 struct svc_cred *cr = &rqstp->rq_cred;
2240 u32 service;
2241
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04002242 if (!cr->cr_gss_mech)
2243 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002244 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
2245 return service == RPC_GSS_SVC_INTEGRITY ||
2246 service == RPC_GSS_SVC_PRIVACY;
2247}
2248
Andrew Elblededeb132016-06-15 12:52:08 -04002249bool nfsd4_mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
J. Bruce Fields57266a62013-04-13 14:27:29 -04002250{
2251 struct svc_cred *cr = &rqstp->rq_cred;
2252
2253 if (!cl->cl_mach_cred)
2254 return true;
2255 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
2256 return false;
2257 if (!svc_rqst_integrity_protected(rqstp))
2258 return false;
J. Bruce Fields414ca012015-11-20 10:48:02 -05002259 if (cl->cl_cred.cr_raw_principal)
2260 return 0 == strcmp(cl->cl_cred.cr_raw_principal,
2261 cr->cr_raw_principal);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002262 if (!cr->cr_principal)
2263 return false;
2264 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
2265}
2266
Jeff Layton294ac322014-07-30 08:27:15 -04002267static void gen_confirm(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05002268{
Chuck Leverab4684d2012-03-02 17:13:50 -05002269 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Jeff Laytonf4199922014-06-17 07:44:11 -04002271 /*
2272 * This is opaque to client, so no need to byte-swap. Use
2273 * __force to keep sparse happy
2274 */
Arnd Bergmann9104ae42019-11-04 16:45:30 +01002275 verf[0] = (__force __be32)(u32)ktime_get_real_seconds();
Kinglong Mee19311aa82015-07-18 07:33:31 +08002276 verf[1] = (__force __be32)nn->clverifier_counter++;
Chuck Leverab4684d2012-03-02 17:13:50 -05002277 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279
Jeff Layton294ac322014-07-30 08:27:15 -04002280static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
2281{
Arnd Bergmann9cc76802019-10-31 15:53:13 +01002282 clp->cl_clientid.cl_boot = (u32)nn->boot_time;
Jeff Layton294ac322014-07-30 08:27:15 -04002283 clp->cl_clientid.cl_id = nn->clientid_counter++;
2284 gen_confirm(clp, nn);
2285}
2286
Jeff Layton4770d722014-07-29 21:34:10 -04002287static struct nfs4_stid *
2288find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04002289{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05002290 struct nfs4_stid *ret;
2291
2292 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
2293 if (!ret || !ret->sc_type)
2294 return NULL;
2295 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04002296}
2297
Jeff Layton4770d722014-07-29 21:34:10 -04002298static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04002299find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04002300{
2301 struct nfs4_stid *s;
2302
Jeff Layton4770d722014-07-29 21:34:10 -04002303 spin_lock(&cl->cl_lock);
2304 s = find_stateid_locked(cl, t);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002305 if (s != NULL) {
2306 if (typemask & s->sc_type)
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03002307 refcount_inc(&s->sc_count);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002308 else
2309 s = NULL;
2310 }
Jeff Layton4770d722014-07-29 21:34:10 -04002311 spin_unlock(&cl->cl_lock);
2312 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04002313}
2314
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002315static struct nfs4_client *get_nfsdfs_clp(struct inode *inode)
2316{
2317 struct nfsdfs_client *nc;
2318 nc = get_nfsdfs_client(inode);
2319 if (!nc)
2320 return NULL;
2321 return container_of(nc, struct nfs4_client, cl_nfsdfs);
2322}
2323
J. Bruce Fields169319f2019-06-19 12:39:46 -04002324static void seq_quote_mem(struct seq_file *m, char *data, int len)
2325{
2326 seq_printf(m, "\"");
2327 seq_escape_mem_ascii(m, data, len);
2328 seq_printf(m, "\"");
2329}
2330
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002331static int client_info_show(struct seq_file *m, void *v)
2332{
2333 struct inode *inode = m->private;
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002334 struct nfs4_client *clp;
2335 u64 clid;
2336
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002337 clp = get_nfsdfs_clp(inode);
2338 if (!clp)
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002339 return -ENXIO;
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002340 memcpy(&clid, &clp->cl_clientid, sizeof(clid));
2341 seq_printf(m, "clientid: 0x%llx\n", clid);
J. Bruce Fields169319f2019-06-19 12:39:46 -04002342 seq_printf(m, "address: \"%pISpc\"\n", (struct sockaddr *)&clp->cl_addr);
2343 seq_printf(m, "name: ");
2344 seq_quote_mem(m, clp->cl_name.data, clp->cl_name.len);
2345 seq_printf(m, "\nminor version: %d\n", clp->cl_minorversion);
J. Bruce Fields79123442019-06-05 12:42:05 -04002346 if (clp->cl_nii_domain.data) {
2347 seq_printf(m, "Implementation domain: ");
2348 seq_quote_mem(m, clp->cl_nii_domain.data,
2349 clp->cl_nii_domain.len);
2350 seq_printf(m, "\nImplementation name: ");
2351 seq_quote_mem(m, clp->cl_nii_name.data, clp->cl_nii_name.len);
Arnd Bergmanne29f4702019-10-31 14:52:43 +01002352 seq_printf(m, "\nImplementation time: [%lld, %ld]\n",
J. Bruce Fields79123442019-06-05 12:42:05 -04002353 clp->cl_nii_time.tv_sec, clp->cl_nii_time.tv_nsec);
2354 }
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002355 drop_client(clp);
2356
2357 return 0;
2358}
2359
2360static int client_info_open(struct inode *inode, struct file *file)
2361{
2362 return single_open(file, client_info_show, inode);
2363}
2364
2365static const struct file_operations client_info_fops = {
2366 .open = client_info_open,
2367 .read = seq_read,
2368 .llseek = seq_lseek,
2369 .release = single_release,
2370};
2371
J. Bruce Fields78599c42019-04-22 15:26:23 -04002372static void *states_start(struct seq_file *s, loff_t *pos)
2373 __acquires(&clp->cl_lock)
2374{
2375 struct nfs4_client *clp = s->private;
2376 unsigned long id = *pos;
2377 void *ret;
2378
2379 spin_lock(&clp->cl_lock);
2380 ret = idr_get_next_ul(&clp->cl_stateids, &id);
2381 *pos = id;
2382 return ret;
2383}
2384
2385static void *states_next(struct seq_file *s, void *v, loff_t *pos)
2386{
2387 struct nfs4_client *clp = s->private;
2388 unsigned long id = *pos;
2389 void *ret;
2390
2391 id = *pos;
2392 id++;
2393 ret = idr_get_next_ul(&clp->cl_stateids, &id);
2394 *pos = id;
2395 return ret;
2396}
2397
2398static void states_stop(struct seq_file *s, void *v)
2399 __releases(&clp->cl_lock)
2400{
2401 struct nfs4_client *clp = s->private;
2402
2403 spin_unlock(&clp->cl_lock);
2404}
2405
Achilles Gaikwad580da462020-04-20 18:20:31 +05302406static void nfs4_show_fname(struct seq_file *s, struct nfsd_file *f)
2407{
2408 seq_printf(s, "filename: \"%pD2\"", f->nf_file);
2409}
2410
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002411static void nfs4_show_superblock(struct seq_file *s, struct nfsd_file *f)
J. Bruce Fields78599c42019-04-22 15:26:23 -04002412{
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002413 struct inode *inode = f->nf_inode;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002414
2415 seq_printf(s, "superblock: \"%02x:%02x:%ld\"",
2416 MAJOR(inode->i_sb->s_dev),
2417 MINOR(inode->i_sb->s_dev),
2418 inode->i_ino);
2419}
2420
2421static void nfs4_show_owner(struct seq_file *s, struct nfs4_stateowner *oo)
2422{
2423 seq_printf(s, "owner: ");
2424 seq_quote_mem(s, oo->so_owner.data, oo->so_owner.len);
2425}
2426
J. Bruce Fieldsace7ade2020-04-13 21:37:19 -04002427static void nfs4_show_stateid(struct seq_file *s, stateid_t *stid)
2428{
J. Bruce Fieldsee590d22020-04-13 22:03:06 -04002429 seq_printf(s, "0x%.8x", stid->si_generation);
2430 seq_printf(s, "%12phN", &stid->si_opaque);
J. Bruce Fieldsace7ade2020-04-13 21:37:19 -04002431}
2432
J. Bruce Fields78599c42019-04-22 15:26:23 -04002433static int nfs4_show_open(struct seq_file *s, struct nfs4_stid *st)
2434{
2435 struct nfs4_ol_stateid *ols;
2436 struct nfs4_file *nf;
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002437 struct nfsd_file *file;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002438 struct nfs4_stateowner *oo;
2439 unsigned int access, deny;
2440
2441 if (st->sc_type != NFS4_OPEN_STID && st->sc_type != NFS4_LOCK_STID)
2442 return 0; /* XXX: or SEQ_SKIP? */
2443 ols = openlockstateid(st);
2444 oo = ols->st_stateowner;
2445 nf = st->sc_file;
2446 file = find_any_file(nf);
2447
J. Bruce Fieldsace7ade2020-04-13 21:37:19 -04002448 seq_printf(s, "- ");
2449 nfs4_show_stateid(s, &st->sc_stateid);
2450 seq_printf(s, ": { type: open, ");
J. Bruce Fields78599c42019-04-22 15:26:23 -04002451
2452 access = bmap_to_share_mode(ols->st_access_bmap);
2453 deny = bmap_to_share_mode(ols->st_deny_bmap);
2454
J. Bruce Fieldsc4b77ed2019-10-03 12:33:08 -04002455 seq_printf(s, "access: %s%s, ",
J. Bruce Fields78599c42019-04-22 15:26:23 -04002456 access & NFS4_SHARE_ACCESS_READ ? "r" : "-",
2457 access & NFS4_SHARE_ACCESS_WRITE ? "w" : "-");
J. Bruce Fieldsc4b77ed2019-10-03 12:33:08 -04002458 seq_printf(s, "deny: %s%s, ",
J. Bruce Fields78599c42019-04-22 15:26:23 -04002459 deny & NFS4_SHARE_ACCESS_READ ? "r" : "-",
2460 deny & NFS4_SHARE_ACCESS_WRITE ? "w" : "-");
2461
2462 nfs4_show_superblock(s, file);
2463 seq_printf(s, ", ");
Achilles Gaikwad580da462020-04-20 18:20:31 +05302464 nfs4_show_fname(s, file);
2465 seq_printf(s, ", ");
J. Bruce Fields78599c42019-04-22 15:26:23 -04002466 nfs4_show_owner(s, oo);
2467 seq_printf(s, " }\n");
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002468 nfsd_file_put(file);
J. Bruce Fields78599c42019-04-22 15:26:23 -04002469
2470 return 0;
2471}
2472
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002473static int nfs4_show_lock(struct seq_file *s, struct nfs4_stid *st)
2474{
2475 struct nfs4_ol_stateid *ols;
2476 struct nfs4_file *nf;
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002477 struct nfsd_file *file;
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002478 struct nfs4_stateowner *oo;
2479
2480 ols = openlockstateid(st);
2481 oo = ols->st_stateowner;
2482 nf = st->sc_file;
2483 file = find_any_file(nf);
2484
J. Bruce Fieldsace7ade2020-04-13 21:37:19 -04002485 seq_printf(s, "- ");
2486 nfs4_show_stateid(s, &st->sc_stateid);
2487 seq_printf(s, ": { type: lock, ");
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002488
2489 /*
2490 * Note: a lock stateid isn't really the same thing as a lock,
2491 * it's the locking state held by one owner on a file, and there
2492 * may be multiple (or no) lock ranges associated with it.
2493 * (Same for the matter is true of open stateids.)
2494 */
2495
2496 nfs4_show_superblock(s, file);
2497 /* XXX: open stateid? */
2498 seq_printf(s, ", ");
Achilles Gaikwad580da462020-04-20 18:20:31 +05302499 nfs4_show_fname(s, file);
2500 seq_printf(s, ", ");
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002501 nfs4_show_owner(s, oo);
2502 seq_printf(s, " }\n");
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04002503 nfsd_file_put(file);
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002504
2505 return 0;
2506}
2507
2508static int nfs4_show_deleg(struct seq_file *s, struct nfs4_stid *st)
2509{
2510 struct nfs4_delegation *ds;
2511 struct nfs4_file *nf;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04002512 struct nfsd_file *file;
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002513
2514 ds = delegstateid(st);
2515 nf = st->sc_file;
2516 file = nf->fi_deleg_file;
2517
J. Bruce Fieldsace7ade2020-04-13 21:37:19 -04002518 seq_printf(s, "- ");
2519 nfs4_show_stateid(s, &st->sc_stateid);
2520 seq_printf(s, ": { type: deleg, ");
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002521
2522 /* Kinda dead code as long as we only support read delegs: */
2523 seq_printf(s, "access: %s, ",
2524 ds->dl_type == NFS4_OPEN_DELEGATE_READ ? "r" : "w");
2525
2526 /* XXX: lease time, whether it's being recalled. */
2527
2528 nfs4_show_superblock(s, file);
Achilles Gaikwad580da462020-04-20 18:20:31 +05302529 seq_printf(s, ", ");
2530 nfs4_show_fname(s, file);
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002531 seq_printf(s, " }\n");
2532
2533 return 0;
2534}
2535
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002536static int nfs4_show_layout(struct seq_file *s, struct nfs4_stid *st)
2537{
2538 struct nfs4_layout_stateid *ls;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04002539 struct nfsd_file *file;
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002540
2541 ls = container_of(st, struct nfs4_layout_stateid, ls_stid);
2542 file = ls->ls_file;
2543
J. Bruce Fieldsace7ade2020-04-13 21:37:19 -04002544 seq_printf(s, "- ");
2545 nfs4_show_stateid(s, &st->sc_stateid);
2546 seq_printf(s, ": { type: layout, ");
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002547
2548 /* XXX: What else would be useful? */
2549
2550 nfs4_show_superblock(s, file);
Achilles Gaikwad580da462020-04-20 18:20:31 +05302551 seq_printf(s, ", ");
2552 nfs4_show_fname(s, file);
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002553 seq_printf(s, " }\n");
2554
2555 return 0;
2556}
2557
J. Bruce Fields78599c42019-04-22 15:26:23 -04002558static int states_show(struct seq_file *s, void *v)
2559{
2560 struct nfs4_stid *st = v;
2561
2562 switch (st->sc_type) {
2563 case NFS4_OPEN_STID:
2564 return nfs4_show_open(s, st);
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002565 case NFS4_LOCK_STID:
2566 return nfs4_show_lock(s, st);
2567 case NFS4_DELEG_STID:
2568 return nfs4_show_deleg(s, st);
J. Bruce Fields0c4b62b2019-05-14 15:52:57 -04002569 case NFS4_LAYOUT_STID:
2570 return nfs4_show_layout(s, st);
J. Bruce Fields78599c42019-04-22 15:26:23 -04002571 default:
2572 return 0; /* XXX: or SEQ_SKIP? */
2573 }
J. Bruce Fields16d36e02019-05-10 15:27:50 -04002574 /* XXX: copy stateids? */
J. Bruce Fields78599c42019-04-22 15:26:23 -04002575}
2576
2577static struct seq_operations states_seq_ops = {
2578 .start = states_start,
2579 .next = states_next,
2580 .stop = states_stop,
2581 .show = states_show
2582};
2583
2584static int client_states_open(struct inode *inode, struct file *file)
2585{
J. Bruce Fields78599c42019-04-22 15:26:23 -04002586 struct seq_file *s;
2587 struct nfs4_client *clp;
2588 int ret;
2589
J. Bruce Fieldsa204f252019-06-19 12:54:45 -04002590 clp = get_nfsdfs_clp(inode);
2591 if (!clp)
J. Bruce Fields78599c42019-04-22 15:26:23 -04002592 return -ENXIO;
J. Bruce Fields78599c42019-04-22 15:26:23 -04002593
2594 ret = seq_open(file, &states_seq_ops);
2595 if (ret)
2596 return ret;
2597 s = file->private_data;
2598 s->private = clp;
2599 return 0;
2600}
2601
2602static int client_opens_release(struct inode *inode, struct file *file)
2603{
2604 struct seq_file *m = file->private_data;
2605 struct nfs4_client *clp = m->private;
2606
2607 /* XXX: alternatively, we could get/drop in seq start/stop */
2608 drop_client(clp);
2609 return 0;
2610}
2611
2612static const struct file_operations client_states_fops = {
2613 .open = client_states_open,
2614 .read = seq_read,
2615 .llseek = seq_lseek,
2616 .release = client_opens_release,
2617};
2618
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002619/*
2620 * Normally we refuse to destroy clients that are in use, but here the
2621 * administrator is telling us to just do it. We also want to wait
2622 * so the caller has a guarantee that the client's locks are gone by
2623 * the time the write returns:
2624 */
YueHaibing297e57a2019-07-08 15:29:33 +08002625static void force_expire_client(struct nfs4_client *clp)
J. Bruce Fields89c905b2019-06-19 12:43:11 -04002626{
2627 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2628 bool already_expired;
2629
2630 spin_lock(&clp->cl_lock);
2631 clp->cl_time = 0;
2632 spin_unlock(&clp->cl_lock);
2633
2634 wait_event(expiry_wq, atomic_read(&clp->cl_rpc_users) == 0);
2635 spin_lock(&nn->client_lock);
2636 already_expired = list_empty(&clp->cl_lru);
2637 if (!already_expired)
2638 unhash_client_locked(clp);
2639 spin_unlock(&nn->client_lock);
2640
2641 if (!already_expired)
2642 expire_client(clp);
2643 else
2644 wait_event(expiry_wq, clp->cl_nfsd_dentry == NULL);
2645}
2646
2647static ssize_t client_ctl_write(struct file *file, const char __user *buf,
2648 size_t size, loff_t *pos)
2649{
2650 char *data;
2651 struct nfs4_client *clp;
2652
2653 data = simple_transaction_get(file, buf, size);
2654 if (IS_ERR(data))
2655 return PTR_ERR(data);
2656 if (size != 7 || 0 != memcmp(data, "expire\n", 7))
2657 return -EINVAL;
2658 clp = get_nfsdfs_clp(file_inode(file));
2659 if (!clp)
2660 return -ENXIO;
2661 force_expire_client(clp);
2662 drop_client(clp);
2663 return 7;
2664}
2665
2666static const struct file_operations client_ctl_fops = {
2667 .write = client_ctl_write,
2668 .release = simple_transaction_release,
2669};
2670
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002671static const struct tree_descr client_files[] = {
2672 [0] = {"info", &client_info_fops, S_IRUSR},
J. Bruce Fields78599c42019-04-22 15:26:23 -04002673 [1] = {"states", &client_states_fops, S_IRUSR},
Petr Vorel6cbfad52020-03-13 13:39:57 +01002674 [2] = {"ctl", &client_ctl_fops, S_IWUSR},
J. Bruce Fields78599c42019-04-22 15:26:23 -04002675 [3] = {""},
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002676};
2677
Jeff Layton2216d442012-11-12 15:00:57 -05002678static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002679 struct svc_rqst *rqstp, nfs4_verifier *verf)
2680{
2681 struct nfs4_client *clp;
2682 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002683 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002684 struct net *net = SVC_NET(rqstp);
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002685 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002686
2687 clp = alloc_client(name);
2688 if (clp == NULL)
2689 return NULL;
2690
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002691 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
2692 if (ret) {
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002693 free_client(clp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002694 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002695 }
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002696 gen_clid(clp, nn);
2697 kref_init(&clp->cl_nfsdfs.cl_ref);
Christoph Hellwig0162ac22014-09-24 12:19:19 +02002698 nfsd4_init_cb(&clp->cl_cb_null, clp, NULL, NFSPROC4_CLNT_CB_NULL);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01002699 clp->cl_time = ktime_get_boottime_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002700 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002701 copy_verf(clp, verf);
J. Bruce Fields3bade242019-05-14 21:38:11 -04002702 memcpy(&clp->cl_addr, sa, sizeof(struct sockaddr_storage));
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04002703 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002704 clp->net = net;
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002705 clp->cl_nfsd_dentry = nfsd_client_mkdir(nn, &clp->cl_nfsdfs,
J. Bruce Fields97ad4032019-04-09 15:56:57 -04002706 clp->cl_clientid.cl_id - nn->clientid_base,
2707 client_files);
J. Bruce Fieldse8a79fb2019-03-22 11:11:06 -04002708 if (!clp->cl_nfsd_dentry) {
2709 free_client(clp);
2710 return NULL;
2711 }
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002712 return clp;
2713}
2714
NeilBrownfd39ca92005-06-23 22:04:03 -07002715static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002716add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
2717{
2718 struct rb_node **new = &(root->rb_node), *parent = NULL;
2719 struct nfs4_client *clp;
2720
2721 while (*new) {
2722 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
2723 parent = *new;
2724
2725 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
2726 new = &((*new)->rb_left);
2727 else
2728 new = &((*new)->rb_right);
2729 }
2730
2731 rb_link_node(&new_clp->cl_namenode, parent, new);
2732 rb_insert_color(&new_clp->cl_namenode, root);
2733}
2734
2735static struct nfs4_client *
2736find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
2737{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002738 int cmp;
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002739 struct rb_node *node = root->rb_node;
2740 struct nfs4_client *clp;
2741
2742 while (node) {
2743 clp = rb_entry(node, struct nfs4_client, cl_namenode);
2744 cmp = compare_blob(&clp->cl_name, name);
2745 if (cmp > 0)
2746 node = node->rb_left;
2747 else if (cmp < 0)
2748 node = node->rb_right;
2749 else
2750 return clp;
2751 }
2752 return NULL;
2753}
2754
2755static void
2756add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
2758 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002759 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Trond Myklebust0a880a22014-07-30 08:27:10 -04002761 lockdep_assert_held(&nn->client_lock);
2762
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002763 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002764 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002766 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002767 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
2769
NeilBrownfd39ca92005-06-23 22:04:03 -07002770static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771move_to_confirmed(struct nfs4_client *clp)
2772{
2773 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002774 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Trond Myklebust0a880a22014-07-30 08:27:10 -04002776 lockdep_assert_held(&nn->client_lock);
2777
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002779 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002780 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002781 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002782 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002783 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784}
2785
2786static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002787find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788{
2789 struct nfs4_client *clp;
2790 unsigned int idhashval = clientid_hashval(clid->cl_id);
2791
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002792 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002793 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04002794 if ((bool)clp->cl_minorversion != sessions)
2795 return NULL;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002796 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 }
2800 return NULL;
2801}
2802
2803static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002804find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
2805{
2806 struct list_head *tbl = nn->conf_id_hashtbl;
2807
Trond Myklebust0a880a22014-07-30 08:27:10 -04002808 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002809 return find_client_in_id_table(tbl, clid, sessions);
2810}
2811
2812static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002813find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002815 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Trond Myklebust0a880a22014-07-30 08:27:10 -04002817 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002818 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819}
2820
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002821static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002822{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002823 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002824}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002825
NeilBrown28ce6052005-06-23 22:03:56 -07002826static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002827find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002828{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002829 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002830 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002831}
2832
2833static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002834find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002835{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002836 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002837 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002838}
2839
NeilBrownfd39ca92005-06-23 22:04:03 -07002840static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002841gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
J. Bruce Fields07263f12010-05-31 19:09:40 -04002843 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002844 struct sockaddr *sa = svc_addr(rqstp);
2845 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04002846 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
Jeff Layton7077ecb2009-08-14 12:57:58 -04002848 /* Currently, we only support tcp and tcp6 for the callback channel */
2849 if (se->se_callback_netid_len == 3 &&
2850 !memcmp(se->se_callback_netid_val, "tcp", 3))
2851 expected_family = AF_INET;
2852 else if (se->se_callback_netid_len == 4 &&
2853 !memcmp(se->se_callback_netid_val, "tcp6", 4))
2854 expected_family = AF_INET6;
2855 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 goto out_err;
2857
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002858 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002859 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04002860 (struct sockaddr *)&conn->cb_addr,
2861 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002862
J. Bruce Fields07263f12010-05-31 19:09:40 -04002863 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002865
J. Bruce Fields07263f12010-05-31 19:09:40 -04002866 if (conn->cb_addr.ss_family == AF_INET6)
2867 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04002868
J. Bruce Fields07263f12010-05-31 19:09:40 -04002869 conn->cb_prog = se->se_callback_prog;
2870 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08002871 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Chuck Lever1eace0d2020-04-05 14:15:29 -04002872 trace_nfsd_cb_args(clp, conn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 return;
2874out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04002875 conn->cb_addr.ss_family = AF_UNSPEC;
2876 conn->cb_addrlen = 0;
Chuck Lever1eace0d2020-04-05 14:15:29 -04002877 trace_nfsd_cb_nodelegs(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 return;
2879}
2880
Andy Adamson074fe892009-04-03 08:28:15 +03002881/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04002882 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03002883 */
Trond Myklebustb6076642014-06-30 11:48:35 -04002884static void
Andy Adamson074fe892009-04-03 08:28:15 +03002885nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
2886{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002887 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04002888 struct nfsd4_slot *slot = resp->cstate.slot;
2889 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03002890
Andy Adamson557ce262009-08-28 08:45:04 -04002891 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002892
J. Bruce Fields085def32017-10-18 16:17:18 -04002893 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamson557ce262009-08-28 08:45:04 -04002894 slot->sl_opcnt = resp->opcnt;
2895 slot->sl_status = resp->cstate.status;
J. Bruce Fields53da6a52017-10-17 20:38:49 -04002896 free_svc_cred(&slot->sl_cred);
2897 copy_cred(&slot->sl_cred, &resp->rqstp->rq_cred);
Andy Adamsonbf864a32009-04-03 08:28:35 +03002898
J. Bruce Fields085def32017-10-18 16:17:18 -04002899 if (!nfsd4_cache_this(resp)) {
2900 slot->sl_flags &= ~NFSD4_SLOT_CACHED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03002901 return;
2902 }
J. Bruce Fields085def32017-10-18 16:17:18 -04002903 slot->sl_flags |= NFSD4_SLOT_CACHED;
2904
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002905 base = resp->cstate.data_offset;
2906 slot->sl_datalen = buf->len - base;
2907 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Dan Carpenterd3f03402015-11-21 13:28:50 +03002908 WARN(1, "%s: sessions DRC could not cache compound\n",
2909 __func__);
Andy Adamson557ce262009-08-28 08:45:04 -04002910 return;
Andy Adamson074fe892009-04-03 08:28:15 +03002911}
2912
2913/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04002914 * Encode the replay sequence operation from the slot values.
2915 * If cachethis is FALSE encode the uncached rep error on the next
2916 * operation which sets resp->p and increments resp->opcnt for
2917 * nfs4svc_encode_compoundres.
2918 *
Andy Adamson074fe892009-04-03 08:28:15 +03002919 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04002920static __be32
2921nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
2922 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03002923{
Andy Adamsonabfabf82009-07-23 19:02:18 -04002924 struct nfsd4_op *op;
2925 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03002926
Andy Adamsonabfabf82009-07-23 19:02:18 -04002927 /* Encode the replayed sequence operation */
2928 op = &args->ops[resp->opcnt - 1];
2929 nfsd4_encode_operation(resp, op);
2930
J. Bruce Fields085def32017-10-18 16:17:18 -04002931 if (slot->sl_flags & NFSD4_SLOT_CACHED)
2932 return op->status;
2933 if (args->opcnt == 1) {
2934 /*
2935 * The original operation wasn't a solo sequence--we
2936 * always cache those--so this retry must not match the
2937 * original:
2938 */
2939 op->status = nfserr_seq_false_retry;
2940 } else {
Andy Adamsonabfabf82009-07-23 19:02:18 -04002941 op = &args->ops[resp->opcnt++];
2942 op->status = nfserr_retry_uncached_rep;
2943 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03002944 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04002945 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03002946}
2947
2948/*
Andy Adamson557ce262009-08-28 08:45:04 -04002949 * The sequence operation is not cached because we can use the slot and
2950 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03002951 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04002952static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03002953nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
2954 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03002955{
Andy Adamson557ce262009-08-28 08:45:04 -04002956 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002957 struct xdr_stream *xdr = &resp->xdr;
2958 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03002959 __be32 status;
2960
Andy Adamson557ce262009-08-28 08:45:04 -04002961 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002962
Andy Adamsonabfabf82009-07-23 19:02:18 -04002963 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04002964 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04002965 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03002966
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002967 p = xdr_reserve_space(xdr, slot->sl_datalen);
2968 if (!p) {
2969 WARN_ON_ONCE(1);
2970 return nfserr_serverfault;
2971 }
2972 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
2973 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03002974
Andy Adamson557ce262009-08-28 08:45:04 -04002975 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002976 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03002977}
2978
Andy Adamson0733d212009-04-03 08:28:01 +03002979/*
2980 * Set the exchange_id flags returned by the server.
2981 */
2982static void
2983nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
2984{
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002985#ifdef CONFIG_NFSD_PNFS
2986 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_PNFS_MDS;
2987#else
Andy Adamson0733d212009-04-03 08:28:01 +03002988 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002989#endif
Andy Adamson0733d212009-04-03 08:28:01 +03002990
2991 /* Referrals are supported, Migration is not. */
2992 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
2993
2994 /* set the wire flags to return to client. */
2995 clid->flags = new->cl_exchange_flags;
2996}
2997
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002998static bool client_has_openowners(struct nfs4_client *clp)
2999{
3000 struct nfs4_openowner *oo;
3001
3002 list_for_each_entry(oo, &clp->cl_openowners, oo_perclient) {
3003 if (!list_empty(&oo->oo_owner.so_stateids))
3004 return true;
3005 }
3006 return false;
3007}
3008
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04003009static bool client_has_state(struct nfs4_client *clp)
3010{
J. Bruce Fields4eaea132015-10-15 16:11:01 -04003011 return client_has_openowners(clp)
Kinglong Mee47e970b2015-07-21 13:09:17 +08003012#ifdef CONFIG_NFSD_PNFS
3013 || !list_empty(&clp->cl_lo_states)
3014#endif
J. Bruce Fields6eccece2012-05-29 16:37:44 -04003015 || !list_empty(&clp->cl_delegations)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04003016 || !list_empty(&clp->cl_sessions)
3017 || !list_empty(&clp->async_copies);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04003018}
3019
J. Bruce Fields79123442019-06-05 12:42:05 -04003020static __be32 copy_impl_id(struct nfs4_client *clp,
3021 struct nfsd4_exchange_id *exid)
3022{
3023 if (!exid->nii_domain.data)
3024 return 0;
3025 xdr_netobj_dup(&clp->cl_nii_domain, &exid->nii_domain, GFP_KERNEL);
3026 if (!clp->cl_nii_domain.data)
3027 return nfserr_jukebox;
3028 xdr_netobj_dup(&clp->cl_nii_name, &exid->nii_name, GFP_KERNEL);
3029 if (!clp->cl_nii_name.data)
3030 return nfserr_jukebox;
Arnd Bergmanne29f4702019-10-31 14:52:43 +01003031 clp->cl_nii_time = exid->nii_time;
J. Bruce Fields79123442019-06-05 12:42:05 -04003032 return 0;
3033}
3034
Al Virob37ad282006-10-19 23:28:59 -07003035__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003036nfsd4_exchange_id(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3037 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003038{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003039 struct nfsd4_exchange_id *exid = &u->exchange_id;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003040 struct nfs4_client *conf, *new;
3041 struct nfs4_client *unconf = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003042 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04003043 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03003044 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04003045 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04003046 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003047 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03003048
Jeff Layton363168b2009-08-14 12:57:56 -04003049 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03003050 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04003051 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03003052 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04003053 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03003054
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04003055 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03003056 return nfserr_inval;
3057
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003058 new = create_client(exid->clname, rqstp, &verf);
3059 if (new == NULL)
3060 return nfserr_jukebox;
J. Bruce Fields79123442019-06-05 12:42:05 -04003061 status = copy_impl_id(new, exid);
3062 if (status)
3063 goto out_nolock;
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003064
Andy Adamson0733d212009-04-03 08:28:01 +03003065 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04003066 case SP4_MACH_CRED:
Andrew Elbleed941642016-06-15 12:52:09 -04003067 exid->spo_must_enforce[0] = 0;
3068 exid->spo_must_enforce[1] = (
3069 1 << (OP_BIND_CONN_TO_SESSION - 32) |
3070 1 << (OP_EXCHANGE_ID - 32) |
3071 1 << (OP_CREATE_SESSION - 32) |
3072 1 << (OP_DESTROY_SESSION - 32) |
3073 1 << (OP_DESTROY_CLIENTID - 32));
3074
3075 exid->spo_must_allow[0] &= (1 << (OP_CLOSE) |
3076 1 << (OP_OPEN_DOWNGRADE) |
3077 1 << (OP_LOCKU) |
3078 1 << (OP_DELEGRETURN));
3079
3080 exid->spo_must_allow[1] &= (
3081 1 << (OP_TEST_STATEID - 32) |
3082 1 << (OP_FREE_STATEID - 32));
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003083 if (!svc_rqst_integrity_protected(rqstp)) {
3084 status = nfserr_inval;
3085 goto out_nolock;
3086 }
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05003087 /*
3088 * Sometimes userspace doesn't give us a principal.
3089 * Which is a bug, really. Anyway, we can't enforce
3090 * MACH_CRED in that case, better to give up now:
3091 */
J. Bruce Fields414ca012015-11-20 10:48:02 -05003092 if (!new->cl_cred.cr_principal &&
3093 !new->cl_cred.cr_raw_principal) {
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05003094 status = nfserr_serverfault;
3095 goto out_nolock;
3096 }
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003097 new->cl_mach_cred = true;
Andy Adamson0733d212009-04-03 08:28:01 +03003098 case SP4_NONE:
3099 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05003100 default: /* checked by xdr code */
3101 WARN_ON_ONCE(1);
Gustavo A. R. Silva0a4c9262019-01-23 02:48:28 -06003102 /* fall through */
Andy Adamson0733d212009-04-03 08:28:01 +03003103 case SP4_SSV:
Kinglong Mee8edf4b02016-02-26 22:36:42 +08003104 status = nfserr_encr_alg_unsupp;
3105 goto out_nolock;
Andy Adamson0733d212009-04-03 08:28:01 +03003106 }
3107
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003108 /* Cases below refer to rfc 5661 section 18.35.4: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003109 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003110 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03003111 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04003112 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
3113 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
3114
J. Bruce Fields136e6582012-05-12 20:37:23 -04003115 if (update) {
3116 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003117 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03003118 goto out;
3119 }
Andrew Elblededeb132016-06-15 12:52:08 -04003120 if (!nfsd4_mach_creds_match(conf, rqstp)) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04003121 status = nfserr_wrong_cred;
3122 goto out;
3123 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003124 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03003125 status = nfserr_perm;
3126 goto out;
3127 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003128 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03003129 status = nfserr_not_same;
3130 goto out;
3131 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003132 /* case 6 */
3133 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003134 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03003135 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003136 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04003137 if (client_has_state(conf)) {
3138 status = nfserr_clid_inuse;
3139 goto out;
3140 }
Andy Adamson0733d212009-04-03 08:28:01 +03003141 goto out_new;
3142 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04003143 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04003144 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003145 goto out_copy;
3146 }
3147 /* case 5, client reboot */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003148 conf = NULL;
J. Bruce Fields136e6582012-05-12 20:37:23 -04003149 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03003150 }
3151
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003152 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03003153 status = nfserr_noent;
3154 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03003155 }
3156
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003157 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003158 if (unconf) /* case 4, possible retry or client restart */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003159 unhash_client_locked(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03003160
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04003161 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03003162out_new:
Jeff Laytonfd699b82014-07-30 08:27:14 -04003163 if (conf) {
3164 status = mark_client_expired_locked(conf);
3165 if (status)
3166 goto out;
3167 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04003168 new->cl_minorversion = cstate->minorversion;
Andrew Elbleed941642016-06-15 12:52:09 -04003169 new->cl_spo_must_allow.u.words[0] = exid->spo_must_allow[0];
3170 new->cl_spo_must_allow.u.words[1] = exid->spo_must_allow[1];
Andy Adamson0733d212009-04-03 08:28:01 +03003171
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003172 add_to_unconfirmed(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003173 swap(new, conf);
Andy Adamson0733d212009-04-03 08:28:01 +03003174out_copy:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003175 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
3176 exid->clientid.cl_id = conf->cl_clientid.cl_id;
Andy Adamson0733d212009-04-03 08:28:01 +03003177
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003178 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
3179 nfsd4_set_ex_flags(conf, exid);
Andy Adamson0733d212009-04-03 08:28:01 +03003180
3181 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003182 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03003183 status = nfs_ok;
3184
3185out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003186 spin_unlock(&nn->client_lock);
J. Bruce Fields50c7b942015-11-23 15:39:12 -07003187out_nolock:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003188 if (new)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003189 expire_client(new);
3190 if (unconf)
3191 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03003192 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003193}
3194
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003195static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04003196check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003197{
Andy Adamson88e588d2009-07-23 19:02:15 -04003198 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
3199 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003200
3201 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04003202 if (slot_inuse) {
3203 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003204 return nfserr_jukebox;
3205 else
3206 return nfserr_seq_misordered;
3207 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05003208 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04003209 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03003210 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04003211 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03003212 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003213 return nfserr_seq_misordered;
3214}
3215
Andy Adamson49557cc2009-07-23 19:02:16 -04003216/*
3217 * Cache the create session result into the create session single DRC
3218 * slot cache by saving the xdr structure. sl_seqid has been set.
3219 * Do this for solo or embedded create session operations.
3220 */
3221static void
3222nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003223 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04003224{
3225 slot->sl_status = nfserr;
3226 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
3227}
3228
3229static __be32
3230nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
3231 struct nfsd4_clid_slot *slot)
3232{
3233 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
3234 return slot->sl_status;
3235}
3236
Mi Jinlong1b74c252011-07-14 14:50:17 +08003237#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
3238 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
3239 1 + /* MIN tag is length with zero, only length */ \
3240 3 + /* version, opcount, opcode */ \
3241 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3242 /* seqid, slotID, slotID, cache */ \
3243 4 ) * sizeof(__be32))
3244
3245#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
3246 2 + /* verifier: AUTH_NULL, length 0 */\
3247 1 + /* status */ \
3248 1 + /* MIN tag is length with zero, only length */ \
3249 3 + /* opcount, opcode, opstatus*/ \
3250 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3251 /* seqid, slotID, slotID, slotID, status */ \
3252 5 ) * sizeof(__be32))
3253
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003254static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08003255{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003256 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
3257
J. Bruce Fields373cd402013-04-08 15:42:12 -04003258 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
3259 return nfserr_toosmall;
3260 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
3261 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003262 ca->headerpadsz = 0;
3263 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
3264 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
3265 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
3266 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
3267 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
3268 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
3269 /*
3270 * Note decreasing slot size below client's request may make it
3271 * difficult for client to function correctly, whereas
3272 * decreasing the number of slots will (just?) affect
3273 * performance. When short on memory we therefore prefer to
3274 * decrease number of slots instead of their size. Clients that
3275 * request larger slots than they need will get poor results:
NeilBrown7f49fd5d2019-09-20 16:33:16 +10003276 * Note that we always allow at least one slot, because our
3277 * accounting is soft and provides no guarantees either way.
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003278 */
NeilBrown2030ca52019-09-20 16:36:45 +10003279 ca->maxreqs = nfsd4_get_drc_mem(ca, nn);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003280
J. Bruce Fields373cd402013-04-08 15:42:12 -04003281 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08003282}
3283
Chuck Lever45006322016-03-01 13:06:02 -05003284/*
3285 * Server's NFSv4.1 backchannel support is AUTH_SYS-only for now.
3286 * These are based on similar macros in linux/sunrpc/msg_prot.h .
3287 */
3288#define RPC_MAX_HEADER_WITH_AUTH_SYS \
3289 (RPC_CALLHDRSIZE + 2 * (2 + UNX_CALLSLACK))
3290
3291#define RPC_MAX_REPHEADER_WITH_AUTH_SYS \
3292 (RPC_REPHDRSIZE + (2 + NUL_REPLYSLACK))
3293
Kinglong Mee8a891632013-12-23 18:11:02 +08003294#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05003295 RPC_MAX_HEADER_WITH_AUTH_SYS) * sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08003296#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05003297 RPC_MAX_REPHEADER_WITH_AUTH_SYS) * \
3298 sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08003299
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003300static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
3301{
3302 ca->headerpadsz = 0;
3303
Kinglong Mee8a891632013-12-23 18:11:02 +08003304 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003305 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08003306 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003307 return nfserr_toosmall;
3308 ca->maxresp_cached = 0;
3309 if (ca->maxops < 2)
3310 return nfserr_toosmall;
3311
3312 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003313}
3314
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003315static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
3316{
3317 switch (cbs->flavor) {
3318 case RPC_AUTH_NULL:
3319 case RPC_AUTH_UNIX:
3320 return nfs_ok;
3321 default:
3322 /*
3323 * GSS case: the spec doesn't allow us to return this
3324 * error. But it also doesn't allow us not to support
3325 * GSS.
3326 * I'd rather this fail hard than return some error the
3327 * client might think it can already handle:
3328 */
3329 return nfserr_encr_alg_unsupp;
3330 }
3331}
3332
Andy Adamson069b6ad2009-04-03 08:27:58 +03003333__be32
3334nfsd4_create_session(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003335 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003336{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003337 struct nfsd4_create_session *cr_ses = &u->create_session;
Jeff Layton363168b2009-08-14 12:57:56 -04003338 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003339 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003340 struct nfs4_client *old = NULL;
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04003341 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003342 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003343 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003344 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003345 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003346
Mi Jinlonga62573d2011-03-23 17:57:07 +08003347 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
3348 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003349 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
3350 if (status)
3351 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003352 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04003353 if (status)
3354 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04003355 status = check_backchannel_attrs(&cr_ses->back_channel);
3356 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08003357 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003358 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08003359 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003360 if (!new)
3361 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003362 conn = alloc_conn_from_crses(rqstp, cr_ses);
3363 if (!conn)
3364 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08003365
Jeff Laytond20c11d2014-07-30 08:27:07 -04003366 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003367 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003368 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003369 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003370
3371 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04003372 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003373 if (!nfsd4_mach_creds_match(conf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003374 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003375 cs_slot = &conf->cl_cs_slot;
3376 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Kinglong Meef5e22bb2015-07-13 17:32:34 +08003377 if (status) {
3378 if (status == nfserr_replay_cache)
3379 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003380 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003381 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003382 } else if (unconf) {
3383 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04003384 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003385 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003386 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003387 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04003388 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003389 if (!nfsd4_mach_creds_match(unconf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003390 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04003391 cs_slot = &unconf->cl_cs_slot;
3392 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03003393 if (status) {
3394 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003395 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003396 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003397 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003398 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003399 if (old) {
Jeff Laytond20c11d2014-07-30 08:27:07 -04003400 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04003401 if (status) {
3402 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003403 goto out_free_conn;
Jeff Layton7abea1e2014-07-30 08:27:13 -04003404 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003405 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04003406 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003407 conf = unconf;
3408 } else {
3409 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003410 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003411 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003412 status = nfs_ok;
Chuck Lever4ce85c82016-03-01 13:05:27 -05003413 /* Persistent sessions are not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04003414 cr_ses->flags &= ~SESSION4_PERSIST;
Chuck Lever4ce85c82016-03-01 13:05:27 -05003415 /* Upshifting from TCP to RDMA is not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04003416 cr_ses->flags &= ~SESSION4_RDMA;
3417
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003418 init_session(rqstp, new, conf, cr_ses);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003419 nfsd4_get_session_locked(new);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003420
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04003421 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003422 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04003423 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04003424 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003425
Jeff Laytond20c11d2014-07-30 08:27:07 -04003426 /* cache solo and embedded create sessions under the client_lock */
Andy Adamson49557cc2009-07-23 19:02:16 -04003427 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003428 spin_unlock(&nn->client_lock);
3429 /* init connection and backchannel */
3430 nfsd4_init_conn(rqstp, conn, new);
3431 nfsd4_put_session(new);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003432 if (old)
3433 expire_client(old);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003434 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003435out_free_conn:
Jeff Laytond20c11d2014-07-30 08:27:07 -04003436 spin_unlock(&nn->client_lock);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003437 free_conn(conn);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003438 if (old)
3439 expire_client(old);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04003440out_free_session:
3441 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04003442out_release_drc_mem:
3443 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04003444 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003445}
3446
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003447static __be32 nfsd4_map_bcts_dir(u32 *dir)
3448{
3449 switch (*dir) {
3450 case NFS4_CDFC4_FORE:
3451 case NFS4_CDFC4_BACK:
3452 return nfs_ok;
3453 case NFS4_CDFC4_FORE_OR_BOTH:
3454 case NFS4_CDFC4_BACK_OR_BOTH:
3455 *dir = NFS4_CDFC4_BOTH;
3456 return nfs_ok;
zhengbinfc5fc5d2019-12-19 17:29:20 +08003457 }
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003458 return nfserr_inval;
3459}
3460
Christoph Hellwigeb698532017-05-08 20:58:35 +02003461__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp,
3462 struct nfsd4_compound_state *cstate,
3463 union nfsd4_op_u *u)
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003464{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003465 struct nfsd4_backchannel_ctl *bc = &u->backchannel_ctl;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003466 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003467 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003468 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003469
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04003470 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
3471 if (status)
3472 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003473 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003474 session->se_cb_prog = bc->bc_cb_program;
3475 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003476 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003477
3478 nfsd4_probe_callback(session->se_client);
3479
3480 return nfs_ok;
3481}
3482
J. Bruce Fieldsc2d715a2020-04-27 17:59:01 -04003483static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
3484{
3485 struct nfsd4_conn *c;
3486
3487 list_for_each_entry(c, &s->se_conns, cn_persession) {
3488 if (c->cn_xprt == xpt) {
3489 return c;
3490 }
3491 }
3492 return NULL;
3493}
3494
3495static __be32 nfsd4_match_existing_connection(struct svc_rqst *rqst,
3496 struct nfsd4_session *session, u32 req)
3497{
3498 struct nfs4_client *clp = session->se_client;
3499 struct svc_xprt *xpt = rqst->rq_xprt;
3500 struct nfsd4_conn *c;
3501 __be32 status;
3502
3503 /* Following the last paragraph of RFC 5661 Section 18.34.3: */
3504 spin_lock(&clp->cl_lock);
3505 c = __nfsd4_find_conn(xpt, session);
3506 if (!c)
3507 status = nfserr_noent;
3508 else if (req == c->cn_flags)
3509 status = nfs_ok;
3510 else if (req == NFS4_CDFC4_FORE_OR_BOTH &&
3511 c->cn_flags != NFS4_CDFC4_BACK)
3512 status = nfs_ok;
3513 else if (req == NFS4_CDFC4_BACK_OR_BOTH &&
3514 c->cn_flags != NFS4_CDFC4_FORE)
3515 status = nfs_ok;
3516 else
3517 status = nfserr_inval;
3518 spin_unlock(&clp->cl_lock);
3519 return status;
3520}
3521
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003522__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
3523 struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003524 union nfsd4_op_u *u)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003525{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003526 struct nfsd4_bind_conn_to_session *bcts = &u->bind_conn_to_session;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003527 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003528 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003529 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003530 struct net *net = SVC_NET(rqstp);
3531 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003532
3533 if (!nfsd4_last_compound_op(rqstp))
3534 return nfserr_not_only_op;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003535 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003536 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003537 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003538 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003539 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003540 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003541 if (!nfsd4_mach_creds_match(session->se_client, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04003542 goto out;
J. Bruce Fieldsc2d715a2020-04-27 17:59:01 -04003543 status = nfsd4_match_existing_connection(rqstp, session, bcts->dir);
3544 if (status == nfs_ok || status == nfserr_inval)
3545 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003546 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003547 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003548 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003549 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003550 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04003551 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003552 goto out;
3553 nfsd4_init_conn(rqstp, conn, session);
3554 status = nfs_ok;
3555out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003556 nfsd4_put_session(session);
3557out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04003558 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003559}
3560
J. Bruce Fields665d5072018-04-11 16:53:36 -04003561static bool nfsd4_compound_in_session(struct nfsd4_compound_state *cstate, struct nfs4_sessionid *sid)
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04003562{
J. Bruce Fields665d5072018-04-11 16:53:36 -04003563 if (!cstate->session)
Fengguang Wu51d87bc2018-03-22 13:37:20 +08003564 return false;
J. Bruce Fields665d5072018-04-11 16:53:36 -04003565 return !memcmp(sid, &cstate->session->se_sessionid, sizeof(*sid));
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04003566}
3567
Andy Adamson069b6ad2009-04-03 08:27:58 +03003568__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003569nfsd4_destroy_session(struct svc_rqst *r, struct nfsd4_compound_state *cstate,
3570 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003571{
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003572 struct nfs4_sessionid *sessionid = &u->destroy_session.sessionid;
Benny Halevye10e0cf2009-04-03 08:28:38 +03003573 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003574 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003575 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003576 struct net *net = SVC_NET(r);
3577 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003578
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003579 status = nfserr_not_only_op;
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003580 if (nfsd4_compound_in_session(cstate, sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04003581 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003582 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003583 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04003584 }
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003585 dump_sessionid(__func__, sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003586 spin_lock(&nn->client_lock);
J. Bruce Fieldsca0552f2018-04-11 17:01:53 -04003587 ses = find_in_sessionid_hashtbl(sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003588 if (!ses)
3589 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003590 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04003591 if (!nfsd4_mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003592 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003593 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003594 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003595 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03003596 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003597 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003598
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05003599 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04003600
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003601 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003602 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003603out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003604 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003605out_client_lock:
3606 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003607out:
Benny Halevye10e0cf2009-04-03 08:28:38 +03003608 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003609}
3610
J. Bruce Fields57266a62013-04-13 14:27:29 -04003611static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003612{
3613 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003614 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003615 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003616 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003617
3618 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003619 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003620 if (c)
3621 goto out_free;
3622 status = nfserr_conn_not_bound_to_session;
3623 if (clp->cl_mach_cred)
3624 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003625 __nfsd4_hash_conn(new, ses);
3626 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003627 ret = nfsd4_register_conn(new);
3628 if (ret)
3629 /* oops; xprt is already down: */
3630 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003631 return nfs_ok;
3632out_free:
3633 spin_unlock(&clp->cl_lock);
3634 free_conn(new);
3635 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003636}
3637
Mi Jinlong868b89c2011-04-27 09:09:58 +08003638static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
3639{
3640 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3641
3642 return args->opcnt > session->se_fchannel.maxops;
3643}
3644
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003645static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
3646 struct nfsd4_session *session)
3647{
3648 struct xdr_buf *xb = &rqstp->rq_arg;
3649
3650 return xb->len > session->se_fchannel.maxreq_sz;
3651}
3652
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003653static bool replay_matches_cache(struct svc_rqst *rqstp,
3654 struct nfsd4_sequence *seq, struct nfsd4_slot *slot)
3655{
3656 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3657
3658 if ((bool)(slot->sl_flags & NFSD4_SLOT_CACHETHIS) !=
3659 (bool)seq->cachethis)
3660 return false;
3661 /*
Scott Mayhew6e73e922019-10-09 15:11:37 -04003662 * If there's an error then the reply can have fewer ops than
3663 * the call.
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003664 */
Scott Mayhew6e73e922019-10-09 15:11:37 -04003665 if (slot->sl_opcnt < argp->opcnt && !slot->sl_status)
3666 return false;
3667 /*
3668 * But if we cached a reply with *more* ops than the call you're
3669 * sending us now, then this new call is clearly not really a
3670 * replay of the old one:
3671 */
3672 if (slot->sl_opcnt > argp->opcnt)
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003673 return false;
3674 /* This is the only check explicitly called by spec: */
3675 if (!same_creds(&rqstp->rq_cred, &slot->sl_cred))
3676 return false;
3677 /*
3678 * There may be more comparisons we could actually do, but the
3679 * spec doesn't require us to catch every case where the calls
3680 * don't match (that would require caching the call as well as
3681 * the reply), so we don't bother.
3682 */
3683 return true;
3684}
3685
Andy Adamson069b6ad2009-04-03 08:27:58 +03003686__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003687nfsd4_sequence(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3688 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003689{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003690 struct nfsd4_sequence *seq = &u->sequence;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003691 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003692 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003693 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003694 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003695 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003696 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003697 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003698 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003699 struct net *net = SVC_NET(rqstp);
3700 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003701
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003702 if (resp->opcnt != 1)
3703 return nfserr_sequence_pos;
3704
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003705 /*
3706 * Will be either used or freed by nfsd4_sequence_check_conn
3707 * below.
3708 */
3709 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
3710 if (!conn)
3711 return nfserr_jukebox;
3712
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003713 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003714 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003715 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04003716 goto out_no_session;
3717 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003718
Mi Jinlong868b89c2011-04-27 09:09:58 +08003719 status = nfserr_too_many_ops;
3720 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003721 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08003722
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003723 status = nfserr_req_too_big;
3724 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003725 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003726
Benny Halevyb85d4c02009-04-03 08:28:08 +03003727 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003728 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003729 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003730
Andy Adamson557ce262009-08-28 08:45:04 -04003731 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03003732 dprintk("%s: slotid %d\n", __func__, seq->slotid);
3733
Andy Adamsona8dfdae2009-08-28 08:45:02 -04003734 /* We do not negotiate the number of slots yet, so set the
3735 * maxslots to the session maxreqs which is used to encode
3736 * sr_highest_slotid and the sr_target_slot id to maxslots */
3737 seq->maxslots = session->se_fchannel.maxreqs;
3738
J. Bruce Fields73e79482012-02-13 16:39:00 -05003739 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
3740 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003741 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003742 status = nfserr_seq_misordered;
3743 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003744 goto out_put_session;
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003745 status = nfserr_seq_false_retry;
3746 if (!replay_matches_cache(rqstp, seq, slot))
3747 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003748 cstate->slot = slot;
3749 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003750 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03003751 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04003752 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03003753 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003754 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003755 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003756 }
3757 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003758 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003759
J. Bruce Fields57266a62013-04-13 14:27:29 -04003760 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003761 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003762 if (status)
3763 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003764
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003765 buflen = (seq->cachethis) ?
3766 session->se_fchannel.maxresp_cached :
3767 session->se_fchannel.maxresp_sz;
3768 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
3769 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04003770 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003771 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04003772 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003773
3774 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003775 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003776 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003777 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05003778 if (seq->cachethis)
3779 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003780 else
3781 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003782
3783 cstate->slot = slot;
3784 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003785 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003786
Benny Halevyb85d4c02009-04-03 08:28:08 +03003787out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04003788 switch (clp->cl_cb_state) {
3789 case NFSD4_CB_DOWN:
3790 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
3791 break;
3792 case NFSD4_CB_FAULT:
3793 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
3794 break;
3795 default:
3796 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003797 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04003798 if (!list_empty(&clp->cl_revoked))
3799 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003800out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08003801 if (conn)
3802 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003803 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003804 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003805out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003806 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003807 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003808}
3809
Trond Myklebustb6076642014-06-30 11:48:35 -04003810void
3811nfsd4_sequence_done(struct nfsd4_compoundres *resp)
3812{
3813 struct nfsd4_compound_state *cs = &resp->cstate;
3814
3815 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04003816 if (cs->status != nfserr_replay_cache) {
3817 nfsd4_store_cache_entry(resp);
3818 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
3819 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003820 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04003821 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003822 } else if (cs->clp)
3823 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04003824}
3825
Mi Jinlong345c2842011-10-20 17:51:39 +08003826__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003827nfsd4_destroy_clientid(struct svc_rqst *rqstp,
3828 struct nfsd4_compound_state *cstate,
3829 union nfsd4_op_u *u)
Mi Jinlong345c2842011-10-20 17:51:39 +08003830{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003831 struct nfsd4_destroy_clientid *dc = &u->destroy_clientid;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003832 struct nfs4_client *conf, *unconf;
3833 struct nfs4_client *clp = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003834 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003835 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08003836
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003837 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003838 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003839 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003840 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08003841
3842 if (conf) {
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04003843 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08003844 status = nfserr_clientid_busy;
3845 goto out;
3846 }
Jeff Laytonfd699b82014-07-30 08:27:14 -04003847 status = mark_client_expired_locked(conf);
3848 if (status)
3849 goto out;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003850 clp = conf;
Mi Jinlong345c2842011-10-20 17:51:39 +08003851 } else if (unconf)
3852 clp = unconf;
3853 else {
3854 status = nfserr_stale_clientid;
3855 goto out;
3856 }
Andrew Elblededeb132016-06-15 12:52:08 -04003857 if (!nfsd4_mach_creds_match(clp, rqstp)) {
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003858 clp = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003859 status = nfserr_wrong_cred;
3860 goto out;
3861 }
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003862 unhash_client_locked(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003863out:
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003864 spin_unlock(&nn->client_lock);
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003865 if (clp)
3866 expire_client(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003867 return status;
3868}
3869
Andy Adamson069b6ad2009-04-03 08:27:58 +03003870__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003871nfsd4_reclaim_complete(struct svc_rqst *rqstp,
3872 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003873{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003874 struct nfsd4_reclaim_complete *rc = &u->reclaim_complete;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003875 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003876
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003877 if (rc->rca_one_fs) {
3878 if (!cstate->current_fh.fh_dentry)
3879 return nfserr_nofilehandle;
3880 /*
3881 * We don't take advantage of the rca_one_fs case.
3882 * That's OK, it's optional, we can safely ignore it.
3883 */
Christophe JAILLETd28c4422016-07-02 08:24:32 +02003884 return nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003885 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003886
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003887 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04003888 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
3889 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003890 goto out;
3891
3892 status = nfserr_stale_clientid;
3893 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003894 /*
3895 * The following error isn't really legal.
3896 * But we only get here if the client just explicitly
3897 * destroyed the client. Surely it no longer cares what
3898 * error it gets back on an operation for the dead
3899 * client.
3900 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003901 goto out;
3902
3903 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04003904 nfsd4_client_record_create(cstate->session->se_client);
Scott Mayhew362063a2019-03-26 18:06:28 -04003905 inc_reclaim_complete(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003906out:
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003907 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003908}
3909
3910__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003911nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003912 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003914 struct nfsd4_setclientid *setclid = &u->setclientid;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04003915 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 nfs4_verifier clverifier = setclid->se_verf;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003917 struct nfs4_client *conf, *new;
3918 struct nfs4_client *unconf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003919 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003920 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3921
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003922 new = create_client(clname, rqstp, &clverifier);
3923 if (new == NULL)
3924 return nfserr_jukebox;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003925 /* Cases below refer to rfc 3530 section 14.2.33: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003926 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003927 conf = find_confirmed_client_by_name(&clname, nn);
J. Bruce Fields2b634822015-10-15 15:33:23 -04003928 if (conf && client_has_state(conf)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003929 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05003931 if (clp_used_exchangeid(conf))
3932 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04003933 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04003934 trace_nfsd_clid_inuse_err(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 goto out;
3936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003938 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04003939 if (unconf)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003940 unhash_client_locked(unconf);
Chuck Lever45f56da2020-04-05 14:40:25 -04003941 /* We need to handle only case 1: probable callback update */
Kinglong Mee41eb1672015-07-13 17:29:41 +08003942 if (conf && same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 copy_clid(new, conf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003944 gen_confirm(new, nn);
Chuck Lever45f56da2020-04-05 14:40:25 -04003945 }
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04003946 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09003947 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003948 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
3950 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
3951 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003952 new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 status = nfs_ok;
3954out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003955 spin_unlock(&nn->client_lock);
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003956 if (new)
3957 free_client(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003958 if (unconf)
3959 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 return status;
3961}
3962
3963
Al Virob37ad282006-10-19 23:28:59 -07003964__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003965nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003966 struct nfsd4_compound_state *cstate,
3967 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003969 struct nfsd4_setclientid_confirm *setclientid_confirm =
3970 &u->setclientid_confirm;
NeilBrown21ab45a2005-06-23 22:04:14 -07003971 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003972 struct nfs4_client *old = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
3974 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07003975 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003976 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003978 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 return nfserr_stale_clientid;
NeilBrown21ab45a2005-06-23 22:04:14 -07003980
Jeff Laytond20c11d2014-07-30 08:27:07 -04003981 spin_lock(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003982 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003983 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003984 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04003985 * We try hard to give out unique clientid's, so if we get an
3986 * attempt to confirm the same clientid with a different cred,
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003987 * the client may be buggy; this should never happen.
3988 *
3989 * Nevertheless, RFC 7530 recommends INUSE for this case:
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003990 */
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003991 status = nfserr_clid_inuse;
J. Bruce Fields8695b902012-05-19 10:05:58 -04003992 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
3993 goto out;
3994 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
3995 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003996 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003997 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003998 if (conf && same_verf(&confirm, &conf->cl_confirm)) {
3999 /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 status = nfs_ok;
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04004001 } else /* case 4: client hasn't noticed we rebooted yet? */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04004002 status = nfserr_stale_clientid;
4003 goto out;
4004 }
4005 status = nfs_ok;
4006 if (conf) { /* case 1: callback update */
Jeff Laytond20c11d2014-07-30 08:27:07 -04004007 old = unconf;
4008 unhash_client_locked(old);
J. Bruce Fields8695b902012-05-19 10:05:58 -04004009 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04004010 } else { /* case 3: normal case; new or rebooted client */
Jeff Laytond20c11d2014-07-30 08:27:07 -04004011 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
4012 if (old) {
J. Bruce Fields2b634822015-10-15 15:33:23 -04004013 status = nfserr_clid_inuse;
4014 if (client_has_state(old)
4015 && !same_creds(&unconf->cl_cred,
4016 &old->cl_cred))
4017 goto out;
Jeff Laytond20c11d2014-07-30 08:27:07 -04004018 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04004019 if (status) {
4020 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04004021 goto out;
Jeff Layton7abea1e2014-07-30 08:27:13 -04004022 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04004023 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04004024 move_to_confirmed(unconf);
Jeff Laytond20c11d2014-07-30 08:27:07 -04004025 conf = unconf;
NeilBrown08e89872005-06-23 22:04:11 -07004026 }
Jeff Laytond20c11d2014-07-30 08:27:07 -04004027 get_client_locked(conf);
4028 spin_unlock(&nn->client_lock);
4029 nfsd4_probe_callback(conf);
4030 spin_lock(&nn->client_lock);
4031 put_client_renew_locked(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032out:
Jeff Laytond20c11d2014-07-30 08:27:07 -04004033 spin_unlock(&nn->client_lock);
4034 if (old)
4035 expire_client(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 return status;
4037}
4038
J. Bruce Fields32513b42011-10-13 16:00:16 -04004039static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040{
J. Bruce Fields32513b42011-10-13 16:00:16 -04004041 return kmem_cache_alloc(file_slab, GFP_KERNEL);
4042}
4043
4044/* OPEN Share state helper functions */
Jeff Layton5b095e92014-10-23 08:01:02 -04004045static void nfsd4_init_file(struct knfsd_fh *fh, unsigned int hashval,
4046 struct nfs4_file *fp)
J. Bruce Fields32513b42011-10-13 16:00:16 -04004047{
Trond Myklebust950e0112014-06-30 11:48:31 -04004048 lockdep_assert_held(&state_lock);
4049
Elena Reshetova818a34e2017-10-20 12:53:30 +03004050 refcount_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04004051 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04004052 INIT_LIST_HEAD(&fp->fi_stateids);
4053 INIT_LIST_HEAD(&fp->fi_delegations);
Sachin Bhamare8287f002015-04-27 14:50:14 +02004054 INIT_LIST_HEAD(&fp->fi_clnt_odstate);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04004055 fh_copy_shallow(&fp->fi_fhandle, fh);
Jeff Layton0c637be2014-08-22 12:05:43 -04004056 fp->fi_deleg_file = NULL;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004057 fp->fi_had_conflict = false;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004058 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004059 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
4060 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004061#ifdef CONFIG_NFSD_PNFS
4062 INIT_LIST_HEAD(&fp->fi_lo_states);
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02004063 atomic_set(&fp->fi_lo_recalls, 0);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004064#endif
Jeff Layton5b095e92014-10-23 08:01:02 -04004065 hlist_add_head_rcu(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066}
4067
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004068void
NeilBrowne60d4392005-06-23 22:03:01 -07004069nfsd4_free_slabs(void)
4070{
Jeff Layton9258a2d2018-03-16 09:47:22 -04004071 kmem_cache_destroy(client_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07004072 kmem_cache_destroy(openowner_slab);
4073 kmem_cache_destroy(lockowner_slab);
4074 kmem_cache_destroy(file_slab);
4075 kmem_cache_destroy(stateid_slab);
4076 kmem_cache_destroy(deleg_slab);
Jeff Layton9258a2d2018-03-16 09:47:22 -04004077 kmem_cache_destroy(odstate_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07004078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Bryan Schumaker72083392011-11-01 15:24:59 -04004080int
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081nfsd4_init_slabs(void)
4082{
Jeff Layton9258a2d2018-03-16 09:47:22 -04004083 client_slab = kmem_cache_create("nfsd4_clients",
4084 sizeof(struct nfs4_client), 0, 0, NULL);
4085 if (client_slab == NULL)
4086 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004087 openowner_slab = kmem_cache_create("nfsd4_openowners",
4088 sizeof(struct nfs4_openowner), 0, 0, NULL);
4089 if (openowner_slab == NULL)
Jeff Layton9258a2d2018-03-16 09:47:22 -04004090 goto out_free_client_slab;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004091 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08004092 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004093 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07004094 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07004095 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09004096 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07004097 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07004098 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07004099 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004100 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07004101 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07004102 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07004103 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09004104 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07004105 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07004106 goto out_free_stateid_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +02004107 odstate_slab = kmem_cache_create("nfsd4_odstate",
4108 sizeof(struct nfs4_clnt_odstate), 0, 0, NULL);
4109 if (odstate_slab == NULL)
4110 goto out_free_deleg_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07004112
Sachin Bhamare8287f002015-04-27 14:50:14 +02004113out_free_deleg_slab:
4114 kmem_cache_destroy(deleg_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07004115out_free_stateid_slab:
4116 kmem_cache_destroy(stateid_slab);
4117out_free_file_slab:
4118 kmem_cache_destroy(file_slab);
4119out_free_lockowner_slab:
4120 kmem_cache_destroy(lockowner_slab);
4121out_free_openowner_slab:
4122 kmem_cache_destroy(openowner_slab);
Jeff Layton9258a2d2018-03-16 09:47:22 -04004123out_free_client_slab:
4124 kmem_cache_destroy(client_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07004125out:
NeilBrowne60d4392005-06-23 22:03:01 -07004126 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127}
4128
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004129static void init_nfs4_replay(struct nfs4_replay *rp)
4130{
4131 rp->rp_status = nfserr_serverfault;
4132 rp->rp_buflen = 0;
4133 rp->rp_buf = rp->rp_ibuf;
Jeff Layton58fb12e2014-07-29 21:34:27 -04004134 mutex_init(&rp->rp_mutex);
4135}
4136
4137static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
4138 struct nfs4_stateowner *so)
4139{
4140 if (!nfsd4_has_session(cstate)) {
4141 mutex_lock(&so->so_replay.rp_mutex);
Kinglong Meeb5971af2014-08-22 10:18:43 -04004142 cstate->replay_owner = nfs4_get_stateowner(so);
Jeff Layton58fb12e2014-07-29 21:34:27 -04004143 }
4144}
4145
4146void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
4147{
4148 struct nfs4_stateowner *so = cstate->replay_owner;
4149
4150 if (so != NULL) {
4151 cstate->replay_owner = NULL;
4152 mutex_unlock(&so->so_replay.rp_mutex);
4153 nfs4_put_stateowner(so);
4154 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004155}
4156
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004157static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
4159 struct nfs4_stateowner *sop;
4160
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004161 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004162 if (!sop)
4163 return NULL;
4164
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04004165 xdr_netobj_dup(&sop->so_owner, owner, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004166 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004167 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004168 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004170
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004171 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004172 sop->so_client = clp;
4173 init_nfs4_replay(&sop->so_replay);
Jeff Layton6b180f02014-07-29 21:34:26 -04004174 atomic_set(&sop->so_count, 1);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004175 return sop;
4176}
4177
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004178static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04004179{
Trond Myklebustd4f04892014-07-29 21:34:36 -04004180 lockdep_assert_held(&clp->cl_lock);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03004181
Trond Myklebustd4f04892014-07-29 21:34:36 -04004182 list_add(&oo->oo_owner.so_strhash,
4183 &clp->cl_ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004184 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
4186
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004187static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
4188{
Trond Myklebustd4f04892014-07-29 21:34:36 -04004189 unhash_openowner_locked(openowner(so));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004190}
4191
Jeff Layton6b180f02014-07-29 21:34:26 -04004192static void nfs4_free_openowner(struct nfs4_stateowner *so)
4193{
4194 struct nfs4_openowner *oo = openowner(so);
4195
4196 kmem_cache_free(openowner_slab, oo);
4197}
4198
4199static const struct nfs4_stateowner_operations openowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04004200 .so_unhash = nfs4_unhash_openowner,
4201 .so_free = nfs4_free_openowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04004202};
4203
Andrew Elble7fc05642015-11-05 20:42:43 -05004204static struct nfs4_ol_stateid *
4205nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
4206{
4207 struct nfs4_ol_stateid *local, *ret = NULL;
4208 struct nfs4_openowner *oo = open->op_openowner;
4209
4210 lockdep_assert_held(&fp->fi_lock);
4211
4212 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
4213 /* ignore lock owners */
4214 if (local->st_stateowner->so_is_open_owner == 0)
4215 continue;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004216 if (local->st_stateowner != &oo->oo_owner)
4217 continue;
4218 if (local->st_stid.sc_type == NFS4_OPEN_STID) {
Andrew Elble7fc05642015-11-05 20:42:43 -05004219 ret = local;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004220 refcount_inc(&ret->st_stid.sc_count);
Andrew Elble7fc05642015-11-05 20:42:43 -05004221 break;
4222 }
4223 }
4224 return ret;
4225}
4226
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004227static __be32
4228nfsd4_verify_open_stid(struct nfs4_stid *s)
4229{
4230 __be32 ret = nfs_ok;
4231
4232 switch (s->sc_type) {
4233 default:
4234 break;
Trond Myklebust4f176412018-01-12 17:42:30 -05004235 case 0:
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004236 case NFS4_CLOSED_STID:
4237 case NFS4_CLOSED_DELEG_STID:
4238 ret = nfserr_bad_stateid;
4239 break;
4240 case NFS4_REVOKED_DELEG_STID:
4241 ret = nfserr_deleg_revoked;
4242 }
4243 return ret;
4244}
4245
4246/* Lock the stateid st_mutex, and deal with races with CLOSE */
4247static __be32
4248nfsd4_lock_ol_stateid(struct nfs4_ol_stateid *stp)
4249{
4250 __be32 ret;
4251
Andrew Elble4f34bd02017-11-08 17:29:51 -05004252 mutex_lock_nested(&stp->st_mutex, LOCK_STATEID_MUTEX);
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004253 ret = nfsd4_verify_open_stid(&stp->st_stid);
4254 if (ret != nfs_ok)
4255 mutex_unlock(&stp->st_mutex);
4256 return ret;
4257}
4258
4259static struct nfs4_ol_stateid *
4260nfsd4_find_and_lock_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
4261{
4262 struct nfs4_ol_stateid *stp;
4263 for (;;) {
4264 spin_lock(&fp->fi_lock);
4265 stp = nfsd4_find_existing_open(fp, open);
4266 spin_unlock(&fp->fi_lock);
4267 if (!stp || nfsd4_lock_ol_stateid(stp) == nfs_ok)
4268 break;
4269 nfs4_put_stid(&stp->st_stid);
4270 }
4271 return stp;
4272}
4273
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004274static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04004275alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004276 struct nfsd4_compound_state *cstate)
4277{
Trond Myklebust13d6f662014-06-30 11:48:45 -04004278 struct nfs4_client *clp = cstate->clp;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04004279 struct nfs4_openowner *oo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004281 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
4282 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 return NULL;
Jeff Layton6b180f02014-07-29 21:34:26 -04004284 oo->oo_owner.so_ops = &openowner_ops;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004285 oo->oo_owner.so_is_open_owner = 1;
4286 oo->oo_owner.so_seqid = open->op_seqid;
Jeff Laytond3134b12014-07-29 21:34:32 -04004287 oo->oo_flags = 0;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04004288 if (nfsd4_has_session(cstate))
4289 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004290 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04004291 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004292 INIT_LIST_HEAD(&oo->oo_close_lru);
Trond Myklebustd4f04892014-07-29 21:34:36 -04004293 spin_lock(&clp->cl_lock);
4294 ret = find_openstateowner_str_locked(strhashval, open, clp);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04004295 if (ret == NULL) {
4296 hash_openowner(oo, clp, strhashval);
4297 ret = oo;
4298 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08004299 nfs4_free_stateowner(&oo->oo_owner);
4300
Trond Myklebustd4f04892014-07-29 21:34:36 -04004301 spin_unlock(&clp->cl_lock);
Jeff Laytonc5952332015-03-23 10:53:42 -04004302 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303}
4304
Andrew Elble7fc05642015-11-05 20:42:43 -05004305static struct nfs4_ol_stateid *
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004306init_open_stateid(struct nfs4_file *fp, struct nfsd4_open *open)
Andrew Elble7fc05642015-11-05 20:42:43 -05004307{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Andrew Elble7fc05642015-11-05 20:42:43 -05004309 struct nfs4_openowner *oo = open->op_openowner;
4310 struct nfs4_ol_stateid *retstp = NULL;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004311 struct nfs4_ol_stateid *stp;
Andrew Elble7fc05642015-11-05 20:42:43 -05004312
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004313 stp = open->op_stp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004314 /* We are moving these outside of the spinlocks to avoid the warnings */
4315 mutex_init(&stp->st_mutex);
Andrew Elble4f34bd02017-11-08 17:29:51 -05004316 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004317
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004318retry:
Andrew Elble7fc05642015-11-05 20:42:43 -05004319 spin_lock(&oo->oo_owner.so_client->cl_lock);
4320 spin_lock(&fp->fi_lock);
4321
4322 retstp = nfsd4_find_existing_open(fp, open);
4323 if (retstp)
4324 goto out_unlock;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004325
4326 open->op_stp = NULL;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004327 refcount_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05004328 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04004329 INIT_LIST_HEAD(&stp->st_locks);
Kinglong Meeb5971af2014-08-22 10:18:43 -04004330 stp->st_stateowner = nfs4_get_stateowner(&oo->oo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07004331 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04004332 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 stp->st_access_bmap = 0;
4334 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07004335 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04004336 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04004337 list_add(&stp->st_perfile, &fp->fi_stateids);
Andrew Elble7fc05642015-11-05 20:42:43 -05004338
4339out_unlock:
Trond Myklebust1d31a252014-07-10 14:07:25 -04004340 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04004341 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004342 if (retstp) {
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004343 /* Handle races with CLOSE */
4344 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
4345 nfs4_put_stid(&retstp->st_stid);
4346 goto retry;
4347 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004348 /* To keep mutex tracking happy */
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004349 mutex_unlock(&stp->st_mutex);
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004350 stp = retstp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04004351 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04004352 return stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353}
4354
Jeff Laytond3134b12014-07-29 21:34:32 -04004355/*
4356 * In the 4.0 case we need to keep the owners around a little while to handle
4357 * CLOSE replay. We still do need to release any file access that is held by
4358 * them before returning however.
4359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360static void
Jeff Laytond3134b12014-07-29 21:34:32 -04004361move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362{
Jeff Layton217526e2014-07-30 08:27:11 -04004363 struct nfs4_ol_stateid *last;
Jeff Laytond3134b12014-07-29 21:34:32 -04004364 struct nfs4_openowner *oo = openowner(s->st_stateowner);
4365 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
4366 nfsd_net_id);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03004367
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004368 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
Jeff Laytonb401be222014-07-29 21:34:33 -04004370 /*
4371 * We know that we hold one reference via nfsd4_close, and another
4372 * "persistent" reference for the client. If the refcount is higher
4373 * than 2, then there are still calls in progress that are using this
4374 * stateid. We can't put the sc_file reference until they are finished.
4375 * Wait for the refcount to drop to 2. Since it has been unhashed,
4376 * there should be no danger of the refcount going back up again at
4377 * this point.
4378 */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004379 wait_event(close_wq, refcount_read(&s->st_stid.sc_count) == 2);
Jeff Laytonb401be222014-07-29 21:34:33 -04004380
Jeff Laytond3134b12014-07-29 21:34:32 -04004381 release_all_access(s);
4382 if (s->st_stid.sc_file) {
4383 put_nfs4_file(s->st_stid.sc_file);
4384 s->st_stid.sc_file = NULL;
4385 }
Jeff Layton217526e2014-07-30 08:27:11 -04004386
4387 spin_lock(&nn->client_lock);
4388 last = oo->oo_last_closed_stid;
Jeff Laytond3134b12014-07-29 21:34:32 -04004389 oo->oo_last_closed_stid = s;
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03004390 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01004391 oo->oo_time = ktime_get_boottime_seconds();
Jeff Layton217526e2014-07-30 08:27:11 -04004392 spin_unlock(&nn->client_lock);
4393 if (last)
4394 nfs4_put_stid(&last->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395}
4396
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397/* search file_hashtbl[] for file */
4398static struct nfs4_file *
Jeff Layton5b095e92014-10-23 08:01:02 -04004399find_file_locked(struct knfsd_fh *fh, unsigned int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 struct nfs4_file *fp;
4402
Madhuparna Bhowmik36a80492020-02-13 20:33:31 +05304403 hlist_for_each_entry_rcu(fp, &file_hashtbl[hashval], fi_hash,
4404 lockdep_is_held(&state_lock)) {
Christoph Hellwig4d94c2e2014-08-14 08:41:48 +02004405 if (fh_match(&fp->fi_fhandle, fh)) {
Elena Reshetova818a34e2017-10-20 12:53:30 +03004406 if (refcount_inc_not_zero(&fp->fi_ref))
Jeff Layton5b095e92014-10-23 08:01:02 -04004407 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07004408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 }
4410 return NULL;
4411}
4412
Christoph Hellwige6ba76e2014-08-14 08:50:16 +02004413struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04004414find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04004415{
4416 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04004417 unsigned int hashval = file_hashval(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04004418
Jeff Layton5b095e92014-10-23 08:01:02 -04004419 rcu_read_lock();
4420 fp = find_file_locked(fh, hashval);
4421 rcu_read_unlock();
Trond Myklebust950e0112014-06-30 11:48:31 -04004422 return fp;
4423}
4424
4425static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004426find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04004427{
4428 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04004429 unsigned int hashval = file_hashval(fh);
4430
4431 rcu_read_lock();
4432 fp = find_file_locked(fh, hashval);
4433 rcu_read_unlock();
4434 if (fp)
4435 return fp;
Trond Myklebust950e0112014-06-30 11:48:31 -04004436
4437 spin_lock(&state_lock);
Jeff Layton5b095e92014-10-23 08:01:02 -04004438 fp = find_file_locked(fh, hashval);
4439 if (likely(fp == NULL)) {
4440 nfsd4_init_file(fh, hashval, new);
Trond Myklebust950e0112014-06-30 11:48:31 -04004441 fp = new;
4442 }
4443 spin_unlock(&state_lock);
4444
4445 return fp;
4446}
4447
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04004448/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 * Called to check deny when READ with all zero stateid or
4450 * WRITE with all zero or all one stateid
4451 */
Al Virob37ad282006-10-19 23:28:59 -07004452static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
4454{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004456 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
Trond Myklebustca943212014-07-23 16:17:39 -04004458 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07004459 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004460 return ret;
4461 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04004462 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004463 if (fp->fi_share_deny & deny_type)
4464 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04004465 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07004466 put_nfs4_file(fp);
4467 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468}
4469
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004470static void nfsd4_cb_recall_prepare(struct nfsd4_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471{
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004472 struct nfs4_delegation *dp = cb_to_delegation(cb);
Trond Myklebust11b91642014-07-29 21:34:08 -04004473 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
4474 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04004475
Trond Myklebust11b91642014-07-29 21:34:08 -04004476 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04004477
Jeff Layton02e12152014-07-16 10:31:57 -04004478 /*
4479 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04004480 * already holding inode->i_lock.
4481 *
Jeff Laytondff13992014-07-08 14:02:49 -04004482 * If the dl_time != 0, then we know that it has already been
4483 * queued for a lease break. Don't queue it again.
4484 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04004485 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04004486 if (dp->dl_time == 0) {
Arnd Bergmann20b7d862019-11-04 16:31:52 +01004487 dp->dl_time = ktime_get_boottime_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04004488 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04004489 }
Jeff Layton02e12152014-07-16 10:31:57 -04004490 spin_unlock(&state_lock);
4491}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004493static int nfsd4_cb_recall_done(struct nfsd4_callback *cb,
4494 struct rpc_task *task)
4495{
4496 struct nfs4_delegation *dp = cb_to_delegation(cb);
4497
Andrew Elblea4579742015-08-31 12:06:41 -04004498 if (dp->dl_stid.sc_type == NFS4_CLOSED_DELEG_STID)
4499 return 1;
4500
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004501 switch (task->tk_status) {
4502 case 0:
4503 return 1;
Scott Mayhew1c73b9d2019-05-02 13:32:12 -04004504 case -NFS4ERR_DELAY:
4505 rpc_delay(task, 2 * HZ);
4506 return 0;
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004507 case -EBADHANDLE:
4508 case -NFS4ERR_BAD_STATEID:
4509 /*
4510 * Race: client probably got cb_recall before open reply
4511 * granting delegation.
4512 */
4513 if (dp->dl_retries--) {
4514 rpc_delay(task, 2 * HZ);
4515 return 0;
4516 }
4517 /*FALLTHRU*/
4518 default:
Scott Mayhew1c73b9d2019-05-02 13:32:12 -04004519 return 1;
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004520 }
4521}
4522
4523static void nfsd4_cb_recall_release(struct nfsd4_callback *cb)
4524{
4525 struct nfs4_delegation *dp = cb_to_delegation(cb);
4526
4527 nfs4_put_stid(&dp->dl_stid);
4528}
4529
Julia Lawallc4cb8972015-11-21 22:57:39 +01004530static const struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
Christoph Hellwig0162ac22014-09-24 12:19:19 +02004531 .prepare = nfsd4_cb_recall_prepare,
4532 .done = nfsd4_cb_recall_done,
4533 .release = nfsd4_cb_recall_release,
4534};
4535
Jeff Layton02e12152014-07-16 10:31:57 -04004536static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
4537{
4538 /*
4539 * We're assuming the state code never drops its reference
4540 * without first removing the lease. Since we're in this lease
J. Bruce Fields4a269efb2018-04-13 17:34:35 -04004541 * callback (and since the lease code is serialized by the
4542 * i_lock) we know the server hasn't removed the lease yet, and
4543 * we know it's safe to take a reference.
Jeff Layton02e12152014-07-16 10:31:57 -04004544 */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03004545 refcount_inc(&dp->dl_stid.sc_count);
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02004546 nfsd4_run_cb(&dp->dl_recall);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004547}
4548
Jeff Layton1c8c6012013-06-21 08:58:15 -04004549/* Called from break_lease() with i_lock held. */
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004550static bool
4551nfsd_break_deleg_cb(struct file_lock *fl)
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004552{
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004553 bool ret = false;
J. Bruce Fields653e5142018-02-15 22:08:45 -05004554 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
4555 struct nfs4_file *fp = dp->dl_stid.sc_file;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004556
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04004557 trace_nfsd_deleg_break(&dp->dl_stid.sc_stateid);
4558
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04004559 /*
4560 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004561 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05004562 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04004563 */
4564 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
Jeff Layton02e12152014-07-16 10:31:57 -04004566 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004567 fp->fi_had_conflict = true;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004568 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04004569 spin_unlock(&fp->fi_lock);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04004570 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571}
4572
J. Bruce Fields28df3d12017-07-28 16:35:15 -04004573static bool nfsd_breaker_owns_lease(struct file_lock *fl)
4574{
4575 struct nfs4_delegation *dl = fl->fl_owner;
4576 struct svc_rqst *rqst;
4577 struct nfs4_client *clp;
4578
4579 if (!i_am_nfsd())
4580 return NULL;
4581 rqst = kthread_data(current);
4582 clp = *(rqst->rq_lease_breaker);
4583 return dl->dl_stid.sc_client == clp;
4584}
4585
Jeff Laytonc45198e2014-09-01 07:12:07 -04004586static int
Jeff Layton7448cc32015-01-16 15:05:57 -05004587nfsd_change_deleg_cb(struct file_lock *onlist, int arg,
4588 struct list_head *dispose)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589{
4590 if (arg & F_UNLCK)
Jeff Laytonc45198e2014-09-01 07:12:07 -04004591 return lease_modify(onlist, arg, dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 else
4593 return -EAGAIN;
4594}
4595
Alexey Dobriyan7b021962009-09-21 17:01:12 -07004596static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields28df3d12017-07-28 16:35:15 -04004597 .lm_breaker_owns_lease = nfsd_breaker_owns_lease,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04004598 .lm_break = nfsd_break_deleg_cb,
4599 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600};
4601
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04004602static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
4603{
4604 if (nfsd4_has_session(cstate))
4605 return nfs_ok;
4606 if (seqid == so->so_seqid - 1)
4607 return nfserr_replay_me;
4608 if (seqid == so->so_seqid)
4609 return nfs_ok;
4610 return nfserr_bad_seqid;
4611}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Jeff Layton4b24ca72014-06-30 11:48:44 -04004613static __be32 lookup_clientid(clientid_t *clid,
4614 struct nfsd4_compound_state *cstate,
Olga Kornievskaiab7342202019-09-06 15:17:21 -04004615 struct nfsd_net *nn,
4616 bool sessions)
Jeff Layton4b24ca72014-06-30 11:48:44 -04004617{
4618 struct nfs4_client *found;
4619
4620 if (cstate->clp) {
4621 found = cstate->clp;
4622 if (!same_clid(&found->cl_clientid, clid))
4623 return nfserr_stale_clientid;
4624 return nfs_ok;
4625 }
4626
4627 if (STALE_CLIENTID(clid, nn))
4628 return nfserr_stale_clientid;
4629
4630 /*
4631 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
4632 * cached already then we know this is for is for v4.0 and "sessions"
4633 * will be false.
4634 */
4635 WARN_ON_ONCE(cstate->session);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004636 spin_lock(&nn->client_lock);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04004637 found = find_confirmed_client(clid, sessions, nn);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004638 if (!found) {
4639 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004640 return nfserr_expired;
Trond Myklebust3e339f92014-07-30 08:27:09 -04004641 }
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04004642 atomic_inc(&found->cl_rpc_users);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004643 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004644
4645 /* Cache the nfs4_client in cstate! */
4646 cstate->clp = found;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004647 return nfs_ok;
4648}
4649
Al Virob37ad282006-10-19 23:28:59 -07004650__be32
Andy Adamson66689582009-04-03 08:28:45 +03004651nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004652 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 clientid_t *clientid = &open->op_clientid;
4655 struct nfs4_client *clp = NULL;
4656 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004657 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004658 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004660 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004662 /*
4663 * In case we need it later, after we've already created the
4664 * file and don't want to risk a further failure:
4665 */
4666 open->op_file = nfsd4_alloc_file();
4667 if (open->op_file == NULL)
4668 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Olga Kornievskaiab7342202019-09-06 15:17:21 -04004670 status = lookup_clientid(clientid, cstate, nn, false);
Trond Myklebust2d91e892014-06-30 11:48:46 -04004671 if (status)
4672 return status;
4673 clp = cstate->clp;
4674
Trond Myklebustd4f04892014-07-29 21:34:36 -04004675 strhashval = ownerstr_hashval(&open->op_owner);
4676 oo = find_openstateowner_str(strhashval, open, clp);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004677 open->op_openowner = oo;
4678 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004679 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004681 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004682 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004683 release_openowner(oo);
4684 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004685 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004686 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004687 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
4688 if (status)
4689 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004690 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004691new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04004692 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004693 if (oo == NULL)
4694 return nfserr_jukebox;
4695 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004696alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04004697 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004698 if (!open->op_stp)
4699 return nfserr_jukebox;
Sachin Bhamare8287f002015-04-27 14:50:14 +02004700
4701 if (nfsd4_has_session(cstate) &&
4702 (cstate->current_fh.fh_export->ex_flags & NFSEXP_PNFS)) {
4703 open->op_odstate = alloc_clnt_odstate(clp);
4704 if (!open->op_odstate)
4705 return nfserr_jukebox;
4706 }
4707
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004708 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709}
4710
Al Virob37ad282006-10-19 23:28:59 -07004711static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07004712nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
4713{
4714 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
4715 return nfserr_openmode;
4716 else
4717 return nfs_ok;
4718}
4719
Daniel Mackc47d8322011-05-16 16:38:14 +02004720static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04004721{
J. Bruce Fields24a01112010-05-18 20:01:35 -04004722 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
4723}
4724
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004725static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004726{
4727 struct nfs4_stid *ret;
4728
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004729 ret = find_stateid_by_type(cl, s,
4730 NFS4_DELEG_STID|NFS4_REVOKED_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004731 if (!ret)
4732 return NULL;
4733 return delegstateid(ret);
4734}
4735
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004736static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
4737{
4738 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
4739 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
4740}
4741
Al Virob37ad282006-10-19 23:28:59 -07004742static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04004743nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07004744 struct nfs4_delegation **dp)
4745{
4746 int flags;
Al Virob37ad282006-10-19 23:28:59 -07004747 __be32 status = nfserr_bad_stateid;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004748 struct nfs4_delegation *deleg;
NeilBrown567d9822005-06-23 22:02:53 -07004749
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004750 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
4751 if (deleg == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07004752 goto out;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004753 if (deleg->dl_stid.sc_type == NFS4_REVOKED_DELEG_STID) {
4754 nfs4_put_stid(&deleg->dl_stid);
4755 if (cl->cl_minorversion)
4756 status = nfserr_deleg_revoked;
4757 goto out;
4758 }
J. Bruce Fields24a01112010-05-18 20:01:35 -04004759 flags = share_access_to_flags(open->op_share_access);
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004760 status = nfs4_check_delegmode(deleg, flags);
4761 if (status) {
4762 nfs4_put_stid(&deleg->dl_stid);
4763 goto out;
4764 }
4765 *dp = deleg;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004766out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004767 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004768 return nfs_ok;
4769 if (status)
4770 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004771 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004772 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07004773}
4774
J. Bruce Fields21fb4012010-07-28 12:21:23 -04004775static inline int nfs4_access_to_access(u32 nfs4_access)
4776{
4777 int flags = 0;
4778
4779 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
4780 flags |= NFSD_MAY_READ;
4781 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
4782 flags |= NFSD_MAY_WRITE;
4783 return flags;
4784}
4785
Al Virob37ad282006-10-19 23:28:59 -07004786static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
4788 struct nfsd4_open *open)
4789{
4790 struct iattr iattr = {
4791 .ia_valid = ATTR_SIZE,
4792 .ia_size = 0,
4793 };
4794 if (!open->op_truncate)
4795 return 0;
4796 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08004797 return nfserr_inval;
Arnd Bergmann2a1aa482019-11-03 17:50:18 +01004798 return nfsd_setattr(rqstp, fh, &iattr, 0, (time64_t)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799}
4800
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004801static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004802 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
4803 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004804{
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004805 struct nfsd_file *nf = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004806 __be32 status;
4807 int oflag = nfs4_access_to_omode(open->op_share_access);
4808 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004809 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004810
Trond Myklebustde186432014-07-10 14:07:26 -04004811 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004812
4813 /*
4814 * Are we trying to set a deny mode that would conflict with
4815 * current access?
4816 */
4817 status = nfs4_file_check_deny(fp, open->op_share_deny);
4818 if (status != nfs_ok) {
4819 spin_unlock(&fp->fi_lock);
4820 goto out;
4821 }
4822
4823 /* set access to the file */
4824 status = nfs4_file_get_access(fp, open->op_share_access);
4825 if (status != nfs_ok) {
4826 spin_unlock(&fp->fi_lock);
4827 goto out;
4828 }
4829
4830 /* Set access bits in stateid */
4831 old_access_bmap = stp->st_access_bmap;
4832 set_access(open->op_share_access, stp);
4833
4834 /* Set new deny mask */
4835 old_deny_bmap = stp->st_deny_bmap;
4836 set_deny(open->op_share_deny, stp);
4837 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4838
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004839 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04004840 spin_unlock(&fp->fi_lock);
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004841 status = nfsd_file_acquire(rqstp, cur_fh, access, &nf);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004842 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004843 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04004844 spin_lock(&fp->fi_lock);
4845 if (!fp->fi_fds[oflag]) {
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004846 fp->fi_fds[oflag] = nf;
4847 nf = NULL;
Trond Myklebustde186432014-07-10 14:07:26 -04004848 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004849 }
Trond Myklebustde186432014-07-10 14:07:26 -04004850 spin_unlock(&fp->fi_lock);
Jeff Laytonfd4f83f2019-08-18 14:18:52 -04004851 if (nf)
4852 nfsd_file_put(nf);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004853
4854 status = nfsd4_truncate(rqstp, cur_fh, open);
4855 if (status)
4856 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004857out:
4858 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004859out_put_access:
4860 stp->st_access_bmap = old_access_bmap;
4861 nfs4_file_put_access(fp, open->op_share_access);
4862 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
4863 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004864}
4865
Al Virob37ad282006-10-19 23:28:59 -07004866static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004867nfs4_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 -07004868{
Al Virob37ad282006-10-19 23:28:59 -07004869 __be32 status;
Arnd Bergmann6ac75362015-05-12 23:31:29 +02004870 unsigned char old_deny_bmap = stp->st_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004872 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004873 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004874
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004875 /* test and set deny mode */
4876 spin_lock(&fp->fi_lock);
4877 status = nfs4_file_check_deny(fp, open->op_share_deny);
4878 if (status == nfs_ok) {
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004879 set_deny(open->op_share_deny, stp);
4880 fp->fi_share_deny |=
4881 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4882 }
4883 spin_unlock(&fp->fi_lock);
4884
4885 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004888 status = nfsd4_truncate(rqstp, cur_fh, open);
4889 if (status != nfs_ok)
4890 reset_union_bmap_deny(old_deny_bmap, stp);
4891 return status;
4892}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004894/* Should we give out recallable state?: */
4895static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
4896{
4897 if (clp->cl_cb_state == NFSD4_CB_UP)
4898 return true;
4899 /*
4900 * In the sessions case, since we don't have to establish a
4901 * separate connection for callbacks, we assume it's OK
4902 * until we hear otherwise:
4903 */
4904 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
4905}
4906
J. Bruce Fields653e5142018-02-15 22:08:45 -05004907static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp,
4908 int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004909{
4910 struct file_lock *fl;
4911
4912 fl = locks_alloc_lock();
4913 if (!fl)
4914 return NULL;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004915 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04004916 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004917 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
4918 fl->fl_end = OFFSET_MAX;
J. Bruce Fields653e5142018-02-15 22:08:45 -05004919 fl->fl_owner = (fl_owner_t)dp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004920 fl->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004921 fl->fl_file = dp->dl_stid.sc_file->fi_deleg_file->nf_file;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004922 return fl;
4923}
4924
Jeff Layton0b266932014-07-25 07:34:25 -04004925static struct nfs4_delegation *
4926nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +02004927 struct nfs4_file *fp, struct nfs4_clnt_odstate *odstate)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004928{
J. Bruce Fields68b18f52018-02-19 11:38:33 -05004929 int status = 0;
Jeff Layton0b266932014-07-25 07:34:25 -04004930 struct nfs4_delegation *dp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004931 struct nfsd_file *nf;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004932 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04004933
J. Bruce Fields353601e2018-02-16 14:29:42 -05004934 /*
4935 * The fi_had_conflict and nfs_get_existing_delegation checks
4936 * here are just optimizations; we'll need to recheck them at
4937 * the end:
4938 */
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004939 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04004940 return ERR_PTR(-EAGAIN);
4941
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004942 nf = find_readable_file(fp);
4943 if (!nf) {
J. Bruce Fields353601e2018-02-16 14:29:42 -05004944 /* We should always have a readable file here */
4945 WARN_ON_ONCE(1);
4946 return ERR_PTR(-EBADF);
4947 }
Andrew Elble34ed9872015-10-15 12:07:28 -04004948 spin_lock(&state_lock);
4949 spin_lock(&fp->fi_lock);
J. Bruce Fields68b18f52018-02-19 11:38:33 -05004950 if (nfs4_delegation_exists(clp, fp))
4951 status = -EAGAIN;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004952 else if (!fp->fi_deleg_file) {
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004953 fp->fi_deleg_file = nf;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004954 /* increment early to prevent fi_deleg_file from being
4955 * cleared */
4956 fp->fi_delegees = 1;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004957 nf = NULL;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004958 } else
4959 fp->fi_delegees++;
4960 spin_unlock(&fp->fi_lock);
4961 spin_unlock(&state_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004962 if (nf)
4963 nfsd_file_put(nf);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004964 if (status)
4965 return ERR_PTR(status);
4966
4967 status = -ENOMEM;
4968 dp = alloc_init_deleg(clp, fp, fh, odstate);
4969 if (!dp)
4970 goto out_delegees;
4971
4972 fl = nfs4_alloc_init_lease(dp, NFS4_OPEN_DELEGATE_READ);
4973 if (!fl)
Andrew Elblebd8d7252018-10-05 09:32:08 -04004974 goto out_clnt_odstate;
J. Bruce Fields353601e2018-02-16 14:29:42 -05004975
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004976 status = vfs_setlease(fp->fi_deleg_file->nf_file, fl->fl_type, &fl, NULL);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004977 if (fl)
4978 locks_free_lock(fl);
4979 if (status)
4980 goto out_clnt_odstate;
4981
4982 spin_lock(&state_lock);
4983 spin_lock(&fp->fi_lock);
4984 if (fp->fi_had_conflict)
4985 status = -EAGAIN;
4986 else
4987 status = hash_delegation_locked(dp, fp);
Andrew Elble34ed9872015-10-15 12:07:28 -04004988 spin_unlock(&fp->fi_lock);
4989 spin_unlock(&state_lock);
4990
4991 if (status)
Andrew Elble692ad282018-04-18 17:04:37 -04004992 goto out_unlock;
4993
Jeff Layton0b266932014-07-25 07:34:25 -04004994 return dp;
Andrew Elble692ad282018-04-18 17:04:37 -04004995out_unlock:
Jeff Laytoneb82dd32019-08-18 14:18:53 -04004996 vfs_setlease(fp->fi_deleg_file->nf_file, F_UNLCK, NULL, (void **)&dp);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004997out_clnt_odstate:
4998 put_clnt_odstate(dp->dl_clnt_odstate);
J. Bruce Fields353601e2018-02-16 14:29:42 -05004999 nfs4_put_stid(&dp->dl_stid);
5000out_delegees:
5001 put_deleg_file(fp);
5002 return ERR_PTR(status);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05005003}
5004
Benny Halevy4aa89132012-02-21 14:16:44 -08005005static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
5006{
5007 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5008 if (status == -EAGAIN)
5009 open->op_why_no_deleg = WND4_CONTENTION;
5010 else {
5011 open->op_why_no_deleg = WND4_RESOURCE;
5012 switch (open->op_deleg_want) {
5013 case NFS4_SHARE_WANT_READ_DELEG:
5014 case NFS4_SHARE_WANT_WRITE_DELEG:
5015 case NFS4_SHARE_WANT_ANY_DELEG:
5016 break;
5017 case NFS4_SHARE_WANT_CANCEL:
5018 open->op_why_no_deleg = WND4_CANCELLED;
5019 break;
5020 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005021 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08005022 }
5023 }
5024}
5025
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026/*
5027 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04005028 *
5029 * Note we don't support write delegations, and won't until the vfs has
5030 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 */
5032static void
Jeff Layton4cf59222014-07-25 07:34:24 -04005033nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
5034 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035{
5036 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04005037 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
5038 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05005039 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04005040 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005042 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07005043 open->op_recall = 0;
5044 switch (open->op_claim_type) {
5045 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05005046 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07005047 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04005048 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
5049 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07005050 break;
5051 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00005052 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04005053 /*
5054 * Let's not give out any delegations till everyone's
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04005055 * had the chance to reclaim theirs, *and* until
5056 * NLM locks have all been reclaimed:
J. Bruce Fields99c41512013-05-21 16:21:25 -04005057 */
Jeff Layton4cf59222014-07-25 07:34:24 -04005058 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04005059 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04005060 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04005061 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04005062 /*
5063 * Also, if the file was opened for write or
5064 * create, there's a good chance the client's
5065 * about to write to it, resulting in an
5066 * immediate recall (since we don't support
5067 * write delegations):
5068 */
NeilBrown7b190fe2005-06-23 22:03:23 -07005069 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04005070 goto out_no_deleg;
5071 if (open->op_create == NFS4_OPEN_CREATE)
5072 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07005073 break;
5074 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04005075 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07005076 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02005077 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file, stp->st_clnt_odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04005078 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05005079 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04005081 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04005083 trace_nfsd_deleg_open(&dp->dl_stid.sc_stateid);
J. Bruce Fields99c41512013-05-21 16:21:25 -04005084 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04005085 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05005086 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05005087out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04005088 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
5089 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04005090 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04005091 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04005092 open->op_recall = 1;
5093 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04005094
5095 /* 4.1 client asking for a delegation? */
5096 if (open->op_deleg_want)
5097 nfsd4_open_deleg_none_ext(open, status);
5098 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099}
5100
Benny Halevye27f49c2012-02-21 14:16:54 -08005101static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
5102 struct nfs4_delegation *dp)
5103{
5104 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
5105 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
5106 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5107 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
5108 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
5109 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
5110 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5111 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
5112 }
5113 /* Otherwise the client must be confused wanting a delegation
5114 * it already has, therefore we don't return
5115 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
5116 */
5117}
5118
Al Virob37ad282006-10-19 23:28:59 -07005119__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
5121{
Andy Adamson66689582009-04-03 08:28:45 +03005122 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005123 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005125 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07005126 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005127 __be32 status;
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005128 bool new_stp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 /*
5131 * Lookup file; if found, lookup stateid and check open request,
5132 * and check for delegations in the process of being recalled.
5133 * If not found, create the nfs4_file struct
5134 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04005135 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04005136 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04005137 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07005138 if (status)
5139 goto out;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04005140 stp = nfsd4_find_and_lock_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04005142 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07005143 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04005144 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07005145 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 }
5147
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005148 if (!stp) {
5149 stp = init_open_stateid(fp, open);
5150 if (!open->op_stp)
5151 new_stp = true;
5152 }
5153
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 /*
5155 * OPEN the file, or upgrade an existing OPEN.
5156 * If truncate fails, the OPEN fails.
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005157 *
5158 * stp is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 */
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005160 if (!new_stp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005162 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005163 if (status) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005164 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 goto out;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 } else {
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005168 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
5169 if (status) {
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005170 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005171 release_open_stateid(stp);
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005172 mutex_unlock(&stp->st_mutex);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04005173 goto out;
5174 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02005175
5176 stp->st_clnt_odstate = find_or_hash_clnt_odstate(fp,
5177 open->op_odstate);
5178 if (stp->st_clnt_odstate == open->op_odstate)
5179 open->op_odstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180 }
Trond Myklebustd8a1a002017-11-03 08:00:11 -04005181
Jeff Layton9767feb2015-10-01 09:05:50 -04005182 nfs4_inc_and_copy_stateid(&open->op_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005183 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
Benny Halevyd24433c2012-02-16 20:57:17 +02005185 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02005186 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
5187 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
5188 open->op_why_no_deleg = WND4_NOT_WANTED;
5189 goto nodeleg;
5190 }
5191 }
5192
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 /*
5194 * Attempt to hand out a delegation. No error return, because the
5195 * OPEN succeeds even if we fail.
5196 */
Jeff Layton4cf59222014-07-25 07:34:24 -04005197 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02005198nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 status = nfs_ok;
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04005200 trace_nfsd_deleg_none(&stp->st_stid.sc_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201out:
Benny Halevyd24433c2012-02-16 20:57:17 +02005202 /* 4.1 client trying to upgrade/downgrade delegation? */
5203 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08005204 open->op_deleg_want)
5205 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02005206
NeilBrown13cd2182005-06-23 22:03:10 -07005207 if (fp)
5208 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07005209 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
Kinglong Mee87186022015-07-13 17:32:59 +08005210 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 /*
5212 * To finish the open response, we just need to set the rflags.
5213 */
5214 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Jeff Layton19e4c342016-09-16 16:28:27 -04005215 if (nfsd4_has_session(&resp->cstate))
5216 open->op_rflags |= NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK;
5217 else if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
Jeff Layton19e4c342016-09-16 16:28:27 -04005219
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04005220 if (dp)
5221 nfs4_put_stid(&dp->dl_stid);
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04005222 if (stp)
5223 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
5225 return status;
5226}
5227
Jeff Layton58fb12e2014-07-29 21:34:27 -04005228void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
Jeff Layton42297892015-03-23 10:53:44 -04005229 struct nfsd4_open *open)
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005230{
5231 if (open->op_openowner) {
Jeff Laytond3134b12014-07-29 21:34:32 -04005232 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005233
Jeff Laytond3134b12014-07-29 21:34:32 -04005234 nfsd4_cstate_assign_replay(cstate, so);
5235 nfs4_put_stateowner(so);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005236 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04005237 if (open->op_file)
Jeff Layton5b095e92014-10-23 08:01:02 -04005238 kmem_cache_free(file_slab, open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04005239 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04005240 nfs4_put_stid(&open->op_stp->st_stid);
Sachin Bhamare8287f002015-04-27 14:50:14 +02005241 if (open->op_odstate)
5242 kmem_cache_free(odstate_slab, open->op_odstate);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04005243}
5244
Al Virob37ad282006-10-19 23:28:59 -07005245__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08005246nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005247 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005249 clientid_t *clid = &u->renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07005251 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03005252 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04005254 trace_nfsd_clid_renew(clid);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005255 status = lookup_clientid(clid, cstate, nn, false);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05005256 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005258 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07005260 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04005261 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 goto out;
5263 status = nfs_ok;
5264out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265 return status;
5266}
5267
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04005268void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03005269nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07005270{
Jeff Layton33dcc482012-04-10 11:08:48 -04005271 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005272 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04005273 return;
5274
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04005275 trace_nfsd_grace_complete(nn);
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04005276 nn->grace_ended = true;
J. Bruce Fields70b28232014-09-16 17:37:32 -04005277 /*
5278 * If the server goes down again right now, an NFSv4
5279 * client will still be allowed to reclaim after it comes back up,
5280 * even if it hasn't yet had a chance to reclaim state this time.
5281 *
5282 */
Jeff Layton919b8042014-09-12 16:40:20 -04005283 nfsd4_record_grace_done(nn);
J. Bruce Fields70b28232014-09-16 17:37:32 -04005284 /*
5285 * At this point, NFSv4 clients can still reclaim. But if the
5286 * server crashes, any that have not yet reclaimed will be out
5287 * of luck on the next boot.
5288 *
5289 * (NFSv4.1+ clients are considered to have reclaimed once they
5290 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
5291 * have reclaimed after their first OPEN.)
5292 */
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04005293 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fields70b28232014-09-16 17:37:32 -04005294 /*
5295 * At this point, and once lockd and/or any other containers
5296 * exit their grace period, further reclaims will fail and
5297 * regular locking can resume.
5298 */
NeilBrowna76b4312005-06-23 22:04:01 -07005299}
5300
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005301/*
5302 * If we've waited a lease period but there are still clients trying to
5303 * reclaim, wait a little longer to give them a chance to finish.
5304 */
5305static bool clients_still_reclaiming(struct nfsd_net *nn)
5306{
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005307 time64_t double_grace_period_end = nn->boot_time +
5308 2 * nn->nfsd4_lease;
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005309
Scott Mayhew362063a2019-03-26 18:06:28 -04005310 if (nn->track_reclaim_completes &&
5311 atomic_read(&nn->nr_reclaim_complete) ==
5312 nn->reclaim_str_hashtbl_size)
5313 return false;
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005314 if (!nn->somebody_reclaimed)
5315 return false;
5316 nn->somebody_reclaimed = false;
5317 /*
5318 * If we've given them *two* lease times to reclaim, and they're
5319 * still not done, give up:
5320 */
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005321 if (ktime_get_boottime_seconds() > double_grace_period_end)
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005322 return false;
5323 return true;
5324}
5325
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005326static time64_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005327nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328{
5329 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005330 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 struct nfs4_delegation *dp;
Jeff Layton217526e2014-07-30 08:27:11 -04005332 struct nfs4_ol_stateid *stp;
Jeff Layton7919d0a2016-09-16 16:28:25 -04005333 struct nfsd4_blocked_lock *nbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 struct list_head *pos, *next, reaplist;
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005335 time64_t cutoff = ktime_get_boottime_seconds() - nn->nfsd4_lease;
5336 time64_t t, new_timeo = nn->nfsd4_lease;
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005337 struct nfs4_cpntf_state *cps;
5338 copy_stateid_t *cps_t;
5339 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005341 if (clients_still_reclaiming(nn)) {
5342 new_timeo = 0;
5343 goto out;
5344 }
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03005345 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03005346 INIT_LIST_HEAD(&reaplist);
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005347
5348 spin_lock(&nn->s2s_cp_lock);
5349 idr_for_each_entry(&nn->s2s_cp_stateids, cps_t, i) {
5350 cps = container_of(cps_t, struct nfs4_cpntf_state, cp_stateid);
5351 if (cps->cp_stateid.sc_type == NFS4_COPYNOTIFY_STID &&
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005352 cps->cpntf_time > cutoff)
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005353 _free_cpntf_state_locked(nn, cps);
5354 }
5355 spin_unlock(&nn->s2s_cp_lock);
5356
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005357 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03005358 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 clp = list_entry(pos, struct nfs4_client, cl_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005360 if (clp->cl_time > cutoff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04005362 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363 break;
5364 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04005365 if (mark_client_expired_locked(clp)) {
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04005366 trace_nfsd_clid_expired(&clp->cl_clientid);
Benny Halevyd7682982010-05-12 00:13:54 +03005367 continue;
5368 }
Trond Myklebust4864af92014-07-30 08:27:03 -04005369 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03005370 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03005371 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03005372 list_for_each_safe(pos, next, &reaplist) {
5373 clp = list_entry(pos, struct nfs4_client, cl_lru);
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04005374 trace_nfsd_clid_purged(&clp->cl_clientid);
Trond Myklebust4864af92014-07-30 08:27:03 -04005375 list_del_init(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 expire_client(clp);
5377 }
Benny Halevycdc975052014-05-30 09:09:30 -04005378 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04005379 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005381 if (dp->dl_time > cutoff) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04005382 t = dp->dl_time - cutoff;
5383 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 break;
5385 }
Jeff Layton3fcbbd22015-08-24 12:41:48 -04005386 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04005387 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388 }
Benny Halevycdc975052014-05-30 09:09:30 -04005389 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005390 while (!list_empty(&reaplist)) {
5391 dp = list_first_entry(&reaplist, struct nfs4_delegation,
5392 dl_recall_lru);
5393 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005394 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 }
Jeff Layton217526e2014-07-30 08:27:11 -04005396
5397 spin_lock(&nn->client_lock);
5398 while (!list_empty(&nn->close_lru)) {
5399 oo = list_first_entry(&nn->close_lru, struct nfs4_openowner,
5400 oo_close_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005401 if (oo->oo_time > cutoff) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04005402 t = oo->oo_time - cutoff;
5403 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 break;
5405 }
Jeff Layton217526e2014-07-30 08:27:11 -04005406 list_del_init(&oo->oo_close_lru);
5407 stp = oo->oo_last_closed_stid;
5408 oo->oo_last_closed_stid = NULL;
5409 spin_unlock(&nn->client_lock);
5410 nfs4_put_stid(&stp->st_stid);
5411 spin_lock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 }
Jeff Layton217526e2014-07-30 08:27:11 -04005413 spin_unlock(&nn->client_lock);
5414
Jeff Layton7919d0a2016-09-16 16:28:25 -04005415 /*
5416 * It's possible for a client to try and acquire an already held lock
5417 * that is being held for a long time, and then lose interest in it.
5418 * So, we clean out any un-revisited request after a lease period
5419 * under the assumption that the client is no longer interested.
5420 *
5421 * RFC5661, sec. 9.6 states that the client must not rely on getting
5422 * notifications and must continue to poll for locks, even when the
5423 * server supports them. Thus this shouldn't lead to clients blocking
5424 * indefinitely once the lock does become free.
5425 */
5426 BUG_ON(!list_empty(&reaplist));
Jeff Layton0cc11a62016-10-20 09:34:31 -04005427 spin_lock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005428 while (!list_empty(&nn->blocked_locks_lru)) {
5429 nbl = list_first_entry(&nn->blocked_locks_lru,
5430 struct nfsd4_blocked_lock, nbl_lru);
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005431 if (nbl->nbl_time > cutoff) {
Jeff Layton7919d0a2016-09-16 16:28:25 -04005432 t = nbl->nbl_time - cutoff;
5433 new_timeo = min(new_timeo, t);
5434 break;
5435 }
5436 list_move(&nbl->nbl_lru, &reaplist);
5437 list_del_init(&nbl->nbl_list);
5438 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04005439 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005440
5441 while (!list_empty(&reaplist)) {
Naofumi Honda64ebe1242017-11-09 10:57:16 -05005442 nbl = list_first_entry(&reaplist,
Jeff Layton7919d0a2016-09-16 16:28:25 -04005443 struct nfsd4_blocked_lock, nbl_lru);
5444 list_del_init(&nbl->nbl_lru);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005445 free_blocked_lock(nbl);
5446 }
J. Bruce Fields03f318c2018-06-08 12:28:47 -04005447out:
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005448 new_timeo = max_t(time64_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Jeff Laytona832e7a2014-05-30 09:09:26 -04005449 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450}
5451
Harvey Harrisona254b242008-02-20 12:49:00 -08005452static struct workqueue_struct *laundry_wq;
5453static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08005454
5455static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005456laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457{
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005458 time64_t t;
Geliang Tang2e55f3a2016-01-01 22:06:28 +08005459 struct delayed_work *dwork = to_delayed_work(laundry);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005460 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
5461 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005463 t = nfs4_laundromat(nn);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03005464 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465}
5466
Jeff Layton8fcd4612015-07-30 06:57:46 -04005467static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07005468{
Jeff Layton8fcd4612015-07-30 06:57:46 -04005469 if (!fh_match(&fhp->fh_handle, &stp->sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005470 return nfserr_bad_stateid;
5471 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472}
5473
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04005475access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005477 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
5478 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
5479 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480}
5481
5482static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04005483access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005485 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
5486 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487}
5488
5489static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005490__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491{
Al Virob37ad282006-10-19 23:28:59 -07005492 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493
J. Bruce Fields02921912010-07-29 15:16:59 -04005494 /* For lock stateid's, we test the parent open, not the lock: */
5495 if (stp->st_openstp)
5496 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005497 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005499 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500 goto out;
5501 status = nfs_ok;
5502out:
5503 return status;
5504}
5505
Al Virob37ad282006-10-19 23:28:59 -07005506static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005507check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005509 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510 return nfs_ok;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04005511 else if (opens_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005512 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 * conflicting state; so we must wait out the grace period. */
5514 return nfserr_grace;
5515 } else if (flags & WR_STATE)
5516 return nfs4_share_conflict(current_fh,
5517 NFS4_SHARE_DENY_WRITE);
5518 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
5519 return nfs4_share_conflict(current_fh,
5520 NFS4_SHARE_DENY_READ);
5521}
5522
5523/*
5524 * Allow READ/WRITE during grace period on recovered state only for files
5525 * that are not able to provide mandatory locking.
5526 */
5527static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005528grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529{
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04005530 return opens_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531}
5532
J. Bruce Fields57b7b432012-04-25 17:58:50 -04005533static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05005534{
Andy Adamson66689582009-04-03 08:28:45 +03005535 /*
5536 * When sessions are used the stateid generation number is ignored
5537 * when it is zero.
5538 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04005539 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04005540 return nfs_ok;
5541
5542 if (in->si_generation == ref->si_generation)
5543 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03005544
J. Bruce Fields0836f582008-01-26 19:08:12 -05005545 /* If the client sends us a stateid from the future, it's buggy: */
Jeff Layton14b7f4a2016-05-05 06:53:47 -04005546 if (nfsd4_stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05005547 return nfserr_bad_stateid;
5548 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04005549 * However, we could see a stateid from the past, even from a
5550 * non-buggy client. For example, if the client sends a lock
5551 * while some IO is outstanding, the lock may bump si_generation
5552 * while the IO is still in flight. The client could avoid that
5553 * situation by waiting for responses on all the IO requests,
5554 * but better performance may result in retrying IO that
5555 * receives an old_stateid error if requests are rarely
5556 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05005557 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04005558 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05005559}
5560
Trond Myklebust03da3162017-11-03 08:00:16 -04005561static __be32 nfsd4_stid_check_stateid_generation(stateid_t *in, struct nfs4_stid *s, bool has_session)
5562{
5563 __be32 ret;
5564
5565 spin_lock(&s->sc_lock);
5566 ret = nfsd4_verify_open_stid(s);
5567 if (ret == nfs_ok)
5568 ret = check_stateid_generation(in, &s->sc_stateid, has_session);
5569 spin_unlock(&s->sc_lock);
5570 return ret;
5571}
5572
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02005573static __be32 nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid *ols)
5574{
5575 if (ols->st_stateowner->so_is_open_owner &&
5576 !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
5577 return nfserr_bad_stateid;
5578 return nfs_ok;
5579}
5580
Chuck Lever7df302f2012-05-29 13:56:37 -04005581static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04005582{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04005583 struct nfs4_stid *s;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005584 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04005585
Andrew Elbleae254dac2017-11-09 13:41:10 -05005586 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5587 CLOSE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04005588 return status;
J. Bruce Fields663e36f2020-03-19 10:18:49 -04005589 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04005590 return status;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005591 spin_lock(&cl->cl_lock);
5592 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04005593 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005594 goto out_unlock;
Trond Myklebust03da3162017-11-03 08:00:16 -04005595 status = nfsd4_stid_check_stateid_generation(stateid, s, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04005596 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005597 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04005598 switch (s->sc_type) {
5599 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005600 status = nfs_ok;
5601 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005602 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005603 status = nfserr_deleg_revoked;
5604 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04005605 case NFS4_OPEN_STID:
5606 case NFS4_LOCK_STID:
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02005607 status = nfsd4_check_openowner_confirmed(openlockstateid(s));
Jeff Layton1af71cc2014-07-29 21:34:14 -04005608 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04005609 default:
5610 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04005611 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04005612 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04005613 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005614 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04005615 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04005616out_unlock:
5617 spin_unlock(&cl->cl_lock);
5618 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04005619}
5620
Christoph Hellwigcd61c522014-08-14 08:44:57 +02005621__be32
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005622nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
5623 stateid_t *stateid, unsigned char typemask,
5624 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005625{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005626 __be32 status;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04005627 bool return_revoked = false;
5628
5629 /*
5630 * only return revoked delegations if explicitly asked.
5631 * otherwise we report revoked or bad_stateid status.
5632 */
5633 if (typemask & NFS4_REVOKED_DELEG_STID)
5634 return_revoked = true;
5635 else if (typemask & NFS4_DELEG_STID)
5636 typemask |= NFS4_REVOKED_DELEG_STID;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005637
Andrew Elbleae254dac2017-11-09 13:41:10 -05005638 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5639 CLOSE_STATEID(stateid))
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005640 return nfserr_bad_stateid;
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005641 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn,
5642 false);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005643 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005644 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005645 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005646 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005647 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005648 if (status)
5649 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005650 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005651 if (!*s)
5652 return nfserr_bad_stateid;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04005653 if (((*s)->sc_type == NFS4_REVOKED_DELEG_STID) && !return_revoked) {
5654 nfs4_put_stid(*s);
5655 if (cstate->minorversion)
5656 return nfserr_deleg_revoked;
5657 return nfserr_bad_stateid;
5658 }
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005659 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005660}
5661
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005662static struct nfsd_file *
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005663nfs4_find_file(struct nfs4_stid *s, int flags)
5664{
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005665 if (!s)
5666 return NULL;
5667
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005668 switch (s->sc_type) {
5669 case NFS4_DELEG_STID:
5670 if (WARN_ON_ONCE(!s->sc_file->fi_deleg_file))
5671 return NULL;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005672 return nfsd_file_get(s->sc_file->fi_deleg_file);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005673 case NFS4_OPEN_STID:
5674 case NFS4_LOCK_STID:
5675 if (flags & RD_STATE)
5676 return find_readable_file(s->sc_file);
5677 else
5678 return find_writeable_file(s->sc_file);
5679 break;
5680 }
5681
5682 return NULL;
5683}
5684
5685static __be32
J. Bruce Fieldsd8836f72018-11-05 20:04:06 -05005686nfs4_check_olstateid(struct nfs4_ol_stateid *ols, int flags)
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005687{
5688 __be32 status;
5689
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005690 status = nfsd4_check_openowner_confirmed(ols);
5691 if (status)
5692 return status;
5693 return nfs4_check_openmode(ols, flags);
5694}
5695
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005696static __be32
5697nfs4_check_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfs4_stid *s,
Jeff Layton5c4583b2019-08-18 14:18:54 -04005698 struct nfsd_file **nfp, int flags)
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005699{
5700 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005701 struct nfsd_file *nf;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005702 __be32 status;
5703
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005704 nf = nfs4_find_file(s, flags);
5705 if (nf) {
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005706 status = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
5707 acc | NFSD_MAY_OWNER_OVERRIDE);
Jeff Layton5c4583b2019-08-18 14:18:54 -04005708 if (status) {
5709 nfsd_file_put(nf);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005710 goto out;
Jeff Layton5c4583b2019-08-18 14:18:54 -04005711 }
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005712 } else {
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005713 status = nfsd_file_acquire(rqstp, fhp, acc, &nf);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005714 if (status)
5715 return status;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005716 }
Jeff Layton5c4583b2019-08-18 14:18:54 -04005717 *nfp = nf;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005718out:
Jeff Laytoneb82dd32019-08-18 14:18:53 -04005719 return status;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005720}
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005721static void
5722_free_cpntf_state_locked(struct nfsd_net *nn, struct nfs4_cpntf_state *cps)
5723{
5724 WARN_ON_ONCE(cps->cp_stateid.sc_type != NFS4_COPYNOTIFY_STID);
5725 if (!refcount_dec_and_test(&cps->cp_stateid.sc_count))
5726 return;
5727 list_del(&cps->cp_list);
5728 idr_remove(&nn->s2s_cp_stateids,
5729 cps->cp_stateid.stid.si_opaque.so_id);
5730 kfree(cps);
5731}
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005732/*
5733 * A READ from an inter server to server COPY will have a
5734 * copy stateid. Look up the copy notify stateid from the
5735 * idr structure and take a reference on it.
5736 */
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04005737__be32 manage_cpntf_state(struct nfsd_net *nn, stateid_t *st,
5738 struct nfs4_client *clp,
5739 struct nfs4_cpntf_state **cps)
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005740{
5741 copy_stateid_t *cps_t;
5742 struct nfs4_cpntf_state *state = NULL;
5743
5744 if (st->si_opaque.so_clid.cl_id != nn->s2s_cp_cl_id)
5745 return nfserr_bad_stateid;
5746 spin_lock(&nn->s2s_cp_lock);
5747 cps_t = idr_find(&nn->s2s_cp_stateids, st->si_opaque.so_id);
5748 if (cps_t) {
5749 state = container_of(cps_t, struct nfs4_cpntf_state,
5750 cp_stateid);
Dan Carpenter5277a792019-12-04 10:59:36 +03005751 if (state->cp_stateid.sc_type != NFS4_COPYNOTIFY_STID) {
5752 state = NULL;
5753 goto unlock;
5754 }
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04005755 if (!clp)
5756 refcount_inc(&state->cp_stateid.sc_count);
5757 else
5758 _free_cpntf_state_locked(nn, state);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005759 }
Dan Carpenter5277a792019-12-04 10:59:36 +03005760unlock:
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005761 spin_unlock(&nn->s2s_cp_lock);
5762 if (!state)
5763 return nfserr_bad_stateid;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04005764 if (!clp && state)
5765 *cps = state;
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005766 return 0;
5767}
5768
5769static __be32 find_cpntf_state(struct nfsd_net *nn, stateid_t *st,
5770 struct nfs4_stid **stid)
5771{
5772 __be32 status;
5773 struct nfs4_cpntf_state *cps = NULL;
5774 struct nfsd4_compound_state cstate;
5775
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04005776 status = manage_cpntf_state(nn, st, NULL, &cps);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005777 if (status)
5778 return status;
5779
Arnd Bergmann20b7d862019-11-04 16:31:52 +01005780 cps->cpntf_time = ktime_get_boottime_seconds();
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005781 memset(&cstate, 0, sizeof(cstate));
5782 status = lookup_clientid(&cps->cp_p_clid, &cstate, nn, true);
5783 if (status)
5784 goto out;
5785 status = nfsd4_lookup_stateid(&cstate, &cps->cp_p_stateid,
5786 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
5787 stid, nn);
5788 put_client_renew(cstate.clp);
5789out:
5790 nfs4_put_cpntf_state(nn, cps);
5791 return status;
5792}
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005793
5794void nfs4_put_cpntf_state(struct nfsd_net *nn, struct nfs4_cpntf_state *cps)
5795{
5796 spin_lock(&nn->s2s_cp_lock);
5797 _free_cpntf_state_locked(nn, cps);
5798 spin_unlock(&nn->s2s_cp_lock);
5799}
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005800
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801/*
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005802 * Checks for stateid operations
5803 */
Al Virob37ad282006-10-19 23:28:59 -07005804__be32
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005805nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01005806 struct nfsd4_compound_state *cstate, struct svc_fh *fhp,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005807 stateid_t *stateid, int flags, struct nfsd_file **nfp,
5808 struct nfs4_stid **cstid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809{
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005810 struct inode *ino = d_inode(fhp->fh_dentry);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005811 struct net *net = SVC_NET(rqstp);
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005812 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005813 struct nfs4_stid *s = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005814 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815
Jeff Layton5c4583b2019-08-18 14:18:54 -04005816 if (nfp)
5817 *nfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005819 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820 return nfserr_grace;
5821
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005822 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
5823 status = check_special_stateids(net, fhp, stateid, flags);
5824 goto done;
5825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005827 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04005828 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005829 &s, nn);
Olga Kornievskaiab7342202019-09-06 15:17:21 -04005830 if (status == nfserr_bad_stateid)
5831 status = find_cpntf_state(nn, stateid, &s);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005832 if (status)
Trond Myklebustc2d1d6a2014-07-30 08:27:25 -04005833 return status;
Trond Myklebust03da3162017-11-03 08:00:16 -04005834 status = nfsd4_stid_check_stateid_generation(stateid, s,
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005835 nfsd4_has_session(cstate));
J. Bruce Fields69064a22011-09-09 11:54:57 -04005836 if (status)
5837 goto out;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005838
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005839 switch (s->sc_type) {
5840 case NFS4_DELEG_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005841 status = nfs4_check_delegmode(delegstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005842 break;
5843 case NFS4_OPEN_STID:
5844 case NFS4_LOCK_STID:
J. Bruce Fieldsd8836f72018-11-05 20:04:06 -05005845 status = nfs4_check_olstateid(openlockstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005846 break;
5847 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04005848 status = nfserr_bad_stateid;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005849 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 }
Jeff Layton8fcd4612015-07-30 06:57:46 -04005851 if (status)
5852 goto out;
5853 status = nfs4_check_fh(fhp, s);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005854
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005855done:
Jeff Layton5c4583b2019-08-18 14:18:54 -04005856 if (status == nfs_ok && nfp)
5857 status = nfs4_check_file(rqstp, fhp, s, nfp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858out:
Olga Kornievskaia624322f2019-10-04 16:34:26 -04005859 if (s) {
5860 if (!status && cstid)
5861 *cstid = s;
5862 else
5863 nfs4_put_stid(s);
5864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 return status;
5866}
5867
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005868/*
Bryan Schumaker17456802011-07-13 10:50:48 -04005869 * Test if the stateid is valid
5870 */
5871__be32
5872nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005873 union nfsd4_op_u *u)
Bryan Schumaker17456802011-07-13 10:50:48 -04005874{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005875 struct nfsd4_test_stateid *test_stateid = &u->test_stateid;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005876 struct nfsd4_test_stateid_id *stateid;
5877 struct nfs4_client *cl = cstate->session->se_client;
5878
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005879 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04005880 stateid->ts_id_status =
5881 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005882
Bryan Schumaker17456802011-07-13 10:50:48 -04005883 return nfs_ok;
5884}
5885
Chuck Lever42691392016-08-11 10:37:30 -04005886static __be32
5887nfsd4_free_lock_stateid(stateid_t *stateid, struct nfs4_stid *s)
5888{
5889 struct nfs4_ol_stateid *stp = openlockstateid(s);
5890 __be32 ret;
5891
Trond Myklebust659aefb2017-11-03 08:00:13 -04005892 ret = nfsd4_lock_ol_stateid(stp);
5893 if (ret)
5894 goto out_put_stid;
Chuck Lever42691392016-08-11 10:37:30 -04005895
5896 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5897 if (ret)
5898 goto out;
5899
5900 ret = nfserr_locks_held;
5901 if (check_for_locks(stp->st_stid.sc_file,
5902 lockowner(stp->st_stateowner)))
5903 goto out;
5904
5905 release_lock_stateid(stp);
5906 ret = nfs_ok;
5907
5908out:
5909 mutex_unlock(&stp->st_mutex);
Trond Myklebust659aefb2017-11-03 08:00:13 -04005910out_put_stid:
Chuck Lever42691392016-08-11 10:37:30 -04005911 nfs4_put_stid(s);
5912 return ret;
5913}
5914
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005915__be32
5916nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005917 union nfsd4_op_u *u)
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005918{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005919 struct nfsd4_free_stateid *free_stateid = &u->free_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005920 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005921 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005922 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005923 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005924 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005925
Jeff Layton1af71cc2014-07-29 21:34:14 -04005926 spin_lock(&cl->cl_lock);
5927 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005928 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005929 goto out_unlock;
Trond Myklebust03da3162017-11-03 08:00:16 -04005930 spin_lock(&s->sc_lock);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005931 switch (s->sc_type) {
5932 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005933 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005934 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005935 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005936 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5937 if (ret)
5938 break;
5939 ret = nfserr_locks_held;
5940 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005941 case NFS4_LOCK_STID:
Trond Myklebust03da3162017-11-03 08:00:16 -04005942 spin_unlock(&s->sc_lock);
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03005943 refcount_inc(&s->sc_count);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005944 spin_unlock(&cl->cl_lock);
Chuck Lever42691392016-08-11 10:37:30 -04005945 ret = nfsd4_free_lock_stateid(stateid, s);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005946 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005947 case NFS4_REVOKED_DELEG_STID:
Trond Myklebust03da3162017-11-03 08:00:16 -04005948 spin_unlock(&s->sc_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005949 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005950 list_del_init(&dp->dl_recall_lru);
5951 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04005952 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005953 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005954 goto out;
5955 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005956 }
Trond Myklebust03da3162017-11-03 08:00:16 -04005957 spin_unlock(&s->sc_lock);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005958out_unlock:
5959 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005960out:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005961 return ret;
5962}
5963
NeilBrown4c4cd222005-07-07 17:59:27 -07005964static inline int
5965setlkflg (int type)
5966{
5967 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
5968 RD_STATE : WR_STATE;
5969}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005971static __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 -04005972{
5973 struct svc_fh *current_fh = &cstate->current_fh;
5974 struct nfs4_stateowner *sop = stp->st_stateowner;
5975 __be32 status;
5976
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005977 status = nfsd4_check_seqid(cstate, sop, seqid);
5978 if (status)
5979 return status;
Trond Myklebust9271d7e2017-11-03 08:00:15 -04005980 status = nfsd4_lock_ol_stateid(stp);
5981 if (status != nfs_ok)
5982 return status;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005983 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
Jeff Layton35a92fe2015-09-17 07:47:08 -04005984 if (status == nfs_ok)
5985 status = nfs4_check_fh(current_fh, &stp->st_stid);
5986 if (status != nfs_ok)
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005987 mutex_unlock(&stp->st_mutex);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005988 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005989}
5990
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991/*
5992 * Checks for sequence id mutating operations.
5993 */
Al Virob37ad282006-10-19 23:28:59 -07005994static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03005995nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04005996 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005997 struct nfs4_ol_stateid **stpp,
5998 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999{
J. Bruce Fields0836f582008-01-26 19:08:12 -05006000 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006001 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04006002 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04006004 trace_nfsd_preprocess(seqid, stateid);
NeilBrown3a4f98b2005-07-07 17:59:26 -07006005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04006007 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006008 if (status)
6009 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04006010 stp = openlockstateid(s);
Jeff Layton58fb12e2014-07-29 21:34:27 -04006011 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012
Trond Myklebuste17f99b2014-06-30 11:48:34 -04006013 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
Trond Myklebustfd911012014-07-29 21:34:24 -04006014 if (!status)
Trond Myklebuste17f99b2014-06-30 11:48:34 -04006015 *stpp = stp;
Trond Myklebustfd911012014-07-29 21:34:24 -04006016 else
6017 nfs4_put_stid(&stp->st_stid);
Trond Myklebuste17f99b2014-06-30 11:48:34 -04006018 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006019}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05006020
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006021static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
6022 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006023{
6024 __be32 status;
6025 struct nfs4_openowner *oo;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04006026 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006028 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04006029 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04006030 if (status)
6031 return status;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04006032 oo = openowner(stp->st_stateowner);
6033 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006034 mutex_unlock(&stp->st_mutex);
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04006035 nfs4_put_stid(&stp->st_stid);
NeilBrown3a4f98b2005-07-07 17:59:26 -07006036 return nfserr_bad_stateid;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04006037 }
6038 *stpp = stp;
NeilBrown3a4f98b2005-07-07 17:59:26 -07006039 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040}
6041
Al Virob37ad282006-10-19 23:28:59 -07006042__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006043nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006044 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006046 struct nfsd4_open_confirm *oc = &u->open_confirm;
Al Virob37ad282006-10-19 23:28:59 -07006047 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006048 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006049 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006050 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051
Al Viroa6a9f182013-09-16 10:57:01 -04006052 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
6053 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006055 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07006056 if (status)
6057 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006059 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006060 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006061 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006062 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04006063 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006064 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04006065 status = nfserr_bad_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04006066 if (oo->oo_flags & NFS4_OO_CONFIRMED) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006067 mutex_unlock(&stp->st_mutex);
Trond Myklebust2585fc72014-07-29 21:34:21 -04006068 goto put_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04006069 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04006070 oo->oo_flags |= NFS4_OO_CONFIRMED;
Jeff Layton9767feb2015-10-01 09:05:50 -04006071 nfs4_inc_and_copy_stateid(&oc->oc_resp_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006072 mutex_unlock(&stp->st_mutex);
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04006073 trace_nfsd_open_confirm(oc->oc_seqid, &stp->st_stid.sc_stateid);
Jeff Layton2a4317c2012-03-21 16:42:43 -04006074 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04006075 status = nfs_ok;
Trond Myklebust2585fc72014-07-29 21:34:21 -04006076put_stateid:
6077 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006079 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080 return status;
6081}
6082
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006083static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084{
Jeff Layton82c5ff12012-05-11 09:45:13 -04006085 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006086 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04006087 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04006088 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006089}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04006090
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006091static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
6092{
6093 switch (to_access) {
6094 case NFS4_SHARE_ACCESS_READ:
6095 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
6096 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
6097 break;
6098 case NFS4_SHARE_ACCESS_WRITE:
6099 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
6100 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
6101 break;
6102 case NFS4_SHARE_ACCESS_BOTH:
6103 break;
6104 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006105 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106 }
6107}
6108
Al Virob37ad282006-10-19 23:28:59 -07006109__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006110nfsd4_open_downgrade(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006111 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006113 struct nfsd4_open_downgrade *od = &u->open_downgrade;
Al Virob37ad282006-10-19 23:28:59 -07006114 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006115 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006116 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117
Al Viroa6a9f182013-09-16 10:57:01 -04006118 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
6119 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04006121 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02006122 if (od->od_deleg_want)
6123 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
6124 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006126 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006127 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006128 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04006131 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04006132 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133 stp->st_access_bmap, od->od_share_access);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006134 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04006136 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04006137 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 stp->st_deny_bmap, od->od_share_deny);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006139 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04006141 nfs4_stateid_downgrade(stp, od->od_share_access);
Jeff Laytonce0fc432012-05-11 09:45:14 -04006142 reset_union_bmap_deny(od->od_share_deny, stp);
Jeff Layton9767feb2015-10-01 09:05:50 -04006143 nfs4_inc_and_copy_stateid(&od->od_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144 status = nfs_ok;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006145put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006146 mutex_unlock(&stp->st_mutex);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006147 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006149 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150 return status;
6151}
6152
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04006153static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
6154{
Trond Myklebustacf92952014-06-30 11:48:37 -04006155 struct nfs4_client *clp = s->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04006156 bool unhashed;
Jeff Laytond83017f2014-07-29 21:34:42 -04006157 LIST_HEAD(reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04006158
Jeff Layton2c41beb2014-07-29 21:34:41 -04006159 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04006160 unhashed = unhash_open_stateid(s, &reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04006161
Jeff Laytond83017f2014-07-29 21:34:42 -04006162 if (clp->cl_minorversion) {
Jeff Laytone8568732015-08-24 12:41:47 -04006163 if (unhashed)
6164 put_ol_stateid_locked(s, &reaplist);
Jeff Laytond83017f2014-07-29 21:34:42 -04006165 spin_unlock(&clp->cl_lock);
6166 free_ol_stateid_reaplist(&reaplist);
6167 } else {
6168 spin_unlock(&clp->cl_lock);
6169 free_ol_stateid_reaplist(&reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04006170 if (unhashed)
6171 move_to_close_lru(s, clp->net);
Jeff Laytond83017f2014-07-29 21:34:42 -04006172 }
J. Bruce Fields38c387b2011-09-16 17:42:48 -04006173}
6174
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175/*
6176 * nfs4_unlock_state() called after encode
6177 */
Al Virob37ad282006-10-19 23:28:59 -07006178__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006179nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006180 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006182 struct nfsd4_close *close = &u->close;
Al Virob37ad282006-10-19 23:28:59 -07006183 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006184 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006185 struct net *net = SVC_NET(rqstp);
6186 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187
Al Viroa6a9f182013-09-16 10:57:01 -04006188 dprintk("NFSD: nfsd4_close on file %pd\n",
6189 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04006191 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
6192 &close->cl_stateid,
6193 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006194 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006195 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006196 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197 goto out;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04006198
6199 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Laytonbd2deca2018-02-15 15:16:18 -05006200
6201 /*
6202 * Technically we don't _really_ have to increment or copy it, since
6203 * it should just be gone after this operation and we clobber the
6204 * copied value below, but we continue to do so here just to ensure
6205 * that racing ops see that there was a state change.
6206 */
Jeff Layton9767feb2015-10-01 09:05:50 -04006207 nfs4_inc_and_copy_stateid(&close->cl_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04006209 nfsd4_close_open_stateid(stp);
Trond Myklebust15ca08d2017-11-03 08:00:10 -04006210 mutex_unlock(&stp->st_mutex);
Trond Myklebust8a0b5892014-07-29 21:34:20 -04006211
Jeff Laytonbd2deca2018-02-15 15:16:18 -05006212 /* v4.1+ suggests that we send a special stateid in here, since the
6213 * clients should just ignore this anyway. Since this is not useful
6214 * for v4.0 clients either, we set it to the special close_stateid
6215 * universally.
6216 *
6217 * See RFC5661 section 18.2.4, and RFC7530 section 16.2.5
6218 */
6219 memcpy(&close->cl_stateid, &close_stateid, sizeof(close->cl_stateid));
Trond Myklebustfb500a72017-11-03 08:00:12 -04006220
Trond Myklebust8a0b5892014-07-29 21:34:20 -04006221 /* put reference from nfs4_preprocess_seqid_op */
6222 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224 return status;
6225}
6226
Al Virob37ad282006-10-19 23:28:59 -07006227__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006228nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006229 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006231 struct nfsd4_delegreturn *dr = &u->delegreturn;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006232 struct nfs4_delegation *dp;
6233 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006234 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07006235 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006236 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006238 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006239 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
Trond Myklebust2dd6e452014-06-30 11:48:43 -04006241 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006242 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006243 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04006244 dp = delegstateid(s);
Trond Myklebust03da3162017-11-03 08:00:16 -04006245 status = nfsd4_stid_check_stateid_generation(stateid, &dp->dl_stid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006246 if (status)
Trond Myklebustfd911012014-07-29 21:34:24 -04006247 goto put_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08006248
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04006249 destroy_delegation(dp);
Trond Myklebustfd911012014-07-29 21:34:24 -04006250put_stateid:
6251 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252out:
6253 return status;
6254}
6255
Benny Halevy87df4de2008-12-15 19:42:03 +02006256static inline u64
6257end_offset(u64 start, u64 len)
6258{
6259 u64 end;
6260
6261 end = start + len;
6262 return end >= start ? end: NFS4_MAX_UINT64;
6263}
6264
6265/* last octet in a range */
6266static inline u64
6267last_byte_offset(u64 start, u64 len)
6268{
6269 u64 end;
6270
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006271 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02006272 end = start + len;
6273 return end > start ? end - 1: NFS4_MAX_UINT64;
6274}
6275
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276/*
6277 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
6278 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
6279 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
6280 * locking, this prevents us from being completely protocol-compliant. The
6281 * real solution to this problem is to start using unsigned file offsets in
6282 * the VFS, but this is a very deep change!
6283 */
6284static inline void
6285nfs4_transform_lock_offset(struct file_lock *lock)
6286{
6287 if (lock->fl_start < 0)
6288 lock->fl_start = OFFSET_MAX;
6289 if (lock->fl_end < 0)
6290 lock->fl_end = OFFSET_MAX;
6291}
6292
Jeff Laytoncae80b32015-04-03 09:04:04 -04006293static fl_owner_t
6294nfsd4_fl_get_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04006295{
Jeff Laytoncae80b32015-04-03 09:04:04 -04006296 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
6297
6298 nfs4_get_stateowner(&lo->lo_owner);
6299 return owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04006300}
6301
Jeff Laytoncae80b32015-04-03 09:04:04 -04006302static void
6303nfsd4_fl_put_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04006304{
Jeff Laytoncae80b32015-04-03 09:04:04 -04006305 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04006306
Jeff Laytoncae80b32015-04-03 09:04:04 -04006307 if (lo)
Kinglong Meeaef95832014-08-22 10:18:44 -04006308 nfs4_put_stateowner(&lo->lo_owner);
Kinglong Meeaef95832014-08-22 10:18:44 -04006309}
6310
Jeff Layton76d348f2016-09-16 16:28:24 -04006311static void
6312nfsd4_lm_notify(struct file_lock *fl)
6313{
6314 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)fl->fl_owner;
6315 struct net *net = lo->lo_owner.so_client->net;
6316 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
6317 struct nfsd4_blocked_lock *nbl = container_of(fl,
6318 struct nfsd4_blocked_lock, nbl_lock);
6319 bool queue = false;
6320
Jeff Layton7919d0a2016-09-16 16:28:25 -04006321 /* An empty list means that something else is going to be using it */
Jeff Layton0cc11a62016-10-20 09:34:31 -04006322 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006323 if (!list_empty(&nbl->nbl_list)) {
6324 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006325 list_del_init(&nbl->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -04006326 queue = true;
6327 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04006328 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006329
6330 if (queue)
6331 nfsd4_run_cb(&nbl->nbl_cb);
6332}
6333
Alexey Dobriyan7b021962009-09-21 17:01:12 -07006334static const struct lock_manager_operations nfsd_posix_mng_ops = {
Jeff Layton76d348f2016-09-16 16:28:24 -04006335 .lm_notify = nfsd4_lm_notify,
Kinglong Meeaef95832014-08-22 10:18:44 -04006336 .lm_get_owner = nfsd4_fl_get_owner,
6337 .lm_put_owner = nfsd4_fl_put_owner,
NeilBrownd5b90262006-04-10 22:55:22 -07006338};
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339
6340static inline void
6341nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
6342{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006343 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344
NeilBrownd5b90262006-04-10 22:55:22 -07006345 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006346 lo = (struct nfs4_lockowner *) fl->fl_owner;
J. Bruce Fields6f4859b2019-06-19 14:30:33 -04006347 xdr_netobj_dup(&deny->ld_owner, &lo->lo_owner.so_owner,
6348 GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04006349 if (!deny->ld_owner.data)
6350 /* We just don't care that much */
6351 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006352 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07006353 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04006354nevermind:
6355 deny->ld_owner.len = 0;
6356 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07006357 deny->ld_clientid.cl_boot = 0;
6358 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359 }
6360 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02006361 deny->ld_length = NFS4_MAX_UINT64;
6362 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363 deny->ld_length = fl->fl_end - fl->fl_start + 1;
6364 deny->ld_type = NFS4_READ_LT;
6365 if (fl->fl_type != F_RDLCK)
6366 deny->ld_type = NFS4_WRITE_LT;
6367}
6368
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006369static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08006370find_lockowner_str_locked(struct nfs4_client *clp, struct xdr_netobj *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371{
Trond Myklebustd4f04892014-07-29 21:34:36 -04006372 unsigned int strhashval = ownerstr_hashval(owner);
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04006373 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374
Trond Myklebust0a880a22014-07-30 08:27:10 -04006375 lockdep_assert_held(&clp->cl_lock);
6376
Trond Myklebustd4f04892014-07-29 21:34:36 -04006377 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[strhashval],
6378 so_strhash) {
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04006379 if (so->so_is_open_owner)
6380 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -04006381 if (same_owner_str(so, owner))
6382 return lockowner(nfs4_get_stateowner(so));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383 }
6384 return NULL;
6385}
6386
Trond Myklebustc58c6612014-07-29 21:34:35 -04006387static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08006388find_lockowner_str(struct nfs4_client *clp, struct xdr_netobj *owner)
Trond Myklebustc58c6612014-07-29 21:34:35 -04006389{
6390 struct nfs4_lockowner *lo;
6391
Trond Myklebustd4f04892014-07-29 21:34:36 -04006392 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08006393 lo = find_lockowner_str_locked(clp, owner);
Trond Myklebustd4f04892014-07-29 21:34:36 -04006394 spin_unlock(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006395 return lo;
6396}
6397
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006398static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
6399{
Trond Myklebustc58c6612014-07-29 21:34:35 -04006400 unhash_lockowner_locked(lockowner(sop));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006401}
6402
Jeff Layton6b180f02014-07-29 21:34:26 -04006403static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
6404{
6405 struct nfs4_lockowner *lo = lockowner(sop);
6406
6407 kmem_cache_free(lockowner_slab, lo);
6408}
6409
6410static const struct nfs4_stateowner_operations lockowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04006411 .so_unhash = nfs4_unhash_lockowner,
6412 .so_free = nfs4_free_lockowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04006413};
6414
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415/*
6416 * Alloc a lock owner structure.
6417 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006418 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05006420 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006422static struct nfs4_lockowner *
Trond Myklebustc58c6612014-07-29 21:34:35 -04006423alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp,
6424 struct nfs4_ol_stateid *open_stp,
6425 struct nfsd4_lock *lock)
6426{
Trond Myklebustc58c6612014-07-29 21:34:35 -04006427 struct nfs4_lockowner *lo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006429 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
6430 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431 return NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04006432 INIT_LIST_HEAD(&lo->lo_blocked);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006433 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
6434 lo->lo_owner.so_is_open_owner = 0;
Jeff Layton5db1c032014-07-29 21:34:28 -04006435 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
Jeff Layton6b180f02014-07-29 21:34:26 -04006436 lo->lo_owner.so_ops = &lockowner_ops;
Trond Myklebustd4f04892014-07-29 21:34:36 -04006437 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08006438 ret = find_lockowner_str_locked(clp, &lock->lk_new_owner);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006439 if (ret == NULL) {
6440 list_add(&lo->lo_owner.so_strhash,
Trond Myklebustd4f04892014-07-29 21:34:36 -04006441 &clp->cl_ownerstr_hashtbl[strhashval]);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006442 ret = lo;
6443 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08006444 nfs4_free_stateowner(&lo->lo_owner);
6445
Trond Myklebustd4f04892014-07-29 21:34:36 -04006446 spin_unlock(&clp->cl_lock);
J. Bruce Fields340f0ba2015-03-23 11:02:30 -04006447 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448}
6449
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006450static struct nfs4_ol_stateid *
Trond Myklebusta451b122020-03-01 18:21:38 -05006451find_lock_stateid(const struct nfs4_lockowner *lo,
6452 const struct nfs4_ol_stateid *ost)
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006453{
6454 struct nfs4_ol_stateid *lst;
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006455
Trond Myklebusta451b122020-03-01 18:21:38 -05006456 lockdep_assert_held(&ost->st_stid.sc_client->cl_lock);
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006457
Trond Myklebusta451b122020-03-01 18:21:38 -05006458 /* If ost is not hashed, ost->st_locks will not be valid */
6459 if (!nfs4_ol_stateid_unhashed(ost))
6460 list_for_each_entry(lst, &ost->st_locks, st_locks) {
6461 if (lst->st_stateowner == &lo->lo_owner) {
6462 refcount_inc(&lst->st_stid.sc_count);
6463 return lst;
6464 }
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006465 }
Trond Myklebustfd1fd682017-11-03 08:00:14 -04006466 return NULL;
6467}
6468
Trond Myklebustbeeca192017-11-03 08:00:14 -04006469static struct nfs4_ol_stateid *
Jeff Layton356a95e2014-07-29 21:34:13 -04006470init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
6471 struct nfs4_file *fp, struct inode *inode,
6472 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04006474 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustbeeca192017-11-03 08:00:14 -04006475 struct nfs4_ol_stateid *retstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
Trond Myklebustbeeca192017-11-03 08:00:14 -04006477 mutex_init(&stp->st_mutex);
Andrew Elble4f34bd02017-11-08 17:29:51 -05006478 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006479retry:
6480 spin_lock(&clp->cl_lock);
Trond Myklebusta451b122020-03-01 18:21:38 -05006481 if (nfs4_ol_stateid_unhashed(open_stp))
6482 goto out_close;
6483 retstp = find_lock_stateid(lo, open_stp);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006484 if (retstp)
Trond Myklebusta451b122020-03-01 18:21:38 -05006485 goto out_found;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03006486 refcount_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05006487 stp->st_stid.sc_type = NFS4_LOCK_STID;
Kinglong Meeb5971af2014-08-22 10:18:43 -04006488 stp->st_stateowner = nfs4_get_stateowner(&lo->lo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07006489 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04006490 stp->st_stid.sc_file = fp;
J. Bruce Fields0997b172011-03-02 18:01:35 -05006491 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07006493 stp->st_openstp = open_stp;
Trond Myklebusta451b122020-03-01 18:21:38 -05006494 spin_lock(&fp->fi_lock);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006495 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04006496 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04006497 list_add(&stp->st_perfile, &fp->fi_stateids);
6498 spin_unlock(&fp->fi_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006499 spin_unlock(&clp->cl_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006500 return stp;
Trond Myklebusta451b122020-03-01 18:21:38 -05006501out_found:
6502 spin_unlock(&clp->cl_lock);
6503 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
6504 nfs4_put_stid(&retstp->st_stid);
6505 goto retry;
6506 }
6507 /* To keep mutex tracking happy */
6508 mutex_unlock(&stp->st_mutex);
6509 return retstp;
6510out_close:
6511 spin_unlock(&clp->cl_lock);
6512 mutex_unlock(&stp->st_mutex);
6513 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514}
6515
Jeff Laytonc53530d2014-06-30 11:48:39 -04006516static struct nfs4_ol_stateid *
Jeff Layton356a95e2014-07-29 21:34:13 -04006517find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
6518 struct inode *inode, struct nfs4_ol_stateid *ost,
6519 bool *new)
6520{
6521 struct nfs4_stid *ns = NULL;
6522 struct nfs4_ol_stateid *lst;
6523 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
6524 struct nfs4_client *clp = oo->oo_owner.so_client;
6525
Trond Myklebustbeeca192017-11-03 08:00:14 -04006526 *new = false;
Jeff Layton356a95e2014-07-29 21:34:13 -04006527 spin_lock(&clp->cl_lock);
Trond Myklebusta451b122020-03-01 18:21:38 -05006528 lst = find_lock_stateid(lo, ost);
Jeff Layton356a95e2014-07-29 21:34:13 -04006529 spin_unlock(&clp->cl_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006530 if (lst != NULL) {
6531 if (nfsd4_lock_ol_stateid(lst) == nfs_ok)
6532 goto out;
6533 nfs4_put_stid(&lst->st_stid);
6534 }
6535 ns = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_lock_stateid);
6536 if (ns == NULL)
6537 return NULL;
6538
6539 lst = init_lock_stateid(openlockstateid(ns), lo, fi, inode, ost);
6540 if (lst == openlockstateid(ns))
6541 *new = true;
6542 else
Jeff Layton356a95e2014-07-29 21:34:13 -04006543 nfs4_put_stid(ns);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006544out:
Jeff Layton356a95e2014-07-29 21:34:13 -04006545 return lst;
6546}
Jeff Laytonc53530d2014-06-30 11:48:39 -04006547
NeilBrownfd39ca92005-06-23 22:04:03 -07006548static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549check_lock_length(u64 offset, u64 length)
6550{
Kinglong Meee7969312015-07-13 17:34:19 +08006551 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
6552 (length > ~offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553}
6554
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006555static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006556{
Trond Myklebust11b91642014-07-29 21:34:08 -04006557 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05006558
Jeff Layton7214e862014-07-10 14:07:33 -04006559 lockdep_assert_held(&fp->fi_lock);
6560
Jeff Layton82c5ff12012-05-11 09:45:13 -04006561 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05006562 return;
Jeff Layton12659652014-07-10 14:07:28 -04006563 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04006564 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05006565}
6566
Jeff Layton356a95e2014-07-29 21:34:13 -04006567static __be32
6568lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
6569 struct nfs4_ol_stateid *ost,
6570 struct nfsd4_lock *lock,
Jeff Laytondd257932016-08-11 10:37:39 -04006571 struct nfs4_ol_stateid **plst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006572{
Jeff Layton5db1c032014-07-29 21:34:28 -04006573 __be32 status;
Trond Myklebust11b91642014-07-29 21:34:08 -04006574 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006575 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
6576 struct nfs4_client *cl = oo->oo_owner.so_client;
David Howells2b0143b2015-03-17 22:25:59 +00006577 struct inode *inode = d_inode(cstate->current_fh.fh_dentry);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006578 struct nfs4_lockowner *lo;
Jeff Laytondd257932016-08-11 10:37:39 -04006579 struct nfs4_ol_stateid *lst;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006580 unsigned int strhashval;
6581
Kinglong Meec8623992015-07-13 17:35:37 +08006582 lo = find_lockowner_str(cl, &lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04006583 if (!lo) {
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006584 strhashval = ownerstr_hashval(&lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04006585 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
6586 if (lo == NULL)
6587 return nfserr_jukebox;
6588 } else {
6589 /* with an existing lockowner, seqids must be the same */
Jeff Layton5db1c032014-07-29 21:34:28 -04006590 status = nfserr_bad_seqid;
Jeff Laytonc53530d2014-06-30 11:48:39 -04006591 if (!cstate->minorversion &&
6592 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
Jeff Layton5db1c032014-07-29 21:34:28 -04006593 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006594 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04006595
Jeff Laytondd257932016-08-11 10:37:39 -04006596 lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
6597 if (lst == NULL) {
Jeff Layton5db1c032014-07-29 21:34:28 -04006598 status = nfserr_jukebox;
6599 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006600 }
Jeff Laytondd257932016-08-11 10:37:39 -04006601
Jeff Layton5db1c032014-07-29 21:34:28 -04006602 status = nfs_ok;
Jeff Laytondd257932016-08-11 10:37:39 -04006603 *plst = lst;
Jeff Layton5db1c032014-07-29 21:34:28 -04006604out:
6605 nfs4_put_stateowner(&lo->lo_owner);
6606 return status;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006607}
6608
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609/*
6610 * LOCK operation
6611 */
Al Virob37ad282006-10-19 23:28:59 -07006612__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006613nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006614 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006616 struct nfsd4_lock *lock = &u->lock;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006617 struct nfs4_openowner *open_sop = NULL;
6618 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006619 struct nfs4_ol_stateid *lock_stp = NULL;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006620 struct nfs4_ol_stateid *open_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04006621 struct nfs4_file *fp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006622 struct nfsd_file *nf = NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04006623 struct nfsd4_blocked_lock *nbl = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006624 struct file_lock *file_lock = NULL;
6625 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006626 __be32 status = 0;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006627 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07006628 int err;
Jeff Layton5db1c032014-07-29 21:34:28 -04006629 bool new = false;
Jeff Layton76d348f2016-09-16 16:28:24 -04006630 unsigned char fl_type;
6631 unsigned int fl_flags = FL_POSIX;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006632 struct net *net = SVC_NET(rqstp);
6633 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
6635 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
6636 (long long) lock->lk_offset,
6637 (long long) lock->lk_length);
6638
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639 if (check_lock_length(lock->lk_offset, lock->lk_length))
6640 return nfserr_inval;
6641
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006642 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02006643 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08006644 dprintk("NFSD: nfsd4_lock: permission denied!\n");
6645 return status;
6646 }
6647
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648 if (lock->lk_is_new) {
J. Bruce Fields684e5632011-11-04 17:08:10 -04006649 if (nfsd4_has_session(cstate))
6650 /* See rfc 5661 18.10.3: given clientid is ignored: */
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006651 memcpy(&lock->lk_new_clientid,
J. Bruce Fields684e5632011-11-04 17:08:10 -04006652 &cstate->session->se_client->cl_clientid,
6653 sizeof(clientid_t));
6654
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04006656 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04006660 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 lock->lk_new_open_seqid,
6662 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006663 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07006664 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665 goto out;
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006666 mutex_unlock(&open_stp->st_mutex);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006667 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006668 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04006669 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08006670 &lock->lk_new_clientid))
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006671 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006672 status = lookup_or_create_lock_state(cstate, open_stp, lock,
Jeff Layton5db1c032014-07-29 21:34:28 -04006673 &lock_stp, &new);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006674 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03006675 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006676 lock->lk_old_lock_seqid,
6677 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006678 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006679 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04006680 if (status)
6681 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04006682 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04006684 lkflg = setlkflg(lock->lk_type);
6685 status = nfs4_check_openmode(lock_stp, lkflg);
6686 if (status)
6687 goto out;
6688
NeilBrown0dd395d2005-07-07 17:59:15 -07006689 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006690 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07006691 goto out;
6692 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006693 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07006694 goto out;
6695
Trond Myklebust11b91642014-07-29 21:34:08 -04006696 fp = lock_stp->st_stid.sc_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697 switch (lock->lk_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698 case NFS4_READW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04006699 if (nfsd4_has_session(cstate))
6700 fl_flags |= FL_SLEEP;
6701 /* Fallthrough */
6702 case NFS4_READ_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04006703 spin_lock(&fp->fi_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006704 nf = find_readable_file_locked(fp);
6705 if (nf)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006706 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04006707 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006708 fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05006709 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710 case NFS4_WRITEW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04006711 if (nfsd4_has_session(cstate))
6712 fl_flags |= FL_SLEEP;
6713 /* Fallthrough */
6714 case NFS4_WRITE_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04006715 spin_lock(&fp->fi_lock);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006716 nf = find_writeable_file_locked(fp);
6717 if (nf)
J. Bruce Fields0997b172011-03-02 18:01:35 -05006718 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04006719 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006720 fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05006721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722 default:
6723 status = nfserr_inval;
6724 goto out;
6725 }
Jeff Layton76d348f2016-09-16 16:28:24 -04006726
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006727 if (!nf) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006728 status = nfserr_openmode;
6729 goto out;
6730 }
Kinglong Meeaef95832014-08-22 10:18:44 -04006731
Jeff Layton76d348f2016-09-16 16:28:24 -04006732 nbl = find_or_allocate_block(lock_sop, &fp->fi_fhandle, nn);
6733 if (!nbl) {
6734 dprintk("NFSD: %s: unable to allocate block!\n", __func__);
6735 status = nfserr_jukebox;
6736 goto out;
6737 }
6738
6739 file_lock = &nbl->nbl_lock;
6740 file_lock->fl_type = fl_type;
Kinglong Meeaef95832014-08-22 10:18:44 -04006741 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lock_sop->lo_owner));
Jeff Layton21179d82012-08-21 08:03:32 -04006742 file_lock->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006743 file_lock->fl_file = nf->nf_file;
Jeff Layton76d348f2016-09-16 16:28:24 -04006744 file_lock->fl_flags = fl_flags;
Jeff Layton21179d82012-08-21 08:03:32 -04006745 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6746 file_lock->fl_start = lock->lk_offset;
6747 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
6748 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006749
Jeff Layton21179d82012-08-21 08:03:32 -04006750 conflock = locks_alloc_lock();
6751 if (!conflock) {
6752 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6753 status = nfserr_jukebox;
6754 goto out;
6755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756
Jeff Layton76d348f2016-09-16 16:28:24 -04006757 if (fl_flags & FL_SLEEP) {
Arnd Bergmann20b7d862019-11-04 16:31:52 +01006758 nbl->nbl_time = ktime_get_boottime_seconds();
Jeff Layton0cc11a62016-10-20 09:34:31 -04006759 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006760 list_add_tail(&nbl->nbl_list, &lock_sop->lo_blocked);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006761 list_add_tail(&nbl->nbl_lru, &nn->blocked_locks_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006762 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006763 }
6764
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006765 err = vfs_lock_file(nf->nf_file, F_SETLK, file_lock, conflock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006766 switch (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767 case 0: /* success! */
Jeff Layton9767feb2015-10-01 09:05:50 -04006768 nfs4_inc_and_copy_stateid(&lock->lk_resp_stateid, &lock_stp->st_stid);
Al Virob8dd7b92006-10-19 23:29:01 -07006769 status = 0;
J. Bruce Fields03f318c2018-06-08 12:28:47 -04006770 if (lock->lk_reclaim)
6771 nn->somebody_reclaimed = true;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006772 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006773 case FILE_LOCK_DEFERRED:
6774 nbl = NULL;
6775 /* Fallthrough */
6776 case -EAGAIN: /* conflock holds conflicting lock */
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006777 status = nfserr_denied;
6778 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04006779 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006780 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006781 case -EDEADLK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006783 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04006784 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05006785 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04006786 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006787 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789out:
Jeff Layton76d348f2016-09-16 16:28:24 -04006790 if (nbl) {
6791 /* dequeue it if we queued it before */
6792 if (fl_flags & FL_SLEEP) {
Jeff Layton0cc11a62016-10-20 09:34:31 -04006793 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006794 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006795 list_del_init(&nbl->nbl_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006796 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006797 }
6798 free_blocked_lock(nbl);
6799 }
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006800 if (nf)
6801 nfsd_file_put(nf);
Jeff Layton5db1c032014-07-29 21:34:28 -04006802 if (lock_stp) {
6803 /* Bump seqid manually if the 4.0 replay owner is openowner */
6804 if (cstate->replay_owner &&
6805 cstate->replay_owner != &lock_sop->lo_owner &&
6806 seqid_mutating_err(ntohl(status)))
6807 lock_sop->lo_owner.so_seqid++;
6808
6809 /*
6810 * If this is a new, never-before-used stateid, and we are
6811 * returning an error, then just go ahead and release it.
6812 */
J. Bruce Fields25020722018-01-17 16:25:59 -05006813 if (status && new)
Jeff Layton5db1c032014-07-29 21:34:28 -04006814 release_lock_stateid(lock_stp);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006815
6816 mutex_unlock(&lock_stp->st_mutex);
Jeff Layton5db1c032014-07-29 21:34:28 -04006817
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006818 nfs4_put_stid(&lock_stp->st_stid);
Jeff Layton5db1c032014-07-29 21:34:28 -04006819 }
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006820 if (open_stp)
6821 nfs4_put_stid(&open_stp->st_stid);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006822 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006823 if (conflock)
6824 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825 return status;
6826}
6827
6828/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006829 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
6830 * so we do a temporary open here just to get an open file to pass to
6831 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
6832 * inode operation.)
6833 */
Al Viro04da6e92012-04-13 00:00:04 -04006834static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006835{
Jeff Layton6b556ca2019-08-18 14:18:55 -04006836 struct nfsd_file *nf;
6837 __be32 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf);
Al Viro04da6e92012-04-13 00:00:04 -04006838 if (!err) {
Jeff Layton6b556ca2019-08-18 14:18:55 -04006839 err = nfserrno(vfs_test_lock(nf->nf_file, lock));
6840 nfsd_file_put(nf);
Al Viro04da6e92012-04-13 00:00:04 -04006841 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006842 return err;
6843}
6844
6845/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846 * LOCKT operation
6847 */
Al Virob37ad282006-10-19 23:28:59 -07006848__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006849nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006850 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006852 struct nfsd4_lockt *lockt = &u->lockt;
Jeff Layton21179d82012-08-21 08:03:32 -04006853 struct file_lock *file_lock = NULL;
Jeff Layton5db1c032014-07-29 21:34:28 -04006854 struct nfs4_lockowner *lo = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006855 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006856 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04006858 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859 return nfserr_grace;
6860
6861 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
6862 return nfserr_inval;
6863
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006864 if (!nfsd4_has_session(cstate)) {
Olga Kornievskaiab7342202019-09-06 15:17:21 -04006865 status = lookup_clientid(&lockt->lt_clientid, cstate, nn,
6866 false);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006867 if (status)
6868 goto out;
6869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870
J. Bruce Fields75c096f2011-08-15 18:39:32 -04006871 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873
Jeff Layton21179d82012-08-21 08:03:32 -04006874 file_lock = locks_alloc_lock();
6875 if (!file_lock) {
6876 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6877 status = nfserr_jukebox;
6878 goto out;
6879 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006880
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881 switch (lockt->lt_type) {
6882 case NFS4_READ_LT:
6883 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006884 file_lock->fl_type = F_RDLCK;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006885 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886 case NFS4_WRITE_LT:
6887 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006888 file_lock->fl_type = F_WRLCK;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006889 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04006891 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892 status = nfserr_inval;
Colin Ian Kingf50c9d72018-11-03 16:12:53 +00006893 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894 }
6895
Kinglong Meec8623992015-07-13 17:35:37 +08006896 lo = find_lockowner_str(cstate->clp, &lockt->lt_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006897 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04006898 file_lock->fl_owner = (fl_owner_t)lo;
6899 file_lock->fl_pid = current->tgid;
6900 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901
Jeff Layton21179d82012-08-21 08:03:32 -04006902 file_lock->fl_start = lockt->lt_offset;
6903 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904
Jeff Layton21179d82012-08-21 08:03:32 -04006905 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906
Jeff Layton21179d82012-08-21 08:03:32 -04006907 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04006908 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05006909 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04006910
Jeff Layton21179d82012-08-21 08:03:32 -04006911 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04006913 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914 }
6915out:
Jeff Layton5db1c032014-07-29 21:34:28 -04006916 if (lo)
6917 nfs4_put_stateowner(&lo->lo_owner);
Jeff Layton21179d82012-08-21 08:03:32 -04006918 if (file_lock)
6919 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920 return status;
6921}
6922
Al Virob37ad282006-10-19 23:28:59 -07006923__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006924nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006925 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006927 struct nfsd4_locku *locku = &u->locku;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006928 struct nfs4_ol_stateid *stp;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006929 struct nfsd_file *nf = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006930 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006931 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07006932 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006933 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
6934
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
6936 (long long) locku->lu_offset,
6937 (long long) locku->lu_length);
6938
6939 if (check_lock_length(locku->lu_offset, locku->lu_length))
6940 return nfserr_inval;
6941
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006942 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006943 &locku->lu_stateid, NFS4_LOCK_STID,
6944 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006945 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946 goto out;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006947 nf = find_any_file(stp->st_stid.sc_file);
6948 if (!nf) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006949 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04006950 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006951 }
Jeff Layton21179d82012-08-21 08:03:32 -04006952 file_lock = locks_alloc_lock();
6953 if (!file_lock) {
6954 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6955 status = nfserr_jukebox;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006956 goto put_file;
Jeff Layton21179d82012-08-21 08:03:32 -04006957 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006958
Jeff Layton21179d82012-08-21 08:03:32 -04006959 file_lock->fl_type = F_UNLCK;
Kinglong Meeaef95832014-08-22 10:18:44 -04006960 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(stp->st_stateowner));
Jeff Layton21179d82012-08-21 08:03:32 -04006961 file_lock->fl_pid = current->tgid;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006962 file_lock->fl_file = nf->nf_file;
Jeff Layton21179d82012-08-21 08:03:32 -04006963 file_lock->fl_flags = FL_POSIX;
6964 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6965 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966
Jeff Layton21179d82012-08-21 08:03:32 -04006967 file_lock->fl_end = last_byte_offset(locku->lu_offset,
6968 locku->lu_length);
6969 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006971 err = vfs_lock_file(nf->nf_file, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07006972 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05006973 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006974 goto out_nfserr;
6975 }
Jeff Layton9767feb2015-10-01 09:05:50 -04006976 nfs4_inc_and_copy_stateid(&locku->lu_stateid, &stp->st_stid);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006977put_file:
6978 nfsd_file_put(nf);
Trond Myklebust858cc572014-07-29 21:34:16 -04006979put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006980 mutex_unlock(&stp->st_mutex);
Trond Myklebust858cc572014-07-29 21:34:16 -04006981 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006982out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006983 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006984 if (file_lock)
6985 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986 return status;
6987
6988out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07006989 status = nfserrno(err);
Jeff Laytoneb82dd32019-08-18 14:18:53 -04006990 goto put_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991}
6992
6993/*
6994 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006995 * true: locks held by lockowner
6996 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006998static bool
6999check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000{
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05007001 struct file_lock *fl;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04007002 int status = false;
Jeff Laytoneb82dd32019-08-18 14:18:53 -04007003 struct nfsd_file *nf = find_any_file(fp);
Jeff Laytonf9c00c32014-07-23 16:17:41 -04007004 struct inode *inode;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05007005 struct file_lock_context *flctx;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04007006
Jeff Laytoneb82dd32019-08-18 14:18:53 -04007007 if (!nf) {
Jeff Laytonf9c00c32014-07-23 16:17:41 -04007008 /* Any valid lock stateid should have some sort of access */
7009 WARN_ON_ONCE(1);
7010 return status;
7011 }
7012
Jeff Laytoneb82dd32019-08-18 14:18:53 -04007013 inode = locks_inode(nf->nf_file);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05007014 flctx = inode->i_flctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05007016 if (flctx && !list_empty_careful(&flctx->flc_posix)) {
Jeff Layton6109c852015-01-16 15:05:57 -05007017 spin_lock(&flctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05007018 list_for_each_entry(fl, &flctx->flc_posix, fl_list) {
7019 if (fl->fl_owner == (fl_owner_t)lowner) {
7020 status = true;
7021 break;
7022 }
J. Bruce Fields796dadf2006-01-18 17:43:22 -08007023 }
Jeff Layton6109c852015-01-16 15:05:57 -05007024 spin_unlock(&flctx->flc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025 }
Jeff Laytoneb82dd32019-08-18 14:18:53 -04007026 nfsd_file_put(nf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027 return status;
7028}
7029
Al Virob37ad282006-10-19 23:28:59 -07007030__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08007031nfsd4_release_lockowner(struct svc_rqst *rqstp,
7032 struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02007033 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034{
Christoph Hellwigeb698532017-05-08 20:58:35 +02007035 struct nfsd4_release_lockowner *rlockowner = &u->release_lockowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Layton882e9d22014-07-29 21:34:37 -04007037 struct nfs4_stateowner *sop;
7038 struct nfs4_lockowner *lo = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04007039 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040 struct xdr_netobj *owner = &rlockowner->rl_owner;
Trond Myklebustd4f04892014-07-29 21:34:36 -04007041 unsigned int hashval = ownerstr_hashval(owner);
Al Virob37ad282006-10-19 23:28:59 -07007042 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03007043 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Trond Myklebustc58c6612014-07-29 21:34:35 -04007044 struct nfs4_client *clp;
Chuck Lever88584812016-07-13 16:40:14 -04007045 LIST_HEAD (reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046
7047 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
7048 clid->cl_boot, clid->cl_id);
7049
Olga Kornievskaiab7342202019-09-06 15:17:21 -04007050 status = lookup_clientid(clid, cstate, nn, false);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05007051 if (status)
Trond Myklebust51f5e782014-07-30 08:27:27 -04007052 return status;
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05007053
Trond Myklebustd4f04892014-07-29 21:34:36 -04007054 clp = cstate->clp;
Jeff Laytonfd449072014-06-30 11:48:41 -04007055 /* Find the matching lock stateowner */
Trond Myklebustd4f04892014-07-29 21:34:36 -04007056 spin_lock(&clp->cl_lock);
Jeff Layton882e9d22014-07-29 21:34:37 -04007057 list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval],
Trond Myklebustd4f04892014-07-29 21:34:36 -04007058 so_strhash) {
Jeff Layton882e9d22014-07-29 21:34:37 -04007059
7060 if (sop->so_is_open_owner || !same_owner_str(sop, owner))
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05007061 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04007062
Jeff Layton882e9d22014-07-29 21:34:37 -04007063 /* see if there are still any locks associated with it */
7064 lo = lockowner(sop);
7065 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
7066 if (check_for_locks(stp->st_stid.sc_file, lo)) {
7067 status = nfserr_locks_held;
7068 spin_unlock(&clp->cl_lock);
Trond Myklebust51f5e782014-07-30 08:27:27 -04007069 return status;
Jeff Layton882e9d22014-07-29 21:34:37 -04007070 }
Jeff Layton5adfd882014-07-29 21:34:31 -04007071 }
Jeff Layton882e9d22014-07-29 21:34:37 -04007072
Kinglong Meeb5971af2014-08-22 10:18:43 -04007073 nfs4_get_stateowner(sop);
Jeff Layton882e9d22014-07-29 21:34:37 -04007074 break;
Jeff Laytonfd449072014-06-30 11:48:41 -04007075 }
Chuck Lever88584812016-07-13 16:40:14 -04007076 if (!lo) {
7077 spin_unlock(&clp->cl_lock);
7078 return status;
7079 }
7080
7081 unhash_lockowner_locked(lo);
7082 while (!list_empty(&lo->lo_owner.so_stateids)) {
7083 stp = list_first_entry(&lo->lo_owner.so_stateids,
7084 struct nfs4_ol_stateid,
7085 st_perstateowner);
7086 WARN_ON(!unhash_lock_stateid(stp));
7087 put_ol_stateid_locked(stp, &reaplist);
7088 }
Trond Myklebustc58c6612014-07-29 21:34:35 -04007089 spin_unlock(&clp->cl_lock);
Chuck Lever88584812016-07-13 16:40:14 -04007090 free_ol_stateid_reaplist(&reaplist);
Jeff Layton68ef3bc2018-03-16 11:32:02 -04007091 remove_blocked_locks(lo);
Chuck Lever88584812016-07-13 16:40:14 -04007092 nfs4_put_stateowner(&lo->lo_owner);
7093
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094 return status;
7095}
7096
7097static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07007098alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099{
NeilBrowna55370a2005-06-23 22:03:52 -07007100 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101}
7102
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05007103bool
Scott Mayhew6b189102019-03-26 18:06:26 -04007104nfs4_has_reclaimed_state(struct xdr_netobj name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07007105{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05007106 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07007107
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007108 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05007109 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07007110}
7111
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112/*
7113 * failure => all reset bets are off, nfserr_no_grace...
Scott Mayhew6b189102019-03-26 18:06:26 -04007114 *
7115 * The caller is responsible for freeing name.data if NULL is returned (it
7116 * will be freed in nfs4_remove_reclaim_record in the normal case).
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05007118struct nfs4_client_reclaim *
Scott Mayhew6ee95d12019-09-09 16:10:31 -04007119nfs4_client_to_reclaim(struct xdr_netobj name, struct xdr_netobj princhash,
7120 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007121{
7122 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05007123 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04007125 trace_nfsd_clid_reclaim(nn, name.len, name.data);
NeilBrowna55370a2005-06-23 22:03:52 -07007126 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05007127 if (crp) {
7128 strhashval = clientstr_hashval(name);
7129 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007130 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Scott Mayhew6b189102019-03-26 18:06:26 -04007131 crp->cr_name.data = name.data;
7132 crp->cr_name.len = name.len;
Scott Mayhew6ee95d12019-09-09 16:10:31 -04007133 crp->cr_princhash.data = princhash.data;
7134 crp->cr_princhash.len = princhash.len;
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05007135 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007136 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05007137 }
7138 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139}
7140
Jeff Layton2a4317c2012-03-21 16:42:43 -04007141void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007142nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05007143{
7144 list_del(&crp->cr_strhash);
Scott Mayhew6b189102019-03-26 18:06:26 -04007145 kfree(crp->cr_name.data);
Scott Mayhew6ee95d12019-09-09 16:10:31 -04007146 kfree(crp->cr_princhash.data);
Jeff Laytonce30e532012-11-12 15:00:53 -05007147 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007148 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05007149}
7150
7151void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007152nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153{
7154 struct nfs4_client_reclaim *crp = NULL;
7155 int i;
7156
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007158 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
7159 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007160 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007161 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162 }
7163 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05007164 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165}
7166
7167/*
7168 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04007169struct nfs4_client_reclaim *
Scott Mayhew6b189102019-03-26 18:06:26 -04007170nfsd4_find_reclaim_client(struct xdr_netobj name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007171{
7172 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173 struct nfs4_client_reclaim *crp = NULL;
7174
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04007175 trace_nfsd_clid_find(nn, name.len, name.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007176
Scott Mayhew6b189102019-03-26 18:06:26 -04007177 strhashval = clientstr_hashval(name);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03007178 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Scott Mayhew6b189102019-03-26 18:06:26 -04007179 if (compare_blob(&crp->cr_name, &name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007180 return crp;
7181 }
7182 }
7183 return NULL;
7184}
7185
7186/*
7187* Called from OPEN. Look for clientid in reclaim list.
7188*/
Al Virob37ad282006-10-19 23:28:59 -07007189__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04007190nfs4_check_open_reclaim(clientid_t *clid,
7191 struct nfsd4_compound_state *cstate,
7192 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04007194 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04007195
7196 /* find clientid in conf_id_hashtbl */
Olga Kornievskaiab7342202019-09-06 15:17:21 -04007197 status = lookup_clientid(clid, cstate, nn, false);
Trond Myklebust0fe492d2014-06-30 11:48:47 -04007198 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04007199 return nfserr_reclaim_bad;
7200
Jeff Layton3b3e7b72014-09-12 16:40:22 -04007201 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags))
7202 return nfserr_no_grace;
7203
Trond Myklebust0fe492d2014-06-30 11:48:47 -04007204 if (nfsd4_client_record_check(cstate->clp))
7205 return nfserr_reclaim_bad;
7206
7207 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208}
7209
Bryan Schumaker65178db2011-11-01 13:35:21 -04007210#ifdef CONFIG_NFSD_FAULT_INJECTION
Jeff Layton016200c2014-07-30 08:27:21 -04007211static inline void
7212put_client(struct nfs4_client *clp)
7213{
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007214 atomic_dec(&clp->cl_rpc_users);
Jeff Layton016200c2014-07-30 08:27:21 -04007215}
7216
Jeff Layton285abde2014-07-30 08:27:24 -04007217static struct nfs4_client *
7218nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
7219{
7220 struct nfs4_client *clp;
7221 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7222 nfsd_net_id);
7223
7224 if (!nfsd_netns_ready(nn))
7225 return NULL;
7226
7227 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7228 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
7229 return clp;
7230 }
7231 return NULL;
7232}
7233
Jeff Layton7ec0e362014-07-30 08:27:17 -04007234u64
Jeff Layton285abde2014-07-30 08:27:24 -04007235nfsd_inject_print_clients(void)
Jeff Layton7ec0e362014-07-30 08:27:17 -04007236{
7237 struct nfs4_client *clp;
7238 u64 count = 0;
7239 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7240 nfsd_net_id);
7241 char buf[INET6_ADDRSTRLEN];
7242
7243 if (!nfsd_netns_ready(nn))
7244 return 0;
7245
7246 spin_lock(&nn->client_lock);
7247 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7248 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
7249 pr_info("NFS Client: %s\n", buf);
7250 ++count;
7251 }
7252 spin_unlock(&nn->client_lock);
7253
7254 return count;
7255}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007256
Jeff Laytona0926d12014-07-30 08:27:18 -04007257u64
Jeff Layton285abde2014-07-30 08:27:24 -04007258nfsd_inject_forget_client(struct sockaddr_storage *addr, size_t addr_size)
Jeff Laytona0926d12014-07-30 08:27:18 -04007259{
7260 u64 count = 0;
7261 struct nfs4_client *clp;
7262 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7263 nfsd_net_id);
7264
7265 if (!nfsd_netns_ready(nn))
7266 return count;
7267
7268 spin_lock(&nn->client_lock);
7269 clp = nfsd_find_client(addr, addr_size);
7270 if (clp) {
7271 if (mark_client_expired_locked(clp) == nfs_ok)
7272 ++count;
7273 else
7274 clp = NULL;
7275 }
7276 spin_unlock(&nn->client_lock);
7277
7278 if (clp)
7279 expire_client(clp);
7280
7281 return count;
7282}
7283
Jeff Layton69fc9ed2014-07-30 08:27:19 -04007284u64
Jeff Layton285abde2014-07-30 08:27:24 -04007285nfsd_inject_forget_clients(u64 max)
Jeff Layton69fc9ed2014-07-30 08:27:19 -04007286{
7287 u64 count = 0;
7288 struct nfs4_client *clp, *next;
7289 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7290 nfsd_net_id);
7291 LIST_HEAD(reaplist);
7292
7293 if (!nfsd_netns_ready(nn))
7294 return count;
7295
7296 spin_lock(&nn->client_lock);
7297 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
7298 if (mark_client_expired_locked(clp) == nfs_ok) {
7299 list_add(&clp->cl_lru, &reaplist);
7300 if (max != 0 && ++count >= max)
7301 break;
7302 }
7303 }
7304 spin_unlock(&nn->client_lock);
7305
7306 list_for_each_entry_safe(clp, next, &reaplist, cl_lru)
7307 expire_client(clp);
7308
7309 return count;
7310}
7311
Bryan Schumaker184c1842012-11-29 11:40:44 -05007312static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
7313 const char *type)
7314{
7315 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05007316 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05007317 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
7318}
7319
Jeff Layton016200c2014-07-30 08:27:21 -04007320static void
7321nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid *lst,
7322 struct list_head *collect)
7323{
7324 struct nfs4_client *clp = lst->st_stid.sc_client;
7325 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7326 nfsd_net_id);
7327
7328 if (!collect)
7329 return;
7330
7331 lockdep_assert_held(&nn->client_lock);
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007332 atomic_inc(&clp->cl_rpc_users);
Jeff Layton016200c2014-07-30 08:27:21 -04007333 list_add(&lst->st_locks, collect);
7334}
7335
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007336static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
Jeff Layton3738d502014-07-30 08:27:20 -04007337 struct list_head *collect,
Jeff Laytone8568732015-08-24 12:41:47 -04007338 bool (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05007339{
7340 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007341 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007342 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007343 u64 count = 0;
7344
Jeff Layton016200c2014-07-30 08:27:21 -04007345 spin_lock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007346 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04007347 list_for_each_entry_safe(stp, st_next,
7348 &oop->oo_owner.so_stateids, st_perstateowner) {
7349 list_for_each_entry_safe(lst, lst_next,
7350 &stp->st_locks, st_locks) {
Jeff Layton3738d502014-07-30 08:27:20 -04007351 if (func) {
Jeff Laytone8568732015-08-24 12:41:47 -04007352 if (func(lst))
7353 nfsd_inject_add_lock_to_list(lst,
7354 collect);
Jeff Layton3738d502014-07-30 08:27:20 -04007355 }
Jeff Layton016200c2014-07-30 08:27:21 -04007356 ++count;
7357 /*
7358 * Despite the fact that these functions deal
7359 * with 64-bit integers for "count", we must
7360 * ensure that it doesn't blow up the
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007361 * clp->cl_rpc_users. Throw a warning if we
Jeff Layton016200c2014-07-30 08:27:21 -04007362 * start to approach INT_MAX here.
7363 */
7364 WARN_ON_ONCE(count == (INT_MAX / 2));
7365 if (count == max)
7366 goto out;
Bryan Schumakerfc291712012-11-29 11:40:40 -05007367 }
7368 }
7369 }
Jeff Layton016200c2014-07-30 08:27:21 -04007370out:
7371 spin_unlock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007372
7373 return count;
7374}
7375
Jeff Layton016200c2014-07-30 08:27:21 -04007376static u64
7377nfsd_collect_client_locks(struct nfs4_client *clp, struct list_head *collect,
7378 u64 max)
Bryan Schumakerfc291712012-11-29 11:40:40 -05007379{
Jeff Layton016200c2014-07-30 08:27:21 -04007380 return nfsd_foreach_client_lock(clp, max, collect, unhash_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05007381}
7382
Jeff Layton016200c2014-07-30 08:27:21 -04007383static u64
7384nfsd_print_client_locks(struct nfs4_client *clp)
Bryan Schumaker184c1842012-11-29 11:40:44 -05007385{
Jeff Layton016200c2014-07-30 08:27:21 -04007386 u64 count = nfsd_foreach_client_lock(clp, 0, NULL, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007387 nfsd_print_count(clp, count, "locked files");
7388 return count;
7389}
7390
Jeff Layton016200c2014-07-30 08:27:21 -04007391u64
Jeff Layton285abde2014-07-30 08:27:24 -04007392nfsd_inject_print_locks(void)
Jeff Layton016200c2014-07-30 08:27:21 -04007393{
7394 struct nfs4_client *clp;
7395 u64 count = 0;
7396 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7397 nfsd_net_id);
7398
7399 if (!nfsd_netns_ready(nn))
7400 return 0;
7401
7402 spin_lock(&nn->client_lock);
7403 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7404 count += nfsd_print_client_locks(clp);
7405 spin_unlock(&nn->client_lock);
7406
7407 return count;
7408}
7409
7410static void
7411nfsd_reap_locks(struct list_head *reaplist)
7412{
7413 struct nfs4_client *clp;
7414 struct nfs4_ol_stateid *stp, *next;
7415
7416 list_for_each_entry_safe(stp, next, reaplist, st_locks) {
7417 list_del_init(&stp->st_locks);
7418 clp = stp->st_stid.sc_client;
7419 nfs4_put_stid(&stp->st_stid);
7420 put_client(clp);
7421 }
7422}
7423
7424u64
Jeff Layton285abde2014-07-30 08:27:24 -04007425nfsd_inject_forget_client_locks(struct sockaddr_storage *addr, size_t addr_size)
Jeff Layton016200c2014-07-30 08:27:21 -04007426{
7427 unsigned int count = 0;
7428 struct nfs4_client *clp;
7429 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7430 nfsd_net_id);
7431 LIST_HEAD(reaplist);
7432
7433 if (!nfsd_netns_ready(nn))
7434 return count;
7435
7436 spin_lock(&nn->client_lock);
7437 clp = nfsd_find_client(addr, addr_size);
7438 if (clp)
7439 count = nfsd_collect_client_locks(clp, &reaplist, 0);
7440 spin_unlock(&nn->client_lock);
7441 nfsd_reap_locks(&reaplist);
7442 return count;
7443}
7444
7445u64
Jeff Layton285abde2014-07-30 08:27:24 -04007446nfsd_inject_forget_locks(u64 max)
Jeff Layton016200c2014-07-30 08:27:21 -04007447{
7448 u64 count = 0;
7449 struct nfs4_client *clp;
7450 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7451 nfsd_net_id);
7452 LIST_HEAD(reaplist);
7453
7454 if (!nfsd_netns_ready(nn))
7455 return count;
7456
7457 spin_lock(&nn->client_lock);
7458 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7459 count += nfsd_collect_client_locks(clp, &reaplist, max - count);
7460 if (max != 0 && count >= max)
7461 break;
7462 }
7463 spin_unlock(&nn->client_lock);
7464 nfsd_reap_locks(&reaplist);
7465 return count;
7466}
7467
Jeff Layton82e05ef2014-07-30 08:27:22 -04007468static u64
7469nfsd_foreach_client_openowner(struct nfs4_client *clp, u64 max,
7470 struct list_head *collect,
7471 void (*func)(struct nfs4_openowner *))
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007472{
7473 struct nfs4_openowner *oop, *next;
Jeff Layton82e05ef2014-07-30 08:27:22 -04007474 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7475 nfsd_net_id);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007476 u64 count = 0;
7477
Jeff Layton82e05ef2014-07-30 08:27:22 -04007478 lockdep_assert_held(&nn->client_lock);
7479
7480 spin_lock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007481 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
Jeff Layton82e05ef2014-07-30 08:27:22 -04007482 if (func) {
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007483 func(oop);
Jeff Layton82e05ef2014-07-30 08:27:22 -04007484 if (collect) {
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007485 atomic_inc(&clp->cl_rpc_users);
Jeff Layton82e05ef2014-07-30 08:27:22 -04007486 list_add(&oop->oo_perclient, collect);
7487 }
7488 }
7489 ++count;
7490 /*
7491 * Despite the fact that these functions deal with
7492 * 64-bit integers for "count", we must ensure that
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007493 * it doesn't blow up the clp->cl_rpc_users. Throw a
Jeff Layton82e05ef2014-07-30 08:27:22 -04007494 * warning if we start to approach INT_MAX here.
7495 */
7496 WARN_ON_ONCE(count == (INT_MAX / 2));
7497 if (count == max)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007498 break;
7499 }
Jeff Layton82e05ef2014-07-30 08:27:22 -04007500 spin_unlock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007501
7502 return count;
7503}
7504
Jeff Layton82e05ef2014-07-30 08:27:22 -04007505static u64
7506nfsd_print_client_openowners(struct nfs4_client *clp)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007507{
Jeff Layton82e05ef2014-07-30 08:27:22 -04007508 u64 count = nfsd_foreach_client_openowner(clp, 0, NULL, NULL);
7509
7510 nfsd_print_count(clp, count, "openowners");
7511 return count;
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05007512}
7513
Jeff Layton82e05ef2014-07-30 08:27:22 -04007514static u64
7515nfsd_collect_client_openowners(struct nfs4_client *clp,
7516 struct list_head *collect, u64 max)
Bryan Schumaker184c1842012-11-29 11:40:44 -05007517{
Jeff Layton82e05ef2014-07-30 08:27:22 -04007518 return nfsd_foreach_client_openowner(clp, max, collect,
7519 unhash_openowner_locked);
7520}
7521
7522u64
Jeff Layton285abde2014-07-30 08:27:24 -04007523nfsd_inject_print_openowners(void)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007524{
7525 struct nfs4_client *clp;
7526 u64 count = 0;
7527 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7528 nfsd_net_id);
7529
7530 if (!nfsd_netns_ready(nn))
7531 return 0;
7532
7533 spin_lock(&nn->client_lock);
7534 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7535 count += nfsd_print_client_openowners(clp);
7536 spin_unlock(&nn->client_lock);
7537
7538 return count;
7539}
7540
7541static void
7542nfsd_reap_openowners(struct list_head *reaplist)
7543{
7544 struct nfs4_client *clp;
7545 struct nfs4_openowner *oop, *next;
7546
7547 list_for_each_entry_safe(oop, next, reaplist, oo_perclient) {
7548 list_del_init(&oop->oo_perclient);
7549 clp = oop->oo_owner.so_client;
7550 release_openowner(oop);
7551 put_client(clp);
7552 }
7553}
7554
7555u64
Jeff Layton285abde2014-07-30 08:27:24 -04007556nfsd_inject_forget_client_openowners(struct sockaddr_storage *addr,
7557 size_t addr_size)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007558{
7559 unsigned int count = 0;
7560 struct nfs4_client *clp;
7561 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7562 nfsd_net_id);
7563 LIST_HEAD(reaplist);
7564
7565 if (!nfsd_netns_ready(nn))
7566 return count;
7567
7568 spin_lock(&nn->client_lock);
7569 clp = nfsd_find_client(addr, addr_size);
7570 if (clp)
7571 count = nfsd_collect_client_openowners(clp, &reaplist, 0);
7572 spin_unlock(&nn->client_lock);
7573 nfsd_reap_openowners(&reaplist);
7574 return count;
7575}
7576
7577u64
Jeff Layton285abde2014-07-30 08:27:24 -04007578nfsd_inject_forget_openowners(u64 max)
Jeff Layton82e05ef2014-07-30 08:27:22 -04007579{
7580 u64 count = 0;
7581 struct nfs4_client *clp;
7582 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7583 nfsd_net_id);
7584 LIST_HEAD(reaplist);
7585
7586 if (!nfsd_netns_ready(nn))
7587 return count;
7588
7589 spin_lock(&nn->client_lock);
7590 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7591 count += nfsd_collect_client_openowners(clp, &reaplist,
7592 max - count);
7593 if (max != 0 && count >= max)
7594 break;
7595 }
7596 spin_unlock(&nn->client_lock);
7597 nfsd_reap_openowners(&reaplist);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007598 return count;
7599}
7600
Bryan Schumaker269de302012-11-29 11:40:42 -05007601static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
7602 struct list_head *victims)
7603{
7604 struct nfs4_delegation *dp, *next;
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007605 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7606 nfsd_net_id);
Bryan Schumaker269de302012-11-29 11:40:42 -05007607 u64 count = 0;
7608
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007609 lockdep_assert_held(&nn->client_lock);
7610
7611 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05007612 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04007613 if (victims) {
7614 /*
7615 * It's not safe to mess with delegations that have a
7616 * non-zero dl_time. They might have already been broken
7617 * and could be processed by the laundromat outside of
7618 * the state_lock. Just leave them be.
7619 */
7620 if (dp->dl_time != 0)
7621 continue;
7622
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007623 atomic_inc(&clp->cl_rpc_users);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007624 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007625 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04007626 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007627 ++count;
7628 /*
7629 * Despite the fact that these functions deal with
7630 * 64-bit integers for "count", we must ensure that
J. Bruce Fields14ed14c2019-03-20 11:54:11 -04007631 * it doesn't blow up the clp->cl_rpc_users. Throw a
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007632 * warning if we start to approach INT_MAX here.
7633 */
7634 WARN_ON_ONCE(count == (INT_MAX / 2));
7635 if (count == max)
Bryan Schumaker269de302012-11-29 11:40:42 -05007636 break;
7637 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007638 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05007639 return count;
7640}
7641
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007642static u64
7643nfsd_print_client_delegations(struct nfs4_client *clp)
Bryan Schumaker269de302012-11-29 11:40:42 -05007644{
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007645 u64 count = nfsd_find_all_delegations(clp, 0, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05007646
7647 nfsd_print_count(clp, count, "delegations");
7648 return count;
7649}
7650
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007651u64
Jeff Layton285abde2014-07-30 08:27:24 -04007652nfsd_inject_print_delegations(void)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007653{
7654 struct nfs4_client *clp;
7655 u64 count = 0;
7656 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7657 nfsd_net_id);
7658
7659 if (!nfsd_netns_ready(nn))
7660 return 0;
7661
7662 spin_lock(&nn->client_lock);
7663 list_for_each_entry(clp, &nn->client_lru, cl_lru)
7664 count += nfsd_print_client_delegations(clp);
7665 spin_unlock(&nn->client_lock);
7666
7667 return count;
7668}
7669
7670static void
7671nfsd_forget_delegations(struct list_head *reaplist)
7672{
7673 struct nfs4_client *clp;
7674 struct nfs4_delegation *dp, *next;
7675
7676 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
7677 list_del_init(&dp->dl_recall_lru);
7678 clp = dp->dl_stid.sc_client;
7679 revoke_delegation(dp);
7680 put_client(clp);
7681 }
7682}
7683
7684u64
Jeff Layton285abde2014-07-30 08:27:24 -04007685nfsd_inject_forget_client_delegations(struct sockaddr_storage *addr,
7686 size_t addr_size)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007687{
7688 u64 count = 0;
7689 struct nfs4_client *clp;
7690 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7691 nfsd_net_id);
7692 LIST_HEAD(reaplist);
7693
7694 if (!nfsd_netns_ready(nn))
7695 return count;
7696
7697 spin_lock(&nn->client_lock);
7698 clp = nfsd_find_client(addr, addr_size);
7699 if (clp)
7700 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7701 spin_unlock(&nn->client_lock);
7702
7703 nfsd_forget_delegations(&reaplist);
7704 return count;
7705}
7706
7707u64
Jeff Layton285abde2014-07-30 08:27:24 -04007708nfsd_inject_forget_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007709{
7710 u64 count = 0;
7711 struct nfs4_client *clp;
7712 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7713 nfsd_net_id);
7714 LIST_HEAD(reaplist);
7715
7716 if (!nfsd_netns_ready(nn))
7717 return count;
7718
7719 spin_lock(&nn->client_lock);
7720 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
7721 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7722 if (max != 0 && count >= max)
7723 break;
7724 }
7725 spin_unlock(&nn->client_lock);
7726 nfsd_forget_delegations(&reaplist);
7727 return count;
7728}
7729
7730static void
7731nfsd_recall_delegations(struct list_head *reaplist)
7732{
7733 struct nfs4_client *clp;
7734 struct nfs4_delegation *dp, *next;
7735
7736 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
7737 list_del_init(&dp->dl_recall_lru);
7738 clp = dp->dl_stid.sc_client;
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04007739
7740 trace_nfsd_deleg_recall(&dp->dl_stid.sc_stateid);
7741
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007742 /*
7743 * We skipped all entries that had a zero dl_time before,
7744 * so we can now reset the dl_time back to 0. If a delegation
7745 * break comes in now, then it won't make any difference since
7746 * we're recalling it either way.
7747 */
7748 spin_lock(&state_lock);
7749 dp->dl_time = 0;
7750 spin_unlock(&state_lock);
7751 nfsd_break_one_deleg(dp);
7752 put_client(clp);
7753 }
7754}
7755
7756u64
Jeff Layton285abde2014-07-30 08:27:24 -04007757nfsd_inject_recall_client_delegations(struct sockaddr_storage *addr,
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007758 size_t addr_size)
7759{
7760 u64 count = 0;
7761 struct nfs4_client *clp;
7762 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7763 nfsd_net_id);
7764 LIST_HEAD(reaplist);
7765
7766 if (!nfsd_netns_ready(nn))
7767 return count;
7768
7769 spin_lock(&nn->client_lock);
7770 clp = nfsd_find_client(addr, addr_size);
7771 if (clp)
7772 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7773 spin_unlock(&nn->client_lock);
7774
7775 nfsd_recall_delegations(&reaplist);
7776 return count;
7777}
7778
7779u64
Jeff Layton285abde2014-07-30 08:27:24 -04007780nfsd_inject_recall_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007781{
7782 u64 count = 0;
7783 struct nfs4_client *clp, *next;
7784 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7785 nfsd_net_id);
7786 LIST_HEAD(reaplist);
7787
7788 if (!nfsd_netns_ready(nn))
7789 return count;
7790
7791 spin_lock(&nn->client_lock);
7792 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
7793 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7794 if (max != 0 && ++count >= max)
7795 break;
7796 }
7797 spin_unlock(&nn->client_lock);
7798 nfsd_recall_delegations(&reaplist);
7799 return count;
7800}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007801#endif /* CONFIG_NFSD_FAULT_INJECTION */
7802
Meelap Shahc2f1a552007-07-17 04:04:39 -07007803/*
7804 * Since the lifetime of a delegation isn't limited to that of an open, a
7805 * client may quite reasonably hang on to a delegation as long as it has
7806 * the inode cached. This becomes an obvious problem the first time a
7807 * client's inode cache approaches the size of the server's total memory.
7808 *
7809 * For now we avoid this problem by imposing a hard limit on the number
7810 * of delegations, which varies according to the server's memory size.
7811 */
7812static void
7813set_max_delegations(void)
7814{
7815 /*
7816 * Allow at most 4 delegations per megabyte of RAM. Quick
7817 * estimates suggest that in the worst case (where every delegation
7818 * is for a different inode), a delegation could take about 1.5K,
7819 * giving a worst case usage of about 6% of memory.
7820 */
7821 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
7822}
7823
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007824static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007825{
7826 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7827 int i;
7828
Kees Cook6da2ec52018-06-12 13:55:00 -07007829 nn->conf_id_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
7830 sizeof(struct list_head),
7831 GFP_KERNEL);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007832 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007833 goto err;
Kees Cook6da2ec52018-06-12 13:55:00 -07007834 nn->unconf_id_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
7835 sizeof(struct list_head),
7836 GFP_KERNEL);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007837 if (!nn->unconf_id_hashtbl)
7838 goto err_unconf_id;
Kees Cook6da2ec52018-06-12 13:55:00 -07007839 nn->sessionid_hashtbl = kmalloc_array(SESSION_HASH_SIZE,
7840 sizeof(struct list_head),
7841 GFP_KERNEL);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007842 if (!nn->sessionid_hashtbl)
7843 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007844
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007845 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007846 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007847 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007848 }
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007849 for (i = 0; i < SESSION_HASH_SIZE; i++)
7850 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007851 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007852 nn->unconf_name_tree = RB_ROOT;
Arnd Bergmann9cc76802019-10-31 15:53:13 +01007853 nn->boot_time = ktime_get_real_seconds();
Vasily Averin81833de2017-11-13 07:25:40 +03007854 nn->grace_ended = false;
7855 nn->nfsd4_manager.block_opens = true;
7856 INIT_LIST_HEAD(&nn->nfsd4_manager.list);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03007857 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03007858 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007859 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03007860 spin_lock_init(&nn->client_lock);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04007861 spin_lock_init(&nn->s2s_cp_lock);
7862 idr_init(&nn->s2s_cp_stateids);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007863
Jeff Layton0cc11a62016-10-20 09:34:31 -04007864 spin_lock_init(&nn->blocked_locks_lock);
7865 INIT_LIST_HEAD(&nn->blocked_locks_lru);
7866
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007867 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007868 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007869
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007870 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007871
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007872err_sessionid:
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03007873 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007874err_unconf_id:
7875 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007876err:
7877 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007878}
7879
7880static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007881nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007882{
7883 int i;
7884 struct nfs4_client *clp = NULL;
7885 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7886
7887 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7888 while (!list_empty(&nn->conf_id_hashtbl[i])) {
7889 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7890 destroy_client(clp);
7891 }
7892 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007893
Jeff Layton68ef3bc2018-03-16 11:32:02 -04007894 WARN_ON(!list_empty(&nn->blocked_locks_lru));
7895
Kinglong Mee2b905632014-03-26 22:09:30 +08007896 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7897 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
7898 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7899 destroy_client(clp);
7900 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007901 }
7902
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007903 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007904 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007905 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007906 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007907}
7908
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007909int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007910nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07007911{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04007912 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007913 int ret;
7914
J. Bruce Fields681370f2020-06-23 16:00:33 -04007915 ret = get_nfsdfs(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007916 if (ret)
7917 return ret;
J. Bruce Fields681370f2020-06-23 16:00:33 -04007918 ret = nfs4_state_create_net(net);
7919 if (ret) {
7920 mntput(nn->nfsd_mnt);
7921 return ret;
7922 }
Jeff Laytond4318ac2014-09-12 16:40:21 -04007923 locks_start_grace(net, &nn->nfsd4_manager);
7924 nfsd4_client_tracking_init(net);
Scott Mayhew362063a2019-03-26 18:06:28 -04007925 if (nn->track_reclaim_completes && nn->reclaim_str_hashtbl_size == 0)
7926 goto skip_grace;
Arnd Bergmann20b7d862019-11-04 16:31:52 +01007927 printk(KERN_INFO "NFSD: starting %lld-second grace period (net %x)\n",
Vasily Averin7e981a82017-11-06 16:46:04 +03007928 nn->nfsd4_grace, net->ns.inum);
Chuck Leverdd5e3fb2020-04-05 11:42:29 -04007929 trace_nfsd_grace_start(nn);
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03007930 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007931 return 0;
Scott Mayhew362063a2019-03-26 18:06:28 -04007932
7933skip_grace:
7934 printk(KERN_INFO "NFSD: no clients to reclaim, skipping NFSv4 grace period (net %x)\n",
7935 net->ns.inum);
7936 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_lease * HZ);
7937 nfsd4_end_grace(nn);
7938 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007939}
7940
7941/* initialization to perform when the nfsd service is started: */
7942
7943int
7944nfs4_state_start(void)
7945{
7946 int ret;
7947
Jeff Layton51a54562015-08-20 07:17:01 -04007948 laundry_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, "nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05007949 if (laundry_wq == NULL) {
7950 ret = -ENOMEM;
Chuck Levera26dd642018-08-16 12:06:09 -04007951 goto out;
Jeff Laytona6d6b782012-03-05 11:42:36 -05007952 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007953 ret = nfsd4_create_callback_queue();
7954 if (ret)
7955 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007956
Meelap Shahc2f1a552007-07-17 04:04:39 -07007957 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007958 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007959
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007960out_free_laundry:
7961 destroy_workqueue(laundry_wq);
Chuck Levera26dd642018-08-16 12:06:09 -04007962out:
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007963 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964}
7965
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007966void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007967nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007971 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007973 cancel_delayed_work_sync(&nn->laundromat_work);
7974 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05007975
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04007977 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007978 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007979 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007980 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007981 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982 }
Benny Halevycdc975052014-05-30 09:09:30 -04007983 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 list_for_each_safe(pos, next, &reaplist) {
7985 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04007986 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields0af6e692018-02-21 15:11:03 -05007987 destroy_unhashed_deleg(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007988 }
7989
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03007990 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007991 nfs4_state_destroy_net(net);
J. Bruce Fields681370f2020-06-23 16:00:33 -04007992 mntput(nn->nfsd_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993}
7994
7995void
7996nfs4_state_shutdown(void)
7997{
NeilBrown5e8d5c22006-04-10 22:55:37 -07007998 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04007999 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008001
8002static void
8003get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
8004{
Olga Kornievskaia51100d22018-09-13 13:58:24 -04008005 if (HAS_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG) &&
8006 CURRENT_STATEID(stateid))
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01008007 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008008}
8009
8010static void
8011put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
8012{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01008013 if (cstate->minorversion) {
8014 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
Olga Kornievskaia51100d22018-09-13 13:58:24 -04008015 SET_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01008016 }
8017}
8018
8019void
8020clear_current_stateid(struct nfsd4_compound_state *cstate)
8021{
Olga Kornievskaia51100d22018-09-13 13:58:24 -04008022 CLEAR_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008023}
8024
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01008025/*
8026 * functions to set current state id
8027 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008028void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02008029nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate,
8030 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008031{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02008032 put_stateid(cstate, &u->open_downgrade.od_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008033}
8034
8035void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02008036nfsd4_set_openstateid(struct nfsd4_compound_state *cstate,
8037 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008038{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02008039 put_stateid(cstate, &u->open.op_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008040}
8041
8042void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02008043nfsd4_set_closestateid(struct nfsd4_compound_state *cstate,
8044 union nfsd4_op_u *u)
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01008045{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02008046 put_stateid(cstate, &u->close.cl_stateid);
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01008047}
8048
8049void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02008050nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate,
8051 union nfsd4_op_u *u)
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01008052{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02008053 put_stateid(cstate, &u->lock.lk_resp_stateid);
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01008054}
8055
8056/*
8057 * functions to consume current state id
8058 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008059
8060void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008061nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate,
8062 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008063{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008064 get_stateid(cstate, &u->open_downgrade.od_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008065}
8066
8067void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008068nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate,
8069 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008070{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008071 get_stateid(cstate, &u->delegreturn.dr_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01008072}
8073
8074void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008075nfsd4_get_freestateid(struct nfsd4_compound_state *cstate,
8076 union nfsd4_op_u *u)
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008077{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008078 get_stateid(cstate, &u->free_stateid.fr_stateid);
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008079}
8080
8081void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008082nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate,
8083 union nfsd4_op_u *u)
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008084{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008085 get_stateid(cstate, &u->setattr.sa_stateid);
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01008086}
8087
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01008088void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008089nfsd4_get_closestateid(struct nfsd4_compound_state *cstate,
8090 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008091{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008092 get_stateid(cstate, &u->close.cl_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008093}
8094
8095void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008096nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate,
8097 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008098{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008099 get_stateid(cstate, &u->locku.lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01008100}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008101
8102void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008103nfsd4_get_readstateid(struct nfsd4_compound_state *cstate,
8104 union nfsd4_op_u *u)
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008105{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008106 get_stateid(cstate, &u->read.rd_stateid);
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008107}
8108
8109void
Christoph Hellwig57832e72017-05-08 20:37:33 +02008110nfsd4_get_writestateid(struct nfsd4_compound_state *cstate,
8111 union nfsd4_op_u *u)
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008112{
Christoph Hellwig57832e72017-05-08 20:37:33 +02008113 get_stateid(cstate, &u->write.wr_stateid);
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01008114}