blob: 150521c9671b9f5d163cb18b7b6135709c112738 [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>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020045#include "xdr4.h"
J. Bruce Fields06b332a2013-04-09 11:34:36 -040046#include "xdr4cb.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050047#include "vfs.h"
J. Bruce Fieldsbfa4b362012-04-25 16:49:18 -040048#include "current_stateid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +040050#include "netns.h"
Christoph Hellwig9cf514c2014-05-05 13:11:59 +020051#include "pnfs.h"
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +040052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define NFSDDBG_FACILITY NFSDDBG_PROC
54
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050055#define all_ones {{~0,~0},~0}
56static const stateid_t one_stateid = {
57 .si_generation = ~0,
58 .si_opaque = all_ones,
59};
60static const stateid_t zero_stateid = {
61 /* all fields zero */
62};
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010063static const stateid_t currentstateid = {
64 .si_generation = 1,
65};
Trond Myklebustfb500a72017-11-03 08:00:12 -040066static const stateid_t close_stateid = {
67 .si_generation = 0xffffffffU,
68};
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050069
Andy Adamsonec6b5d72009-04-03 08:28:28 +030070static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070071
J. Bruce Fieldsf32f3c22011-12-12 15:00:35 -050072#define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
73#define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
Tigran Mkrtchyan19ff0f22012-02-13 22:55:23 +010074#define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
Andrew Elbleae254dac2017-11-09 13:41:10 -050075#define CLOSE_STATEID(stateid) (!memcmp((stateid), &close_stateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* forward declarations */
Jeff Laytonf9c00c32014-07-23 16:17:41 -040078static bool check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner);
Trond Myklebust60116952014-07-29 21:34:06 -040079static void nfs4_free_ol_stateid(struct nfs4_stid *stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
J. Bruce Fields8b671b82009-02-22 14:51:34 -080081/* Locking: */
82
J. Bruce Fields8b671b82009-02-22 14:51:34 -080083/*
84 * Currently used for the del_recall_lru and file hash table. In an
85 * effort to decrease the scope of the client_mutex, this spinlock may
86 * eventually cover more:
87 */
Benny Halevycdc975052014-05-30 09:09:30 -040088static DEFINE_SPINLOCK(state_lock);
J. Bruce Fields8b671b82009-02-22 14:51:34 -080089
Andrew Elble4f34bd02017-11-08 17:29:51 -050090enum nfsd4_st_mutex_lock_subclass {
91 OPEN_STATEID_MUTEX = 0,
92 LOCK_STATEID_MUTEX = 1,
93};
94
Jeff Laytonb401be222014-07-29 21:34:33 -040095/*
96 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
97 * the refcount on the open stateid to drop.
98 */
99static DECLARE_WAIT_QUEUE_HEAD(close_wq);
100
Christoph Hellwigabf11352014-05-21 07:43:03 -0700101static struct kmem_cache *openowner_slab;
102static struct kmem_cache *lockowner_slab;
103static struct kmem_cache *file_slab;
104static struct kmem_cache *stateid_slab;
105static struct kmem_cache *deleg_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +0200106static struct kmem_cache *odstate_slab;
NeilBrowne60d4392005-06-23 22:03:01 -0700107
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400108static void free_session(struct nfsd4_session *);
Benny Halevy508dc6e2012-02-23 17:40:52 -0800109
Julia Lawallc4cb8972015-11-21 22:57:39 +0100110static const struct nfsd4_callback_ops nfsd4_cb_recall_ops;
Jeff Layton76d348f2016-09-16 16:28:24 -0400111static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops;
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200112
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400113static bool is_session_dead(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -0800114{
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400115 return ses->se_flags & NFS4_SESSION_DEAD;
116}
117
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -0400118static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
119{
120 if (atomic_read(&ses->se_ref) > ref_held_by_me)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400121 return nfserr_jukebox;
122 ses->se_flags |= NFS4_SESSION_DEAD;
123 return nfs_ok;
124}
125
J. Bruce Fields221a6872013-04-01 22:23:49 -0400126static bool is_client_expired(struct nfs4_client *clp)
127{
128 return clp->cl_time == 0;
129}
130
J. Bruce Fields221a6872013-04-01 22:23:49 -0400131static __be32 get_client_locked(struct nfs4_client *clp)
132{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400133 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
134
135 lockdep_assert_held(&nn->client_lock);
136
J. Bruce Fields221a6872013-04-01 22:23:49 -0400137 if (is_client_expired(clp))
138 return nfserr_expired;
139 atomic_inc(&clp->cl_refcount);
140 return nfs_ok;
141}
142
143/* must be called under the client_lock */
144static inline void
145renew_client_locked(struct nfs4_client *clp)
146{
147 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
148
149 if (is_client_expired(clp)) {
150 WARN_ON(1);
151 printk("%s: client (clientid %08x/%08x) already expired\n",
152 __func__,
153 clp->cl_clientid.cl_boot,
154 clp->cl_clientid.cl_id);
155 return;
156 }
157
158 dprintk("renewing client (clientid %08x/%08x)\n",
159 clp->cl_clientid.cl_boot,
160 clp->cl_clientid.cl_id);
161 list_move_tail(&clp->cl_lru, &nn->client_lru);
162 clp->cl_time = get_seconds();
163}
164
Fengguang Wuba138432013-04-16 22:14:15 -0400165static void put_client_renew_locked(struct nfs4_client *clp)
J. Bruce Fields221a6872013-04-01 22:23:49 -0400166{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400167 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
168
169 lockdep_assert_held(&nn->client_lock);
170
J. Bruce Fields221a6872013-04-01 22:23:49 -0400171 if (!atomic_dec_and_test(&clp->cl_refcount))
172 return;
173 if (!is_client_expired(clp))
174 renew_client_locked(clp);
175}
176
Jeff Layton4b24ca72014-06-30 11:48:44 -0400177static void put_client_renew(struct nfs4_client *clp)
178{
179 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
180
Jeff Laytond6c249b2014-07-08 14:02:50 -0400181 if (!atomic_dec_and_lock(&clp->cl_refcount, &nn->client_lock))
182 return;
183 if (!is_client_expired(clp))
184 renew_client_locked(clp);
Jeff Layton4b24ca72014-06-30 11:48:44 -0400185 spin_unlock(&nn->client_lock);
186}
187
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400188static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
189{
190 __be32 status;
191
192 if (is_session_dead(ses))
193 return nfserr_badsession;
194 status = get_client_locked(ses->se_client);
195 if (status)
196 return status;
197 atomic_inc(&ses->se_ref);
198 return nfs_ok;
199}
200
201static void nfsd4_put_session_locked(struct nfsd4_session *ses)
202{
203 struct nfs4_client *clp = ses->se_client;
Trond Myklebust0a880a22014-07-30 08:27:10 -0400204 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
205
206 lockdep_assert_held(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400207
208 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
209 free_session(ses);
210 put_client_renew_locked(clp);
211}
212
213static void nfsd4_put_session(struct nfsd4_session *ses)
214{
215 struct nfs4_client *clp = ses->se_client;
216 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
217
218 spin_lock(&nn->client_lock);
219 nfsd4_put_session_locked(ses);
220 spin_unlock(&nn->client_lock);
221}
222
Jeff Layton76d348f2016-09-16 16:28:24 -0400223static struct nfsd4_blocked_lock *
224find_blocked_lock(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
225 struct nfsd_net *nn)
226{
227 struct nfsd4_blocked_lock *cur, *found = NULL;
228
Jeff Layton0cc11a62016-10-20 09:34:31 -0400229 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400230 list_for_each_entry(cur, &lo->lo_blocked, nbl_list) {
231 if (fh_match(fh, &cur->nbl_fh)) {
232 list_del_init(&cur->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -0400233 list_del_init(&cur->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -0400234 found = cur;
235 break;
236 }
237 }
Jeff Layton0cc11a62016-10-20 09:34:31 -0400238 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400239 if (found)
240 posix_unblock_lock(&found->nbl_lock);
241 return found;
242}
243
244static struct nfsd4_blocked_lock *
245find_or_allocate_block(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
246 struct nfsd_net *nn)
247{
248 struct nfsd4_blocked_lock *nbl;
249
250 nbl = find_blocked_lock(lo, fh, nn);
251 if (!nbl) {
252 nbl= kmalloc(sizeof(*nbl), GFP_KERNEL);
253 if (nbl) {
254 fh_copy_shallow(&nbl->nbl_fh, fh);
255 locks_init_lock(&nbl->nbl_lock);
256 nfsd4_init_cb(&nbl->nbl_cb, lo->lo_owner.so_client,
257 &nfsd4_cb_notify_lock_ops,
258 NFSPROC4_CLNT_CB_NOTIFY_LOCK);
259 }
260 }
261 return nbl;
262}
263
264static void
265free_blocked_lock(struct nfsd4_blocked_lock *nbl)
266{
267 locks_release_private(&nbl->nbl_lock);
268 kfree(nbl);
269}
270
271static int
272nfsd4_cb_notify_lock_done(struct nfsd4_callback *cb, struct rpc_task *task)
273{
274 /*
275 * Since this is just an optimization, we don't try very hard if it
276 * turns out not to succeed. We'll requeue it on NFS4ERR_DELAY, and
277 * just quit trying on anything else.
278 */
279 switch (task->tk_status) {
280 case -NFS4ERR_DELAY:
281 rpc_delay(task, 1 * HZ);
282 return 0;
283 default:
284 return 1;
285 }
286}
287
288static void
289nfsd4_cb_notify_lock_release(struct nfsd4_callback *cb)
290{
291 struct nfsd4_blocked_lock *nbl = container_of(cb,
292 struct nfsd4_blocked_lock, nbl_cb);
293
294 free_blocked_lock(nbl);
295}
296
297static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops = {
298 .done = nfsd4_cb_notify_lock_done,
299 .release = nfsd4_cb_notify_lock_release,
300};
301
Kinglong Meeb5971af2014-08-22 10:18:43 -0400302static inline struct nfs4_stateowner *
303nfs4_get_stateowner(struct nfs4_stateowner *sop)
304{
305 atomic_inc(&sop->so_count);
306 return sop;
307}
308
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400309static int
Trond Myklebustd4f04892014-07-29 21:34:36 -0400310same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400311{
312 return (sop->so_owner.len == owner->len) &&
Trond Myklebustd4f04892014-07-29 21:34:36 -0400313 0 == memcmp(sop->so_owner.data, owner->data, owner->len);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400314}
315
316static struct nfs4_openowner *
317find_openstateowner_str_locked(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400318 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400319{
320 struct nfs4_stateowner *so;
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400321
Trond Myklebustd4f04892014-07-29 21:34:36 -0400322 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400323
Trond Myklebustd4f04892014-07-29 21:34:36 -0400324 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[hashval],
325 so_strhash) {
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400326 if (!so->so_is_open_owner)
327 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -0400328 if (same_owner_str(so, &open->op_owner))
329 return openowner(nfs4_get_stateowner(so));
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400330 }
331 return NULL;
332}
333
334static struct nfs4_openowner *
335find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400336 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400337{
338 struct nfs4_openowner *oo;
339
Trond Myklebustd4f04892014-07-29 21:34:36 -0400340 spin_lock(&clp->cl_lock);
341 oo = find_openstateowner_str_locked(hashval, open, clp);
342 spin_unlock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400343 return oo;
344}
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346static inline u32
347opaque_hashval(const void *ptr, int nbytes)
348{
349 unsigned char *cptr = (unsigned char *) ptr;
350
351 u32 x = 0;
352 while (nbytes--) {
353 x *= 37;
354 x += *cptr++;
355 }
356 return x;
357}
358
Jeff Layton5b095e92014-10-23 08:01:02 -0400359static void nfsd4_free_file_rcu(struct rcu_head *rcu)
J. Bruce Fields32513b42011-10-13 16:00:16 -0400360{
Jeff Layton5b095e92014-10-23 08:01:02 -0400361 struct nfs4_file *fp = container_of(rcu, struct nfs4_file, fi_rcu);
362
363 kmem_cache_free(file_slab, fp);
J. Bruce Fields32513b42011-10-13 16:00:16 -0400364}
365
Christoph Hellwige6ba76e2014-08-14 08:50:16 +0200366void
NeilBrown13cd2182005-06-23 22:03:10 -0700367put_nfs4_file(struct nfs4_file *fi)
368{
Jeff Layton02e12152014-07-16 10:31:57 -0400369 might_lock(&state_lock);
370
Elena Reshetova818a34e2017-10-20 12:53:30 +0300371 if (refcount_dec_and_lock(&fi->fi_ref, &state_lock)) {
Jeff Layton5b095e92014-10-23 08:01:02 -0400372 hlist_del_rcu(&fi->fi_hash);
Benny Halevycdc975052014-05-30 09:09:30 -0400373 spin_unlock(&state_lock);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200374 WARN_ON_ONCE(!list_empty(&fi->fi_clnt_odstate));
Jeff Layton5b095e92014-10-23 08:01:02 -0400375 WARN_ON_ONCE(!list_empty(&fi->fi_delegations));
376 call_rcu(&fi->fi_rcu, nfsd4_free_file_rcu);
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800377 }
NeilBrown13cd2182005-06-23 22:03:10 -0700378}
379
Trond Myklebustde186432014-07-10 14:07:26 -0400380static struct file *
381__nfs4_get_fd(struct nfs4_file *f, int oflag)
382{
383 if (f->fi_fds[oflag])
384 return get_file(f->fi_fds[oflag]);
385 return NULL;
386}
387
388static struct file *
389find_writeable_file_locked(struct nfs4_file *f)
390{
391 struct file *ret;
392
393 lockdep_assert_held(&f->fi_lock);
394
395 ret = __nfs4_get_fd(f, O_WRONLY);
396 if (!ret)
397 ret = __nfs4_get_fd(f, O_RDWR);
398 return ret;
399}
400
401static struct file *
402find_writeable_file(struct nfs4_file *f)
403{
404 struct file *ret;
405
406 spin_lock(&f->fi_lock);
407 ret = find_writeable_file_locked(f);
408 spin_unlock(&f->fi_lock);
409
410 return ret;
411}
412
413static struct file *find_readable_file_locked(struct nfs4_file *f)
414{
415 struct file *ret;
416
417 lockdep_assert_held(&f->fi_lock);
418
419 ret = __nfs4_get_fd(f, O_RDONLY);
420 if (!ret)
421 ret = __nfs4_get_fd(f, O_RDWR);
422 return ret;
423}
424
425static struct file *
426find_readable_file(struct nfs4_file *f)
427{
428 struct file *ret;
429
430 spin_lock(&f->fi_lock);
431 ret = find_readable_file_locked(f);
432 spin_unlock(&f->fi_lock);
433
434 return ret;
435}
436
Christoph Hellwig4d227fc2014-08-17 07:40:00 -0500437struct file *
Trond Myklebustde186432014-07-10 14:07:26 -0400438find_any_file(struct nfs4_file *f)
439{
440 struct file *ret;
441
442 spin_lock(&f->fi_lock);
443 ret = __nfs4_get_fd(f, O_RDWR);
444 if (!ret) {
445 ret = __nfs4_get_fd(f, O_WRONLY);
446 if (!ret)
447 ret = __nfs4_get_fd(f, O_RDONLY);
448 }
449 spin_unlock(&f->fi_lock);
450 return ret;
451}
452
Trond Myklebust02a35082014-07-25 07:34:22 -0400453static atomic_long_t num_delegations;
Zhang Yanfei697ce9b2013-02-22 16:35:47 -0800454unsigned long max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700455
456/*
457 * Open owner state (share locks)
458 */
459
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500460/* hash tables for lock and open owners */
461#define OWNER_HASH_BITS 8
462#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
463#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700464
Trond Myklebustd4f04892014-07-29 21:34:36 -0400465static unsigned int ownerstr_hashval(struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400466{
467 unsigned int ret;
468
469 ret = opaque_hashval(ownername->data, ownername->len);
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500470 return ret & OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400471}
NeilBrownef0f3392006-04-10 22:55:41 -0700472
NeilBrownef0f3392006-04-10 22:55:41 -0700473/* hash table for nfs4_file */
474#define FILE_HASH_BITS 8
475#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800476
Trond Myklebustca943212014-07-23 16:17:39 -0400477static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400478{
Trond Myklebustca943212014-07-23 16:17:39 -0400479 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
480}
481
482static unsigned int file_hashval(struct knfsd_fh *fh)
483{
484 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
485}
486
Jeff Layton89876f82013-04-02 09:01:59 -0400487static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700488
Jeff Layton12659652014-07-10 14:07:28 -0400489static void
490__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields34775652013-08-23 17:55:18 -0400491{
Jeff Layton7214e862014-07-10 14:07:33 -0400492 lockdep_assert_held(&fp->fi_lock);
493
Jeff Layton12659652014-07-10 14:07:28 -0400494 if (access & NFS4_SHARE_ACCESS_WRITE)
495 atomic_inc(&fp->fi_access[O_WRONLY]);
496 if (access & NFS4_SHARE_ACCESS_READ)
497 atomic_inc(&fp->fi_access[O_RDONLY]);
J. Bruce Fields34775652013-08-23 17:55:18 -0400498}
499
Jeff Layton12659652014-07-10 14:07:28 -0400500static __be32
501nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400502{
Jeff Layton7214e862014-07-10 14:07:33 -0400503 lockdep_assert_held(&fp->fi_lock);
504
Jeff Layton12659652014-07-10 14:07:28 -0400505 /* Does this access mode make sense? */
506 if (access & ~NFS4_SHARE_ACCESS_BOTH)
507 return nfserr_inval;
508
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400509 /* Does it conflict with a deny mode already set? */
510 if ((access & fp->fi_share_deny) != 0)
511 return nfserr_share_denied;
512
Jeff Layton12659652014-07-10 14:07:28 -0400513 __nfs4_file_get_access(fp, access);
514 return nfs_ok;
J. Bruce Fields998db522010-08-07 09:21:41 -0400515}
516
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400517static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
518{
519 /* Common case is that there is no deny mode. */
520 if (deny) {
521 /* Does this deny mode make sense? */
522 if (deny & ~NFS4_SHARE_DENY_BOTH)
523 return nfserr_inval;
524
525 if ((deny & NFS4_SHARE_DENY_READ) &&
526 atomic_read(&fp->fi_access[O_RDONLY]))
527 return nfserr_share_denied;
528
529 if ((deny & NFS4_SHARE_DENY_WRITE) &&
530 atomic_read(&fp->fi_access[O_WRONLY]))
531 return nfserr_share_denied;
532 }
533 return nfs_ok;
534}
535
J. Bruce Fields998db522010-08-07 09:21:41 -0400536static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400537{
Trond Myklebustde186432014-07-10 14:07:26 -0400538 might_lock(&fp->fi_lock);
539
540 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
541 struct file *f1 = NULL;
542 struct file *f2 = NULL;
543
Jeff Layton6d338b52014-07-10 14:07:29 -0400544 swap(f1, fp->fi_fds[oflag]);
J. Bruce Fields0c7c3e62013-03-28 20:37:14 -0400545 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
Jeff Layton6d338b52014-07-10 14:07:29 -0400546 swap(f2, fp->fi_fds[O_RDWR]);
Trond Myklebustde186432014-07-10 14:07:26 -0400547 spin_unlock(&fp->fi_lock);
548 if (f1)
549 fput(f1);
550 if (f2)
551 fput(f2);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400552 }
553}
554
Jeff Layton12659652014-07-10 14:07:28 -0400555static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400556{
Jeff Layton12659652014-07-10 14:07:28 -0400557 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
558
559 if (access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields998db522010-08-07 09:21:41 -0400560 __nfs4_file_put_access(fp, O_WRONLY);
Jeff Layton12659652014-07-10 14:07:28 -0400561 if (access & NFS4_SHARE_ACCESS_READ)
562 __nfs4_file_put_access(fp, O_RDONLY);
J. Bruce Fields998db522010-08-07 09:21:41 -0400563}
564
Sachin Bhamare8287f002015-04-27 14:50:14 +0200565/*
566 * Allocate a new open/delegation state counter. This is needed for
567 * pNFS for proper return on close semantics.
568 *
569 * Note that we only allocate it for pNFS-enabled exports, otherwise
570 * all pointers to struct nfs4_clnt_odstate are always NULL.
571 */
572static struct nfs4_clnt_odstate *
573alloc_clnt_odstate(struct nfs4_client *clp)
574{
575 struct nfs4_clnt_odstate *co;
576
577 co = kmem_cache_zalloc(odstate_slab, GFP_KERNEL);
578 if (co) {
579 co->co_client = clp;
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300580 refcount_set(&co->co_odcount, 1);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200581 }
582 return co;
583}
584
585static void
586hash_clnt_odstate_locked(struct nfs4_clnt_odstate *co)
587{
588 struct nfs4_file *fp = co->co_file;
589
590 lockdep_assert_held(&fp->fi_lock);
591 list_add(&co->co_perfile, &fp->fi_clnt_odstate);
592}
593
594static inline void
595get_clnt_odstate(struct nfs4_clnt_odstate *co)
596{
597 if (co)
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300598 refcount_inc(&co->co_odcount);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200599}
600
601static void
602put_clnt_odstate(struct nfs4_clnt_odstate *co)
603{
604 struct nfs4_file *fp;
605
606 if (!co)
607 return;
608
609 fp = co->co_file;
Elena Reshetovacff7cb22017-10-20 12:53:29 +0300610 if (refcount_dec_and_lock(&co->co_odcount, &fp->fi_lock)) {
Sachin Bhamare8287f002015-04-27 14:50:14 +0200611 list_del(&co->co_perfile);
612 spin_unlock(&fp->fi_lock);
613
614 nfsd4_return_all_file_layouts(co->co_client, fp);
615 kmem_cache_free(odstate_slab, co);
616 }
617}
618
619static struct nfs4_clnt_odstate *
620find_or_hash_clnt_odstate(struct nfs4_file *fp, struct nfs4_clnt_odstate *new)
621{
622 struct nfs4_clnt_odstate *co;
623 struct nfs4_client *cl;
624
625 if (!new)
626 return NULL;
627
628 cl = new->co_client;
629
630 spin_lock(&fp->fi_lock);
631 list_for_each_entry(co, &fp->fi_clnt_odstate, co_perfile) {
632 if (co->co_client == cl) {
633 get_clnt_odstate(co);
634 goto out;
635 }
636 }
637 co = new;
638 co->co_file = fp;
639 hash_clnt_odstate_locked(new);
640out:
641 spin_unlock(&fp->fi_lock);
642 return co;
643}
644
Kinglong Meed19fb702017-01-18 19:04:42 +0800645struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab,
646 void (*sc_free)(struct nfs4_stid *))
J. Bruce Fields996e0932011-10-17 11:14:48 -0400647{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500648 struct nfs4_stid *stid;
649 int new_id;
650
Trond Myklebustf8338832014-07-25 07:34:19 -0400651 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500652 if (!stid)
653 return NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400654
Jeff Layton4770d722014-07-29 21:34:10 -0400655 idr_preload(GFP_KERNEL);
656 spin_lock(&cl->cl_lock);
657 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 0, 0, GFP_NOWAIT);
658 spin_unlock(&cl->cl_lock);
659 idr_preload_end();
Tejun Heoebd6c702013-03-13 14:59:37 -0700660 if (new_id < 0)
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500661 goto out_free;
Kinglong Meed19fb702017-01-18 19:04:42 +0800662
663 stid->sc_free = sc_free;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500664 stid->sc_client = cl;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500665 stid->sc_stateid.si_opaque.so_id = new_id;
666 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
667 /* Will be incremented before return to client: */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300668 refcount_set(&stid->sc_count, 1);
Jeff Layton9767feb2015-10-01 09:05:50 -0400669 spin_lock_init(&stid->sc_lock);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500670
J. Bruce Fields996e0932011-10-17 11:14:48 -0400671 /*
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500672 * It shouldn't be a problem to reuse an opaque stateid value.
673 * I don't think it is for 4.1. But with 4.0 I worry that, for
674 * example, a stray write retransmission could be accepted by
675 * the server when it should have been rejected. Therefore,
676 * adopt a trick from the sctp code to attempt to maximize the
677 * amount of time until an id is reused, by ensuring they always
678 * "increase" (mod INT_MAX):
J. Bruce Fields996e0932011-10-17 11:14:48 -0400679 */
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500680 return stid;
681out_free:
Wei Yongjun2c44a232013-04-09 14:15:31 +0800682 kmem_cache_free(slab, stid);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500683 return NULL;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400684}
685
Jeff Laytonb49e0842014-07-29 21:34:11 -0400686static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400687{
Trond Myklebust60116952014-07-29 21:34:06 -0400688 struct nfs4_stid *stid;
Trond Myklebust60116952014-07-29 21:34:06 -0400689
Kinglong Meed19fb702017-01-18 19:04:42 +0800690 stid = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_ol_stateid);
Trond Myklebust60116952014-07-29 21:34:06 -0400691 if (!stid)
692 return NULL;
693
Kinglong Meed19fb702017-01-18 19:04:42 +0800694 return openlockstateid(stid);
Trond Myklebust60116952014-07-29 21:34:06 -0400695}
696
697static void nfs4_free_deleg(struct nfs4_stid *stid)
698{
Trond Myklebust60116952014-07-29 21:34:06 -0400699 kmem_cache_free(deleg_slab, stid);
700 atomic_long_dec(&num_delegations);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400701}
702
NeilBrown6282cd52014-06-04 17:39:26 +1000703/*
704 * When we recall a delegation, we should be careful not to hand it
705 * out again straight away.
706 * To ensure this we keep a pair of bloom filters ('new' and 'old')
707 * in which the filehandles of recalled delegations are "stored".
708 * If a filehandle appear in either filter, a delegation is blocked.
709 * When a delegation is recalled, the filehandle is stored in the "new"
710 * filter.
711 * Every 30 seconds we swap the filters and clear the "new" one,
712 * unless both are empty of course.
713 *
714 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
715 * low 3 bytes as hash-table indices.
716 *
Jeff Laytonf54fe962014-07-25 07:34:26 -0400717 * 'blocked_delegations_lock', which is always taken in block_delegations(),
NeilBrown6282cd52014-06-04 17:39:26 +1000718 * is used to manage concurrent access. Testing does not need the lock
719 * except when swapping the two filters.
720 */
Jeff Laytonf54fe962014-07-25 07:34:26 -0400721static DEFINE_SPINLOCK(blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000722static struct bloom_pair {
723 int entries, old_entries;
724 time_t swap_time;
725 int new; /* index into 'set' */
726 DECLARE_BITMAP(set[2], 256);
727} blocked_delegations;
728
729static int delegation_blocked(struct knfsd_fh *fh)
730{
731 u32 hash;
732 struct bloom_pair *bd = &blocked_delegations;
733
734 if (bd->entries == 0)
735 return 0;
736 if (seconds_since_boot() - bd->swap_time > 30) {
Jeff Laytonf54fe962014-07-25 07:34:26 -0400737 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000738 if (seconds_since_boot() - bd->swap_time > 30) {
739 bd->entries -= bd->old_entries;
740 bd->old_entries = bd->entries;
741 memset(bd->set[bd->new], 0,
742 sizeof(bd->set[0]));
743 bd->new = 1-bd->new;
744 bd->swap_time = seconds_since_boot();
745 }
Jeff Laytonf54fe962014-07-25 07:34:26 -0400746 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000747 }
Daniel Borkmann87545892014-12-10 16:33:11 +0100748 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000749 if (test_bit(hash&255, bd->set[0]) &&
750 test_bit((hash>>8)&255, bd->set[0]) &&
751 test_bit((hash>>16)&255, bd->set[0]))
752 return 1;
753
754 if (test_bit(hash&255, bd->set[1]) &&
755 test_bit((hash>>8)&255, bd->set[1]) &&
756 test_bit((hash>>16)&255, bd->set[1]))
757 return 1;
758
759 return 0;
760}
761
762static void block_delegations(struct knfsd_fh *fh)
763{
764 u32 hash;
765 struct bloom_pair *bd = &blocked_delegations;
766
Daniel Borkmann87545892014-12-10 16:33:11 +0100767 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000768
Jeff Laytonf54fe962014-07-25 07:34:26 -0400769 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000770 __set_bit(hash&255, bd->set[bd->new]);
771 __set_bit((hash>>8)&255, bd->set[bd->new]);
772 __set_bit((hash>>16)&255, bd->set[bd->new]);
773 if (bd->entries == 0)
774 bd->swap_time = seconds_since_boot();
775 bd->entries += 1;
Jeff Laytonf54fe962014-07-25 07:34:26 -0400776 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000777}
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779static struct nfs4_delegation *
Sachin Bhamare8287f002015-04-27 14:50:14 +0200780alloc_init_deleg(struct nfs4_client *clp, struct svc_fh *current_fh,
781 struct nfs4_clnt_odstate *odstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
783 struct nfs4_delegation *dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400784 long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 dprintk("NFSD alloc_init_deleg\n");
Trond Myklebust02a35082014-07-25 07:34:22 -0400787 n = atomic_long_inc_return(&num_delegations);
788 if (n < 0 || n > max_delegations)
789 goto out_dec;
NeilBrown6282cd52014-06-04 17:39:26 +1000790 if (delegation_blocked(&current_fh->fh_handle))
Trond Myklebust02a35082014-07-25 07:34:22 -0400791 goto out_dec;
Kinglong Meed19fb702017-01-18 19:04:42 +0800792 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab, nfs4_free_deleg));
NeilBrown5b2d21c2005-06-23 22:03:04 -0700793 if (dp == NULL)
Trond Myklebust02a35082014-07-25 07:34:22 -0400794 goto out_dec;
Trond Myklebust60116952014-07-29 21:34:06 -0400795
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400796 /*
797 * delegation seqid's are never incremented. The 4.1 special
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400798 * meaning of seqid 0 isn't meaningful, really, but let's avoid
799 * 0 anyway just for consistency and use 1:
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400800 */
801 dp->dl_stid.sc_stateid.si_generation = 1;
NeilBrownea1da632005-06-23 22:04:17 -0700802 INIT_LIST_HEAD(&dp->dl_perfile);
803 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 INIT_LIST_HEAD(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200805 dp->dl_clnt_odstate = odstate;
806 get_clnt_odstate(odstate);
J. Bruce Fields99c41512013-05-21 16:21:25 -0400807 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
Christoph Hellwigf0b5de12014-09-24 12:19:18 +0200808 dp->dl_retries = 1;
809 nfsd4_init_cb(&dp->dl_recall, dp->dl_stid.sc_client,
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200810 &nfsd4_cb_recall_ops, NFSPROC4_CLNT_CB_RECALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400812out_dec:
813 atomic_long_dec(&num_delegations);
814 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
817void
Trond Myklebust60116952014-07-29 21:34:06 -0400818nfs4_put_stid(struct nfs4_stid *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Trond Myklebust11b91642014-07-29 21:34:08 -0400820 struct nfs4_file *fp = s->sc_file;
Trond Myklebust60116952014-07-29 21:34:06 -0400821 struct nfs4_client *clp = s->sc_client;
822
Jeff Layton4770d722014-07-29 21:34:10 -0400823 might_lock(&clp->cl_lock);
824
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300825 if (!refcount_dec_and_lock(&s->sc_count, &clp->cl_lock)) {
Jeff Laytonb401be222014-07-29 21:34:33 -0400826 wake_up_all(&close_wq);
Trond Myklebust60116952014-07-29 21:34:06 -0400827 return;
Jeff Laytonb401be222014-07-29 21:34:33 -0400828 }
Trond Myklebust60116952014-07-29 21:34:06 -0400829 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
Jeff Layton4770d722014-07-29 21:34:10 -0400830 spin_unlock(&clp->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400831 s->sc_free(s);
Trond Myklebust11b91642014-07-29 21:34:08 -0400832 if (fp)
833 put_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Jeff Layton9767feb2015-10-01 09:05:50 -0400836void
837nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid)
838{
839 stateid_t *src = &stid->sc_stateid;
840
841 spin_lock(&stid->sc_lock);
842 if (unlikely(++src->si_generation == 0))
843 src->si_generation = 1;
844 memcpy(dst, src, sizeof(*dst));
845 spin_unlock(&stid->sc_lock);
846}
847
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500848static void nfs4_put_deleg_lease(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Jeff Layton6bcc0342014-08-09 10:22:40 -0400850 struct file *filp = NULL;
Jeff Layton417c6622014-07-21 09:34:57 -0400851
Jeff Layton6bcc0342014-08-09 10:22:40 -0400852 spin_lock(&fp->fi_lock);
Jeff Layton67db1032014-12-13 09:11:40 -0500853 if (fp->fi_deleg_file && --fp->fi_delegees == 0)
Jeff Layton6bcc0342014-08-09 10:22:40 -0400854 swap(filp, fp->fi_deleg_file);
Jeff Layton6bcc0342014-08-09 10:22:40 -0400855 spin_unlock(&fp->fi_lock);
856
857 if (filp) {
Christoph Hellwig2ab99ee2015-01-21 19:14:02 +0100858 vfs_setlease(filp, F_UNLCK, NULL, (void **)&fp);
Jeff Layton6bcc0342014-08-09 10:22:40 -0400859 fput(filp);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
Christoph Hellwigcd61c522014-08-14 08:44:57 +0200863void nfs4_unhash_stid(struct nfs4_stid *s)
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400864{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500865 s->sc_type = 0;
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400866}
867
Andrew Elble34ed9872015-10-15 12:07:28 -0400868/**
869 * nfs4_get_existing_delegation - Discover if this delegation already exists
870 * @clp: a pointer to the nfs4_client we're granting a delegation to
871 * @fp: a pointer to the nfs4_file we're granting a delegation on
872 *
873 * Return:
874 * On success: NULL if an existing delegation was not found.
875 *
876 * On error: -EAGAIN if one was previously granted to this nfs4_client
877 * for this nfs4_file.
878 *
879 */
880
881static int
882nfs4_get_existing_delegation(struct nfs4_client *clp, struct nfs4_file *fp)
Benny Halevy931ee562014-05-30 09:09:27 -0400883{
Andrew Elble34ed9872015-10-15 12:07:28 -0400884 struct nfs4_delegation *searchdp = NULL;
885 struct nfs4_client *searchclp = NULL;
886
Benny Halevycdc975052014-05-30 09:09:30 -0400887 lockdep_assert_held(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -0400888 lockdep_assert_held(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400889
Andrew Elble34ed9872015-10-15 12:07:28 -0400890 list_for_each_entry(searchdp, &fp->fi_delegations, dl_perfile) {
891 searchclp = searchdp->dl_stid.sc_client;
892 if (clp == searchclp) {
893 return -EAGAIN;
894 }
895 }
896 return 0;
897}
898
899/**
900 * hash_delegation_locked - Add a delegation to the appropriate lists
901 * @dp: a pointer to the nfs4_delegation we are adding.
902 * @fp: a pointer to the nfs4_file we're granting a delegation on
903 *
904 * Return:
905 * On success: NULL if the delegation was successfully hashed.
906 *
907 * On error: -EAGAIN if one was previously granted to this
908 * nfs4_client for this nfs4_file. Delegation is not hashed.
909 *
910 */
911
912static int
913hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
914{
915 int status;
916 struct nfs4_client *clp = dp->dl_stid.sc_client;
917
918 lockdep_assert_held(&state_lock);
919 lockdep_assert_held(&fp->fi_lock);
920
921 status = nfs4_get_existing_delegation(clp, fp);
922 if (status)
923 return status;
924 ++fp->fi_delegees;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +0300925 refcount_inc(&dp->dl_stid.sc_count);
Benny Halevy3fb87d12014-05-30 09:09:31 -0400926 dp->dl_stid.sc_type = NFS4_DELEG_STID;
Benny Halevy931ee562014-05-30 09:09:27 -0400927 list_add(&dp->dl_perfile, &fp->fi_delegations);
Andrew Elble34ed9872015-10-15 12:07:28 -0400928 list_add(&dp->dl_perclnt, &clp->cl_delegations);
929 return 0;
Benny Halevy931ee562014-05-30 09:09:27 -0400930}
931
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400932static bool
Jeff Layton42690672014-07-25 07:34:20 -0400933unhash_delegation_locked(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Trond Myklebust11b91642014-07-29 21:34:08 -0400935 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Layton02e12152014-07-16 10:31:57 -0400936
Jeff Layton42690672014-07-25 07:34:20 -0400937 lockdep_assert_held(&state_lock);
938
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400939 if (list_empty(&dp->dl_perfile))
940 return false;
941
Trond Myklebustb0fc29d2014-07-16 10:31:59 -0400942 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
Jeff Laytond55a1662014-07-22 13:52:06 -0400943 /* Ensure that deleg break won't try to requeue it */
944 ++dp->dl_time;
Jeff Layton417c6622014-07-21 09:34:57 -0400945 spin_lock(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400946 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 list_del_init(&dp->dl_recall_lru);
Jeff Layton02e12152014-07-16 10:31:57 -0400948 list_del_init(&dp->dl_perfile);
949 spin_unlock(&fp->fi_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400950 return true;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400951}
952
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400953static void destroy_delegation(struct nfs4_delegation *dp)
954{
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400955 bool unhashed;
956
Jeff Layton42690672014-07-25 07:34:20 -0400957 spin_lock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400958 unhashed = unhash_delegation_locked(dp);
Jeff Layton42690672014-07-25 07:34:20 -0400959 spin_unlock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400960 if (unhashed) {
961 put_clnt_odstate(dp->dl_clnt_odstate);
962 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
963 nfs4_put_stid(&dp->dl_stid);
964 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400965}
966
967static void revoke_delegation(struct nfs4_delegation *dp)
968{
969 struct nfs4_client *clp = dp->dl_stid.sc_client;
970
Jeff Layton2d4a5322014-07-25 07:34:21 -0400971 WARN_ON(!list_empty(&dp->dl_recall_lru));
972
Sachin Bhamare8287f002015-04-27 14:50:14 +0200973 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -0400974 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
975
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400976 if (clp->cl_minorversion == 0)
Trond Myklebust60116952014-07-29 21:34:06 -0400977 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400978 else {
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400979 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
Jeff Layton2d4a5322014-07-25 07:34:21 -0400980 spin_lock(&clp->cl_lock);
981 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
982 spin_unlock(&clp->cl_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400983 }
984}
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986/*
987 * SETCLIENTID state
988 */
989
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400990static unsigned int clientid_hashval(u32 id)
991{
992 return id & CLIENT_HASH_MASK;
993}
994
995static unsigned int clientstr_hashval(const char *name)
996{
997 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001001 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1002 * st_{access,deny}_bmap field of the stateid, in order to track not
1003 * only what share bits are currently in force, but also what
1004 * combinations of share bits previous opens have used. This allows us
1005 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1006 * return an error if the client attempt to downgrade to a combination
1007 * of share bits not explicable by closing some of its previous opens.
1008 *
1009 * XXX: This enforcement is actually incomplete, since we don't keep
1010 * track of access/deny bit combinations; so, e.g., we allow:
1011 *
1012 * OPEN allow read, deny write
1013 * OPEN allow both, deny none
1014 * DOWNGRADE allow read, deny none
1015 *
1016 * which we should reject.
1017 */
Jeff Layton5ae037e2012-05-11 09:45:11 -04001018static unsigned int
1019bmap_to_share_mode(unsigned long bmap) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001020 int i;
Jeff Layton5ae037e2012-05-11 09:45:11 -04001021 unsigned int access = 0;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001022
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001023 for (i = 1; i < 4; i++) {
1024 if (test_bit(i, &bmap))
Jeff Layton5ae037e2012-05-11 09:45:11 -04001025 access |= i;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001026 }
Jeff Layton5ae037e2012-05-11 09:45:11 -04001027 return access;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001028}
1029
Jeff Layton82c5ff12012-05-11 09:45:13 -04001030/* set share access for a given stateid */
1031static inline void
1032set_access(u32 access, struct nfs4_ol_stateid *stp)
1033{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001034 unsigned char mask = 1 << access;
1035
1036 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1037 stp->st_access_bmap |= mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001038}
1039
1040/* clear share access for a given stateid */
1041static inline void
1042clear_access(u32 access, struct nfs4_ol_stateid *stp)
1043{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001044 unsigned char mask = 1 << access;
1045
1046 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1047 stp->st_access_bmap &= ~mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001048}
1049
1050/* test whether a given stateid has access */
1051static inline bool
1052test_access(u32 access, struct nfs4_ol_stateid *stp)
1053{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001054 unsigned char mask = 1 << access;
1055
1056 return (bool)(stp->st_access_bmap & mask);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001057}
1058
Jeff Laytonce0fc432012-05-11 09:45:14 -04001059/* set share deny for a given stateid */
1060static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001061set_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001062{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001063 unsigned char mask = 1 << deny;
1064
1065 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1066 stp->st_deny_bmap |= mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001067}
1068
1069/* clear share deny for a given stateid */
1070static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001071clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001072{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001073 unsigned char mask = 1 << deny;
1074
1075 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1076 stp->st_deny_bmap &= ~mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001077}
1078
1079/* test whether a given stateid is denying specific access */
1080static inline bool
Jeff Laytonc11c5912014-07-10 14:07:30 -04001081test_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001082{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001083 unsigned char mask = 1 << deny;
1084
1085 return (bool)(stp->st_deny_bmap & mask);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001086}
1087
1088static int nfs4_access_to_omode(u32 access)
1089{
J. Bruce Fields8f34a432010-09-02 15:23:16 -04001090 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001091 case NFS4_SHARE_ACCESS_READ:
1092 return O_RDONLY;
1093 case NFS4_SHARE_ACCESS_WRITE:
1094 return O_WRONLY;
1095 case NFS4_SHARE_ACCESS_BOTH:
1096 return O_RDWR;
1097 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05001098 WARN_ON_ONCE(1);
1099 return O_RDONLY;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001100}
1101
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001102/*
1103 * A stateid that had a deny mode associated with it is being released
1104 * or downgraded. Recalculate the deny mode on the file.
1105 */
1106static void
1107recalculate_deny_mode(struct nfs4_file *fp)
1108{
1109 struct nfs4_ol_stateid *stp;
1110
1111 spin_lock(&fp->fi_lock);
1112 fp->fi_share_deny = 0;
1113 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
1114 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
1115 spin_unlock(&fp->fi_lock);
1116}
1117
1118static void
1119reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
1120{
1121 int i;
1122 bool change = false;
1123
1124 for (i = 1; i < 4; i++) {
1125 if ((i & deny) != i) {
1126 change = true;
1127 clear_deny(i, stp);
1128 }
1129 }
1130
1131 /* Recalculate per-file deny mode if there was a change */
1132 if (change)
Trond Myklebust11b91642014-07-29 21:34:08 -04001133 recalculate_deny_mode(stp->st_stid.sc_file);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001134}
1135
Jeff Layton82c5ff12012-05-11 09:45:13 -04001136/* release all access and file references for a given stateid */
1137static void
1138release_all_access(struct nfs4_ol_stateid *stp)
1139{
1140 int i;
Trond Myklebust11b91642014-07-29 21:34:08 -04001141 struct nfs4_file *fp = stp->st_stid.sc_file;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001142
1143 if (fp && stp->st_deny_bmap != 0)
1144 recalculate_deny_mode(fp);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001145
1146 for (i = 1; i < 4; i++) {
1147 if (test_access(i, stp))
Trond Myklebust11b91642014-07-29 21:34:08 -04001148 nfs4_file_put_access(stp->st_stid.sc_file, i);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001149 clear_access(i, stp);
1150 }
1151}
1152
Kinglong Meed50ffde2015-07-16 12:05:07 +08001153static inline void nfs4_free_stateowner(struct nfs4_stateowner *sop)
1154{
1155 kfree(sop->so_owner.data);
1156 sop->so_ops->so_free(sop);
1157}
1158
Jeff Layton6b180f02014-07-29 21:34:26 -04001159static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
1160{
Jeff Laytona819ecc2014-07-29 21:34:38 -04001161 struct nfs4_client *clp = sop->so_client;
1162
1163 might_lock(&clp->cl_lock);
1164
1165 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock))
Jeff Layton6b180f02014-07-29 21:34:26 -04001166 return;
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001167 sop->so_ops->so_unhash(sop);
Jeff Laytona819ecc2014-07-29 21:34:38 -04001168 spin_unlock(&clp->cl_lock);
Kinglong Meed50ffde2015-07-16 12:05:07 +08001169 nfs4_free_stateowner(sop);
Jeff Layton6b180f02014-07-29 21:34:26 -04001170}
1171
Jeff Laytone8568732015-08-24 12:41:47 -04001172static bool unhash_ol_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001173{
Trond Myklebust11b91642014-07-29 21:34:08 -04001174 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -04001175
Jeff Layton1c755dc2014-07-29 21:34:12 -04001176 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
1177
Jeff Laytone8568732015-08-24 12:41:47 -04001178 if (list_empty(&stp->st_perfile))
1179 return false;
1180
Trond Myklebust1d31a252014-07-10 14:07:25 -04001181 spin_lock(&fp->fi_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001182 list_del_init(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -04001183 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001184 list_del(&stp->st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001185 return true;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001186}
1187
Trond Myklebust60116952014-07-29 21:34:06 -04001188static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001189{
Trond Myklebust60116952014-07-29 21:34:06 -04001190 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -04001191
Sachin Bhamare8287f002015-04-27 14:50:14 +02001192 put_clnt_odstate(stp->st_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04001193 release_all_access(stp);
Jeff Laytond3134b12014-07-29 21:34:32 -04001194 if (stp->st_stateowner)
1195 nfs4_put_stateowner(stp->st_stateowner);
Trond Myklebust60116952014-07-29 21:34:06 -04001196 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001197}
1198
Jeff Laytonb49e0842014-07-29 21:34:11 -04001199static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001200{
Jeff Laytonb49e0842014-07-29 21:34:11 -04001201 struct nfs4_ol_stateid *stp = openlockstateid(stid);
1202 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001203 struct file *file;
1204
Jeff Laytonb49e0842014-07-29 21:34:11 -04001205 file = find_any_file(stp->st_stid.sc_file);
1206 if (file)
1207 filp_close(file, (fl_owner_t)lo);
1208 nfs4_free_ol_stateid(stid);
1209}
1210
Jeff Layton2c41beb2014-07-29 21:34:41 -04001211/*
1212 * Put the persistent reference to an already unhashed generic stateid, while
1213 * holding the cl_lock. If it's the last reference, then put it onto the
1214 * reaplist for later destruction.
1215 */
1216static void put_ol_stateid_locked(struct nfs4_ol_stateid *stp,
1217 struct list_head *reaplist)
1218{
1219 struct nfs4_stid *s = &stp->st_stid;
1220 struct nfs4_client *clp = s->sc_client;
1221
1222 lockdep_assert_held(&clp->cl_lock);
1223
1224 WARN_ON_ONCE(!list_empty(&stp->st_locks));
1225
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03001226 if (!refcount_dec_and_test(&s->sc_count)) {
Jeff Layton2c41beb2014-07-29 21:34:41 -04001227 wake_up_all(&close_wq);
1228 return;
1229 }
1230
1231 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
1232 list_add(&stp->st_locks, reaplist);
1233}
1234
Jeff Laytone8568732015-08-24 12:41:47 -04001235static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Layton3c1c9952014-07-29 21:34:39 -04001236{
Chuck Leverf46c4452016-10-29 18:19:03 -04001237 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001238
1239 list_del_init(&stp->st_locks);
Christoph Hellwigcd61c522014-08-14 08:44:57 +02001240 nfs4_unhash_stid(&stp->st_stid);
Jeff Laytone8568732015-08-24 12:41:47 -04001241 return unhash_ol_stateid(stp);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001242}
1243
Jeff Layton5adfd882014-07-29 21:34:31 -04001244static void release_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Laytonb49e0842014-07-29 21:34:11 -04001245{
Chuck Leverf46c4452016-10-29 18:19:03 -04001246 struct nfs4_client *clp = stp->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04001247 bool unhashed;
Jeff Layton1c755dc2014-07-29 21:34:12 -04001248
Chuck Leverf46c4452016-10-29 18:19:03 -04001249 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001250 unhashed = unhash_lock_stateid(stp);
Chuck Leverf46c4452016-10-29 18:19:03 -04001251 spin_unlock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001252 if (unhashed)
1253 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001254}
1255
Trond Myklebustc58c6612014-07-29 21:34:35 -04001256static void unhash_lockowner_locked(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001257{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001258 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustc58c6612014-07-29 21:34:35 -04001259
Trond Myklebustd4f04892014-07-29 21:34:36 -04001260 lockdep_assert_held(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04001261
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001262 list_del_init(&lo->lo_owner.so_strhash);
1263}
1264
Jeff Layton2c41beb2014-07-29 21:34:41 -04001265/*
1266 * Free a list of generic stateids that were collected earlier after being
1267 * fully unhashed.
1268 */
1269static void
1270free_ol_stateid_reaplist(struct list_head *reaplist)
1271{
1272 struct nfs4_ol_stateid *stp;
Kinglong Meefb94d762014-08-05 21:20:27 +08001273 struct nfs4_file *fp;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001274
1275 might_sleep();
1276
1277 while (!list_empty(reaplist)) {
1278 stp = list_first_entry(reaplist, struct nfs4_ol_stateid,
1279 st_locks);
1280 list_del(&stp->st_locks);
Kinglong Meefb94d762014-08-05 21:20:27 +08001281 fp = stp->st_stid.sc_file;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001282 stp->st_stid.sc_free(&stp->st_stid);
Kinglong Meefb94d762014-08-05 21:20:27 +08001283 if (fp)
1284 put_nfs4_file(fp);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001285 }
1286}
1287
Jeff Laytond83017f2014-07-29 21:34:42 -04001288static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp,
1289 struct list_head *reaplist)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001290{
1291 struct nfs4_ol_stateid *stp;
1292
Jeff Laytone8568732015-08-24 12:41:47 -04001293 lockdep_assert_held(&open_stp->st_stid.sc_client->cl_lock);
1294
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001295 while (!list_empty(&open_stp->st_locks)) {
1296 stp = list_entry(open_stp->st_locks.next,
1297 struct nfs4_ol_stateid, st_locks);
Jeff Laytone8568732015-08-24 12:41:47 -04001298 WARN_ON(!unhash_lock_stateid(stp));
Jeff Laytond83017f2014-07-29 21:34:42 -04001299 put_ol_stateid_locked(stp, reaplist);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001300 }
1301}
1302
Jeff Laytone8568732015-08-24 12:41:47 -04001303static bool unhash_open_stateid(struct nfs4_ol_stateid *stp,
Jeff Laytond83017f2014-07-29 21:34:42 -04001304 struct list_head *reaplist)
J. Bruce Fields22839632009-01-11 14:27:17 -05001305{
Jeff Laytone8568732015-08-24 12:41:47 -04001306 bool unhashed;
1307
Jeff Layton2c41beb2014-07-29 21:34:41 -04001308 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1309
Jeff Laytone8568732015-08-24 12:41:47 -04001310 unhashed = unhash_ol_stateid(stp);
Jeff Laytond83017f2014-07-29 21:34:42 -04001311 release_open_stateid_locks(stp, reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04001312 return unhashed;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04001313}
1314
1315static void release_open_stateid(struct nfs4_ol_stateid *stp)
1316{
Jeff Layton2c41beb2014-07-29 21:34:41 -04001317 LIST_HEAD(reaplist);
1318
1319 spin_lock(&stp->st_stid.sc_client->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001320 if (unhash_open_stateid(stp, &reaplist))
1321 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001322 spin_unlock(&stp->st_stid.sc_client->cl_lock);
1323 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fields22839632009-01-11 14:27:17 -05001324}
1325
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001326static void unhash_openowner_locked(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001327{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001328 struct nfs4_client *clp = oo->oo_owner.so_client;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001329
Trond Myklebustd4f04892014-07-29 21:34:36 -04001330 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001331
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001332 list_del_init(&oo->oo_owner.so_strhash);
1333 list_del_init(&oo->oo_perclient);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001334}
1335
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001336static void release_last_closed_stateid(struct nfs4_openowner *oo)
1337{
Jeff Layton217526e2014-07-30 08:27:11 -04001338 struct nfsd_net *nn = net_generic(oo->oo_owner.so_client->net,
1339 nfsd_net_id);
1340 struct nfs4_ol_stateid *s;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001341
Jeff Layton217526e2014-07-30 08:27:11 -04001342 spin_lock(&nn->client_lock);
1343 s = oo->oo_last_closed_stid;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001344 if (s) {
Jeff Laytond3134b12014-07-29 21:34:32 -04001345 list_del_init(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001346 oo->oo_last_closed_stid = NULL;
1347 }
Jeff Layton217526e2014-07-30 08:27:11 -04001348 spin_unlock(&nn->client_lock);
1349 if (s)
1350 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001351}
1352
Jeff Layton2c41beb2014-07-29 21:34:41 -04001353static void release_openowner(struct nfs4_openowner *oo)
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001354{
1355 struct nfs4_ol_stateid *stp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001356 struct nfs4_client *clp = oo->oo_owner.so_client;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001357 struct list_head reaplist;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001358
Jeff Layton2c41beb2014-07-29 21:34:41 -04001359 INIT_LIST_HEAD(&reaplist);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001360
Trond Myklebustd4f04892014-07-29 21:34:36 -04001361 spin_lock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001362 unhash_openowner_locked(oo);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001363 while (!list_empty(&oo->oo_owner.so_stateids)) {
1364 stp = list_first_entry(&oo->oo_owner.so_stateids,
1365 struct nfs4_ol_stateid, st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001366 if (unhash_open_stateid(stp, &reaplist))
1367 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001368 }
Trond Myklebustd4f04892014-07-29 21:34:36 -04001369 spin_unlock(&clp->cl_lock);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001370 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001371 release_last_closed_stateid(oo);
Jeff Layton6b180f02014-07-29 21:34:26 -04001372 nfs4_put_stateowner(&oo->oo_owner);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001373}
1374
Marc Eshel5282fd72009-04-03 08:27:52 +03001375static inline int
1376hash_sessionid(struct nfs4_sessionid *sessionid)
1377{
1378 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1379
1380 return sid->sequence % SESSION_HASH_SIZE;
1381}
1382
Mark Salter135dd002015-04-06 09:46:00 -04001383#ifdef CONFIG_SUNRPC_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001384static inline void
1385dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1386{
1387 u32 *ptr = (u32 *)(&sessionid->data[0]);
1388 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1389}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001390#else
1391static inline void
1392dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1393{
1394}
1395#endif
1396
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001397/*
1398 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1399 * won't be used for replay.
1400 */
1401void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1402{
1403 struct nfs4_stateowner *so = cstate->replay_owner;
1404
1405 if (nfserr == nfserr_replay_me)
1406 return;
1407
1408 if (!seqid_mutating_err(ntohl(nfserr))) {
Jeff Layton58fb12e2014-07-29 21:34:27 -04001409 nfsd4_cstate_clear_replay(cstate);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001410 return;
1411 }
1412 if (!so)
1413 return;
1414 if (so->so_is_open_owner)
1415 release_last_closed_stateid(openowner(so));
1416 so->so_seqid++;
1417 return;
1418}
Marc Eshel5282fd72009-04-03 08:27:52 +03001419
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001420static void
1421gen_sessionid(struct nfsd4_session *ses)
1422{
1423 struct nfs4_client *clp = ses->se_client;
1424 struct nfsd4_sessionid *sid;
1425
1426 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1427 sid->clientid = clp->cl_clientid;
1428 sid->sequence = current_sessionid++;
1429 sid->reserved = 0;
1430}
1431
1432/*
Andy Adamsona649637c72009-08-28 08:45:01 -04001433 * The protocol defines ca_maxresponssize_cached to include the size of
1434 * the rpc header, but all we need to cache is the data starting after
1435 * the end of the initial SEQUENCE operation--the rest we regenerate
1436 * each time. Therefore we can advertise a ca_maxresponssize_cached
1437 * value that is the number of bytes in our cache plus a few additional
1438 * bytes. In order to stay on the safe side, and not promise more than
1439 * we can cache, those additional bytes must be the minimum possible: 24
1440 * bytes of rpc header (xid through accept state, with AUTH_NULL
1441 * verifier), 12 for the compound header (with zero-length tag), and 44
1442 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001443 */
Andy Adamsona649637c72009-08-28 08:45:01 -04001444#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1445
Andy Adamson557ce262009-08-28 08:45:04 -04001446static void
1447free_session_slots(struct nfsd4_session *ses)
1448{
1449 int i;
1450
J. Bruce Fields53da6a52017-10-17 20:38:49 -04001451 for (i = 0; i < ses->se_fchannel.maxreqs; i++) {
1452 free_svc_cred(&ses->se_slots[i]->sl_cred);
Andy Adamson557ce262009-08-28 08:45:04 -04001453 kfree(ses->se_slots[i]);
J. Bruce Fields53da6a52017-10-17 20:38:49 -04001454 }
Andy Adamson557ce262009-08-28 08:45:04 -04001455}
1456
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001457/*
1458 * We don't actually need to cache the rpc and session headers, so we
1459 * can allocate a little less for each slot:
1460 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001461static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001462{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001463 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001464
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001465 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1466 size = 0;
1467 else
1468 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1469 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001470}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001471
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001472/*
1473 * XXX: If we run out of reserved DRC memory we could (up to a point)
1474 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001475 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001476 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001477static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001478{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001479 u32 slotsize = slot_bytes(ca);
1480 u32 num = ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001481 int avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001482
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001483 spin_lock(&nfsd_drc_lock);
Zhang Yanfei697ce9b2013-02-22 16:35:47 -08001484 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION,
1485 nfsd_drc_max_mem - nfsd_drc_mem_used);
J. Bruce Fieldsde766e52017-09-19 19:25:41 -04001486 /*
1487 * Never use more than a third of the remaining memory,
1488 * unless it's the only way to give this client a slot:
1489 */
1490 avail = clamp_t(int, avail, slotsize, avail/3);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001491 num = min_t(int, num, avail / slotsize);
1492 nfsd_drc_mem_used += num * slotsize;
1493 spin_unlock(&nfsd_drc_lock);
1494
1495 return num;
1496}
1497
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001498static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001499{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001500 int slotsize = slot_bytes(ca);
1501
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001502 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001503 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001504 spin_unlock(&nfsd_drc_lock);
1505}
1506
Kinglong Mee60810e52014-01-01 00:35:47 +08001507static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1508 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001509{
Kinglong Mee60810e52014-01-01 00:35:47 +08001510 int numslots = fattrs->maxreqs;
1511 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001512 struct nfsd4_session *new;
1513 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001514
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001515 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001516 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1517 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001518
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001519 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001520 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001521 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001522 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001523 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001524 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001525 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001526 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001527 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001528
1529 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1530 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1531
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001532 return new;
1533out_free:
1534 while (i--)
1535 kfree(new->se_slots[i]);
1536 kfree(new);
1537 return NULL;
1538}
1539
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001540static void free_conn(struct nfsd4_conn *c)
1541{
1542 svc_xprt_put(c->cn_xprt);
1543 kfree(c);
1544}
1545
1546static void nfsd4_conn_lost(struct svc_xpt_user *u)
1547{
1548 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1549 struct nfs4_client *clp = c->cn_session->se_client;
1550
1551 spin_lock(&clp->cl_lock);
1552 if (!list_empty(&c->cn_persession)) {
1553 list_del(&c->cn_persession);
1554 free_conn(c);
1555 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001556 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001557 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001558}
1559
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001560static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001561{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001562 struct nfsd4_conn *conn;
1563
1564 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1565 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001566 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001567 svc_xprt_get(rqstp->rq_xprt);
1568 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001569 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001570 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1571 return conn;
1572}
1573
J. Bruce Fields328ead22010-09-29 16:11:06 -04001574static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1575{
1576 conn->cn_session = ses;
1577 list_add(&conn->cn_persession, &ses->se_conns);
1578}
1579
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001580static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1581{
1582 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001583
1584 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001585 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001586 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001587}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001588
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001589static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001590{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001591 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001592 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001593}
1594
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001595static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001596{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001597 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001598
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001599 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001600 ret = nfsd4_register_conn(conn);
1601 if (ret)
1602 /* oops; xprt is already down: */
1603 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001604 /* We may have gained or lost a callback channel: */
1605 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001606}
1607
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001608static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001609{
1610 u32 dir = NFS4_CDFC4_FORE;
1611
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001612 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001613 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001614 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001615}
1616
1617/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001618static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001619{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001620 struct nfs4_client *clp = s->se_client;
1621 struct nfsd4_conn *c;
1622
1623 spin_lock(&clp->cl_lock);
1624 while (!list_empty(&s->se_conns)) {
1625 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1626 list_del_init(&c->cn_persession);
1627 spin_unlock(&clp->cl_lock);
1628
1629 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1630 free_conn(c);
1631
1632 spin_lock(&clp->cl_lock);
1633 }
1634 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001635}
1636
J. Bruce Fields1377b692012-09-11 21:42:40 -04001637static void __free_session(struct nfsd4_session *ses)
1638{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001639 free_session_slots(ses);
1640 kfree(ses);
1641}
1642
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001643static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001644{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001645 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001646 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001647 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001648}
Andy Adamson557ce262009-08-28 08:45:04 -04001649
Fengguang Wu135ae822012-11-10 07:20:25 -05001650static 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 -04001651{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001652 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001653 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001654
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001655 new->se_client = clp;
1656 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001657
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001658 INIT_LIST_HEAD(&new->se_conns);
1659
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04001660 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001661 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001662 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001663 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001664 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001665 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001666 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001667 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001668 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001669 spin_unlock(&clp->cl_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001670
Chuck Leverb0d2e422014-08-22 15:10:59 -04001671 {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001672 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001673 /*
1674 * This is a little silly; with sessions there's no real
1675 * use for the callback address. Use the peer address
1676 * as a reasonable default for now, but consider fixing
1677 * the rpc client not to require an address in the
1678 * future:
1679 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001680 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1681 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001682 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001683}
1684
Benny Halevy9089f1b2010-05-12 00:12:26 +03001685/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001686static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001687__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001688{
1689 struct nfsd4_session *elem;
1690 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001691 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001692
Trond Myklebust0a880a22014-07-30 08:27:10 -04001693 lockdep_assert_held(&nn->client_lock);
1694
Marc Eshel5282fd72009-04-03 08:27:52 +03001695 dump_sessionid(__func__, sessionid);
1696 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001697 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001698 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001699 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1700 NFS4_MAX_SESSIONID_LEN)) {
1701 return elem;
1702 }
1703 }
1704
1705 dprintk("%s: session not found\n", __func__);
1706 return NULL;
1707}
1708
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001709static struct nfsd4_session *
1710find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1711 __be32 *ret)
1712{
1713 struct nfsd4_session *session;
1714 __be32 status = nfserr_badsession;
1715
1716 session = __find_in_sessionid_hashtbl(sessionid, net);
1717 if (!session)
1718 goto out;
1719 status = nfsd4_get_session_locked(session);
1720 if (status)
1721 session = NULL;
1722out:
1723 *ret = status;
1724 return session;
1725}
1726
Benny Halevy9089f1b2010-05-12 00:12:26 +03001727/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001728static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001729unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001730{
Trond Myklebust0a880a22014-07-30 08:27:10 -04001731 struct nfs4_client *clp = ses->se_client;
1732 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1733
1734 lockdep_assert_held(&nn->client_lock);
1735
Andy Adamson7116ed62009-04-03 08:27:43 +03001736 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001737 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001738 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001739 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001740}
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1743static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001744STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
J. Bruce Fieldsbbc7f332015-01-20 11:51:26 -05001746 /*
1747 * We're assuming the clid was not given out from a boot
1748 * precisely 2^32 (about 136 years) before this one. That seems
1749 * a safe assumption:
1750 */
1751 if (clid->cl_boot == (u32)nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +03001753 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001754 clid->cl_boot, clid->cl_id, nn->boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return 1;
1756}
1757
1758/*
1759 * XXX Should we use a slab cache ?
1760 * This type of memory management is somewhat inefficient, but we use it
1761 * anyway since SETCLIENTID is not a common operation.
1762 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001763static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
1765 struct nfs4_client *clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001766 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001768 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1769 if (clp == NULL)
1770 return NULL;
Thomas Meyer67114fe2011-11-17 23:43:40 +01001771 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001772 if (clp->cl_name.data == NULL)
1773 goto err_no_name;
1774 clp->cl_ownerstr_hashtbl = kmalloc(sizeof(struct list_head) *
1775 OWNER_HASH_SIZE, GFP_KERNEL);
1776 if (!clp->cl_ownerstr_hashtbl)
1777 goto err_no_hashtbl;
1778 for (i = 0; i < OWNER_HASH_SIZE; i++)
1779 INIT_LIST_HEAD(&clp->cl_ownerstr_hashtbl[i]);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001780 clp->cl_name.len = name.len;
Trond Myklebust5694c932014-04-18 14:43:56 -04001781 INIT_LIST_HEAD(&clp->cl_sessions);
1782 idr_init(&clp->cl_stateids);
1783 atomic_set(&clp->cl_refcount, 0);
1784 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1785 INIT_LIST_HEAD(&clp->cl_idhash);
1786 INIT_LIST_HEAD(&clp->cl_openowners);
1787 INIT_LIST_HEAD(&clp->cl_delegations);
1788 INIT_LIST_HEAD(&clp->cl_lru);
Trond Myklebust5694c932014-04-18 14:43:56 -04001789 INIT_LIST_HEAD(&clp->cl_revoked);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001790#ifdef CONFIG_NFSD_PNFS
1791 INIT_LIST_HEAD(&clp->cl_lo_states);
1792#endif
Trond Myklebust5694c932014-04-18 14:43:56 -04001793 spin_lock_init(&clp->cl_lock);
1794 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001796err_no_hashtbl:
1797 kfree(clp->cl_name.data);
1798err_no_name:
1799 kfree(clp);
1800 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001803static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804free_client(struct nfs4_client *clp)
1805{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001806 while (!list_empty(&clp->cl_sessions)) {
1807 struct nfsd4_session *ses;
1808 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1809 se_perclnt);
1810 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001811 WARN_ON_ONCE(atomic_read(&ses->se_ref));
1812 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001813 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04001814 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001815 free_svc_cred(&clp->cl_cred);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001816 kfree(clp->cl_ownerstr_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 kfree(clp->cl_name.data);
majianpeng2d32b292013-01-29 13:16:06 +08001818 idr_destroy(&clp->cl_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 kfree(clp);
1820}
1821
Benny Halevy84d38ac2010-05-12 00:13:16 +03001822/* must be called under the client_lock */
Trond Myklebust4beb3452014-07-30 08:27:02 -04001823static void
Benny Halevy84d38ac2010-05-12 00:13:16 +03001824unhash_client_locked(struct nfs4_client *clp)
1825{
Trond Myklebust4beb3452014-07-30 08:27:02 -04001826 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001827 struct nfsd4_session *ses;
1828
Trond Myklebust0a880a22014-07-30 08:27:10 -04001829 lockdep_assert_held(&nn->client_lock);
1830
Trond Myklebust4beb3452014-07-30 08:27:02 -04001831 /* Mark the client as expired! */
1832 clp->cl_time = 0;
1833 /* Make it invisible */
1834 if (!list_empty(&clp->cl_idhash)) {
1835 list_del_init(&clp->cl_idhash);
1836 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
1837 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
1838 else
1839 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
1840 }
1841 list_del_init(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001842 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001843 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1844 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001845 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001846}
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848static void
Trond Myklebust4beb3452014-07-30 08:27:02 -04001849unhash_client(struct nfs4_client *clp)
1850{
1851 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1852
1853 spin_lock(&nn->client_lock);
1854 unhash_client_locked(clp);
1855 spin_unlock(&nn->client_lock);
1856}
1857
Jeff Layton97403d92014-07-30 08:27:12 -04001858static __be32 mark_client_expired_locked(struct nfs4_client *clp)
1859{
1860 if (atomic_read(&clp->cl_refcount))
1861 return nfserr_jukebox;
1862 unhash_client_locked(clp);
1863 return nfs_ok;
1864}
1865
Trond Myklebust4beb3452014-07-30 08:27:02 -04001866static void
1867__destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001869 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 struct list_head reaplist;
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04001874 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07001875 while (!list_empty(&clp->cl_delegations)) {
1876 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001877 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04001878 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
Benny Halevycdc975052014-05-30 09:09:30 -04001880 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 while (!list_empty(&reaplist)) {
1882 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04001883 list_del_init(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +02001884 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -04001885 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
Trond Myklebust60116952014-07-29 21:34:06 -04001886 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04001888 while (!list_empty(&clp->cl_revoked)) {
Andrew Elblec8764862015-02-25 17:46:27 -05001889 dp = list_entry(clp->cl_revoked.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001890 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001891 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02001892 }
NeilBrownea1da632005-06-23 22:04:17 -07001893 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001894 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
Kinglong Meeb5971af2014-08-22 10:18:43 -04001895 nfs4_get_stateowner(&oo->oo_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001896 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001898 nfsd4_return_all_client_layouts(clp);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001899 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05001900 if (clp->cl_cb_conn.cb_xprt)
1901 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
J. Bruce Fields221a6872013-04-01 22:23:49 -04001902 free_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903}
1904
Trond Myklebust4beb3452014-07-30 08:27:02 -04001905static void
1906destroy_client(struct nfs4_client *clp)
1907{
1908 unhash_client(clp);
1909 __destroy_client(clp);
1910}
1911
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001912static void expire_client(struct nfs4_client *clp)
1913{
Trond Myklebust4beb3452014-07-30 08:27:02 -04001914 unhash_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001915 nfsd4_client_record_remove(clp);
Trond Myklebust4beb3452014-07-30 08:27:02 -04001916 __destroy_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001917}
1918
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001919static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1920{
1921 memcpy(target->cl_verifier.data, source->data,
1922 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001925static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1926{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1928 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1929}
1930
J. Bruce Fields50043852015-11-20 15:58:37 -05001931static int copy_cred(struct svc_cred *target, struct svc_cred *source)
1932{
NeilBrown2f10fdc2017-03-23 16:57:36 +08001933 target->cr_principal = kstrdup(source->cr_principal, GFP_KERNEL);
1934 target->cr_raw_principal = kstrdup(source->cr_raw_principal,
1935 GFP_KERNEL);
1936 if ((source->cr_principal && ! target->cr_principal) ||
1937 (source->cr_raw_principal && ! target->cr_raw_principal))
1938 return -ENOMEM;
J. Bruce Fields50043852015-11-20 15:58:37 -05001939
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04001940 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 target->cr_uid = source->cr_uid;
1942 target->cr_gid = source->cr_gid;
1943 target->cr_group_info = source->cr_group_info;
1944 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04001945 target->cr_gss_mech = source->cr_gss_mech;
1946 if (source->cr_gss_mech)
1947 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949}
1950
Rasmus Villemoesef17af22014-12-05 16:40:07 +01001951static int
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001952compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
1953{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01001954 if (o1->len < o2->len)
1955 return -1;
1956 if (o1->len > o2->len)
1957 return 1;
1958 return memcmp(o1->data, o2->data, o1->len);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05001959}
1960
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001961static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001962{
NeilBrowna55370a2005-06-23 22:03:52 -07001963 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964}
1965
1966static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001967same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1968{
1969 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970}
1971
1972static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001973same_clid(clientid_t *cl1, clientid_t *cl2)
1974{
1975 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001978static bool groups_equal(struct group_info *g1, struct group_info *g2)
1979{
1980 int i;
1981
1982 if (g1->ngroups != g2->ngroups)
1983 return false;
1984 for (i=0; i<g1->ngroups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -07001985 if (!gid_eq(g1->gid[i], g2->gid[i]))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04001986 return false;
1987 return true;
1988}
1989
J. Bruce Fields68eb3502012-08-21 12:48:30 -04001990/*
1991 * RFC 3530 language requires clid_inuse be returned when the
1992 * "principal" associated with a requests differs from that previously
1993 * used. We use uid, gid's, and gss principal string as our best
1994 * approximation. We also don't want to allow non-gss use of a client
1995 * established using gss: in theory cr_principal should catch that
1996 * change, but in practice cr_principal can be null even in the gss case
1997 * since gssd doesn't always pass down a principal string.
1998 */
1999static bool is_gss_cred(struct svc_cred *cr)
2000{
2001 /* Is cr_flavor one of the gss "pseudoflavors"?: */
2002 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
2003}
2004
2005
Vivek Trivedi5559b502012-07-24 21:18:20 +05302006static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002007same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
2008{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002009 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002010 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
2011 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002012 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
2013 return false;
2014 if (cr1->cr_principal == cr2->cr_principal)
2015 return true;
2016 if (!cr1->cr_principal || !cr2->cr_principal)
2017 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05302018 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
J. Bruce Fields57266a62013-04-13 14:27:29 -04002021static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
2022{
2023 struct svc_cred *cr = &rqstp->rq_cred;
2024 u32 service;
2025
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04002026 if (!cr->cr_gss_mech)
2027 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002028 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
2029 return service == RPC_GSS_SVC_INTEGRITY ||
2030 service == RPC_GSS_SVC_PRIVACY;
2031}
2032
Andrew Elblededeb132016-06-15 12:52:08 -04002033bool nfsd4_mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
J. Bruce Fields57266a62013-04-13 14:27:29 -04002034{
2035 struct svc_cred *cr = &rqstp->rq_cred;
2036
2037 if (!cl->cl_mach_cred)
2038 return true;
2039 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
2040 return false;
2041 if (!svc_rqst_integrity_protected(rqstp))
2042 return false;
J. Bruce Fields414ca012015-11-20 10:48:02 -05002043 if (cl->cl_cred.cr_raw_principal)
2044 return 0 == strcmp(cl->cl_cred.cr_raw_principal,
2045 cr->cr_raw_principal);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002046 if (!cr->cr_principal)
2047 return false;
2048 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
2049}
2050
Jeff Layton294ac322014-07-30 08:27:15 -04002051static void gen_confirm(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05002052{
Chuck Leverab4684d2012-03-02 17:13:50 -05002053 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Jeff Laytonf4199922014-06-17 07:44:11 -04002055 /*
2056 * This is opaque to client, so no need to byte-swap. Use
2057 * __force to keep sparse happy
2058 */
2059 verf[0] = (__force __be32)get_seconds();
Kinglong Mee19311aa82015-07-18 07:33:31 +08002060 verf[1] = (__force __be32)nn->clverifier_counter++;
Chuck Leverab4684d2012-03-02 17:13:50 -05002061 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Jeff Layton294ac322014-07-30 08:27:15 -04002064static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
2065{
2066 clp->cl_clientid.cl_boot = nn->boot_time;
2067 clp->cl_clientid.cl_id = nn->clientid_counter++;
2068 gen_confirm(clp, nn);
2069}
2070
Jeff Layton4770d722014-07-29 21:34:10 -04002071static struct nfs4_stid *
2072find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04002073{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05002074 struct nfs4_stid *ret;
2075
2076 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
2077 if (!ret || !ret->sc_type)
2078 return NULL;
2079 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04002080}
2081
Jeff Layton4770d722014-07-29 21:34:10 -04002082static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04002083find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04002084{
2085 struct nfs4_stid *s;
2086
Jeff Layton4770d722014-07-29 21:34:10 -04002087 spin_lock(&cl->cl_lock);
2088 s = find_stateid_locked(cl, t);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002089 if (s != NULL) {
2090 if (typemask & s->sc_type)
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03002091 refcount_inc(&s->sc_count);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002092 else
2093 s = NULL;
2094 }
Jeff Layton4770d722014-07-29 21:34:10 -04002095 spin_unlock(&cl->cl_lock);
2096 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04002097}
2098
Jeff Layton2216d442012-11-12 15:00:57 -05002099static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002100 struct svc_rqst *rqstp, nfs4_verifier *verf)
2101{
2102 struct nfs4_client *clp;
2103 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002104 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002105 struct net *net = SVC_NET(rqstp);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002106
2107 clp = alloc_client(name);
2108 if (clp == NULL)
2109 return NULL;
2110
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002111 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
2112 if (ret) {
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002113 free_client(clp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002114 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002115 }
Christoph Hellwig0162ac22014-09-24 12:19:19 +02002116 nfsd4_init_cb(&clp->cl_cb_null, clp, NULL, NFSPROC4_CLNT_CB_NULL);
Benny Halevy07cd4902010-05-12 00:13:41 +03002117 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002118 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002119 copy_verf(clp, verf);
2120 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04002121 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002122 clp->net = net;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002123 return clp;
2124}
2125
NeilBrownfd39ca92005-06-23 22:04:03 -07002126static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002127add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
2128{
2129 struct rb_node **new = &(root->rb_node), *parent = NULL;
2130 struct nfs4_client *clp;
2131
2132 while (*new) {
2133 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
2134 parent = *new;
2135
2136 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
2137 new = &((*new)->rb_left);
2138 else
2139 new = &((*new)->rb_right);
2140 }
2141
2142 rb_link_node(&new_clp->cl_namenode, parent, new);
2143 rb_insert_color(&new_clp->cl_namenode, root);
2144}
2145
2146static struct nfs4_client *
2147find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
2148{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002149 int cmp;
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002150 struct rb_node *node = root->rb_node;
2151 struct nfs4_client *clp;
2152
2153 while (node) {
2154 clp = rb_entry(node, struct nfs4_client, cl_namenode);
2155 cmp = compare_blob(&clp->cl_name, name);
2156 if (cmp > 0)
2157 node = node->rb_left;
2158 else if (cmp < 0)
2159 node = node->rb_right;
2160 else
2161 return clp;
2162 }
2163 return NULL;
2164}
2165
2166static void
2167add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
2169 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002170 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Trond Myklebust0a880a22014-07-30 08:27:10 -04002172 lockdep_assert_held(&nn->client_lock);
2173
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002174 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002175 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002177 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002178 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179}
2180
NeilBrownfd39ca92005-06-23 22:04:03 -07002181static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182move_to_confirmed(struct nfs4_client *clp)
2183{
2184 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002185 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Trond Myklebust0a880a22014-07-30 08:27:10 -04002187 lockdep_assert_held(&nn->client_lock);
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002190 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002191 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002192 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002193 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002194 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195}
2196
2197static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002198find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
2200 struct nfs4_client *clp;
2201 unsigned int idhashval = clientid_hashval(clid->cl_id);
2202
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002203 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002204 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04002205 if ((bool)clp->cl_minorversion != sessions)
2206 return NULL;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002207 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211 return NULL;
2212}
2213
2214static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002215find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
2216{
2217 struct list_head *tbl = nn->conf_id_hashtbl;
2218
Trond Myklebust0a880a22014-07-30 08:27:10 -04002219 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002220 return find_client_in_id_table(tbl, clid, sessions);
2221}
2222
2223static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002224find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002226 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Trond Myklebust0a880a22014-07-30 08:27:10 -04002228 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002229 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230}
2231
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002232static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002233{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002234 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002235}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002236
NeilBrown28ce6052005-06-23 22:03:56 -07002237static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002238find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002239{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002240 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002241 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002242}
2243
2244static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002245find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002246{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002247 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002248 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002249}
2250
NeilBrownfd39ca92005-06-23 22:04:03 -07002251static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002252gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
J. Bruce Fields07263f12010-05-31 19:09:40 -04002254 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002255 struct sockaddr *sa = svc_addr(rqstp);
2256 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04002257 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Jeff Layton7077ecb2009-08-14 12:57:58 -04002259 /* Currently, we only support tcp and tcp6 for the callback channel */
2260 if (se->se_callback_netid_len == 3 &&
2261 !memcmp(se->se_callback_netid_val, "tcp", 3))
2262 expected_family = AF_INET;
2263 else if (se->se_callback_netid_len == 4 &&
2264 !memcmp(se->se_callback_netid_val, "tcp6", 4))
2265 expected_family = AF_INET6;
2266 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 goto out_err;
2268
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002269 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002270 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04002271 (struct sockaddr *)&conn->cb_addr,
2272 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002273
J. Bruce Fields07263f12010-05-31 19:09:40 -04002274 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002276
J. Bruce Fields07263f12010-05-31 19:09:40 -04002277 if (conn->cb_addr.ss_family == AF_INET6)
2278 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04002279
J. Bruce Fields07263f12010-05-31 19:09:40 -04002280 conn->cb_prog = se->se_callback_prog;
2281 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08002282 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return;
2284out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04002285 conn->cb_addr.ss_family = AF_UNSPEC;
2286 conn->cb_addrlen = 0;
Rasmus Villemoes4ab495b2017-02-24 01:15:55 +01002287 dprintk("NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 "will not receive delegations\n",
2289 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return;
2292}
2293
Andy Adamson074fe892009-04-03 08:28:15 +03002294/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04002295 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03002296 */
Trond Myklebustb6076642014-06-30 11:48:35 -04002297static void
Andy Adamson074fe892009-04-03 08:28:15 +03002298nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
2299{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002300 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04002301 struct nfsd4_slot *slot = resp->cstate.slot;
2302 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03002303
Andy Adamson557ce262009-08-28 08:45:04 -04002304 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002305
J. Bruce Fields085def32017-10-18 16:17:18 -04002306 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamson557ce262009-08-28 08:45:04 -04002307 slot->sl_opcnt = resp->opcnt;
2308 slot->sl_status = resp->cstate.status;
J. Bruce Fields53da6a52017-10-17 20:38:49 -04002309 free_svc_cred(&slot->sl_cred);
2310 copy_cred(&slot->sl_cred, &resp->rqstp->rq_cred);
Andy Adamsonbf864a32009-04-03 08:28:35 +03002311
J. Bruce Fields085def32017-10-18 16:17:18 -04002312 if (!nfsd4_cache_this(resp)) {
2313 slot->sl_flags &= ~NFSD4_SLOT_CACHED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03002314 return;
2315 }
J. Bruce Fields085def32017-10-18 16:17:18 -04002316 slot->sl_flags |= NFSD4_SLOT_CACHED;
2317
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002318 base = resp->cstate.data_offset;
2319 slot->sl_datalen = buf->len - base;
2320 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Dan Carpenterd3f03402015-11-21 13:28:50 +03002321 WARN(1, "%s: sessions DRC could not cache compound\n",
2322 __func__);
Andy Adamson557ce262009-08-28 08:45:04 -04002323 return;
Andy Adamson074fe892009-04-03 08:28:15 +03002324}
2325
2326/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04002327 * Encode the replay sequence operation from the slot values.
2328 * If cachethis is FALSE encode the uncached rep error on the next
2329 * operation which sets resp->p and increments resp->opcnt for
2330 * nfs4svc_encode_compoundres.
2331 *
Andy Adamson074fe892009-04-03 08:28:15 +03002332 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04002333static __be32
2334nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
2335 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03002336{
Andy Adamsonabfabf82009-07-23 19:02:18 -04002337 struct nfsd4_op *op;
2338 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03002339
Andy Adamsonabfabf82009-07-23 19:02:18 -04002340 /* Encode the replayed sequence operation */
2341 op = &args->ops[resp->opcnt - 1];
2342 nfsd4_encode_operation(resp, op);
2343
J. Bruce Fields085def32017-10-18 16:17:18 -04002344 if (slot->sl_flags & NFSD4_SLOT_CACHED)
2345 return op->status;
2346 if (args->opcnt == 1) {
2347 /*
2348 * The original operation wasn't a solo sequence--we
2349 * always cache those--so this retry must not match the
2350 * original:
2351 */
2352 op->status = nfserr_seq_false_retry;
2353 } else {
Andy Adamsonabfabf82009-07-23 19:02:18 -04002354 op = &args->ops[resp->opcnt++];
2355 op->status = nfserr_retry_uncached_rep;
2356 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03002357 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04002358 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03002359}
2360
2361/*
Andy Adamson557ce262009-08-28 08:45:04 -04002362 * The sequence operation is not cached because we can use the slot and
2363 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03002364 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04002365static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03002366nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
2367 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03002368{
Andy Adamson557ce262009-08-28 08:45:04 -04002369 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002370 struct xdr_stream *xdr = &resp->xdr;
2371 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03002372 __be32 status;
2373
Andy Adamson557ce262009-08-28 08:45:04 -04002374 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002375
Andy Adamsonabfabf82009-07-23 19:02:18 -04002376 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04002377 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04002378 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03002379
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002380 p = xdr_reserve_space(xdr, slot->sl_datalen);
2381 if (!p) {
2382 WARN_ON_ONCE(1);
2383 return nfserr_serverfault;
2384 }
2385 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
2386 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03002387
Andy Adamson557ce262009-08-28 08:45:04 -04002388 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002389 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03002390}
2391
Andy Adamson0733d212009-04-03 08:28:01 +03002392/*
2393 * Set the exchange_id flags returned by the server.
2394 */
2395static void
2396nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
2397{
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002398#ifdef CONFIG_NFSD_PNFS
2399 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_PNFS_MDS;
2400#else
Andy Adamson0733d212009-04-03 08:28:01 +03002401 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002402#endif
Andy Adamson0733d212009-04-03 08:28:01 +03002403
2404 /* Referrals are supported, Migration is not. */
2405 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
2406
2407 /* set the wire flags to return to client. */
2408 clid->flags = new->cl_exchange_flags;
2409}
2410
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002411static bool client_has_openowners(struct nfs4_client *clp)
2412{
2413 struct nfs4_openowner *oo;
2414
2415 list_for_each_entry(oo, &clp->cl_openowners, oo_perclient) {
2416 if (!list_empty(&oo->oo_owner.so_stateids))
2417 return true;
2418 }
2419 return false;
2420}
2421
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002422static bool client_has_state(struct nfs4_client *clp)
2423{
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002424 return client_has_openowners(clp)
Kinglong Mee47e970b2015-07-21 13:09:17 +08002425#ifdef CONFIG_NFSD_PNFS
2426 || !list_empty(&clp->cl_lo_states)
2427#endif
J. Bruce Fields6eccece2012-05-29 16:37:44 -04002428 || !list_empty(&clp->cl_delegations)
2429 || !list_empty(&clp->cl_sessions);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002430}
2431
Al Virob37ad282006-10-19 23:28:59 -07002432__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02002433nfsd4_exchange_id(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2434 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03002435{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002436 struct nfsd4_exchange_id *exid = &u->exchange_id;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002437 struct nfs4_client *conf, *new;
2438 struct nfs4_client *unconf = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002439 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04002440 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03002441 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04002442 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002443 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002444 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03002445
Jeff Layton363168b2009-08-14 12:57:56 -04002446 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03002447 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04002448 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03002449 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04002450 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03002451
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002452 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03002453 return nfserr_inval;
2454
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002455 new = create_client(exid->clname, rqstp, &verf);
2456 if (new == NULL)
2457 return nfserr_jukebox;
2458
Andy Adamson0733d212009-04-03 08:28:01 +03002459 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002460 case SP4_MACH_CRED:
Andrew Elbleed941642016-06-15 12:52:09 -04002461 exid->spo_must_enforce[0] = 0;
2462 exid->spo_must_enforce[1] = (
2463 1 << (OP_BIND_CONN_TO_SESSION - 32) |
2464 1 << (OP_EXCHANGE_ID - 32) |
2465 1 << (OP_CREATE_SESSION - 32) |
2466 1 << (OP_DESTROY_SESSION - 32) |
2467 1 << (OP_DESTROY_CLIENTID - 32));
2468
2469 exid->spo_must_allow[0] &= (1 << (OP_CLOSE) |
2470 1 << (OP_OPEN_DOWNGRADE) |
2471 1 << (OP_LOCKU) |
2472 1 << (OP_DELEGRETURN));
2473
2474 exid->spo_must_allow[1] &= (
2475 1 << (OP_TEST_STATEID - 32) |
2476 1 << (OP_FREE_STATEID - 32));
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002477 if (!svc_rqst_integrity_protected(rqstp)) {
2478 status = nfserr_inval;
2479 goto out_nolock;
2480 }
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05002481 /*
2482 * Sometimes userspace doesn't give us a principal.
2483 * Which is a bug, really. Anyway, we can't enforce
2484 * MACH_CRED in that case, better to give up now:
2485 */
J. Bruce Fields414ca012015-11-20 10:48:02 -05002486 if (!new->cl_cred.cr_principal &&
2487 !new->cl_cred.cr_raw_principal) {
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05002488 status = nfserr_serverfault;
2489 goto out_nolock;
2490 }
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002491 new->cl_mach_cred = true;
Andy Adamson0733d212009-04-03 08:28:01 +03002492 case SP4_NONE:
2493 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05002494 default: /* checked by xdr code */
2495 WARN_ON_ONCE(1);
Andy Adamson0733d212009-04-03 08:28:01 +03002496 case SP4_SSV:
Kinglong Mee8edf4b02016-02-26 22:36:42 +08002497 status = nfserr_encr_alg_unsupp;
2498 goto out_nolock;
Andy Adamson0733d212009-04-03 08:28:01 +03002499 }
2500
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002501 /* Cases below refer to rfc 5661 section 18.35.4: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002502 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002503 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03002504 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002505 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
2506 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
2507
J. Bruce Fields136e6582012-05-12 20:37:23 -04002508 if (update) {
2509 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002510 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002511 goto out;
2512 }
Andrew Elblededeb132016-06-15 12:52:08 -04002513 if (!nfsd4_mach_creds_match(conf, rqstp)) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002514 status = nfserr_wrong_cred;
2515 goto out;
2516 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002517 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03002518 status = nfserr_perm;
2519 goto out;
2520 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002521 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03002522 status = nfserr_not_same;
2523 goto out;
2524 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002525 /* case 6 */
2526 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002527 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03002528 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002529 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002530 if (client_has_state(conf)) {
2531 status = nfserr_clid_inuse;
2532 goto out;
2533 }
Andy Adamson0733d212009-04-03 08:28:01 +03002534 goto out_new;
2535 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002536 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04002537 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002538 goto out_copy;
2539 }
2540 /* case 5, client reboot */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002541 conf = NULL;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002542 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002543 }
2544
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002545 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002546 status = nfserr_noent;
2547 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03002548 }
2549
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002550 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002551 if (unconf) /* case 4, possible retry or client restart */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002552 unhash_client_locked(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002553
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002554 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03002555out_new:
Jeff Laytonfd699b82014-07-30 08:27:14 -04002556 if (conf) {
2557 status = mark_client_expired_locked(conf);
2558 if (status)
2559 goto out;
2560 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04002561 new->cl_minorversion = cstate->minorversion;
Andrew Elbleed941642016-06-15 12:52:09 -04002562 new->cl_spo_must_allow.u.words[0] = exid->spo_must_allow[0];
2563 new->cl_spo_must_allow.u.words[1] = exid->spo_must_allow[1];
Andy Adamson0733d212009-04-03 08:28:01 +03002564
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002565 gen_clid(new, nn);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002566 add_to_unconfirmed(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002567 swap(new, conf);
Andy Adamson0733d212009-04-03 08:28:01 +03002568out_copy:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002569 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
2570 exid->clientid.cl_id = conf->cl_clientid.cl_id;
Andy Adamson0733d212009-04-03 08:28:01 +03002571
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002572 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
2573 nfsd4_set_ex_flags(conf, exid);
Andy Adamson0733d212009-04-03 08:28:01 +03002574
2575 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002576 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03002577 status = nfs_ok;
2578
2579out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002580 spin_unlock(&nn->client_lock);
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002581out_nolock:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002582 if (new)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002583 expire_client(new);
2584 if (unconf)
2585 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002586 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002587}
2588
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002589static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04002590check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002591{
Andy Adamson88e588d2009-07-23 19:02:15 -04002592 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
2593 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002594
2595 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04002596 if (slot_inuse) {
2597 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002598 return nfserr_jukebox;
2599 else
2600 return nfserr_seq_misordered;
2601 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05002602 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04002603 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03002604 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04002605 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002606 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002607 return nfserr_seq_misordered;
2608}
2609
Andy Adamson49557cc2009-07-23 19:02:16 -04002610/*
2611 * Cache the create session result into the create session single DRC
2612 * slot cache by saving the xdr structure. sl_seqid has been set.
2613 * Do this for solo or embedded create session operations.
2614 */
2615static void
2616nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002617 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04002618{
2619 slot->sl_status = nfserr;
2620 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
2621}
2622
2623static __be32
2624nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
2625 struct nfsd4_clid_slot *slot)
2626{
2627 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
2628 return slot->sl_status;
2629}
2630
Mi Jinlong1b74c252011-07-14 14:50:17 +08002631#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2632 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2633 1 + /* MIN tag is length with zero, only length */ \
2634 3 + /* version, opcount, opcode */ \
2635 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2636 /* seqid, slotID, slotID, cache */ \
2637 4 ) * sizeof(__be32))
2638
2639#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2640 2 + /* verifier: AUTH_NULL, length 0 */\
2641 1 + /* status */ \
2642 1 + /* MIN tag is length with zero, only length */ \
2643 3 + /* opcount, opcode, opstatus*/ \
2644 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2645 /* seqid, slotID, slotID, slotID, status */ \
2646 5 ) * sizeof(__be32))
2647
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002648static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08002649{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002650 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
2651
J. Bruce Fields373cd402013-04-08 15:42:12 -04002652 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
2653 return nfserr_toosmall;
2654 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
2655 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002656 ca->headerpadsz = 0;
2657 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
2658 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
2659 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
2660 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
2661 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
2662 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
2663 /*
2664 * Note decreasing slot size below client's request may make it
2665 * difficult for client to function correctly, whereas
2666 * decreasing the number of slots will (just?) affect
2667 * performance. When short on memory we therefore prefer to
2668 * decrease number of slots instead of their size. Clients that
2669 * request larger slots than they need will get poor results:
2670 */
2671 ca->maxreqs = nfsd4_get_drc_mem(ca);
2672 if (!ca->maxreqs)
2673 return nfserr_jukebox;
2674
J. Bruce Fields373cd402013-04-08 15:42:12 -04002675 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08002676}
2677
Chuck Lever45006322016-03-01 13:06:02 -05002678/*
2679 * Server's NFSv4.1 backchannel support is AUTH_SYS-only for now.
2680 * These are based on similar macros in linux/sunrpc/msg_prot.h .
2681 */
2682#define RPC_MAX_HEADER_WITH_AUTH_SYS \
2683 (RPC_CALLHDRSIZE + 2 * (2 + UNX_CALLSLACK))
2684
2685#define RPC_MAX_REPHEADER_WITH_AUTH_SYS \
2686 (RPC_REPHDRSIZE + (2 + NUL_REPLYSLACK))
2687
Kinglong Mee8a891632013-12-23 18:11:02 +08002688#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05002689 RPC_MAX_HEADER_WITH_AUTH_SYS) * sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08002690#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05002691 RPC_MAX_REPHEADER_WITH_AUTH_SYS) * \
2692 sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08002693
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002694static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
2695{
2696 ca->headerpadsz = 0;
2697
Kinglong Mee8a891632013-12-23 18:11:02 +08002698 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002699 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08002700 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002701 return nfserr_toosmall;
2702 ca->maxresp_cached = 0;
2703 if (ca->maxops < 2)
2704 return nfserr_toosmall;
2705
2706 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002707}
2708
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002709static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
2710{
2711 switch (cbs->flavor) {
2712 case RPC_AUTH_NULL:
2713 case RPC_AUTH_UNIX:
2714 return nfs_ok;
2715 default:
2716 /*
2717 * GSS case: the spec doesn't allow us to return this
2718 * error. But it also doesn't allow us not to support
2719 * GSS.
2720 * I'd rather this fail hard than return some error the
2721 * client might think it can already handle:
2722 */
2723 return nfserr_encr_alg_unsupp;
2724 }
2725}
2726
Andy Adamson069b6ad2009-04-03 08:27:58 +03002727__be32
2728nfsd4_create_session(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02002729 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03002730{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002731 struct nfsd4_create_session *cr_ses = &u->create_session;
Jeff Layton363168b2009-08-14 12:57:56 -04002732 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002733 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04002734 struct nfs4_client *old = NULL;
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04002735 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002736 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002737 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002738 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002739 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002740
Mi Jinlonga62573d2011-03-23 17:57:07 +08002741 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
2742 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002743 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
2744 if (status)
2745 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002746 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04002747 if (status)
2748 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002749 status = check_backchannel_attrs(&cr_ses->back_channel);
2750 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08002751 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002752 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08002753 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002754 if (!new)
2755 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002756 conn = alloc_conn_from_crses(rqstp, cr_ses);
2757 if (!conn)
2758 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08002759
Jeff Laytond20c11d2014-07-30 08:27:07 -04002760 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002761 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002762 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002763 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002764
2765 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002766 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002767 if (!nfsd4_mach_creds_match(conf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002768 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002769 cs_slot = &conf->cl_cs_slot;
2770 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Kinglong Meef5e22bb2015-07-13 17:32:34 +08002771 if (status) {
2772 if (status == nfserr_replay_cache)
2773 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002774 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002775 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002776 } else if (unconf) {
2777 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04002778 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002779 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002780 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002781 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002782 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002783 if (!nfsd4_mach_creds_match(unconf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002784 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002785 cs_slot = &unconf->cl_cs_slot;
2786 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002787 if (status) {
2788 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002789 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002790 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002791 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002792 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002793 if (old) {
Jeff Laytond20c11d2014-07-30 08:27:07 -04002794 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04002795 if (status) {
2796 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002797 goto out_free_conn;
Jeff Layton7abea1e2014-07-30 08:27:13 -04002798 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04002799 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002800 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002801 conf = unconf;
2802 } else {
2803 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002804 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002805 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002806 status = nfs_ok;
Chuck Lever4ce85c82016-03-01 13:05:27 -05002807 /* Persistent sessions are not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002808 cr_ses->flags &= ~SESSION4_PERSIST;
Chuck Lever4ce85c82016-03-01 13:05:27 -05002809 /* Upshifting from TCP to RDMA is not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002810 cr_ses->flags &= ~SESSION4_RDMA;
2811
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002812 init_session(rqstp, new, conf, cr_ses);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002813 nfsd4_get_session_locked(new);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002814
J. Bruce Fieldsac7c46f22010-06-14 19:01:57 -04002815 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002816 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04002817 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04002818 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002819
Jeff Laytond20c11d2014-07-30 08:27:07 -04002820 /* cache solo and embedded create sessions under the client_lock */
Andy Adamson49557cc2009-07-23 19:02:16 -04002821 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002822 spin_unlock(&nn->client_lock);
2823 /* init connection and backchannel */
2824 nfsd4_init_conn(rqstp, conn, new);
2825 nfsd4_put_session(new);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002826 if (old)
2827 expire_client(old);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002828 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002829out_free_conn:
Jeff Laytond20c11d2014-07-30 08:27:07 -04002830 spin_unlock(&nn->client_lock);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002831 free_conn(conn);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002832 if (old)
2833 expire_client(old);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002834out_free_session:
2835 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002836out_release_drc_mem:
2837 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04002838 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002839}
2840
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002841static __be32 nfsd4_map_bcts_dir(u32 *dir)
2842{
2843 switch (*dir) {
2844 case NFS4_CDFC4_FORE:
2845 case NFS4_CDFC4_BACK:
2846 return nfs_ok;
2847 case NFS4_CDFC4_FORE_OR_BOTH:
2848 case NFS4_CDFC4_BACK_OR_BOTH:
2849 *dir = NFS4_CDFC4_BOTH;
2850 return nfs_ok;
2851 };
2852 return nfserr_inval;
2853}
2854
Christoph Hellwigeb698532017-05-08 20:58:35 +02002855__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp,
2856 struct nfsd4_compound_state *cstate,
2857 union nfsd4_op_u *u)
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002858{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002859 struct nfsd4_backchannel_ctl *bc = &u->backchannel_ctl;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002860 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002861 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002862 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002863
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002864 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
2865 if (status)
2866 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002867 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002868 session->se_cb_prog = bc->bc_cb_program;
2869 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002870 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002871
2872 nfsd4_probe_callback(session->se_client);
2873
2874 return nfs_ok;
2875}
2876
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002877__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
2878 struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02002879 union nfsd4_op_u *u)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002880{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002881 struct nfsd4_bind_conn_to_session *bcts = &u->bind_conn_to_session;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002882 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002883 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002884 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002885 struct net *net = SVC_NET(rqstp);
2886 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002887
2888 if (!nfsd4_last_compound_op(rqstp))
2889 return nfserr_not_only_op;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002890 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002891 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002892 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002893 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002894 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002895 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002896 if (!nfsd4_mach_creds_match(session->se_client, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002897 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002898 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002899 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002900 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002901 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002902 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002903 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002904 goto out;
2905 nfsd4_init_conn(rqstp, conn, session);
2906 status = nfs_ok;
2907out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002908 nfsd4_put_session(session);
2909out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002910 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002911}
2912
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002913static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
2914{
2915 if (!session)
2916 return 0;
2917 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
2918}
2919
Andy Adamson069b6ad2009-04-03 08:27:58 +03002920__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02002921nfsd4_destroy_session(struct svc_rqst *r, struct nfsd4_compound_state *cstate,
2922 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03002923{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002924 struct nfsd4_destroy_session *sessionid = &u->destroy_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03002925 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002926 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002927 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002928 struct net *net = SVC_NET(r);
2929 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002930
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002931 status = nfserr_not_only_op;
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002932 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04002933 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002934 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002935 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04002936 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03002937 dump_sessionid(__func__, &sessionid->sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002938 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002939 ses = find_in_sessionid_hashtbl(&sessionid->sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002940 if (!ses)
2941 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002942 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002943 if (!nfsd4_mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002944 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002945 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002946 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002947 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03002948 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002949 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002950
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05002951 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04002952
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002953 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002954 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002955out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002956 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002957out_client_lock:
2958 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002959out:
Benny Halevye10e0cf2009-04-03 08:28:38 +03002960 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002961}
2962
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002963static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04002964{
2965 struct nfsd4_conn *c;
2966
2967 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002968 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04002969 return c;
2970 }
2971 }
2972 return NULL;
2973}
2974
J. Bruce Fields57266a62013-04-13 14:27:29 -04002975static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04002976{
2977 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002978 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002979 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04002980 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002981
2982 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04002983 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002984 if (c)
2985 goto out_free;
2986 status = nfserr_conn_not_bound_to_session;
2987 if (clp->cl_mach_cred)
2988 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04002989 __nfsd4_hash_conn(new, ses);
2990 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04002991 ret = nfsd4_register_conn(new);
2992 if (ret)
2993 /* oops; xprt is already down: */
2994 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002995 return nfs_ok;
2996out_free:
2997 spin_unlock(&clp->cl_lock);
2998 free_conn(new);
2999 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003000}
3001
Mi Jinlong868b89c2011-04-27 09:09:58 +08003002static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
3003{
3004 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3005
3006 return args->opcnt > session->se_fchannel.maxops;
3007}
3008
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003009static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
3010 struct nfsd4_session *session)
3011{
3012 struct xdr_buf *xb = &rqstp->rq_arg;
3013
3014 return xb->len > session->se_fchannel.maxreq_sz;
3015}
3016
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003017static bool replay_matches_cache(struct svc_rqst *rqstp,
3018 struct nfsd4_sequence *seq, struct nfsd4_slot *slot)
3019{
3020 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3021
3022 if ((bool)(slot->sl_flags & NFSD4_SLOT_CACHETHIS) !=
3023 (bool)seq->cachethis)
3024 return false;
3025 /*
3026 * If there's an error than the reply can have fewer ops than
3027 * the call. But if we cached a reply with *more* ops than the
3028 * call you're sending us now, then this new call is clearly not
3029 * really a replay of the old one:
3030 */
3031 if (slot->sl_opcnt < argp->opcnt)
3032 return false;
3033 /* This is the only check explicitly called by spec: */
3034 if (!same_creds(&rqstp->rq_cred, &slot->sl_cred))
3035 return false;
3036 /*
3037 * There may be more comparisons we could actually do, but the
3038 * spec doesn't require us to catch every case where the calls
3039 * don't match (that would require caching the call as well as
3040 * the reply), so we don't bother.
3041 */
3042 return true;
3043}
3044
Andy Adamson069b6ad2009-04-03 08:27:58 +03003045__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003046nfsd4_sequence(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3047 union nfsd4_op_u *u)
Andy Adamson069b6ad2009-04-03 08:27:58 +03003048{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003049 struct nfsd4_sequence *seq = &u->sequence;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003050 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003051 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003052 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003053 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003054 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003055 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003056 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003057 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003058 struct net *net = SVC_NET(rqstp);
3059 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003060
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003061 if (resp->opcnt != 1)
3062 return nfserr_sequence_pos;
3063
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003064 /*
3065 * Will be either used or freed by nfsd4_sequence_check_conn
3066 * below.
3067 */
3068 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
3069 if (!conn)
3070 return nfserr_jukebox;
3071
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003072 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003073 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003074 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04003075 goto out_no_session;
3076 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003077
Mi Jinlong868b89c2011-04-27 09:09:58 +08003078 status = nfserr_too_many_ops;
3079 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003080 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08003081
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003082 status = nfserr_req_too_big;
3083 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003084 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003085
Benny Halevyb85d4c02009-04-03 08:28:08 +03003086 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003087 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003088 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003089
Andy Adamson557ce262009-08-28 08:45:04 -04003090 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03003091 dprintk("%s: slotid %d\n", __func__, seq->slotid);
3092
Andy Adamsona8dfdae2009-08-28 08:45:02 -04003093 /* We do not negotiate the number of slots yet, so set the
3094 * maxslots to the session maxreqs which is used to encode
3095 * sr_highest_slotid and the sr_target_slot id to maxslots */
3096 seq->maxslots = session->se_fchannel.maxreqs;
3097
J. Bruce Fields73e79482012-02-13 16:39:00 -05003098 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
3099 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003100 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003101 status = nfserr_seq_misordered;
3102 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003103 goto out_put_session;
J. Bruce Fields53da6a52017-10-17 20:38:49 -04003104 status = nfserr_seq_false_retry;
3105 if (!replay_matches_cache(rqstp, seq, slot))
3106 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003107 cstate->slot = slot;
3108 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003109 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03003110 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04003111 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03003112 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003113 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003114 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003115 }
3116 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003117 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003118
J. Bruce Fields57266a62013-04-13 14:27:29 -04003119 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003120 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003121 if (status)
3122 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003123
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003124 buflen = (seq->cachethis) ?
3125 session->se_fchannel.maxresp_cached :
3126 session->se_fchannel.maxresp_sz;
3127 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
3128 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04003129 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003130 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04003131 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003132
3133 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003134 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003135 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003136 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05003137 if (seq->cachethis)
3138 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003139 else
3140 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003141
3142 cstate->slot = slot;
3143 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003144 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003145
Benny Halevyb85d4c02009-04-03 08:28:08 +03003146out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04003147 switch (clp->cl_cb_state) {
3148 case NFSD4_CB_DOWN:
3149 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
3150 break;
3151 case NFSD4_CB_FAULT:
3152 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
3153 break;
3154 default:
3155 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003156 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04003157 if (!list_empty(&clp->cl_revoked))
3158 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003159out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08003160 if (conn)
3161 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003162 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003163 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003164out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003165 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003166 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003167}
3168
Trond Myklebustb6076642014-06-30 11:48:35 -04003169void
3170nfsd4_sequence_done(struct nfsd4_compoundres *resp)
3171{
3172 struct nfsd4_compound_state *cs = &resp->cstate;
3173
3174 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04003175 if (cs->status != nfserr_replay_cache) {
3176 nfsd4_store_cache_entry(resp);
3177 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
3178 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003179 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04003180 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003181 } else if (cs->clp)
3182 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04003183}
3184
Mi Jinlong345c2842011-10-20 17:51:39 +08003185__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003186nfsd4_destroy_clientid(struct svc_rqst *rqstp,
3187 struct nfsd4_compound_state *cstate,
3188 union nfsd4_op_u *u)
Mi Jinlong345c2842011-10-20 17:51:39 +08003189{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003190 struct nfsd4_destroy_clientid *dc = &u->destroy_clientid;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003191 struct nfs4_client *conf, *unconf;
3192 struct nfs4_client *clp = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003193 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003194 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08003195
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003196 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003197 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003198 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003199 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08003200
3201 if (conf) {
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04003202 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08003203 status = nfserr_clientid_busy;
3204 goto out;
3205 }
Jeff Laytonfd699b82014-07-30 08:27:14 -04003206 status = mark_client_expired_locked(conf);
3207 if (status)
3208 goto out;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003209 clp = conf;
Mi Jinlong345c2842011-10-20 17:51:39 +08003210 } else if (unconf)
3211 clp = unconf;
3212 else {
3213 status = nfserr_stale_clientid;
3214 goto out;
3215 }
Andrew Elblededeb132016-06-15 12:52:08 -04003216 if (!nfsd4_mach_creds_match(clp, rqstp)) {
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003217 clp = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003218 status = nfserr_wrong_cred;
3219 goto out;
3220 }
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003221 unhash_client_locked(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003222out:
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003223 spin_unlock(&nn->client_lock);
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003224 if (clp)
3225 expire_client(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003226 return status;
3227}
3228
Andy Adamson069b6ad2009-04-03 08:27:58 +03003229__be32
Christoph Hellwigeb698532017-05-08 20:58:35 +02003230nfsd4_reclaim_complete(struct svc_rqst *rqstp,
3231 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003232{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003233 struct nfsd4_reclaim_complete *rc = &u->reclaim_complete;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003234 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003235
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003236 if (rc->rca_one_fs) {
3237 if (!cstate->current_fh.fh_dentry)
3238 return nfserr_nofilehandle;
3239 /*
3240 * We don't take advantage of the rca_one_fs case.
3241 * That's OK, it's optional, we can safely ignore it.
3242 */
Christophe JAILLETd28c4422016-07-02 08:24:32 +02003243 return nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003244 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003245
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003246 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04003247 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
3248 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003249 goto out;
3250
3251 status = nfserr_stale_clientid;
3252 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003253 /*
3254 * The following error isn't really legal.
3255 * But we only get here if the client just explicitly
3256 * destroyed the client. Surely it no longer cares what
3257 * error it gets back on an operation for the dead
3258 * client.
3259 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003260 goto out;
3261
3262 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04003263 nfsd4_client_record_create(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003264out:
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003265 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003266}
3267
3268__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003269nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003270 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003272 struct nfsd4_setclientid *setclid = &u->setclientid;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04003273 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 nfs4_verifier clverifier = setclid->se_verf;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003275 struct nfs4_client *conf, *new;
3276 struct nfs4_client *unconf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003277 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003278 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3279
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003280 new = create_client(clname, rqstp, &clverifier);
3281 if (new == NULL)
3282 return nfserr_jukebox;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003283 /* Cases below refer to rfc 3530 section 14.2.33: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003284 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003285 conf = find_confirmed_client_by_name(&clname, nn);
J. Bruce Fields2b634822015-10-15 15:33:23 -04003286 if (conf && client_has_state(conf)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003287 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05003289 if (clp_used_exchangeid(conf))
3290 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04003291 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04003292 char addr_str[INET6_ADDRSTRLEN];
3293 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
3294 sizeof(addr_str));
3295 dprintk("NFSD: setclientid: string in use by client "
3296 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 goto out;
3298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003300 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04003301 if (unconf)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003302 unhash_client_locked(unconf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003303 if (conf && same_verf(&conf->cl_verifier, &clverifier)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003304 /* case 1: probable callback update */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 copy_clid(new, conf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003306 gen_confirm(new, nn);
3307 } else /* case 4 (new client) or cases 2, 3 (client reboot): */
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003308 gen_clid(new, nn);
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04003309 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09003310 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003311 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
3313 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
3314 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003315 new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 status = nfs_ok;
3317out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003318 spin_unlock(&nn->client_lock);
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003319 if (new)
3320 free_client(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003321 if (unconf)
3322 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 return status;
3324}
3325
3326
Al Virob37ad282006-10-19 23:28:59 -07003327__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003328nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02003329 struct nfsd4_compound_state *cstate,
3330 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331{
Christoph Hellwigeb698532017-05-08 20:58:35 +02003332 struct nfsd4_setclientid_confirm *setclientid_confirm =
3333 &u->setclientid_confirm;
NeilBrown21ab45a2005-06-23 22:04:14 -07003334 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003335 struct nfs4_client *old = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
3337 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07003338 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003339 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003341 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 return nfserr_stale_clientid;
NeilBrown21ab45a2005-06-23 22:04:14 -07003343
Jeff Laytond20c11d2014-07-30 08:27:07 -04003344 spin_lock(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003345 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003346 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003347 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04003348 * We try hard to give out unique clientid's, so if we get an
3349 * attempt to confirm the same clientid with a different cred,
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003350 * the client may be buggy; this should never happen.
3351 *
3352 * Nevertheless, RFC 7530 recommends INUSE for this case:
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003353 */
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003354 status = nfserr_clid_inuse;
J. Bruce Fields8695b902012-05-19 10:05:58 -04003355 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
3356 goto out;
3357 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
3358 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003359 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003360 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003361 if (conf && same_verf(&confirm, &conf->cl_confirm)) {
3362 /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 status = nfs_ok;
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003364 } else /* case 4: client hasn't noticed we rebooted yet? */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003365 status = nfserr_stale_clientid;
3366 goto out;
3367 }
3368 status = nfs_ok;
3369 if (conf) { /* case 1: callback update */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003370 old = unconf;
3371 unhash_client_locked(old);
J. Bruce Fields8695b902012-05-19 10:05:58 -04003372 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003373 } else { /* case 3: normal case; new or rebooted client */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003374 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
3375 if (old) {
J. Bruce Fields2b634822015-10-15 15:33:23 -04003376 status = nfserr_clid_inuse;
3377 if (client_has_state(old)
3378 && !same_creds(&unconf->cl_cred,
3379 &old->cl_cred))
3380 goto out;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003381 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04003382 if (status) {
3383 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003384 goto out;
Jeff Layton7abea1e2014-07-30 08:27:13 -04003385 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003386 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04003387 move_to_confirmed(unconf);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003388 conf = unconf;
NeilBrown08e89872005-06-23 22:04:11 -07003389 }
Jeff Laytond20c11d2014-07-30 08:27:07 -04003390 get_client_locked(conf);
3391 spin_unlock(&nn->client_lock);
3392 nfsd4_probe_callback(conf);
3393 spin_lock(&nn->client_lock);
3394 put_client_renew_locked(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395out:
Jeff Laytond20c11d2014-07-30 08:27:07 -04003396 spin_unlock(&nn->client_lock);
3397 if (old)
3398 expire_client(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 return status;
3400}
3401
J. Bruce Fields32513b42011-10-13 16:00:16 -04003402static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403{
J. Bruce Fields32513b42011-10-13 16:00:16 -04003404 return kmem_cache_alloc(file_slab, GFP_KERNEL);
3405}
3406
3407/* OPEN Share state helper functions */
Jeff Layton5b095e92014-10-23 08:01:02 -04003408static void nfsd4_init_file(struct knfsd_fh *fh, unsigned int hashval,
3409 struct nfs4_file *fp)
J. Bruce Fields32513b42011-10-13 16:00:16 -04003410{
Trond Myklebust950e0112014-06-30 11:48:31 -04003411 lockdep_assert_held(&state_lock);
3412
Elena Reshetova818a34e2017-10-20 12:53:30 +03003413 refcount_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003414 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04003415 INIT_LIST_HEAD(&fp->fi_stateids);
3416 INIT_LIST_HEAD(&fp->fi_delegations);
Sachin Bhamare8287f002015-04-27 14:50:14 +02003417 INIT_LIST_HEAD(&fp->fi_clnt_odstate);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04003418 fh_copy_shallow(&fp->fi_fhandle, fh);
Jeff Layton0c637be2014-08-22 12:05:43 -04003419 fp->fi_deleg_file = NULL;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003420 fp->fi_had_conflict = false;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003421 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003422 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
3423 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003424#ifdef CONFIG_NFSD_PNFS
3425 INIT_LIST_HEAD(&fp->fi_lo_states);
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02003426 atomic_set(&fp->fi_lo_recalls, 0);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003427#endif
Jeff Layton5b095e92014-10-23 08:01:02 -04003428 hlist_add_head_rcu(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429}
3430
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003431void
NeilBrowne60d4392005-06-23 22:03:01 -07003432nfsd4_free_slabs(void)
3433{
Sachin Bhamare8287f002015-04-27 14:50:14 +02003434 kmem_cache_destroy(odstate_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07003435 kmem_cache_destroy(openowner_slab);
3436 kmem_cache_destroy(lockowner_slab);
3437 kmem_cache_destroy(file_slab);
3438 kmem_cache_destroy(stateid_slab);
3439 kmem_cache_destroy(deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07003440}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Bryan Schumaker72083392011-11-01 15:24:59 -04003442int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443nfsd4_init_slabs(void)
3444{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003445 openowner_slab = kmem_cache_create("nfsd4_openowners",
3446 sizeof(struct nfs4_openowner), 0, 0, NULL);
3447 if (openowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003448 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003449 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08003450 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003451 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003452 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07003453 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09003454 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07003455 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003456 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07003457 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003458 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07003459 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003460 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07003461 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09003462 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07003463 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003464 goto out_free_stateid_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +02003465 odstate_slab = kmem_cache_create("nfsd4_odstate",
3466 sizeof(struct nfs4_clnt_odstate), 0, 0, NULL);
3467 if (odstate_slab == NULL)
3468 goto out_free_deleg_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07003470
Sachin Bhamare8287f002015-04-27 14:50:14 +02003471out_free_deleg_slab:
3472 kmem_cache_destroy(deleg_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07003473out_free_stateid_slab:
3474 kmem_cache_destroy(stateid_slab);
3475out_free_file_slab:
3476 kmem_cache_destroy(file_slab);
3477out_free_lockowner_slab:
3478 kmem_cache_destroy(lockowner_slab);
3479out_free_openowner_slab:
3480 kmem_cache_destroy(openowner_slab);
3481out:
NeilBrowne60d4392005-06-23 22:03:01 -07003482 dprintk("nfsd4: out of memory while initializing nfsv4\n");
3483 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484}
3485
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003486static void init_nfs4_replay(struct nfs4_replay *rp)
3487{
3488 rp->rp_status = nfserr_serverfault;
3489 rp->rp_buflen = 0;
3490 rp->rp_buf = rp->rp_ibuf;
Jeff Layton58fb12e2014-07-29 21:34:27 -04003491 mutex_init(&rp->rp_mutex);
3492}
3493
3494static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
3495 struct nfs4_stateowner *so)
3496{
3497 if (!nfsd4_has_session(cstate)) {
3498 mutex_lock(&so->so_replay.rp_mutex);
Kinglong Meeb5971af2014-08-22 10:18:43 -04003499 cstate->replay_owner = nfs4_get_stateowner(so);
Jeff Layton58fb12e2014-07-29 21:34:27 -04003500 }
3501}
3502
3503void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
3504{
3505 struct nfs4_stateowner *so = cstate->replay_owner;
3506
3507 if (so != NULL) {
3508 cstate->replay_owner = NULL;
3509 mutex_unlock(&so->so_replay.rp_mutex);
3510 nfs4_put_stateowner(so);
3511 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003512}
3513
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003514static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515{
3516 struct nfs4_stateowner *sop;
3517
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003518 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003519 if (!sop)
3520 return NULL;
3521
3522 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
3523 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003524 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003525 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003527 sop->so_owner.len = owner->len;
3528
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003529 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003530 sop->so_client = clp;
3531 init_nfs4_replay(&sop->so_replay);
Jeff Layton6b180f02014-07-29 21:34:26 -04003532 atomic_set(&sop->so_count, 1);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003533 return sop;
3534}
3535
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003536static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003537{
Trond Myklebustd4f04892014-07-29 21:34:36 -04003538 lockdep_assert_held(&clp->cl_lock);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003539
Trond Myklebustd4f04892014-07-29 21:34:36 -04003540 list_add(&oo->oo_owner.so_strhash,
3541 &clp->cl_ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003542 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543}
3544
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003545static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
3546{
Trond Myklebustd4f04892014-07-29 21:34:36 -04003547 unhash_openowner_locked(openowner(so));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003548}
3549
Jeff Layton6b180f02014-07-29 21:34:26 -04003550static void nfs4_free_openowner(struct nfs4_stateowner *so)
3551{
3552 struct nfs4_openowner *oo = openowner(so);
3553
3554 kmem_cache_free(openowner_slab, oo);
3555}
3556
3557static const struct nfs4_stateowner_operations openowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003558 .so_unhash = nfs4_unhash_openowner,
3559 .so_free = nfs4_free_openowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04003560};
3561
Andrew Elble7fc05642015-11-05 20:42:43 -05003562static struct nfs4_ol_stateid *
3563nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
3564{
3565 struct nfs4_ol_stateid *local, *ret = NULL;
3566 struct nfs4_openowner *oo = open->op_openowner;
3567
3568 lockdep_assert_held(&fp->fi_lock);
3569
3570 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
3571 /* ignore lock owners */
3572 if (local->st_stateowner->so_is_open_owner == 0)
3573 continue;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04003574 if (local->st_stateowner != &oo->oo_owner)
3575 continue;
3576 if (local->st_stid.sc_type == NFS4_OPEN_STID) {
Andrew Elble7fc05642015-11-05 20:42:43 -05003577 ret = local;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03003578 refcount_inc(&ret->st_stid.sc_count);
Andrew Elble7fc05642015-11-05 20:42:43 -05003579 break;
3580 }
3581 }
3582 return ret;
3583}
3584
Trond Myklebust15ca08d2017-11-03 08:00:10 -04003585static __be32
3586nfsd4_verify_open_stid(struct nfs4_stid *s)
3587{
3588 __be32 ret = nfs_ok;
3589
3590 switch (s->sc_type) {
3591 default:
3592 break;
Trond Myklebust4f176412018-01-12 17:42:30 -05003593 case 0:
Trond Myklebust15ca08d2017-11-03 08:00:10 -04003594 case NFS4_CLOSED_STID:
3595 case NFS4_CLOSED_DELEG_STID:
3596 ret = nfserr_bad_stateid;
3597 break;
3598 case NFS4_REVOKED_DELEG_STID:
3599 ret = nfserr_deleg_revoked;
3600 }
3601 return ret;
3602}
3603
3604/* Lock the stateid st_mutex, and deal with races with CLOSE */
3605static __be32
3606nfsd4_lock_ol_stateid(struct nfs4_ol_stateid *stp)
3607{
3608 __be32 ret;
3609
Andrew Elble4f34bd02017-11-08 17:29:51 -05003610 mutex_lock_nested(&stp->st_mutex, LOCK_STATEID_MUTEX);
Trond Myklebust15ca08d2017-11-03 08:00:10 -04003611 ret = nfsd4_verify_open_stid(&stp->st_stid);
3612 if (ret != nfs_ok)
3613 mutex_unlock(&stp->st_mutex);
3614 return ret;
3615}
3616
3617static struct nfs4_ol_stateid *
3618nfsd4_find_and_lock_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
3619{
3620 struct nfs4_ol_stateid *stp;
3621 for (;;) {
3622 spin_lock(&fp->fi_lock);
3623 stp = nfsd4_find_existing_open(fp, open);
3624 spin_unlock(&fp->fi_lock);
3625 if (!stp || nfsd4_lock_ol_stateid(stp) == nfs_ok)
3626 break;
3627 nfs4_put_stid(&stp->st_stid);
3628 }
3629 return stp;
3630}
3631
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003632static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04003633alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04003634 struct nfsd4_compound_state *cstate)
3635{
Trond Myklebust13d6f662014-06-30 11:48:45 -04003636 struct nfs4_client *clp = cstate->clp;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04003637 struct nfs4_openowner *oo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003639 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
3640 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 return NULL;
Jeff Layton6b180f02014-07-29 21:34:26 -04003642 oo->oo_owner.so_ops = &openowner_ops;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003643 oo->oo_owner.so_is_open_owner = 1;
3644 oo->oo_owner.so_seqid = open->op_seqid;
Jeff Laytond3134b12014-07-29 21:34:32 -04003645 oo->oo_flags = 0;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04003646 if (nfsd4_has_session(cstate))
3647 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003648 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04003649 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003650 INIT_LIST_HEAD(&oo->oo_close_lru);
Trond Myklebustd4f04892014-07-29 21:34:36 -04003651 spin_lock(&clp->cl_lock);
3652 ret = find_openstateowner_str_locked(strhashval, open, clp);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04003653 if (ret == NULL) {
3654 hash_openowner(oo, clp, strhashval);
3655 ret = oo;
3656 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08003657 nfs4_free_stateowner(&oo->oo_owner);
3658
Trond Myklebustd4f04892014-07-29 21:34:36 -04003659 spin_unlock(&clp->cl_lock);
Jeff Laytonc5952332015-03-23 10:53:42 -04003660 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661}
3662
Andrew Elble7fc05642015-11-05 20:42:43 -05003663static struct nfs4_ol_stateid *
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003664init_open_stateid(struct nfs4_file *fp, struct nfsd4_open *open)
Andrew Elble7fc05642015-11-05 20:42:43 -05003665{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Andrew Elble7fc05642015-11-05 20:42:43 -05003667 struct nfs4_openowner *oo = open->op_openowner;
3668 struct nfs4_ol_stateid *retstp = NULL;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003669 struct nfs4_ol_stateid *stp;
Andrew Elble7fc05642015-11-05 20:42:43 -05003670
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003671 stp = open->op_stp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003672 /* We are moving these outside of the spinlocks to avoid the warnings */
3673 mutex_init(&stp->st_mutex);
Andrew Elble4f34bd02017-11-08 17:29:51 -05003674 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003675
Trond Myklebust15ca08d2017-11-03 08:00:10 -04003676retry:
Andrew Elble7fc05642015-11-05 20:42:43 -05003677 spin_lock(&oo->oo_owner.so_client->cl_lock);
3678 spin_lock(&fp->fi_lock);
3679
3680 retstp = nfsd4_find_existing_open(fp, open);
3681 if (retstp)
3682 goto out_unlock;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003683
3684 open->op_stp = NULL;
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03003685 refcount_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05003686 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04003687 INIT_LIST_HEAD(&stp->st_locks);
Kinglong Meeb5971af2014-08-22 10:18:43 -04003688 stp->st_stateowner = nfs4_get_stateowner(&oo->oo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07003689 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04003690 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 stp->st_access_bmap = 0;
3692 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07003693 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04003694 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003695 list_add(&stp->st_perfile, &fp->fi_stateids);
Andrew Elble7fc05642015-11-05 20:42:43 -05003696
3697out_unlock:
Trond Myklebust1d31a252014-07-10 14:07:25 -04003698 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04003699 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003700 if (retstp) {
Trond Myklebust15ca08d2017-11-03 08:00:10 -04003701 /* Handle races with CLOSE */
3702 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
3703 nfs4_put_stid(&retstp->st_stid);
3704 goto retry;
3705 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003706 /* To keep mutex tracking happy */
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003707 mutex_unlock(&stp->st_mutex);
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003708 stp = retstp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003709 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003710 return stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711}
3712
Jeff Laytond3134b12014-07-29 21:34:32 -04003713/*
3714 * In the 4.0 case we need to keep the owners around a little while to handle
3715 * CLOSE replay. We still do need to release any file access that is held by
3716 * them before returning however.
3717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718static void
Jeff Laytond3134b12014-07-29 21:34:32 -04003719move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720{
Jeff Layton217526e2014-07-30 08:27:11 -04003721 struct nfs4_ol_stateid *last;
Jeff Laytond3134b12014-07-29 21:34:32 -04003722 struct nfs4_openowner *oo = openowner(s->st_stateowner);
3723 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
3724 nfsd_net_id);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003725
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003726 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Jeff Laytonb401be222014-07-29 21:34:33 -04003728 /*
3729 * We know that we hold one reference via nfsd4_close, and another
3730 * "persistent" reference for the client. If the refcount is higher
3731 * than 2, then there are still calls in progress that are using this
3732 * stateid. We can't put the sc_file reference until they are finished.
3733 * Wait for the refcount to drop to 2. Since it has been unhashed,
3734 * there should be no danger of the refcount going back up again at
3735 * this point.
3736 */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03003737 wait_event(close_wq, refcount_read(&s->st_stid.sc_count) == 2);
Jeff Laytonb401be222014-07-29 21:34:33 -04003738
Jeff Laytond3134b12014-07-29 21:34:32 -04003739 release_all_access(s);
3740 if (s->st_stid.sc_file) {
3741 put_nfs4_file(s->st_stid.sc_file);
3742 s->st_stid.sc_file = NULL;
3743 }
Jeff Layton217526e2014-07-30 08:27:11 -04003744
3745 spin_lock(&nn->client_lock);
3746 last = oo->oo_last_closed_stid;
Jeff Laytond3134b12014-07-29 21:34:32 -04003747 oo->oo_last_closed_stid = s;
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003748 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003749 oo->oo_time = get_seconds();
Jeff Layton217526e2014-07-30 08:27:11 -04003750 spin_unlock(&nn->client_lock);
3751 if (last)
3752 nfs4_put_stid(&last->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753}
3754
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755/* search file_hashtbl[] for file */
3756static struct nfs4_file *
Jeff Layton5b095e92014-10-23 08:01:02 -04003757find_file_locked(struct knfsd_fh *fh, unsigned int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 struct nfs4_file *fp;
3760
Jeff Layton5b095e92014-10-23 08:01:02 -04003761 hlist_for_each_entry_rcu(fp, &file_hashtbl[hashval], fi_hash) {
Christoph Hellwig4d94c2e2014-08-14 08:41:48 +02003762 if (fh_match(&fp->fi_fhandle, fh)) {
Elena Reshetova818a34e2017-10-20 12:53:30 +03003763 if (refcount_inc_not_zero(&fp->fi_ref))
Jeff Layton5b095e92014-10-23 08:01:02 -04003764 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07003765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 }
3767 return NULL;
3768}
3769
Christoph Hellwige6ba76e2014-08-14 08:50:16 +02003770struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003771find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003772{
3773 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04003774 unsigned int hashval = file_hashval(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003775
Jeff Layton5b095e92014-10-23 08:01:02 -04003776 rcu_read_lock();
3777 fp = find_file_locked(fh, hashval);
3778 rcu_read_unlock();
Trond Myklebust950e0112014-06-30 11:48:31 -04003779 return fp;
3780}
3781
3782static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003783find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003784{
3785 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04003786 unsigned int hashval = file_hashval(fh);
3787
3788 rcu_read_lock();
3789 fp = find_file_locked(fh, hashval);
3790 rcu_read_unlock();
3791 if (fp)
3792 return fp;
Trond Myklebust950e0112014-06-30 11:48:31 -04003793
3794 spin_lock(&state_lock);
Jeff Layton5b095e92014-10-23 08:01:02 -04003795 fp = find_file_locked(fh, hashval);
3796 if (likely(fp == NULL)) {
3797 nfsd4_init_file(fh, hashval, new);
Trond Myklebust950e0112014-06-30 11:48:31 -04003798 fp = new;
3799 }
3800 spin_unlock(&state_lock);
3801
3802 return fp;
3803}
3804
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04003805/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 * Called to check deny when READ with all zero stateid or
3807 * WRITE with all zero or all one stateid
3808 */
Al Virob37ad282006-10-19 23:28:59 -07003809static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
3811{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003813 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Trond Myklebustca943212014-07-23 16:17:39 -04003815 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07003816 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003817 return ret;
3818 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04003819 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003820 if (fp->fi_share_deny & deny_type)
3821 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003822 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07003823 put_nfs4_file(fp);
3824 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825}
3826
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003827static void nfsd4_cb_recall_prepare(struct nfsd4_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828{
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003829 struct nfs4_delegation *dp = cb_to_delegation(cb);
Trond Myklebust11b91642014-07-29 21:34:08 -04003830 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
3831 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04003832
Trond Myklebust11b91642014-07-29 21:34:08 -04003833 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04003834
Jeff Layton02e12152014-07-16 10:31:57 -04003835 /*
3836 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04003837 * already holding inode->i_lock.
3838 *
Jeff Laytondff13992014-07-08 14:02:49 -04003839 * If the dl_time != 0, then we know that it has already been
3840 * queued for a lease break. Don't queue it again.
3841 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04003842 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04003843 if (dp->dl_time == 0) {
Jeff Laytondff13992014-07-08 14:02:49 -04003844 dp->dl_time = get_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04003845 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04003846 }
Jeff Layton02e12152014-07-16 10:31:57 -04003847 spin_unlock(&state_lock);
3848}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003850static int nfsd4_cb_recall_done(struct nfsd4_callback *cb,
3851 struct rpc_task *task)
3852{
3853 struct nfs4_delegation *dp = cb_to_delegation(cb);
3854
Andrew Elblea4579742015-08-31 12:06:41 -04003855 if (dp->dl_stid.sc_type == NFS4_CLOSED_DELEG_STID)
3856 return 1;
3857
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003858 switch (task->tk_status) {
3859 case 0:
3860 return 1;
3861 case -EBADHANDLE:
3862 case -NFS4ERR_BAD_STATEID:
3863 /*
3864 * Race: client probably got cb_recall before open reply
3865 * granting delegation.
3866 */
3867 if (dp->dl_retries--) {
3868 rpc_delay(task, 2 * HZ);
3869 return 0;
3870 }
3871 /*FALLTHRU*/
3872 default:
3873 return -1;
3874 }
3875}
3876
3877static void nfsd4_cb_recall_release(struct nfsd4_callback *cb)
3878{
3879 struct nfs4_delegation *dp = cb_to_delegation(cb);
3880
3881 nfs4_put_stid(&dp->dl_stid);
3882}
3883
Julia Lawallc4cb8972015-11-21 22:57:39 +01003884static const struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003885 .prepare = nfsd4_cb_recall_prepare,
3886 .done = nfsd4_cb_recall_done,
3887 .release = nfsd4_cb_recall_release,
3888};
3889
Jeff Layton02e12152014-07-16 10:31:57 -04003890static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
3891{
3892 /*
3893 * We're assuming the state code never drops its reference
3894 * without first removing the lease. Since we're in this lease
3895 * callback (and since the lease code is serialized by the kernel
3896 * lock) we know the server hasn't removed the lease yet, we know
3897 * it's safe to take a reference.
3898 */
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03003899 refcount_inc(&dp->dl_stid.sc_count);
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02003900 nfsd4_run_cb(&dp->dl_recall);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003901}
3902
Jeff Layton1c8c6012013-06-21 08:58:15 -04003903/* Called from break_lease() with i_lock held. */
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003904static bool
3905nfsd_break_deleg_cb(struct file_lock *fl)
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003906{
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003907 bool ret = false;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003908 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
3909 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003910
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003911 if (!fp) {
3912 WARN(1, "(%p)->fl_owner NULL\n", fl);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003913 return ret;
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003914 }
3915 if (fp->fi_had_conflict) {
3916 WARN(1, "duplicate break on %p\n", fp);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003917 return ret;
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003918 }
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003919 /*
3920 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003921 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003922 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003923 */
3924 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
Jeff Layton02e12152014-07-16 10:31:57 -04003926 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003927 fp->fi_had_conflict = true;
3928 /*
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003929 * If there are no delegations on the list, then return true
3930 * so that the lease code will go ahead and delete it.
Jeff Layton417c6622014-07-21 09:34:57 -04003931 */
3932 if (list_empty(&fp->fi_delegations))
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003933 ret = true;
Jeff Layton417c6622014-07-21 09:34:57 -04003934 else
3935 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
3936 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04003937 spin_unlock(&fp->fi_lock);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003938 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939}
3940
Jeff Laytonc45198e2014-09-01 07:12:07 -04003941static int
Jeff Layton7448cc32015-01-16 15:05:57 -05003942nfsd_change_deleg_cb(struct file_lock *onlist, int arg,
3943 struct list_head *dispose)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944{
3945 if (arg & F_UNLCK)
Jeff Laytonc45198e2014-09-01 07:12:07 -04003946 return lease_modify(onlist, arg, dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 else
3948 return -EAGAIN;
3949}
3950
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003951static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04003952 .lm_break = nfsd_break_deleg_cb,
3953 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954};
3955
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04003956static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
3957{
3958 if (nfsd4_has_session(cstate))
3959 return nfs_ok;
3960 if (seqid == so->so_seqid - 1)
3961 return nfserr_replay_me;
3962 if (seqid == so->so_seqid)
3963 return nfs_ok;
3964 return nfserr_bad_seqid;
3965}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Jeff Layton4b24ca72014-06-30 11:48:44 -04003967static __be32 lookup_clientid(clientid_t *clid,
3968 struct nfsd4_compound_state *cstate,
3969 struct nfsd_net *nn)
3970{
3971 struct nfs4_client *found;
3972
3973 if (cstate->clp) {
3974 found = cstate->clp;
3975 if (!same_clid(&found->cl_clientid, clid))
3976 return nfserr_stale_clientid;
3977 return nfs_ok;
3978 }
3979
3980 if (STALE_CLIENTID(clid, nn))
3981 return nfserr_stale_clientid;
3982
3983 /*
3984 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
3985 * cached already then we know this is for is for v4.0 and "sessions"
3986 * will be false.
3987 */
3988 WARN_ON_ONCE(cstate->session);
Trond Myklebust3e339f92014-07-30 08:27:09 -04003989 spin_lock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003990 found = find_confirmed_client(clid, false, nn);
Trond Myklebust3e339f92014-07-30 08:27:09 -04003991 if (!found) {
3992 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003993 return nfserr_expired;
Trond Myklebust3e339f92014-07-30 08:27:09 -04003994 }
3995 atomic_inc(&found->cl_refcount);
3996 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003997
3998 /* Cache the nfs4_client in cstate! */
3999 cstate->clp = found;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004000 return nfs_ok;
4001}
4002
Al Virob37ad282006-10-19 23:28:59 -07004003__be32
Andy Adamson66689582009-04-03 08:28:45 +03004004nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004005 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 clientid_t *clientid = &open->op_clientid;
4008 struct nfs4_client *clp = NULL;
4009 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004010 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004011 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004013 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004015 /*
4016 * In case we need it later, after we've already created the
4017 * file and don't want to risk a further failure:
4018 */
4019 open->op_file = nfsd4_alloc_file();
4020 if (open->op_file == NULL)
4021 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
Trond Myklebust2d91e892014-06-30 11:48:46 -04004023 status = lookup_clientid(clientid, cstate, nn);
4024 if (status)
4025 return status;
4026 clp = cstate->clp;
4027
Trond Myklebustd4f04892014-07-29 21:34:36 -04004028 strhashval = ownerstr_hashval(&open->op_owner);
4029 oo = find_openstateowner_str(strhashval, open, clp);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004030 open->op_openowner = oo;
4031 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004032 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004034 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004035 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004036 release_openowner(oo);
4037 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004038 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004039 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004040 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
4041 if (status)
4042 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004043 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004044new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04004045 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004046 if (oo == NULL)
4047 return nfserr_jukebox;
4048 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004049alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04004050 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004051 if (!open->op_stp)
4052 return nfserr_jukebox;
Sachin Bhamare8287f002015-04-27 14:50:14 +02004053
4054 if (nfsd4_has_session(cstate) &&
4055 (cstate->current_fh.fh_export->ex_flags & NFSEXP_PNFS)) {
4056 open->op_odstate = alloc_clnt_odstate(clp);
4057 if (!open->op_odstate)
4058 return nfserr_jukebox;
4059 }
4060
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004061 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062}
4063
Al Virob37ad282006-10-19 23:28:59 -07004064static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07004065nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
4066{
4067 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
4068 return nfserr_openmode;
4069 else
4070 return nfs_ok;
4071}
4072
Daniel Mackc47d8322011-05-16 16:38:14 +02004073static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04004074{
J. Bruce Fields24a01112010-05-18 20:01:35 -04004075 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
4076}
4077
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004078static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004079{
4080 struct nfs4_stid *ret;
4081
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004082 ret = find_stateid_by_type(cl, s,
4083 NFS4_DELEG_STID|NFS4_REVOKED_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004084 if (!ret)
4085 return NULL;
4086 return delegstateid(ret);
4087}
4088
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004089static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
4090{
4091 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
4092 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
4093}
4094
Al Virob37ad282006-10-19 23:28:59 -07004095static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04004096nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07004097 struct nfs4_delegation **dp)
4098{
4099 int flags;
Al Virob37ad282006-10-19 23:28:59 -07004100 __be32 status = nfserr_bad_stateid;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004101 struct nfs4_delegation *deleg;
NeilBrown567d9822005-06-23 22:02:53 -07004102
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004103 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
4104 if (deleg == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07004105 goto out;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004106 if (deleg->dl_stid.sc_type == NFS4_REVOKED_DELEG_STID) {
4107 nfs4_put_stid(&deleg->dl_stid);
4108 if (cl->cl_minorversion)
4109 status = nfserr_deleg_revoked;
4110 goto out;
4111 }
J. Bruce Fields24a01112010-05-18 20:01:35 -04004112 flags = share_access_to_flags(open->op_share_access);
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004113 status = nfs4_check_delegmode(deleg, flags);
4114 if (status) {
4115 nfs4_put_stid(&deleg->dl_stid);
4116 goto out;
4117 }
4118 *dp = deleg;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004119out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004120 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004121 return nfs_ok;
4122 if (status)
4123 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004124 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004125 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07004126}
4127
J. Bruce Fields21fb4012010-07-28 12:21:23 -04004128static inline int nfs4_access_to_access(u32 nfs4_access)
4129{
4130 int flags = 0;
4131
4132 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
4133 flags |= NFSD_MAY_READ;
4134 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
4135 flags |= NFSD_MAY_WRITE;
4136 return flags;
4137}
4138
Al Virob37ad282006-10-19 23:28:59 -07004139static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
4141 struct nfsd4_open *open)
4142{
4143 struct iattr iattr = {
4144 .ia_valid = ATTR_SIZE,
4145 .ia_size = 0,
4146 };
4147 if (!open->op_truncate)
4148 return 0;
4149 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08004150 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
4152}
4153
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004154static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004155 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
4156 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004157{
Trond Myklebustde186432014-07-10 14:07:26 -04004158 struct file *filp = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004159 __be32 status;
4160 int oflag = nfs4_access_to_omode(open->op_share_access);
4161 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004162 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004163
Trond Myklebustde186432014-07-10 14:07:26 -04004164 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004165
4166 /*
4167 * Are we trying to set a deny mode that would conflict with
4168 * current access?
4169 */
4170 status = nfs4_file_check_deny(fp, open->op_share_deny);
4171 if (status != nfs_ok) {
4172 spin_unlock(&fp->fi_lock);
4173 goto out;
4174 }
4175
4176 /* set access to the file */
4177 status = nfs4_file_get_access(fp, open->op_share_access);
4178 if (status != nfs_ok) {
4179 spin_unlock(&fp->fi_lock);
4180 goto out;
4181 }
4182
4183 /* Set access bits in stateid */
4184 old_access_bmap = stp->st_access_bmap;
4185 set_access(open->op_share_access, stp);
4186
4187 /* Set new deny mask */
4188 old_deny_bmap = stp->st_deny_bmap;
4189 set_deny(open->op_share_deny, stp);
4190 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4191
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004192 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04004193 spin_unlock(&fp->fi_lock);
4194 status = nfsd_open(rqstp, cur_fh, S_IFREG, access, &filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004195 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004196 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04004197 spin_lock(&fp->fi_lock);
4198 if (!fp->fi_fds[oflag]) {
4199 fp->fi_fds[oflag] = filp;
4200 filp = NULL;
4201 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004202 }
Trond Myklebustde186432014-07-10 14:07:26 -04004203 spin_unlock(&fp->fi_lock);
4204 if (filp)
4205 fput(filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004206
4207 status = nfsd4_truncate(rqstp, cur_fh, open);
4208 if (status)
4209 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004210out:
4211 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004212out_put_access:
4213 stp->st_access_bmap = old_access_bmap;
4214 nfs4_file_put_access(fp, open->op_share_access);
4215 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
4216 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004217}
4218
Al Virob37ad282006-10-19 23:28:59 -07004219static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004220nfs4_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 -07004221{
Al Virob37ad282006-10-19 23:28:59 -07004222 __be32 status;
Arnd Bergmann6ac75362015-05-12 23:31:29 +02004223 unsigned char old_deny_bmap = stp->st_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004225 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004226 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004227
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004228 /* test and set deny mode */
4229 spin_lock(&fp->fi_lock);
4230 status = nfs4_file_check_deny(fp, open->op_share_deny);
4231 if (status == nfs_ok) {
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004232 set_deny(open->op_share_deny, stp);
4233 fp->fi_share_deny |=
4234 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4235 }
4236 spin_unlock(&fp->fi_lock);
4237
4238 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004241 status = nfsd4_truncate(rqstp, cur_fh, open);
4242 if (status != nfs_ok)
4243 reset_union_bmap_deny(old_deny_bmap, stp);
4244 return status;
4245}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004247/* Should we give out recallable state?: */
4248static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
4249{
4250 if (clp->cl_cb_state == NFSD4_CB_UP)
4251 return true;
4252 /*
4253 * In the sessions case, since we don't have to establish a
4254 * separate connection for callbacks, we assume it's OK
4255 * until we hear otherwise:
4256 */
4257 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
4258}
4259
Jeff Laytond564fbe2014-07-16 10:31:58 -04004260static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004261{
4262 struct file_lock *fl;
4263
4264 fl = locks_alloc_lock();
4265 if (!fl)
4266 return NULL;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004267 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04004268 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004269 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
4270 fl->fl_end = OFFSET_MAX;
Jeff Laytond564fbe2014-07-16 10:31:58 -04004271 fl->fl_owner = (fl_owner_t)fp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004272 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004273 return fl;
4274}
4275
Andrew Elble34ed9872015-10-15 12:07:28 -04004276/**
4277 * nfs4_setlease - Obtain a delegation by requesting lease from vfs layer
4278 * @dp: a pointer to the nfs4_delegation we're adding.
4279 *
4280 * Return:
4281 * On success: Return code will be 0 on success.
4282 *
4283 * On error: -EAGAIN if there was an existing delegation.
4284 * nonzero if there is an error in other cases.
4285 *
4286 */
4287
J. Bruce Fields99c41512013-05-21 16:21:25 -04004288static int nfs4_setlease(struct nfs4_delegation *dp)
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004289{
Trond Myklebust11b91642014-07-29 21:34:08 -04004290 struct nfs4_file *fp = dp->dl_stid.sc_file;
Kinglong Meeefde6b42015-07-13 17:33:24 +08004291 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04004292 struct file *filp;
4293 int status = 0;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004294
Jeff Laytond564fbe2014-07-16 10:31:58 -04004295 fl = nfs4_alloc_init_lease(fp, NFS4_OPEN_DELEGATE_READ);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004296 if (!fl)
4297 return -ENOMEM;
Jeff Layton417c6622014-07-21 09:34:57 -04004298 filp = find_readable_file(fp);
4299 if (!filp) {
4300 /* We should always have a readable file here */
4301 WARN_ON_ONCE(1);
Kinglong Meeaf9dbaf2015-07-13 17:30:51 +08004302 locks_free_lock(fl);
Jeff Layton417c6622014-07-21 09:34:57 -04004303 return -EBADF;
4304 }
4305 fl->fl_file = filp;
Jeff Laytone6f5c782014-08-22 10:40:25 -04004306 status = vfs_setlease(filp, fl->fl_type, &fl, NULL);
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04004307 if (fl)
Jeff Layton417c6622014-07-21 09:34:57 -04004308 locks_free_lock(fl);
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04004309 if (status)
Jeff Layton417c6622014-07-21 09:34:57 -04004310 goto out_fput;
Benny Halevycdc975052014-05-30 09:09:30 -04004311 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004312 spin_lock(&fp->fi_lock);
4313 /* Did the lease get broken before we took the lock? */
4314 status = -EAGAIN;
4315 if (fp->fi_had_conflict)
4316 goto out_unlock;
4317 /* Race breaker */
Jeff Layton0c637be2014-08-22 12:05:43 -04004318 if (fp->fi_deleg_file) {
Andrew Elble34ed9872015-10-15 12:07:28 -04004319 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004320 goto out_unlock;
4321 }
Jeff Layton417c6622014-07-21 09:34:57 -04004322 fp->fi_deleg_file = filp;
Andrew Elble34ed9872015-10-15 12:07:28 -04004323 fp->fi_delegees = 0;
4324 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004325 spin_unlock(&fp->fi_lock);
Benny Halevycdc975052014-05-30 09:09:30 -04004326 spin_unlock(&state_lock);
Andrew Elble34ed9872015-10-15 12:07:28 -04004327 if (status) {
4328 /* Should never happen, this is a new fi_deleg_file */
4329 WARN_ON_ONCE(1);
4330 goto out_fput;
4331 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004332 return 0;
Jeff Layton417c6622014-07-21 09:34:57 -04004333out_unlock:
4334 spin_unlock(&fp->fi_lock);
4335 spin_unlock(&state_lock);
4336out_fput:
4337 fput(filp);
J. Bruce Fieldse8730882012-01-23 13:52:01 -05004338 return status;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004339}
4340
Jeff Layton0b266932014-07-25 07:34:25 -04004341static struct nfs4_delegation *
4342nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +02004343 struct nfs4_file *fp, struct nfs4_clnt_odstate *odstate)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004344{
Jeff Layton0b266932014-07-25 07:34:25 -04004345 int status;
4346 struct nfs4_delegation *dp;
Jeff Layton417c6622014-07-21 09:34:57 -04004347
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004348 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04004349 return ERR_PTR(-EAGAIN);
4350
Andrew Elble34ed9872015-10-15 12:07:28 -04004351 spin_lock(&state_lock);
4352 spin_lock(&fp->fi_lock);
4353 status = nfs4_get_existing_delegation(clp, fp);
4354 spin_unlock(&fp->fi_lock);
4355 spin_unlock(&state_lock);
4356
4357 if (status)
4358 return ERR_PTR(status);
4359
Sachin Bhamare8287f002015-04-27 14:50:14 +02004360 dp = alloc_init_deleg(clp, fh, odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04004361 if (!dp)
4362 return ERR_PTR(-ENOMEM);
4363
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004364 get_nfs4_file(fp);
Benny Halevycdc975052014-05-30 09:09:30 -04004365 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004366 spin_lock(&fp->fi_lock);
Trond Myklebust11b91642014-07-29 21:34:08 -04004367 dp->dl_stid.sc_file = fp;
Jeff Layton0c637be2014-08-22 12:05:43 -04004368 if (!fp->fi_deleg_file) {
Jeff Layton417c6622014-07-21 09:34:57 -04004369 spin_unlock(&fp->fi_lock);
4370 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04004371 status = nfs4_setlease(dp);
4372 goto out;
Jeff Layton417c6622014-07-21 09:34:57 -04004373 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004374 if (fp->fi_had_conflict) {
Jeff Layton417c6622014-07-21 09:34:57 -04004375 status = -EAGAIN;
4376 goto out_unlock;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004377 }
Andrew Elble34ed9872015-10-15 12:07:28 -04004378 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004379out_unlock:
4380 spin_unlock(&fp->fi_lock);
Benny Halevycdc975052014-05-30 09:09:30 -04004381 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04004382out:
4383 if (status) {
Sachin Bhamare8287f002015-04-27 14:50:14 +02004384 put_clnt_odstate(dp->dl_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04004385 nfs4_put_stid(&dp->dl_stid);
Jeff Layton0b266932014-07-25 07:34:25 -04004386 return ERR_PTR(status);
4387 }
4388 return dp;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004389}
4390
Benny Halevy4aa89132012-02-21 14:16:44 -08004391static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
4392{
4393 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4394 if (status == -EAGAIN)
4395 open->op_why_no_deleg = WND4_CONTENTION;
4396 else {
4397 open->op_why_no_deleg = WND4_RESOURCE;
4398 switch (open->op_deleg_want) {
4399 case NFS4_SHARE_WANT_READ_DELEG:
4400 case NFS4_SHARE_WANT_WRITE_DELEG:
4401 case NFS4_SHARE_WANT_ANY_DELEG:
4402 break;
4403 case NFS4_SHARE_WANT_CANCEL:
4404 open->op_why_no_deleg = WND4_CANCELLED;
4405 break;
4406 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004407 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08004408 }
4409 }
4410}
4411
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412/*
4413 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04004414 *
4415 * Note we don't support write delegations, and won't until the vfs has
4416 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 */
4418static void
Jeff Layton4cf59222014-07-25 07:34:24 -04004419nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
4420 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421{
4422 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04004423 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
4424 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004425 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004426 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004428 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07004429 open->op_recall = 0;
4430 switch (open->op_claim_type) {
4431 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05004432 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07004433 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004434 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
4435 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004436 break;
4437 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00004438 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004439 /*
4440 * Let's not give out any delegations till everyone's
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004441 * had the chance to reclaim theirs, *and* until
4442 * NLM locks have all been reclaimed:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004443 */
Jeff Layton4cf59222014-07-25 07:34:24 -04004444 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004445 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004446 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004447 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04004448 /*
4449 * Also, if the file was opened for write or
4450 * create, there's a good chance the client's
4451 * about to write to it, resulting in an
4452 * immediate recall (since we don't support
4453 * write delegations):
4454 */
NeilBrown7b190fe2005-06-23 22:03:23 -07004455 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04004456 goto out_no_deleg;
4457 if (open->op_create == NFS4_OPEN_CREATE)
4458 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004459 break;
4460 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004461 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004462 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02004463 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file, stp->st_clnt_odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04004464 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004465 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004467 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004469 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004470 STATEID_VAL(&dp->dl_stid.sc_stateid));
J. Bruce Fields99c41512013-05-21 16:21:25 -04004471 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04004472 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004473 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004474out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004475 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
4476 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04004477 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04004478 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04004479 open->op_recall = 1;
4480 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04004481
4482 /* 4.1 client asking for a delegation? */
4483 if (open->op_deleg_want)
4484 nfsd4_open_deleg_none_ext(open, status);
4485 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486}
4487
Benny Halevye27f49c2012-02-21 14:16:54 -08004488static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
4489 struct nfs4_delegation *dp)
4490{
4491 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
4492 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4493 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4494 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
4495 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
4496 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4497 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4498 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
4499 }
4500 /* Otherwise the client must be confused wanting a delegation
4501 * it already has, therefore we don't return
4502 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
4503 */
4504}
4505
Al Virob37ad282006-10-19 23:28:59 -07004506__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
4508{
Andy Adamson66689582009-04-03 08:28:45 +03004509 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004510 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004512 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07004513 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004514 __be32 status;
Trond Myklebustd8a1a002017-11-03 08:00:11 -04004515 bool new_stp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 /*
4518 * Lookup file; if found, lookup stateid and check open request,
4519 * and check for delegations in the process of being recalled.
4520 * If not found, create the nfs4_file struct
4521 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004522 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04004523 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04004524 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07004525 if (status)
4526 goto out;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04004527 stp = nfsd4_find_and_lock_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04004529 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004530 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004531 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004532 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 }
4534
Trond Myklebustd8a1a002017-11-03 08:00:11 -04004535 if (!stp) {
4536 stp = init_open_stateid(fp, open);
4537 if (!open->op_stp)
4538 new_stp = true;
4539 }
4540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 /*
4542 * OPEN the file, or upgrade an existing OPEN.
4543 * If truncate fails, the OPEN fails.
Trond Myklebustd8a1a002017-11-03 08:00:11 -04004544 *
4545 * stp is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 */
Trond Myklebustd8a1a002017-11-03 08:00:11 -04004547 if (!new_stp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004549 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Jeff Layton35a92fe2015-09-17 07:47:08 -04004550 if (status) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04004551 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 goto out;
Jeff Layton35a92fe2015-09-17 07:47:08 -04004553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 } else {
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004555 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
4556 if (status) {
Trond Myklebustd8a1a002017-11-03 08:00:11 -04004557 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004558 release_open_stateid(stp);
Trond Myklebustd8a1a002017-11-03 08:00:11 -04004559 mutex_unlock(&stp->st_mutex);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004560 goto out;
4561 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02004562
4563 stp->st_clnt_odstate = find_or_hash_clnt_odstate(fp,
4564 open->op_odstate);
4565 if (stp->st_clnt_odstate == open->op_odstate)
4566 open->op_odstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 }
Trond Myklebustd8a1a002017-11-03 08:00:11 -04004568
Jeff Layton9767feb2015-10-01 09:05:50 -04004569 nfs4_inc_and_copy_stateid(&open->op_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04004570 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
Benny Halevyd24433c2012-02-16 20:57:17 +02004572 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02004573 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
4574 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4575 open->op_why_no_deleg = WND4_NOT_WANTED;
4576 goto nodeleg;
4577 }
4578 }
4579
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 /*
4581 * Attempt to hand out a delegation. No error return, because the
4582 * OPEN succeeds even if we fail.
4583 */
Jeff Layton4cf59222014-07-25 07:34:24 -04004584 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02004585nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 status = nfs_ok;
4587
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004588 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004589 STATEID_VAL(&stp->st_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590out:
Benny Halevyd24433c2012-02-16 20:57:17 +02004591 /* 4.1 client trying to upgrade/downgrade delegation? */
4592 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08004593 open->op_deleg_want)
4594 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02004595
NeilBrown13cd2182005-06-23 22:03:10 -07004596 if (fp)
4597 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07004598 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
Kinglong Mee87186022015-07-13 17:32:59 +08004599 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 /*
4601 * To finish the open response, we just need to set the rflags.
4602 */
4603 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Jeff Layton19e4c342016-09-16 16:28:27 -04004604 if (nfsd4_has_session(&resp->cstate))
4605 open->op_rflags |= NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK;
4606 else if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
Jeff Layton19e4c342016-09-16 16:28:27 -04004608
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004609 if (dp)
4610 nfs4_put_stid(&dp->dl_stid);
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04004611 if (stp)
4612 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613
4614 return status;
4615}
4616
Jeff Layton58fb12e2014-07-29 21:34:27 -04004617void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
Jeff Layton42297892015-03-23 10:53:44 -04004618 struct nfsd4_open *open)
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004619{
4620 if (open->op_openowner) {
Jeff Laytond3134b12014-07-29 21:34:32 -04004621 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004622
Jeff Laytond3134b12014-07-29 21:34:32 -04004623 nfsd4_cstate_assign_replay(cstate, so);
4624 nfs4_put_stateowner(so);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004625 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04004626 if (open->op_file)
Jeff Layton5b095e92014-10-23 08:01:02 -04004627 kmem_cache_free(file_slab, open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004628 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04004629 nfs4_put_stid(&open->op_stp->st_stid);
Sachin Bhamare8287f002015-04-27 14:50:14 +02004630 if (open->op_odstate)
4631 kmem_cache_free(odstate_slab, open->op_odstate);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004632}
4633
Al Virob37ad282006-10-19 23:28:59 -07004634__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08004635nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02004636 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637{
Christoph Hellwigeb698532017-05-08 20:58:35 +02004638 clientid_t *clid = &u->renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07004640 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03004641 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 dprintk("process_renew(%08x/%08x): starting\n",
4644 clid->cl_boot, clid->cl_id);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004645 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05004646 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004648 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07004650 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04004651 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 goto out;
4653 status = nfs_ok;
4654out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 return status;
4656}
4657
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04004658void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03004659nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07004660{
Jeff Layton33dcc482012-04-10 11:08:48 -04004661 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04004662 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04004663 return;
4664
NeilBrowna76b4312005-06-23 22:04:01 -07004665 dprintk("NFSD: end of grace period\n");
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04004666 nn->grace_ended = true;
J. Bruce Fields70b28232014-09-16 17:37:32 -04004667 /*
4668 * If the server goes down again right now, an NFSv4
4669 * client will still be allowed to reclaim after it comes back up,
4670 * even if it hasn't yet had a chance to reclaim state this time.
4671 *
4672 */
Jeff Layton919b8042014-09-12 16:40:20 -04004673 nfsd4_record_grace_done(nn);
J. Bruce Fields70b28232014-09-16 17:37:32 -04004674 /*
4675 * At this point, NFSv4 clients can still reclaim. But if the
4676 * server crashes, any that have not yet reclaimed will be out
4677 * of luck on the next boot.
4678 *
4679 * (NFSv4.1+ clients are considered to have reclaimed once they
4680 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
4681 * have reclaimed after their first OPEN.)
4682 */
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04004683 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fields70b28232014-09-16 17:37:32 -04004684 /*
4685 * At this point, and once lockd and/or any other containers
4686 * exit their grace period, further reclaims will fail and
4687 * regular locking can resume.
4688 */
NeilBrowna76b4312005-06-23 22:04:01 -07004689}
4690
NeilBrownfd39ca92005-06-23 22:04:03 -07004691static time_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004692nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693{
4694 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004695 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 struct nfs4_delegation *dp;
Jeff Layton217526e2014-07-30 08:27:11 -04004697 struct nfs4_ol_stateid *stp;
Jeff Layton7919d0a2016-09-16 16:28:25 -04004698 struct nfsd4_blocked_lock *nbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03004700 time_t cutoff = get_seconds() - nn->nfsd4_lease;
Jeff Laytona832e7a2014-05-30 09:09:26 -04004701 time_t t, new_timeo = nn->nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 dprintk("NFSD: laundromat service - starting\n");
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03004704 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03004705 INIT_LIST_HEAD(&reaplist);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03004706 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03004707 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 clp = list_entry(pos, struct nfs4_client, cl_lru);
4709 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
4710 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04004711 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 break;
4713 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04004714 if (mark_client_expired_locked(clp)) {
Benny Halevyd7682982010-05-12 00:13:54 +03004715 dprintk("NFSD: client in use (clientid %08x)\n",
4716 clp->cl_clientid.cl_id);
4717 continue;
4718 }
Trond Myklebust4864af92014-07-30 08:27:03 -04004719 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03004720 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03004721 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03004722 list_for_each_safe(pos, next, &reaplist) {
4723 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 dprintk("NFSD: purging unused client (clientid %08x)\n",
4725 clp->cl_clientid.cl_id);
Trond Myklebust4864af92014-07-30 08:27:03 -04004726 list_del_init(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 expire_client(clp);
4728 }
Benny Halevycdc975052014-05-30 09:09:30 -04004729 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04004730 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4732 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04004733 t = dp->dl_time - cutoff;
4734 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 break;
4736 }
Jeff Layton3fcbbd22015-08-24 12:41:48 -04004737 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04004738 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 }
Benny Halevycdc975052014-05-30 09:09:30 -04004740 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04004741 while (!list_empty(&reaplist)) {
4742 dp = list_first_entry(&reaplist, struct nfs4_delegation,
4743 dl_recall_lru);
4744 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004745 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 }
Jeff Layton217526e2014-07-30 08:27:11 -04004747
4748 spin_lock(&nn->client_lock);
4749 while (!list_empty(&nn->close_lru)) {
4750 oo = list_first_entry(&nn->close_lru, struct nfs4_openowner,
4751 oo_close_lru);
4752 if (time_after((unsigned long)oo->oo_time,
4753 (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04004754 t = oo->oo_time - cutoff;
4755 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 break;
4757 }
Jeff Layton217526e2014-07-30 08:27:11 -04004758 list_del_init(&oo->oo_close_lru);
4759 stp = oo->oo_last_closed_stid;
4760 oo->oo_last_closed_stid = NULL;
4761 spin_unlock(&nn->client_lock);
4762 nfs4_put_stid(&stp->st_stid);
4763 spin_lock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 }
Jeff Layton217526e2014-07-30 08:27:11 -04004765 spin_unlock(&nn->client_lock);
4766
Jeff Layton7919d0a2016-09-16 16:28:25 -04004767 /*
4768 * It's possible for a client to try and acquire an already held lock
4769 * that is being held for a long time, and then lose interest in it.
4770 * So, we clean out any un-revisited request after a lease period
4771 * under the assumption that the client is no longer interested.
4772 *
4773 * RFC5661, sec. 9.6 states that the client must not rely on getting
4774 * notifications and must continue to poll for locks, even when the
4775 * server supports them. Thus this shouldn't lead to clients blocking
4776 * indefinitely once the lock does become free.
4777 */
4778 BUG_ON(!list_empty(&reaplist));
Jeff Layton0cc11a62016-10-20 09:34:31 -04004779 spin_lock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04004780 while (!list_empty(&nn->blocked_locks_lru)) {
4781 nbl = list_first_entry(&nn->blocked_locks_lru,
4782 struct nfsd4_blocked_lock, nbl_lru);
4783 if (time_after((unsigned long)nbl->nbl_time,
4784 (unsigned long)cutoff)) {
4785 t = nbl->nbl_time - cutoff;
4786 new_timeo = min(new_timeo, t);
4787 break;
4788 }
4789 list_move(&nbl->nbl_lru, &reaplist);
4790 list_del_init(&nbl->nbl_list);
4791 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04004792 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04004793
4794 while (!list_empty(&reaplist)) {
Naofumi Honda64ebe1242017-11-09 10:57:16 -05004795 nbl = list_first_entry(&reaplist,
Jeff Layton7919d0a2016-09-16 16:28:25 -04004796 struct nfsd4_blocked_lock, nbl_lru);
4797 list_del_init(&nbl->nbl_lru);
4798 posix_unblock_lock(&nbl->nbl_lock);
4799 free_blocked_lock(nbl);
4800 }
4801
Jeff Laytona832e7a2014-05-30 09:09:26 -04004802 new_timeo = max_t(time_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Jeff Laytona832e7a2014-05-30 09:09:26 -04004803 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804}
4805
Harvey Harrisona254b242008-02-20 12:49:00 -08004806static struct workqueue_struct *laundry_wq;
4807static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08004808
4809static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004810laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811{
4812 time_t t;
Geliang Tang2e55f3a2016-01-01 22:06:28 +08004813 struct delayed_work *dwork = to_delayed_work(laundry);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004814 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
4815 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004817 t = nfs4_laundromat(nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004819 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820}
4821
Jeff Layton8fcd4612015-07-30 06:57:46 -04004822static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07004823{
Jeff Layton8fcd4612015-07-30 06:57:46 -04004824 if (!fh_match(&fhp->fh_handle, &stp->sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004825 return nfserr_bad_stateid;
4826 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827}
4828
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004830access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004832 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
4833 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
4834 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835}
4836
4837static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004838access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004840 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
4841 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842}
4843
4844static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004845__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846{
Al Virob37ad282006-10-19 23:28:59 -07004847 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
J. Bruce Fields02921912010-07-29 15:16:59 -04004849 /* For lock stateid's, we test the parent open, not the lock: */
4850 if (stp->st_openstp)
4851 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004852 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004854 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 goto out;
4856 status = nfs_ok;
4857out:
4858 return status;
4859}
4860
Al Virob37ad282006-10-19 23:28:59 -07004861static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004862check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004864 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 return nfs_ok;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004866 else if (opens_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004867 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 * conflicting state; so we must wait out the grace period. */
4869 return nfserr_grace;
4870 } else if (flags & WR_STATE)
4871 return nfs4_share_conflict(current_fh,
4872 NFS4_SHARE_DENY_WRITE);
4873 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4874 return nfs4_share_conflict(current_fh,
4875 NFS4_SHARE_DENY_READ);
4876}
4877
4878/*
4879 * Allow READ/WRITE during grace period on recovered state only for files
4880 * that are not able to provide mandatory locking.
4881 */
4882static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004883grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884{
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004885 return opens_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886}
4887
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004888static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05004889{
Andy Adamson66689582009-04-03 08:28:45 +03004890 /*
4891 * When sessions are used the stateid generation number is ignored
4892 * when it is zero.
4893 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04004894 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04004895 return nfs_ok;
4896
4897 if (in->si_generation == ref->si_generation)
4898 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03004899
J. Bruce Fields0836f582008-01-26 19:08:12 -05004900 /* If the client sends us a stateid from the future, it's buggy: */
Jeff Layton14b7f4a2016-05-05 06:53:47 -04004901 if (nfsd4_stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05004902 return nfserr_bad_stateid;
4903 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04004904 * However, we could see a stateid from the past, even from a
4905 * non-buggy client. For example, if the client sends a lock
4906 * while some IO is outstanding, the lock may bump si_generation
4907 * while the IO is still in flight. The client could avoid that
4908 * situation by waiting for responses on all the IO requests,
4909 * but better performance may result in retrying IO that
4910 * receives an old_stateid error if requests are rarely
4911 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05004912 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004913 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05004914}
4915
Trond Myklebust03da3162017-11-03 08:00:16 -04004916static __be32 nfsd4_stid_check_stateid_generation(stateid_t *in, struct nfs4_stid *s, bool has_session)
4917{
4918 __be32 ret;
4919
4920 spin_lock(&s->sc_lock);
4921 ret = nfsd4_verify_open_stid(s);
4922 if (ret == nfs_ok)
4923 ret = check_stateid_generation(in, &s->sc_stateid, has_session);
4924 spin_unlock(&s->sc_lock);
4925 return ret;
4926}
4927
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02004928static __be32 nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid *ols)
4929{
4930 if (ols->st_stateowner->so_is_open_owner &&
4931 !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
4932 return nfserr_bad_stateid;
4933 return nfs_ok;
4934}
4935
Chuck Lever7df302f2012-05-29 13:56:37 -04004936static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04004937{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004938 struct nfs4_stid *s;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004939 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04004940
Andrew Elbleae254dac2017-11-09 13:41:10 -05004941 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
4942 CLOSE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004943 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004944 /* Client debugging aid. */
4945 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
4946 char addr_str[INET6_ADDRSTRLEN];
4947 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
4948 sizeof(addr_str));
4949 pr_warn_ratelimited("NFSD: client %s testing state ID "
4950 "with incorrect client ID\n", addr_str);
Jeff Layton1af71cc2014-07-29 21:34:14 -04004951 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004952 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004953 spin_lock(&cl->cl_lock);
4954 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004955 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004956 goto out_unlock;
Trond Myklebust03da3162017-11-03 08:00:16 -04004957 status = nfsd4_stid_check_stateid_generation(stateid, s, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04004958 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004959 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04004960 switch (s->sc_type) {
4961 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004962 status = nfs_ok;
4963 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004964 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004965 status = nfserr_deleg_revoked;
4966 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004967 case NFS4_OPEN_STID:
4968 case NFS4_LOCK_STID:
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02004969 status = nfsd4_check_openowner_confirmed(openlockstateid(s));
Jeff Layton1af71cc2014-07-29 21:34:14 -04004970 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004971 default:
4972 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004973 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04004974 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04004975 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004976 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04004977 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004978out_unlock:
4979 spin_unlock(&cl->cl_lock);
4980 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04004981}
4982
Christoph Hellwigcd61c522014-08-14 08:44:57 +02004983__be32
Trond Myklebust2dd6e452014-06-30 11:48:43 -04004984nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
4985 stateid_t *stateid, unsigned char typemask,
4986 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004987{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04004988 __be32 status;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04004989 bool return_revoked = false;
4990
4991 /*
4992 * only return revoked delegations if explicitly asked.
4993 * otherwise we report revoked or bad_stateid status.
4994 */
4995 if (typemask & NFS4_REVOKED_DELEG_STID)
4996 return_revoked = true;
4997 else if (typemask & NFS4_DELEG_STID)
4998 typemask |= NFS4_REVOKED_DELEG_STID;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004999
Andrew Elbleae254dac2017-11-09 13:41:10 -05005000 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5001 CLOSE_STATEID(stateid))
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005002 return nfserr_bad_stateid;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005003 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005004 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005005 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005006 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005007 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005008 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005009 if (status)
5010 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005011 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005012 if (!*s)
5013 return nfserr_bad_stateid;
Andrew Elble95da1b3a2017-11-03 14:06:31 -04005014 if (((*s)->sc_type == NFS4_REVOKED_DELEG_STID) && !return_revoked) {
5015 nfs4_put_stid(*s);
5016 if (cstate->minorversion)
5017 return nfserr_deleg_revoked;
5018 return nfserr_bad_stateid;
5019 }
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005020 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005021}
5022
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005023static struct file *
5024nfs4_find_file(struct nfs4_stid *s, int flags)
5025{
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005026 if (!s)
5027 return NULL;
5028
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005029 switch (s->sc_type) {
5030 case NFS4_DELEG_STID:
5031 if (WARN_ON_ONCE(!s->sc_file->fi_deleg_file))
5032 return NULL;
5033 return get_file(s->sc_file->fi_deleg_file);
5034 case NFS4_OPEN_STID:
5035 case NFS4_LOCK_STID:
5036 if (flags & RD_STATE)
5037 return find_readable_file(s->sc_file);
5038 else
5039 return find_writeable_file(s->sc_file);
5040 break;
5041 }
5042
5043 return NULL;
5044}
5045
5046static __be32
5047nfs4_check_olstateid(struct svc_fh *fhp, struct nfs4_ol_stateid *ols, int flags)
5048{
5049 __be32 status;
5050
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005051 status = nfsd4_check_openowner_confirmed(ols);
5052 if (status)
5053 return status;
5054 return nfs4_check_openmode(ols, flags);
5055}
5056
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005057static __be32
5058nfs4_check_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfs4_stid *s,
5059 struct file **filpp, bool *tmp_file, int flags)
5060{
5061 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE;
5062 struct file *file;
5063 __be32 status;
5064
5065 file = nfs4_find_file(s, flags);
5066 if (file) {
5067 status = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
5068 acc | NFSD_MAY_OWNER_OVERRIDE);
5069 if (status) {
5070 fput(file);
5071 return status;
5072 }
5073
5074 *filpp = file;
5075 } else {
5076 status = nfsd_open(rqstp, fhp, S_IFREG, acc, filpp);
5077 if (status)
5078 return status;
5079
5080 if (tmp_file)
5081 *tmp_file = true;
5082 }
5083
5084 return 0;
5085}
5086
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087/*
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005088 * Checks for stateid operations
5089 */
Al Virob37ad282006-10-19 23:28:59 -07005090__be32
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005091nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01005092 struct nfsd4_compound_state *cstate, struct svc_fh *fhp,
5093 stateid_t *stateid, int flags, struct file **filpp, bool *tmp_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094{
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005095 struct inode *ino = d_inode(fhp->fh_dentry);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005096 struct net *net = SVC_NET(rqstp);
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005097 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005098 struct nfs4_stid *s = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005099 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 if (filpp)
5102 *filpp = NULL;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005103 if (tmp_file)
5104 *tmp_file = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005106 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 return nfserr_grace;
5108
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005109 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
5110 status = check_special_stateids(net, fhp, stateid, flags);
5111 goto done;
5112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005114 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04005115 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005116 &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005117 if (status)
Trond Myklebustc2d1d6a2014-07-30 08:27:25 -04005118 return status;
Trond Myklebust03da3162017-11-03 08:00:16 -04005119 status = nfsd4_stid_check_stateid_generation(stateid, s,
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005120 nfsd4_has_session(cstate));
J. Bruce Fields69064a22011-09-09 11:54:57 -04005121 if (status)
5122 goto out;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005123
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005124 switch (s->sc_type) {
5125 case NFS4_DELEG_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005126 status = nfs4_check_delegmode(delegstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005127 break;
5128 case NFS4_OPEN_STID:
5129 case NFS4_LOCK_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005130 status = nfs4_check_olstateid(fhp, openlockstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005131 break;
5132 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04005133 status = nfserr_bad_stateid;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005134 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 }
Jeff Layton8fcd4612015-07-30 06:57:46 -04005136 if (status)
5137 goto out;
5138 status = nfs4_check_fh(fhp, s);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005139
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005140done:
5141 if (!status && filpp)
5142 status = nfs4_check_file(rqstp, fhp, s, filpp, tmp_file, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143out:
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005144 if (s)
5145 nfs4_put_stid(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 return status;
5147}
5148
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005149/*
Bryan Schumaker17456802011-07-13 10:50:48 -04005150 * Test if the stateid is valid
5151 */
5152__be32
5153nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005154 union nfsd4_op_u *u)
Bryan Schumaker17456802011-07-13 10:50:48 -04005155{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005156 struct nfsd4_test_stateid *test_stateid = &u->test_stateid;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005157 struct nfsd4_test_stateid_id *stateid;
5158 struct nfs4_client *cl = cstate->session->se_client;
5159
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005160 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04005161 stateid->ts_id_status =
5162 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005163
Bryan Schumaker17456802011-07-13 10:50:48 -04005164 return nfs_ok;
5165}
5166
Chuck Lever42691392016-08-11 10:37:30 -04005167static __be32
5168nfsd4_free_lock_stateid(stateid_t *stateid, struct nfs4_stid *s)
5169{
5170 struct nfs4_ol_stateid *stp = openlockstateid(s);
5171 __be32 ret;
5172
Trond Myklebust659aefb2017-11-03 08:00:13 -04005173 ret = nfsd4_lock_ol_stateid(stp);
5174 if (ret)
5175 goto out_put_stid;
Chuck Lever42691392016-08-11 10:37:30 -04005176
5177 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5178 if (ret)
5179 goto out;
5180
5181 ret = nfserr_locks_held;
5182 if (check_for_locks(stp->st_stid.sc_file,
5183 lockowner(stp->st_stateowner)))
5184 goto out;
5185
5186 release_lock_stateid(stp);
5187 ret = nfs_ok;
5188
5189out:
5190 mutex_unlock(&stp->st_mutex);
Trond Myklebust659aefb2017-11-03 08:00:13 -04005191out_put_stid:
Chuck Lever42691392016-08-11 10:37:30 -04005192 nfs4_put_stid(s);
5193 return ret;
5194}
5195
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005196__be32
5197nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005198 union nfsd4_op_u *u)
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005199{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005200 struct nfsd4_free_stateid *free_stateid = &u->free_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005201 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005202 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005203 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005204 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005205 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005206
Jeff Layton1af71cc2014-07-29 21:34:14 -04005207 spin_lock(&cl->cl_lock);
5208 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005209 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005210 goto out_unlock;
Trond Myklebust03da3162017-11-03 08:00:16 -04005211 spin_lock(&s->sc_lock);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005212 switch (s->sc_type) {
5213 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005214 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005215 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005216 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005217 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5218 if (ret)
5219 break;
5220 ret = nfserr_locks_held;
5221 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005222 case NFS4_LOCK_STID:
Trond Myklebust03da3162017-11-03 08:00:16 -04005223 spin_unlock(&s->sc_lock);
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03005224 refcount_inc(&s->sc_count);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005225 spin_unlock(&cl->cl_lock);
Chuck Lever42691392016-08-11 10:37:30 -04005226 ret = nfsd4_free_lock_stateid(stateid, s);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005227 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005228 case NFS4_REVOKED_DELEG_STID:
Trond Myklebust03da3162017-11-03 08:00:16 -04005229 spin_unlock(&s->sc_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005230 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005231 list_del_init(&dp->dl_recall_lru);
5232 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04005233 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005234 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005235 goto out;
5236 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005237 }
Trond Myklebust03da3162017-11-03 08:00:16 -04005238 spin_unlock(&s->sc_lock);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005239out_unlock:
5240 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005241out:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005242 return ret;
5243}
5244
NeilBrown4c4cd222005-07-07 17:59:27 -07005245static inline int
5246setlkflg (int type)
5247{
5248 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
5249 RD_STATE : WR_STATE;
5250}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005252static __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 -04005253{
5254 struct svc_fh *current_fh = &cstate->current_fh;
5255 struct nfs4_stateowner *sop = stp->st_stateowner;
5256 __be32 status;
5257
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005258 status = nfsd4_check_seqid(cstate, sop, seqid);
5259 if (status)
5260 return status;
Trond Myklebust9271d7e2017-11-03 08:00:15 -04005261 status = nfsd4_lock_ol_stateid(stp);
5262 if (status != nfs_ok)
5263 return status;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005264 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
Jeff Layton35a92fe2015-09-17 07:47:08 -04005265 if (status == nfs_ok)
5266 status = nfs4_check_fh(current_fh, &stp->st_stid);
5267 if (status != nfs_ok)
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005268 mutex_unlock(&stp->st_mutex);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005269 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005270}
5271
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272/*
5273 * Checks for sequence id mutating operations.
5274 */
Al Virob37ad282006-10-19 23:28:59 -07005275static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03005276nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04005277 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005278 struct nfs4_ol_stateid **stpp,
5279 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280{
J. Bruce Fields0836f582008-01-26 19:08:12 -05005281 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005282 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005283 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005285 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
5286 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07005287
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005289 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005290 if (status)
5291 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005292 stp = openlockstateid(s);
Jeff Layton58fb12e2014-07-29 21:34:27 -04005293 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005295 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
Trond Myklebustfd911012014-07-29 21:34:24 -04005296 if (!status)
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005297 *stpp = stp;
Trond Myklebustfd911012014-07-29 21:34:24 -04005298 else
5299 nfs4_put_stid(&stp->st_stid);
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005300 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005301}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05005302
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005303static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
5304 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005305{
5306 __be32 status;
5307 struct nfs4_openowner *oo;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005308 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005310 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005311 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04005312 if (status)
5313 return status;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005314 oo = openowner(stp->st_stateowner);
5315 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005316 mutex_unlock(&stp->st_mutex);
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005317 nfs4_put_stid(&stp->st_stid);
NeilBrown3a4f98b2005-07-07 17:59:26 -07005318 return nfserr_bad_stateid;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005319 }
5320 *stpp = stp;
NeilBrown3a4f98b2005-07-07 17:59:26 -07005321 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322}
5323
Al Virob37ad282006-10-19 23:28:59 -07005324__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005325nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005326 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005328 struct nfsd4_open_confirm *oc = &u->open_confirm;
Al Virob37ad282006-10-19 23:28:59 -07005329 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005330 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005331 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005332 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
Al Viroa6a9f182013-09-16 10:57:01 -04005334 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
5335 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005337 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07005338 if (status)
5339 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005341 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005342 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005343 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005344 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005345 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005346 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005347 status = nfserr_bad_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005348 if (oo->oo_flags & NFS4_OO_CONFIRMED) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005349 mutex_unlock(&stp->st_mutex);
Trond Myklebust2585fc72014-07-29 21:34:21 -04005350 goto put_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005351 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04005352 oo->oo_flags |= NFS4_OO_CONFIRMED;
Jeff Layton9767feb2015-10-01 09:05:50 -04005353 nfs4_inc_and_copy_stateid(&oc->oc_resp_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005354 mutex_unlock(&stp->st_mutex);
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005355 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005356 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07005357
Jeff Layton2a4317c2012-03-21 16:42:43 -04005358 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005359 status = nfs_ok;
Trond Myklebust2585fc72014-07-29 21:34:21 -04005360put_stateid:
5361 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005363 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 return status;
5365}
5366
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005367static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005369 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005370 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04005371 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04005372 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005373}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04005374
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005375static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
5376{
5377 switch (to_access) {
5378 case NFS4_SHARE_ACCESS_READ:
5379 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
5380 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
5381 break;
5382 case NFS4_SHARE_ACCESS_WRITE:
5383 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
5384 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
5385 break;
5386 case NFS4_SHARE_ACCESS_BOTH:
5387 break;
5388 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005389 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 }
5391}
5392
Al Virob37ad282006-10-19 23:28:59 -07005393__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005394nfsd4_open_downgrade(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005395 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005397 struct nfsd4_open_downgrade *od = &u->open_downgrade;
Al Virob37ad282006-10-19 23:28:59 -07005398 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005399 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005400 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401
Al Viroa6a9f182013-09-16 10:57:01 -04005402 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
5403 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04005405 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02005406 if (od->od_deleg_want)
5407 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
5408 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005410 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005411 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005412 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005415 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04005416 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 stp->st_access_bmap, od->od_share_access);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005418 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04005420 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04005421 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422 stp->st_deny_bmap, od->od_share_deny);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005423 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005425 nfs4_stateid_downgrade(stp, od->od_share_access);
Jeff Laytonce0fc432012-05-11 09:45:14 -04005426 reset_union_bmap_deny(od->od_share_deny, stp);
Jeff Layton9767feb2015-10-01 09:05:50 -04005427 nfs4_inc_and_copy_stateid(&od->od_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428 status = nfs_ok;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005429put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005430 mutex_unlock(&stp->st_mutex);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005431 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005433 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 return status;
5435}
5436
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005437static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
5438{
Trond Myklebustacf92952014-06-30 11:48:37 -04005439 struct nfs4_client *clp = s->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04005440 bool unhashed;
Jeff Laytond83017f2014-07-29 21:34:42 -04005441 LIST_HEAD(reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04005442
Jeff Layton2c41beb2014-07-29 21:34:41 -04005443 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04005444 unhashed = unhash_open_stateid(s, &reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04005445
Jeff Laytond83017f2014-07-29 21:34:42 -04005446 if (clp->cl_minorversion) {
Jeff Laytone8568732015-08-24 12:41:47 -04005447 if (unhashed)
5448 put_ol_stateid_locked(s, &reaplist);
Jeff Laytond83017f2014-07-29 21:34:42 -04005449 spin_unlock(&clp->cl_lock);
5450 free_ol_stateid_reaplist(&reaplist);
5451 } else {
5452 spin_unlock(&clp->cl_lock);
5453 free_ol_stateid_reaplist(&reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04005454 if (unhashed)
5455 move_to_close_lru(s, clp->net);
Jeff Laytond83017f2014-07-29 21:34:42 -04005456 }
J. Bruce Fields38c387b2011-09-16 17:42:48 -04005457}
5458
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459/*
5460 * nfs4_unlock_state() called after encode
5461 */
Al Virob37ad282006-10-19 23:28:59 -07005462__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005463nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005464 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005466 struct nfsd4_close *close = &u->close;
Al Virob37ad282006-10-19 23:28:59 -07005467 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005468 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005469 struct net *net = SVC_NET(rqstp);
5470 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471
Al Viroa6a9f182013-09-16 10:57:01 -04005472 dprintk("NFSD: nfsd4_close on file %pd\n",
5473 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005475 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
5476 &close->cl_stateid,
5477 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005478 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005479 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005480 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481 goto out;
Trond Myklebust15ca08d2017-11-03 08:00:10 -04005482
5483 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton9767feb2015-10-01 09:05:50 -04005484 nfs4_inc_and_copy_stateid(&close->cl_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005486 nfsd4_close_open_stateid(stp);
Trond Myklebust15ca08d2017-11-03 08:00:10 -04005487 mutex_unlock(&stp->st_mutex);
Trond Myklebust8a0b5892014-07-29 21:34:20 -04005488
Trond Myklebustfb500a72017-11-03 08:00:12 -04005489 /* See RFC5661 sectionm 18.2.4 */
5490 if (stp->st_stid.sc_client->cl_minorversion)
5491 memcpy(&close->cl_stateid, &close_stateid,
5492 sizeof(close->cl_stateid));
5493
Trond Myklebust8a0b5892014-07-29 21:34:20 -04005494 /* put reference from nfs4_preprocess_seqid_op */
5495 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 return status;
5498}
5499
Al Virob37ad282006-10-19 23:28:59 -07005500__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005501nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005502 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005504 struct nfsd4_delegreturn *dr = &u->delegreturn;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005505 struct nfs4_delegation *dp;
5506 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005507 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07005508 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005509 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005511 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005512 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005514 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005515 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005516 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005517 dp = delegstateid(s);
Trond Myklebust03da3162017-11-03 08:00:16 -04005518 status = nfsd4_stid_check_stateid_generation(stateid, &dp->dl_stid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005519 if (status)
Trond Myklebustfd911012014-07-29 21:34:24 -04005520 goto put_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005521
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005522 destroy_delegation(dp);
Trond Myklebustfd911012014-07-29 21:34:24 -04005523put_stateid:
5524 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525out:
5526 return status;
5527}
5528
Benny Halevy87df4de2008-12-15 19:42:03 +02005529static inline u64
5530end_offset(u64 start, u64 len)
5531{
5532 u64 end;
5533
5534 end = start + len;
5535 return end >= start ? end: NFS4_MAX_UINT64;
5536}
5537
5538/* last octet in a range */
5539static inline u64
5540last_byte_offset(u64 start, u64 len)
5541{
5542 u64 end;
5543
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005544 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02005545 end = start + len;
5546 return end > start ? end - 1: NFS4_MAX_UINT64;
5547}
5548
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549/*
5550 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
5551 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
5552 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
5553 * locking, this prevents us from being completely protocol-compliant. The
5554 * real solution to this problem is to start using unsigned file offsets in
5555 * the VFS, but this is a very deep change!
5556 */
5557static inline void
5558nfs4_transform_lock_offset(struct file_lock *lock)
5559{
5560 if (lock->fl_start < 0)
5561 lock->fl_start = OFFSET_MAX;
5562 if (lock->fl_end < 0)
5563 lock->fl_end = OFFSET_MAX;
5564}
5565
Jeff Laytoncae80b32015-04-03 09:04:04 -04005566static fl_owner_t
5567nfsd4_fl_get_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04005568{
Jeff Laytoncae80b32015-04-03 09:04:04 -04005569 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
5570
5571 nfs4_get_stateowner(&lo->lo_owner);
5572 return owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04005573}
5574
Jeff Laytoncae80b32015-04-03 09:04:04 -04005575static void
5576nfsd4_fl_put_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04005577{
Jeff Laytoncae80b32015-04-03 09:04:04 -04005578 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04005579
Jeff Laytoncae80b32015-04-03 09:04:04 -04005580 if (lo)
Kinglong Meeaef95832014-08-22 10:18:44 -04005581 nfs4_put_stateowner(&lo->lo_owner);
Kinglong Meeaef95832014-08-22 10:18:44 -04005582}
5583
Jeff Layton76d348f2016-09-16 16:28:24 -04005584static void
5585nfsd4_lm_notify(struct file_lock *fl)
5586{
5587 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)fl->fl_owner;
5588 struct net *net = lo->lo_owner.so_client->net;
5589 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5590 struct nfsd4_blocked_lock *nbl = container_of(fl,
5591 struct nfsd4_blocked_lock, nbl_lock);
5592 bool queue = false;
5593
Jeff Layton7919d0a2016-09-16 16:28:25 -04005594 /* An empty list means that something else is going to be using it */
Jeff Layton0cc11a62016-10-20 09:34:31 -04005595 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005596 if (!list_empty(&nbl->nbl_list)) {
5597 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005598 list_del_init(&nbl->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -04005599 queue = true;
5600 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04005601 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005602
5603 if (queue)
5604 nfsd4_run_cb(&nbl->nbl_cb);
5605}
5606
Alexey Dobriyan7b021962009-09-21 17:01:12 -07005607static const struct lock_manager_operations nfsd_posix_mng_ops = {
Jeff Layton76d348f2016-09-16 16:28:24 -04005608 .lm_notify = nfsd4_lm_notify,
Kinglong Meeaef95832014-08-22 10:18:44 -04005609 .lm_get_owner = nfsd4_fl_get_owner,
5610 .lm_put_owner = nfsd4_fl_put_owner,
NeilBrownd5b90262006-04-10 22:55:22 -07005611};
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
5613static inline void
5614nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
5615{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005616 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
NeilBrownd5b90262006-04-10 22:55:22 -07005618 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005619 lo = (struct nfs4_lockowner *) fl->fl_owner;
5620 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
5621 lo->lo_owner.so_owner.len, GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04005622 if (!deny->ld_owner.data)
5623 /* We just don't care that much */
5624 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005625 deny->ld_owner.len = lo->lo_owner.so_owner.len;
5626 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07005627 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04005628nevermind:
5629 deny->ld_owner.len = 0;
5630 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07005631 deny->ld_clientid.cl_boot = 0;
5632 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633 }
5634 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02005635 deny->ld_length = NFS4_MAX_UINT64;
5636 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 deny->ld_length = fl->fl_end - fl->fl_start + 1;
5638 deny->ld_type = NFS4_READ_LT;
5639 if (fl->fl_type != F_RDLCK)
5640 deny->ld_type = NFS4_WRITE_LT;
5641}
5642
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005643static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08005644find_lockowner_str_locked(struct nfs4_client *clp, struct xdr_netobj *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645{
Trond Myklebustd4f04892014-07-29 21:34:36 -04005646 unsigned int strhashval = ownerstr_hashval(owner);
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005647 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648
Trond Myklebust0a880a22014-07-30 08:27:10 -04005649 lockdep_assert_held(&clp->cl_lock);
5650
Trond Myklebustd4f04892014-07-29 21:34:36 -04005651 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[strhashval],
5652 so_strhash) {
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005653 if (so->so_is_open_owner)
5654 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -04005655 if (same_owner_str(so, owner))
5656 return lockowner(nfs4_get_stateowner(so));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 }
5658 return NULL;
5659}
5660
Trond Myklebustc58c6612014-07-29 21:34:35 -04005661static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08005662find_lockowner_str(struct nfs4_client *clp, struct xdr_netobj *owner)
Trond Myklebustc58c6612014-07-29 21:34:35 -04005663{
5664 struct nfs4_lockowner *lo;
5665
Trond Myklebustd4f04892014-07-29 21:34:36 -04005666 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08005667 lo = find_lockowner_str_locked(clp, owner);
Trond Myklebustd4f04892014-07-29 21:34:36 -04005668 spin_unlock(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005669 return lo;
5670}
5671
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005672static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
5673{
Trond Myklebustc58c6612014-07-29 21:34:35 -04005674 unhash_lockowner_locked(lockowner(sop));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005675}
5676
Jeff Layton6b180f02014-07-29 21:34:26 -04005677static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
5678{
5679 struct nfs4_lockowner *lo = lockowner(sop);
5680
5681 kmem_cache_free(lockowner_slab, lo);
5682}
5683
5684static const struct nfs4_stateowner_operations lockowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005685 .so_unhash = nfs4_unhash_lockowner,
5686 .so_free = nfs4_free_lockowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04005687};
5688
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689/*
5690 * Alloc a lock owner structure.
5691 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005692 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005694 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005696static struct nfs4_lockowner *
Trond Myklebustc58c6612014-07-29 21:34:35 -04005697alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp,
5698 struct nfs4_ol_stateid *open_stp,
5699 struct nfsd4_lock *lock)
5700{
Trond Myklebustc58c6612014-07-29 21:34:35 -04005701 struct nfs4_lockowner *lo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005703 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
5704 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 return NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04005706 INIT_LIST_HEAD(&lo->lo_blocked);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005707 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
5708 lo->lo_owner.so_is_open_owner = 0;
Jeff Layton5db1c032014-07-29 21:34:28 -04005709 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
Jeff Layton6b180f02014-07-29 21:34:26 -04005710 lo->lo_owner.so_ops = &lockowner_ops;
Trond Myklebustd4f04892014-07-29 21:34:36 -04005711 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08005712 ret = find_lockowner_str_locked(clp, &lock->lk_new_owner);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005713 if (ret == NULL) {
5714 list_add(&lo->lo_owner.so_strhash,
Trond Myklebustd4f04892014-07-29 21:34:36 -04005715 &clp->cl_ownerstr_hashtbl[strhashval]);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005716 ret = lo;
5717 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08005718 nfs4_free_stateowner(&lo->lo_owner);
5719
Trond Myklebustd4f04892014-07-29 21:34:36 -04005720 spin_unlock(&clp->cl_lock);
J. Bruce Fields340f0ba2015-03-23 11:02:30 -04005721 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722}
5723
Trond Myklebustfd1fd682017-11-03 08:00:14 -04005724static struct nfs4_ol_stateid *
5725find_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp)
5726{
5727 struct nfs4_ol_stateid *lst;
5728 struct nfs4_client *clp = lo->lo_owner.so_client;
5729
5730 lockdep_assert_held(&clp->cl_lock);
5731
5732 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) {
5733 if (lst->st_stid.sc_type != NFS4_LOCK_STID)
5734 continue;
5735 if (lst->st_stid.sc_file == fp) {
5736 refcount_inc(&lst->st_stid.sc_count);
5737 return lst;
5738 }
5739 }
5740 return NULL;
5741}
5742
Trond Myklebustbeeca192017-11-03 08:00:14 -04005743static struct nfs4_ol_stateid *
Jeff Layton356a95e2014-07-29 21:34:13 -04005744init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
5745 struct nfs4_file *fp, struct inode *inode,
5746 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04005748 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustbeeca192017-11-03 08:00:14 -04005749 struct nfs4_ol_stateid *retstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
Trond Myklebustbeeca192017-11-03 08:00:14 -04005751 mutex_init(&stp->st_mutex);
Andrew Elble4f34bd02017-11-08 17:29:51 -05005752 mutex_lock_nested(&stp->st_mutex, OPEN_STATEID_MUTEX);
Trond Myklebustbeeca192017-11-03 08:00:14 -04005753retry:
5754 spin_lock(&clp->cl_lock);
5755 spin_lock(&fp->fi_lock);
5756 retstp = find_lock_stateid(lo, fp);
5757 if (retstp)
5758 goto out_unlock;
Jeff Layton356a95e2014-07-29 21:34:13 -04005759
Elena Reshetovaa15dfcd2017-10-20 12:53:28 +03005760 refcount_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05005761 stp->st_stid.sc_type = NFS4_LOCK_STID;
Kinglong Meeb5971af2014-08-22 10:18:43 -04005762 stp->st_stateowner = nfs4_get_stateowner(&lo->lo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07005763 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04005764 stp->st_stid.sc_file = fp;
J. Bruce Fields0997b172011-03-02 18:01:35 -05005765 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07005767 stp->st_openstp = open_stp;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005768 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04005769 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04005770 list_add(&stp->st_perfile, &fp->fi_stateids);
Trond Myklebustbeeca192017-11-03 08:00:14 -04005771out_unlock:
Trond Myklebust1d31a252014-07-10 14:07:25 -04005772 spin_unlock(&fp->fi_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04005773 spin_unlock(&clp->cl_lock);
5774 if (retstp) {
5775 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
5776 nfs4_put_stid(&retstp->st_stid);
5777 goto retry;
5778 }
5779 /* To keep mutex tracking happy */
5780 mutex_unlock(&stp->st_mutex);
5781 stp = retstp;
5782 }
5783 return stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784}
5785
Jeff Laytonc53530d2014-06-30 11:48:39 -04005786static struct nfs4_ol_stateid *
Jeff Layton356a95e2014-07-29 21:34:13 -04005787find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
5788 struct inode *inode, struct nfs4_ol_stateid *ost,
5789 bool *new)
5790{
5791 struct nfs4_stid *ns = NULL;
5792 struct nfs4_ol_stateid *lst;
5793 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
5794 struct nfs4_client *clp = oo->oo_owner.so_client;
5795
Trond Myklebustbeeca192017-11-03 08:00:14 -04005796 *new = false;
Jeff Layton356a95e2014-07-29 21:34:13 -04005797 spin_lock(&clp->cl_lock);
5798 lst = find_lock_stateid(lo, fi);
Jeff Layton356a95e2014-07-29 21:34:13 -04005799 spin_unlock(&clp->cl_lock);
Trond Myklebustbeeca192017-11-03 08:00:14 -04005800 if (lst != NULL) {
5801 if (nfsd4_lock_ol_stateid(lst) == nfs_ok)
5802 goto out;
5803 nfs4_put_stid(&lst->st_stid);
5804 }
5805 ns = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_lock_stateid);
5806 if (ns == NULL)
5807 return NULL;
5808
5809 lst = init_lock_stateid(openlockstateid(ns), lo, fi, inode, ost);
5810 if (lst == openlockstateid(ns))
5811 *new = true;
5812 else
Jeff Layton356a95e2014-07-29 21:34:13 -04005813 nfs4_put_stid(ns);
Trond Myklebustbeeca192017-11-03 08:00:14 -04005814out:
Jeff Layton356a95e2014-07-29 21:34:13 -04005815 return lst;
5816}
Jeff Laytonc53530d2014-06-30 11:48:39 -04005817
NeilBrownfd39ca92005-06-23 22:04:03 -07005818static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819check_lock_length(u64 offset, u64 length)
5820{
Kinglong Meee7969312015-07-13 17:34:19 +08005821 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
5822 (length > ~offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823}
5824
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005825static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05005826{
Trond Myklebust11b91642014-07-29 21:34:08 -04005827 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05005828
Jeff Layton7214e862014-07-10 14:07:33 -04005829 lockdep_assert_held(&fp->fi_lock);
5830
Jeff Layton82c5ff12012-05-11 09:45:13 -04005831 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05005832 return;
Jeff Layton12659652014-07-10 14:07:28 -04005833 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04005834 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005835}
5836
Jeff Layton356a95e2014-07-29 21:34:13 -04005837static __be32
5838lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
5839 struct nfs4_ol_stateid *ost,
5840 struct nfsd4_lock *lock,
Jeff Laytondd257932016-08-11 10:37:39 -04005841 struct nfs4_ol_stateid **plst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005842{
Jeff Layton5db1c032014-07-29 21:34:28 -04005843 __be32 status;
Trond Myklebust11b91642014-07-29 21:34:08 -04005844 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005845 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
5846 struct nfs4_client *cl = oo->oo_owner.so_client;
David Howells2b0143b2015-03-17 22:25:59 +00005847 struct inode *inode = d_inode(cstate->current_fh.fh_dentry);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005848 struct nfs4_lockowner *lo;
Jeff Laytondd257932016-08-11 10:37:39 -04005849 struct nfs4_ol_stateid *lst;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005850 unsigned int strhashval;
5851
Kinglong Meec8623992015-07-13 17:35:37 +08005852 lo = find_lockowner_str(cl, &lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005853 if (!lo) {
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005854 strhashval = ownerstr_hashval(&lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005855 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
5856 if (lo == NULL)
5857 return nfserr_jukebox;
5858 } else {
5859 /* with an existing lockowner, seqids must be the same */
Jeff Layton5db1c032014-07-29 21:34:28 -04005860 status = nfserr_bad_seqid;
Jeff Laytonc53530d2014-06-30 11:48:39 -04005861 if (!cstate->minorversion &&
5862 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
Jeff Layton5db1c032014-07-29 21:34:28 -04005863 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005864 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04005865
Jeff Laytondd257932016-08-11 10:37:39 -04005866 lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
5867 if (lst == NULL) {
Jeff Layton5db1c032014-07-29 21:34:28 -04005868 status = nfserr_jukebox;
5869 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005870 }
Jeff Laytondd257932016-08-11 10:37:39 -04005871
Jeff Layton5db1c032014-07-29 21:34:28 -04005872 status = nfs_ok;
Jeff Laytondd257932016-08-11 10:37:39 -04005873 *plst = lst;
Jeff Layton5db1c032014-07-29 21:34:28 -04005874out:
5875 nfs4_put_stateowner(&lo->lo_owner);
5876 return status;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005877}
5878
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879/*
5880 * LOCK operation
5881 */
Al Virob37ad282006-10-19 23:28:59 -07005882__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005883nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02005884 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885{
Christoph Hellwigeb698532017-05-08 20:58:35 +02005886 struct nfsd4_lock *lock = &u->lock;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005887 struct nfs4_openowner *open_sop = NULL;
5888 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005889 struct nfs4_ol_stateid *lock_stp = NULL;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005890 struct nfs4_ol_stateid *open_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04005891 struct nfs4_file *fp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04005892 struct file *filp = NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04005893 struct nfsd4_blocked_lock *nbl = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04005894 struct file_lock *file_lock = NULL;
5895 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005896 __be32 status = 0;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005897 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07005898 int err;
Jeff Layton5db1c032014-07-29 21:34:28 -04005899 bool new = false;
Jeff Layton76d348f2016-09-16 16:28:24 -04005900 unsigned char fl_type;
5901 unsigned int fl_flags = FL_POSIX;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005902 struct net *net = SVC_NET(rqstp);
5903 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904
5905 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
5906 (long long) lock->lk_offset,
5907 (long long) lock->lk_length);
5908
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909 if (check_lock_length(lock->lk_offset, lock->lk_length))
5910 return nfserr_inval;
5911
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005912 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02005913 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08005914 dprintk("NFSD: nfsd4_lock: permission denied!\n");
5915 return status;
5916 }
5917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 if (lock->lk_is_new) {
J. Bruce Fields684e5632011-11-04 17:08:10 -04005919 if (nfsd4_has_session(cstate))
5920 /* See rfc 5661 18.10.3: given clientid is ignored: */
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005921 memcpy(&lock->lk_new_clientid,
J. Bruce Fields684e5632011-11-04 17:08:10 -04005922 &cstate->session->se_client->cl_clientid,
5923 sizeof(clientid_t));
5924
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04005926 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005930 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 lock->lk_new_open_seqid,
5932 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005933 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07005934 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935 goto out;
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005936 mutex_unlock(&open_stp->st_mutex);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005937 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005938 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04005939 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005940 &lock->lk_new_clientid))
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005941 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005942 status = lookup_or_create_lock_state(cstate, open_stp, lock,
Jeff Layton5db1c032014-07-29 21:34:28 -04005943 &lock_stp, &new);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005944 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03005945 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005946 lock->lk_old_lock_seqid,
5947 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005948 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005949 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04005950 if (status)
5951 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005952 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005954 lkflg = setlkflg(lock->lk_type);
5955 status = nfs4_check_openmode(lock_stp, lkflg);
5956 if (status)
5957 goto out;
5958
NeilBrown0dd395d2005-07-07 17:59:15 -07005959 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005960 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07005961 goto out;
5962 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005963 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07005964 goto out;
5965
Trond Myklebust11b91642014-07-29 21:34:08 -04005966 fp = lock_stp->st_stid.sc_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967 switch (lock->lk_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 case NFS4_READW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04005969 if (nfsd4_has_session(cstate))
5970 fl_flags |= FL_SLEEP;
5971 /* Fallthrough */
5972 case NFS4_READ_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04005973 spin_lock(&fp->fi_lock);
5974 filp = find_readable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005975 if (filp)
5976 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04005977 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005978 fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05005979 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980 case NFS4_WRITEW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04005981 if (nfsd4_has_session(cstate))
5982 fl_flags |= FL_SLEEP;
5983 /* Fallthrough */
5984 case NFS4_WRITE_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04005985 spin_lock(&fp->fi_lock);
5986 filp = find_writeable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005987 if (filp)
5988 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04005989 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005990 fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05005991 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992 default:
5993 status = nfserr_inval;
5994 goto out;
5995 }
Jeff Layton76d348f2016-09-16 16:28:24 -04005996
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04005997 if (!filp) {
5998 status = nfserr_openmode;
5999 goto out;
6000 }
Kinglong Meeaef95832014-08-22 10:18:44 -04006001
Jeff Layton76d348f2016-09-16 16:28:24 -04006002 nbl = find_or_allocate_block(lock_sop, &fp->fi_fhandle, nn);
6003 if (!nbl) {
6004 dprintk("NFSD: %s: unable to allocate block!\n", __func__);
6005 status = nfserr_jukebox;
6006 goto out;
6007 }
6008
6009 file_lock = &nbl->nbl_lock;
6010 file_lock->fl_type = fl_type;
Kinglong Meeaef95832014-08-22 10:18:44 -04006011 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lock_sop->lo_owner));
Jeff Layton21179d82012-08-21 08:03:32 -04006012 file_lock->fl_pid = current->tgid;
6013 file_lock->fl_file = filp;
Jeff Layton76d348f2016-09-16 16:28:24 -04006014 file_lock->fl_flags = fl_flags;
Jeff Layton21179d82012-08-21 08:03:32 -04006015 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6016 file_lock->fl_start = lock->lk_offset;
6017 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
6018 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019
Jeff Layton21179d82012-08-21 08:03:32 -04006020 conflock = locks_alloc_lock();
6021 if (!conflock) {
6022 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6023 status = nfserr_jukebox;
6024 goto out;
6025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
Jeff Layton76d348f2016-09-16 16:28:24 -04006027 if (fl_flags & FL_SLEEP) {
Jeff Layton7919d0a2016-09-16 16:28:25 -04006028 nbl->nbl_time = jiffies;
Jeff Layton0cc11a62016-10-20 09:34:31 -04006029 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006030 list_add_tail(&nbl->nbl_list, &lock_sop->lo_blocked);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006031 list_add_tail(&nbl->nbl_lru, &nn->blocked_locks_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006032 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006033 }
6034
Jeff Layton21179d82012-08-21 08:03:32 -04006035 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006036 switch (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037 case 0: /* success! */
Jeff Layton9767feb2015-10-01 09:05:50 -04006038 nfs4_inc_and_copy_stateid(&lock->lk_resp_stateid, &lock_stp->st_stid);
Al Virob8dd7b92006-10-19 23:29:01 -07006039 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006040 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006041 case FILE_LOCK_DEFERRED:
6042 nbl = NULL;
6043 /* Fallthrough */
6044 case -EAGAIN: /* conflock holds conflicting lock */
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006045 status = nfserr_denied;
6046 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04006047 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006048 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006049 case -EDEADLK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006051 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04006052 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05006053 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04006054 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006055 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057out:
Jeff Layton76d348f2016-09-16 16:28:24 -04006058 if (nbl) {
6059 /* dequeue it if we queued it before */
6060 if (fl_flags & FL_SLEEP) {
Jeff Layton0cc11a62016-10-20 09:34:31 -04006061 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006062 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006063 list_del_init(&nbl->nbl_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006064 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006065 }
6066 free_blocked_lock(nbl);
6067 }
Trond Myklebustde186432014-07-10 14:07:26 -04006068 if (filp)
6069 fput(filp);
Jeff Layton5db1c032014-07-29 21:34:28 -04006070 if (lock_stp) {
6071 /* Bump seqid manually if the 4.0 replay owner is openowner */
6072 if (cstate->replay_owner &&
6073 cstate->replay_owner != &lock_sop->lo_owner &&
6074 seqid_mutating_err(ntohl(status)))
6075 lock_sop->lo_owner.so_seqid++;
6076
6077 /*
6078 * If this is a new, never-before-used stateid, and we are
6079 * returning an error, then just go ahead and release it.
6080 */
J. Bruce Fields25020722018-01-17 16:25:59 -05006081 if (status && new)
Jeff Layton5db1c032014-07-29 21:34:28 -04006082 release_lock_stateid(lock_stp);
Trond Myklebustbeeca192017-11-03 08:00:14 -04006083
6084 mutex_unlock(&lock_stp->st_mutex);
Jeff Layton5db1c032014-07-29 21:34:28 -04006085
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006086 nfs4_put_stid(&lock_stp->st_stid);
Jeff Layton5db1c032014-07-29 21:34:28 -04006087 }
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006088 if (open_stp)
6089 nfs4_put_stid(&open_stp->st_stid);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006090 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006091 if (conflock)
6092 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093 return status;
6094}
6095
6096/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006097 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
6098 * so we do a temporary open here just to get an open file to pass to
6099 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
6100 * inode operation.)
6101 */
Al Viro04da6e92012-04-13 00:00:04 -04006102static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006103{
6104 struct file *file;
Al Viro04da6e92012-04-13 00:00:04 -04006105 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
6106 if (!err) {
6107 err = nfserrno(vfs_test_lock(file, lock));
Christoph Hellwigfd891452015-04-28 15:41:16 +02006108 fput(file);
Al Viro04da6e92012-04-13 00:00:04 -04006109 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006110 return err;
6111}
6112
6113/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114 * LOCKT operation
6115 */
Al Virob37ad282006-10-19 23:28:59 -07006116__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006117nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006118 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006120 struct nfsd4_lockt *lockt = &u->lockt;
Jeff Layton21179d82012-08-21 08:03:32 -04006121 struct file_lock *file_lock = NULL;
Jeff Layton5db1c032014-07-29 21:34:28 -04006122 struct nfs4_lockowner *lo = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006123 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006124 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04006126 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127 return nfserr_grace;
6128
6129 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
6130 return nfserr_inval;
6131
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006132 if (!nfsd4_has_session(cstate)) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04006133 status = lookup_clientid(&lockt->lt_clientid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006134 if (status)
6135 goto out;
6136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137
J. Bruce Fields75c096f2011-08-15 18:39:32 -04006138 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
Jeff Layton21179d82012-08-21 08:03:32 -04006141 file_lock = locks_alloc_lock();
6142 if (!file_lock) {
6143 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6144 status = nfserr_jukebox;
6145 goto out;
6146 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006147
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148 switch (lockt->lt_type) {
6149 case NFS4_READ_LT:
6150 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006151 file_lock->fl_type = F_RDLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152 break;
6153 case NFS4_WRITE_LT:
6154 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006155 file_lock->fl_type = F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 break;
6157 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04006158 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159 status = nfserr_inval;
6160 goto out;
6161 }
6162
Kinglong Meec8623992015-07-13 17:35:37 +08006163 lo = find_lockowner_str(cstate->clp, &lockt->lt_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006164 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04006165 file_lock->fl_owner = (fl_owner_t)lo;
6166 file_lock->fl_pid = current->tgid;
6167 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168
Jeff Layton21179d82012-08-21 08:03:32 -04006169 file_lock->fl_start = lockt->lt_offset;
6170 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171
Jeff Layton21179d82012-08-21 08:03:32 -04006172 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173
Jeff Layton21179d82012-08-21 08:03:32 -04006174 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04006175 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05006176 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04006177
Jeff Layton21179d82012-08-21 08:03:32 -04006178 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04006180 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181 }
6182out:
Jeff Layton5db1c032014-07-29 21:34:28 -04006183 if (lo)
6184 nfs4_put_stateowner(&lo->lo_owner);
Jeff Layton21179d82012-08-21 08:03:32 -04006185 if (file_lock)
6186 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187 return status;
6188}
6189
Al Virob37ad282006-10-19 23:28:59 -07006190__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006191nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006192 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006194 struct nfsd4_locku *locku = &u->locku;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006195 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006197 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006198 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07006199 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006200 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
6201
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
6203 (long long) locku->lu_offset,
6204 (long long) locku->lu_length);
6205
6206 if (check_lock_length(locku->lu_offset, locku->lu_length))
6207 return nfserr_inval;
6208
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006209 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006210 &locku->lu_stateid, NFS4_LOCK_STID,
6211 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006212 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213 goto out;
Trond Myklebust11b91642014-07-29 21:34:08 -04006214 filp = find_any_file(stp->st_stid.sc_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006215 if (!filp) {
6216 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04006217 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006218 }
Jeff Layton21179d82012-08-21 08:03:32 -04006219 file_lock = locks_alloc_lock();
6220 if (!file_lock) {
6221 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6222 status = nfserr_jukebox;
Trond Myklebustde186432014-07-10 14:07:26 -04006223 goto fput;
Jeff Layton21179d82012-08-21 08:03:32 -04006224 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006225
Jeff Layton21179d82012-08-21 08:03:32 -04006226 file_lock->fl_type = F_UNLCK;
Kinglong Meeaef95832014-08-22 10:18:44 -04006227 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(stp->st_stateowner));
Jeff Layton21179d82012-08-21 08:03:32 -04006228 file_lock->fl_pid = current->tgid;
6229 file_lock->fl_file = filp;
6230 file_lock->fl_flags = FL_POSIX;
6231 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6232 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233
Jeff Layton21179d82012-08-21 08:03:32 -04006234 file_lock->fl_end = last_byte_offset(locku->lu_offset,
6235 locku->lu_length);
6236 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237
Jeff Layton21179d82012-08-21 08:03:32 -04006238 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07006239 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05006240 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241 goto out_nfserr;
6242 }
Jeff Layton9767feb2015-10-01 09:05:50 -04006243 nfs4_inc_and_copy_stateid(&locku->lu_stateid, &stp->st_stid);
Trond Myklebustde186432014-07-10 14:07:26 -04006244fput:
6245 fput(filp);
Trond Myklebust858cc572014-07-29 21:34:16 -04006246put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006247 mutex_unlock(&stp->st_mutex);
Trond Myklebust858cc572014-07-29 21:34:16 -04006248 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006250 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006251 if (file_lock)
6252 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253 return status;
6254
6255out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07006256 status = nfserrno(err);
Trond Myklebustde186432014-07-10 14:07:26 -04006257 goto fput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258}
6259
6260/*
6261 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006262 * true: locks held by lockowner
6263 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006265static bool
6266check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267{
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006268 struct file_lock *fl;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006269 int status = false;
6270 struct file *filp = find_any_file(fp);
6271 struct inode *inode;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006272 struct file_lock_context *flctx;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006273
6274 if (!filp) {
6275 /* Any valid lock stateid should have some sort of access */
6276 WARN_ON_ONCE(1);
6277 return status;
6278 }
6279
6280 inode = file_inode(filp);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006281 flctx = inode->i_flctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006283 if (flctx && !list_empty_careful(&flctx->flc_posix)) {
Jeff Layton6109c852015-01-16 15:05:57 -05006284 spin_lock(&flctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006285 list_for_each_entry(fl, &flctx->flc_posix, fl_list) {
6286 if (fl->fl_owner == (fl_owner_t)lowner) {
6287 status = true;
6288 break;
6289 }
J. Bruce Fields796dadf2006-01-18 17:43:22 -08006290 }
Jeff Layton6109c852015-01-16 15:05:57 -05006291 spin_unlock(&flctx->flc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292 }
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006293 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 return status;
6295}
6296
Al Virob37ad282006-10-19 23:28:59 -07006297__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08006298nfsd4_release_lockowner(struct svc_rqst *rqstp,
6299 struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02006300 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301{
Christoph Hellwigeb698532017-05-08 20:58:35 +02006302 struct nfsd4_release_lockowner *rlockowner = &u->release_lockowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Layton882e9d22014-07-29 21:34:37 -04006304 struct nfs4_stateowner *sop;
6305 struct nfs4_lockowner *lo = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006306 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307 struct xdr_netobj *owner = &rlockowner->rl_owner;
Trond Myklebustd4f04892014-07-29 21:34:36 -04006308 unsigned int hashval = ownerstr_hashval(owner);
Al Virob37ad282006-10-19 23:28:59 -07006309 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006310 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006311 struct nfs4_client *clp;
Chuck Lever88584812016-07-13 16:40:14 -04006312 LIST_HEAD (reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313
6314 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
6315 clid->cl_boot, clid->cl_id);
6316
Jeff Layton4b24ca72014-06-30 11:48:44 -04006317 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006318 if (status)
Trond Myklebust51f5e782014-07-30 08:27:27 -04006319 return status;
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006320
Trond Myklebustd4f04892014-07-29 21:34:36 -04006321 clp = cstate->clp;
Jeff Laytonfd449072014-06-30 11:48:41 -04006322 /* Find the matching lock stateowner */
Trond Myklebustd4f04892014-07-29 21:34:36 -04006323 spin_lock(&clp->cl_lock);
Jeff Layton882e9d22014-07-29 21:34:37 -04006324 list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval],
Trond Myklebustd4f04892014-07-29 21:34:36 -04006325 so_strhash) {
Jeff Layton882e9d22014-07-29 21:34:37 -04006326
6327 if (sop->so_is_open_owner || !same_owner_str(sop, owner))
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05006328 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04006329
Jeff Layton882e9d22014-07-29 21:34:37 -04006330 /* see if there are still any locks associated with it */
6331 lo = lockowner(sop);
6332 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
6333 if (check_for_locks(stp->st_stid.sc_file, lo)) {
6334 status = nfserr_locks_held;
6335 spin_unlock(&clp->cl_lock);
Trond Myklebust51f5e782014-07-30 08:27:27 -04006336 return status;
Jeff Layton882e9d22014-07-29 21:34:37 -04006337 }
Jeff Layton5adfd882014-07-29 21:34:31 -04006338 }
Jeff Layton882e9d22014-07-29 21:34:37 -04006339
Kinglong Meeb5971af2014-08-22 10:18:43 -04006340 nfs4_get_stateowner(sop);
Jeff Layton882e9d22014-07-29 21:34:37 -04006341 break;
Jeff Laytonfd449072014-06-30 11:48:41 -04006342 }
Chuck Lever88584812016-07-13 16:40:14 -04006343 if (!lo) {
6344 spin_unlock(&clp->cl_lock);
6345 return status;
6346 }
6347
6348 unhash_lockowner_locked(lo);
6349 while (!list_empty(&lo->lo_owner.so_stateids)) {
6350 stp = list_first_entry(&lo->lo_owner.so_stateids,
6351 struct nfs4_ol_stateid,
6352 st_perstateowner);
6353 WARN_ON(!unhash_lock_stateid(stp));
6354 put_ol_stateid_locked(stp, &reaplist);
6355 }
Trond Myklebustc58c6612014-07-29 21:34:35 -04006356 spin_unlock(&clp->cl_lock);
Chuck Lever88584812016-07-13 16:40:14 -04006357 free_ol_stateid_reaplist(&reaplist);
6358 nfs4_put_stateowner(&lo->lo_owner);
6359
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360 return status;
6361}
6362
6363static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07006364alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365{
NeilBrowna55370a2005-06-23 22:03:52 -07006366 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367}
6368
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006369bool
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006370nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07006371{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006372 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07006373
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006374 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006375 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07006376}
6377
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378/*
6379 * failure => all reset bets are off, nfserr_no_grace...
6380 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05006381struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006382nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383{
6384 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05006385 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386
NeilBrowna55370a2005-06-23 22:03:52 -07006387 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
6388 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05006389 if (crp) {
6390 strhashval = clientstr_hashval(name);
6391 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006392 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Jeff Layton772a9bb2012-11-12 15:00:54 -05006393 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006394 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006395 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05006396 }
6397 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398}
6399
Jeff Layton2a4317c2012-03-21 16:42:43 -04006400void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006401nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05006402{
6403 list_del(&crp->cr_strhash);
6404 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006405 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05006406}
6407
6408void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006409nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410{
6411 struct nfs4_client_reclaim *crp = NULL;
6412 int i;
6413
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006415 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
6416 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006418 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419 }
6420 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006421 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422}
6423
6424/*
6425 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04006426struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006427nfsd4_find_reclaim_client(const char *recdir, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428{
6429 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430 struct nfs4_client_reclaim *crp = NULL;
6431
Jeff Layton278c9312012-11-12 15:00:52 -05006432 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433
Jeff Layton278c9312012-11-12 15:00:52 -05006434 strhashval = clientstr_hashval(recdir);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006435 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Jeff Layton278c9312012-11-12 15:00:52 -05006436 if (same_name(crp->cr_recdir, recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 return crp;
6438 }
6439 }
6440 return NULL;
6441}
6442
6443/*
6444* Called from OPEN. Look for clientid in reclaim list.
6445*/
Al Virob37ad282006-10-19 23:28:59 -07006446__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006447nfs4_check_open_reclaim(clientid_t *clid,
6448 struct nfsd4_compound_state *cstate,
6449 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006451 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04006452
6453 /* find clientid in conf_id_hashtbl */
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006454 status = lookup_clientid(clid, cstate, nn);
6455 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04006456 return nfserr_reclaim_bad;
6457
Jeff Layton3b3e7b72014-09-12 16:40:22 -04006458 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags))
6459 return nfserr_no_grace;
6460
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006461 if (nfsd4_client_record_check(cstate->clp))
6462 return nfserr_reclaim_bad;
6463
6464 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465}
6466
Bryan Schumaker65178db2011-11-01 13:35:21 -04006467#ifdef CONFIG_NFSD_FAULT_INJECTION
Jeff Layton016200c2014-07-30 08:27:21 -04006468static inline void
6469put_client(struct nfs4_client *clp)
6470{
6471 atomic_dec(&clp->cl_refcount);
6472}
6473
Jeff Layton285abde2014-07-30 08:27:24 -04006474static struct nfs4_client *
6475nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
6476{
6477 struct nfs4_client *clp;
6478 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6479 nfsd_net_id);
6480
6481 if (!nfsd_netns_ready(nn))
6482 return NULL;
6483
6484 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6485 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
6486 return clp;
6487 }
6488 return NULL;
6489}
6490
Jeff Layton7ec0e362014-07-30 08:27:17 -04006491u64
Jeff Layton285abde2014-07-30 08:27:24 -04006492nfsd_inject_print_clients(void)
Jeff Layton7ec0e362014-07-30 08:27:17 -04006493{
6494 struct nfs4_client *clp;
6495 u64 count = 0;
6496 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6497 nfsd_net_id);
6498 char buf[INET6_ADDRSTRLEN];
6499
6500 if (!nfsd_netns_ready(nn))
6501 return 0;
6502
6503 spin_lock(&nn->client_lock);
6504 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6505 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
6506 pr_info("NFS Client: %s\n", buf);
6507 ++count;
6508 }
6509 spin_unlock(&nn->client_lock);
6510
6511 return count;
6512}
Bryan Schumaker65178db2011-11-01 13:35:21 -04006513
Jeff Laytona0926d12014-07-30 08:27:18 -04006514u64
Jeff Layton285abde2014-07-30 08:27:24 -04006515nfsd_inject_forget_client(struct sockaddr_storage *addr, size_t addr_size)
Jeff Laytona0926d12014-07-30 08:27:18 -04006516{
6517 u64 count = 0;
6518 struct nfs4_client *clp;
6519 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6520 nfsd_net_id);
6521
6522 if (!nfsd_netns_ready(nn))
6523 return count;
6524
6525 spin_lock(&nn->client_lock);
6526 clp = nfsd_find_client(addr, addr_size);
6527 if (clp) {
6528 if (mark_client_expired_locked(clp) == nfs_ok)
6529 ++count;
6530 else
6531 clp = NULL;
6532 }
6533 spin_unlock(&nn->client_lock);
6534
6535 if (clp)
6536 expire_client(clp);
6537
6538 return count;
6539}
6540
Jeff Layton69fc9ed2014-07-30 08:27:19 -04006541u64
Jeff Layton285abde2014-07-30 08:27:24 -04006542nfsd_inject_forget_clients(u64 max)
Jeff Layton69fc9ed2014-07-30 08:27:19 -04006543{
6544 u64 count = 0;
6545 struct nfs4_client *clp, *next;
6546 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6547 nfsd_net_id);
6548 LIST_HEAD(reaplist);
6549
6550 if (!nfsd_netns_ready(nn))
6551 return count;
6552
6553 spin_lock(&nn->client_lock);
6554 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
6555 if (mark_client_expired_locked(clp) == nfs_ok) {
6556 list_add(&clp->cl_lru, &reaplist);
6557 if (max != 0 && ++count >= max)
6558 break;
6559 }
6560 }
6561 spin_unlock(&nn->client_lock);
6562
6563 list_for_each_entry_safe(clp, next, &reaplist, cl_lru)
6564 expire_client(clp);
6565
6566 return count;
6567}
6568
Bryan Schumaker184c1842012-11-29 11:40:44 -05006569static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
6570 const char *type)
6571{
6572 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05006573 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05006574 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
6575}
6576
Jeff Layton016200c2014-07-30 08:27:21 -04006577static void
6578nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid *lst,
6579 struct list_head *collect)
6580{
6581 struct nfs4_client *clp = lst->st_stid.sc_client;
6582 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6583 nfsd_net_id);
6584
6585 if (!collect)
6586 return;
6587
6588 lockdep_assert_held(&nn->client_lock);
6589 atomic_inc(&clp->cl_refcount);
6590 list_add(&lst->st_locks, collect);
6591}
6592
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006593static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
Jeff Layton3738d502014-07-30 08:27:20 -04006594 struct list_head *collect,
Jeff Laytone8568732015-08-24 12:41:47 -04006595 bool (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05006596{
6597 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006598 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006599 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006600 u64 count = 0;
6601
Jeff Layton016200c2014-07-30 08:27:21 -04006602 spin_lock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006603 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006604 list_for_each_entry_safe(stp, st_next,
6605 &oop->oo_owner.so_stateids, st_perstateowner) {
6606 list_for_each_entry_safe(lst, lst_next,
6607 &stp->st_locks, st_locks) {
Jeff Layton3738d502014-07-30 08:27:20 -04006608 if (func) {
Jeff Laytone8568732015-08-24 12:41:47 -04006609 if (func(lst))
6610 nfsd_inject_add_lock_to_list(lst,
6611 collect);
Jeff Layton3738d502014-07-30 08:27:20 -04006612 }
Jeff Layton016200c2014-07-30 08:27:21 -04006613 ++count;
6614 /*
6615 * Despite the fact that these functions deal
6616 * with 64-bit integers for "count", we must
6617 * ensure that it doesn't blow up the
6618 * clp->cl_refcount. Throw a warning if we
6619 * start to approach INT_MAX here.
6620 */
6621 WARN_ON_ONCE(count == (INT_MAX / 2));
6622 if (count == max)
6623 goto out;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006624 }
6625 }
6626 }
Jeff Layton016200c2014-07-30 08:27:21 -04006627out:
6628 spin_unlock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006629
6630 return count;
6631}
6632
Jeff Layton016200c2014-07-30 08:27:21 -04006633static u64
6634nfsd_collect_client_locks(struct nfs4_client *clp, struct list_head *collect,
6635 u64 max)
Bryan Schumakerfc291712012-11-29 11:40:40 -05006636{
Jeff Layton016200c2014-07-30 08:27:21 -04006637 return nfsd_foreach_client_lock(clp, max, collect, unhash_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006638}
6639
Jeff Layton016200c2014-07-30 08:27:21 -04006640static u64
6641nfsd_print_client_locks(struct nfs4_client *clp)
Bryan Schumaker184c1842012-11-29 11:40:44 -05006642{
Jeff Layton016200c2014-07-30 08:27:21 -04006643 u64 count = nfsd_foreach_client_lock(clp, 0, NULL, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006644 nfsd_print_count(clp, count, "locked files");
6645 return count;
6646}
6647
Jeff Layton016200c2014-07-30 08:27:21 -04006648u64
Jeff Layton285abde2014-07-30 08:27:24 -04006649nfsd_inject_print_locks(void)
Jeff Layton016200c2014-07-30 08:27:21 -04006650{
6651 struct nfs4_client *clp;
6652 u64 count = 0;
6653 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6654 nfsd_net_id);
6655
6656 if (!nfsd_netns_ready(nn))
6657 return 0;
6658
6659 spin_lock(&nn->client_lock);
6660 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6661 count += nfsd_print_client_locks(clp);
6662 spin_unlock(&nn->client_lock);
6663
6664 return count;
6665}
6666
6667static void
6668nfsd_reap_locks(struct list_head *reaplist)
6669{
6670 struct nfs4_client *clp;
6671 struct nfs4_ol_stateid *stp, *next;
6672
6673 list_for_each_entry_safe(stp, next, reaplist, st_locks) {
6674 list_del_init(&stp->st_locks);
6675 clp = stp->st_stid.sc_client;
6676 nfs4_put_stid(&stp->st_stid);
6677 put_client(clp);
6678 }
6679}
6680
6681u64
Jeff Layton285abde2014-07-30 08:27:24 -04006682nfsd_inject_forget_client_locks(struct sockaddr_storage *addr, size_t addr_size)
Jeff Layton016200c2014-07-30 08:27:21 -04006683{
6684 unsigned int count = 0;
6685 struct nfs4_client *clp;
6686 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6687 nfsd_net_id);
6688 LIST_HEAD(reaplist);
6689
6690 if (!nfsd_netns_ready(nn))
6691 return count;
6692
6693 spin_lock(&nn->client_lock);
6694 clp = nfsd_find_client(addr, addr_size);
6695 if (clp)
6696 count = nfsd_collect_client_locks(clp, &reaplist, 0);
6697 spin_unlock(&nn->client_lock);
6698 nfsd_reap_locks(&reaplist);
6699 return count;
6700}
6701
6702u64
Jeff Layton285abde2014-07-30 08:27:24 -04006703nfsd_inject_forget_locks(u64 max)
Jeff Layton016200c2014-07-30 08:27:21 -04006704{
6705 u64 count = 0;
6706 struct nfs4_client *clp;
6707 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6708 nfsd_net_id);
6709 LIST_HEAD(reaplist);
6710
6711 if (!nfsd_netns_ready(nn))
6712 return count;
6713
6714 spin_lock(&nn->client_lock);
6715 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6716 count += nfsd_collect_client_locks(clp, &reaplist, max - count);
6717 if (max != 0 && count >= max)
6718 break;
6719 }
6720 spin_unlock(&nn->client_lock);
6721 nfsd_reap_locks(&reaplist);
6722 return count;
6723}
6724
Jeff Layton82e05ef2014-07-30 08:27:22 -04006725static u64
6726nfsd_foreach_client_openowner(struct nfs4_client *clp, u64 max,
6727 struct list_head *collect,
6728 void (*func)(struct nfs4_openowner *))
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006729{
6730 struct nfs4_openowner *oop, *next;
Jeff Layton82e05ef2014-07-30 08:27:22 -04006731 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6732 nfsd_net_id);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006733 u64 count = 0;
6734
Jeff Layton82e05ef2014-07-30 08:27:22 -04006735 lockdep_assert_held(&nn->client_lock);
6736
6737 spin_lock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006738 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
Jeff Layton82e05ef2014-07-30 08:27:22 -04006739 if (func) {
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006740 func(oop);
Jeff Layton82e05ef2014-07-30 08:27:22 -04006741 if (collect) {
6742 atomic_inc(&clp->cl_refcount);
6743 list_add(&oop->oo_perclient, collect);
6744 }
6745 }
6746 ++count;
6747 /*
6748 * Despite the fact that these functions deal with
6749 * 64-bit integers for "count", we must ensure that
6750 * it doesn't blow up the clp->cl_refcount. Throw a
6751 * warning if we start to approach INT_MAX here.
6752 */
6753 WARN_ON_ONCE(count == (INT_MAX / 2));
6754 if (count == max)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006755 break;
6756 }
Jeff Layton82e05ef2014-07-30 08:27:22 -04006757 spin_unlock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006758
6759 return count;
6760}
6761
Jeff Layton82e05ef2014-07-30 08:27:22 -04006762static u64
6763nfsd_print_client_openowners(struct nfs4_client *clp)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006764{
Jeff Layton82e05ef2014-07-30 08:27:22 -04006765 u64 count = nfsd_foreach_client_openowner(clp, 0, NULL, NULL);
6766
6767 nfsd_print_count(clp, count, "openowners");
6768 return count;
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006769}
6770
Jeff Layton82e05ef2014-07-30 08:27:22 -04006771static u64
6772nfsd_collect_client_openowners(struct nfs4_client *clp,
6773 struct list_head *collect, u64 max)
Bryan Schumaker184c1842012-11-29 11:40:44 -05006774{
Jeff Layton82e05ef2014-07-30 08:27:22 -04006775 return nfsd_foreach_client_openowner(clp, max, collect,
6776 unhash_openowner_locked);
6777}
6778
6779u64
Jeff Layton285abde2014-07-30 08:27:24 -04006780nfsd_inject_print_openowners(void)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006781{
6782 struct nfs4_client *clp;
6783 u64 count = 0;
6784 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6785 nfsd_net_id);
6786
6787 if (!nfsd_netns_ready(nn))
6788 return 0;
6789
6790 spin_lock(&nn->client_lock);
6791 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6792 count += nfsd_print_client_openowners(clp);
6793 spin_unlock(&nn->client_lock);
6794
6795 return count;
6796}
6797
6798static void
6799nfsd_reap_openowners(struct list_head *reaplist)
6800{
6801 struct nfs4_client *clp;
6802 struct nfs4_openowner *oop, *next;
6803
6804 list_for_each_entry_safe(oop, next, reaplist, oo_perclient) {
6805 list_del_init(&oop->oo_perclient);
6806 clp = oop->oo_owner.so_client;
6807 release_openowner(oop);
6808 put_client(clp);
6809 }
6810}
6811
6812u64
Jeff Layton285abde2014-07-30 08:27:24 -04006813nfsd_inject_forget_client_openowners(struct sockaddr_storage *addr,
6814 size_t addr_size)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006815{
6816 unsigned int count = 0;
6817 struct nfs4_client *clp;
6818 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6819 nfsd_net_id);
6820 LIST_HEAD(reaplist);
6821
6822 if (!nfsd_netns_ready(nn))
6823 return count;
6824
6825 spin_lock(&nn->client_lock);
6826 clp = nfsd_find_client(addr, addr_size);
6827 if (clp)
6828 count = nfsd_collect_client_openowners(clp, &reaplist, 0);
6829 spin_unlock(&nn->client_lock);
6830 nfsd_reap_openowners(&reaplist);
6831 return count;
6832}
6833
6834u64
Jeff Layton285abde2014-07-30 08:27:24 -04006835nfsd_inject_forget_openowners(u64 max)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006836{
6837 u64 count = 0;
6838 struct nfs4_client *clp;
6839 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6840 nfsd_net_id);
6841 LIST_HEAD(reaplist);
6842
6843 if (!nfsd_netns_ready(nn))
6844 return count;
6845
6846 spin_lock(&nn->client_lock);
6847 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6848 count += nfsd_collect_client_openowners(clp, &reaplist,
6849 max - count);
6850 if (max != 0 && count >= max)
6851 break;
6852 }
6853 spin_unlock(&nn->client_lock);
6854 nfsd_reap_openowners(&reaplist);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006855 return count;
6856}
6857
Bryan Schumaker269de302012-11-29 11:40:42 -05006858static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
6859 struct list_head *victims)
6860{
6861 struct nfs4_delegation *dp, *next;
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006862 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6863 nfsd_net_id);
Bryan Schumaker269de302012-11-29 11:40:42 -05006864 u64 count = 0;
6865
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006866 lockdep_assert_held(&nn->client_lock);
6867
6868 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05006869 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04006870 if (victims) {
6871 /*
6872 * It's not safe to mess with delegations that have a
6873 * non-zero dl_time. They might have already been broken
6874 * and could be processed by the laundromat outside of
6875 * the state_lock. Just leave them be.
6876 */
6877 if (dp->dl_time != 0)
6878 continue;
6879
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006880 atomic_inc(&clp->cl_refcount);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04006881 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04006882 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04006883 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006884 ++count;
6885 /*
6886 * Despite the fact that these functions deal with
6887 * 64-bit integers for "count", we must ensure that
6888 * it doesn't blow up the clp->cl_refcount. Throw a
6889 * warning if we start to approach INT_MAX here.
6890 */
6891 WARN_ON_ONCE(count == (INT_MAX / 2));
6892 if (count == max)
Bryan Schumaker269de302012-11-29 11:40:42 -05006893 break;
6894 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006895 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05006896 return count;
6897}
6898
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006899static u64
6900nfsd_print_client_delegations(struct nfs4_client *clp)
Bryan Schumaker269de302012-11-29 11:40:42 -05006901{
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006902 u64 count = nfsd_find_all_delegations(clp, 0, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006903
6904 nfsd_print_count(clp, count, "delegations");
6905 return count;
6906}
6907
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006908u64
Jeff Layton285abde2014-07-30 08:27:24 -04006909nfsd_inject_print_delegations(void)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006910{
6911 struct nfs4_client *clp;
6912 u64 count = 0;
6913 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6914 nfsd_net_id);
6915
6916 if (!nfsd_netns_ready(nn))
6917 return 0;
6918
6919 spin_lock(&nn->client_lock);
6920 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6921 count += nfsd_print_client_delegations(clp);
6922 spin_unlock(&nn->client_lock);
6923
6924 return count;
6925}
6926
6927static void
6928nfsd_forget_delegations(struct list_head *reaplist)
6929{
6930 struct nfs4_client *clp;
6931 struct nfs4_delegation *dp, *next;
6932
6933 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
6934 list_del_init(&dp->dl_recall_lru);
6935 clp = dp->dl_stid.sc_client;
6936 revoke_delegation(dp);
6937 put_client(clp);
6938 }
6939}
6940
6941u64
Jeff Layton285abde2014-07-30 08:27:24 -04006942nfsd_inject_forget_client_delegations(struct sockaddr_storage *addr,
6943 size_t addr_size)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006944{
6945 u64 count = 0;
6946 struct nfs4_client *clp;
6947 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6948 nfsd_net_id);
6949 LIST_HEAD(reaplist);
6950
6951 if (!nfsd_netns_ready(nn))
6952 return count;
6953
6954 spin_lock(&nn->client_lock);
6955 clp = nfsd_find_client(addr, addr_size);
6956 if (clp)
6957 count = nfsd_find_all_delegations(clp, 0, &reaplist);
6958 spin_unlock(&nn->client_lock);
6959
6960 nfsd_forget_delegations(&reaplist);
6961 return count;
6962}
6963
6964u64
Jeff Layton285abde2014-07-30 08:27:24 -04006965nfsd_inject_forget_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006966{
6967 u64 count = 0;
6968 struct nfs4_client *clp;
6969 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6970 nfsd_net_id);
6971 LIST_HEAD(reaplist);
6972
6973 if (!nfsd_netns_ready(nn))
6974 return count;
6975
6976 spin_lock(&nn->client_lock);
6977 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6978 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
6979 if (max != 0 && count >= max)
6980 break;
6981 }
6982 spin_unlock(&nn->client_lock);
6983 nfsd_forget_delegations(&reaplist);
6984 return count;
6985}
6986
6987static void
6988nfsd_recall_delegations(struct list_head *reaplist)
6989{
6990 struct nfs4_client *clp;
6991 struct nfs4_delegation *dp, *next;
6992
6993 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
6994 list_del_init(&dp->dl_recall_lru);
6995 clp = dp->dl_stid.sc_client;
6996 /*
6997 * We skipped all entries that had a zero dl_time before,
6998 * so we can now reset the dl_time back to 0. If a delegation
6999 * break comes in now, then it won't make any difference since
7000 * we're recalling it either way.
7001 */
7002 spin_lock(&state_lock);
7003 dp->dl_time = 0;
7004 spin_unlock(&state_lock);
7005 nfsd_break_one_deleg(dp);
7006 put_client(clp);
7007 }
7008}
7009
7010u64
Jeff Layton285abde2014-07-30 08:27:24 -04007011nfsd_inject_recall_client_delegations(struct sockaddr_storage *addr,
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007012 size_t addr_size)
7013{
7014 u64 count = 0;
7015 struct nfs4_client *clp;
7016 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7017 nfsd_net_id);
7018 LIST_HEAD(reaplist);
7019
7020 if (!nfsd_netns_ready(nn))
7021 return count;
7022
7023 spin_lock(&nn->client_lock);
7024 clp = nfsd_find_client(addr, addr_size);
7025 if (clp)
7026 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7027 spin_unlock(&nn->client_lock);
7028
7029 nfsd_recall_delegations(&reaplist);
7030 return count;
7031}
7032
7033u64
Jeff Layton285abde2014-07-30 08:27:24 -04007034nfsd_inject_recall_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007035{
7036 u64 count = 0;
7037 struct nfs4_client *clp, *next;
7038 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7039 nfsd_net_id);
7040 LIST_HEAD(reaplist);
7041
7042 if (!nfsd_netns_ready(nn))
7043 return count;
7044
7045 spin_lock(&nn->client_lock);
7046 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
7047 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7048 if (max != 0 && ++count >= max)
7049 break;
7050 }
7051 spin_unlock(&nn->client_lock);
7052 nfsd_recall_delegations(&reaplist);
7053 return count;
7054}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007055#endif /* CONFIG_NFSD_FAULT_INJECTION */
7056
Meelap Shahc2f1a552007-07-17 04:04:39 -07007057/*
7058 * Since the lifetime of a delegation isn't limited to that of an open, a
7059 * client may quite reasonably hang on to a delegation as long as it has
7060 * the inode cached. This becomes an obvious problem the first time a
7061 * client's inode cache approaches the size of the server's total memory.
7062 *
7063 * For now we avoid this problem by imposing a hard limit on the number
7064 * of delegations, which varies according to the server's memory size.
7065 */
7066static void
7067set_max_delegations(void)
7068{
7069 /*
7070 * Allow at most 4 delegations per megabyte of RAM. Quick
7071 * estimates suggest that in the worst case (where every delegation
7072 * is for a different inode), a delegation could take about 1.5K,
7073 * giving a worst case usage of about 6% of memory.
7074 */
7075 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
7076}
7077
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007078static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007079{
7080 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7081 int i;
7082
7083 nn->conf_id_hashtbl = kmalloc(sizeof(struct list_head) *
7084 CLIENT_HASH_SIZE, GFP_KERNEL);
7085 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007086 goto err;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007087 nn->unconf_id_hashtbl = kmalloc(sizeof(struct list_head) *
7088 CLIENT_HASH_SIZE, GFP_KERNEL);
7089 if (!nn->unconf_id_hashtbl)
7090 goto err_unconf_id;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007091 nn->sessionid_hashtbl = kmalloc(sizeof(struct list_head) *
7092 SESSION_HASH_SIZE, GFP_KERNEL);
7093 if (!nn->sessionid_hashtbl)
7094 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007095
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007096 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007097 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007098 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007099 }
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007100 for (i = 0; i < SESSION_HASH_SIZE; i++)
7101 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007102 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007103 nn->unconf_name_tree = RB_ROOT;
Vasily Averin81833de2017-11-13 07:25:40 +03007104 nn->boot_time = get_seconds();
7105 nn->grace_ended = false;
7106 nn->nfsd4_manager.block_opens = true;
7107 INIT_LIST_HEAD(&nn->nfsd4_manager.list);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03007108 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03007109 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007110 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03007111 spin_lock_init(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007112
Jeff Layton0cc11a62016-10-20 09:34:31 -04007113 spin_lock_init(&nn->blocked_locks_lock);
7114 INIT_LIST_HEAD(&nn->blocked_locks_lru);
7115
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007116 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007117 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007118
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007119 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007120
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007121err_sessionid:
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03007122 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007123err_unconf_id:
7124 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007125err:
7126 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007127}
7128
7129static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007130nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007131{
7132 int i;
7133 struct nfs4_client *clp = NULL;
7134 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7135
7136 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7137 while (!list_empty(&nn->conf_id_hashtbl[i])) {
7138 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7139 destroy_client(clp);
7140 }
7141 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007142
Kinglong Mee2b905632014-03-26 22:09:30 +08007143 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7144 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
7145 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7146 destroy_client(clp);
7147 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007148 }
7149
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007150 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007151 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007152 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007153 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007154}
7155
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007156int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007157nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07007158{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04007159 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007160 int ret;
7161
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007162 ret = nfs4_state_create_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007163 if (ret)
7164 return ret;
Jeff Laytond4318ac2014-09-12 16:40:21 -04007165 locks_start_grace(net, &nn->nfsd4_manager);
7166 nfsd4_client_tracking_init(net);
Vasily Averin7e981a82017-11-06 16:46:04 +03007167 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %x)\n",
7168 nn->nfsd4_grace, net->ns.inum);
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03007169 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007170 return 0;
7171}
7172
7173/* initialization to perform when the nfsd service is started: */
7174
7175int
7176nfs4_state_start(void)
7177{
7178 int ret;
7179
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007180 ret = set_callback_cred();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007181 if (ret)
Kinglong Meef7d1ddb2017-02-05 09:57:07 +08007182 return ret;
7183
Jeff Layton51a54562015-08-20 07:17:01 -04007184 laundry_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, "nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05007185 if (laundry_wq == NULL) {
7186 ret = -ENOMEM;
Kinglong Meef7d1ddb2017-02-05 09:57:07 +08007187 goto out_cleanup_cred;
Jeff Laytona6d6b782012-03-05 11:42:36 -05007188 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007189 ret = nfsd4_create_callback_queue();
7190 if (ret)
7191 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007192
Meelap Shahc2f1a552007-07-17 04:04:39 -07007193 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007194 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007195
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007196out_free_laundry:
7197 destroy_workqueue(laundry_wq);
Kinglong Meef7d1ddb2017-02-05 09:57:07 +08007198out_cleanup_cred:
7199 cleanup_callback_cred();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007200 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201}
7202
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007203void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007204nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007208 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Jeff Layton7919d0a2016-09-16 16:28:25 -04007209 struct nfsd4_blocked_lock *nbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007211 cancel_delayed_work_sync(&nn->laundromat_work);
7212 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05007213
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc975052014-05-30 09:09:30 -04007215 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007216 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007218 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007219 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220 }
Benny Halevycdc975052014-05-30 09:09:30 -04007221 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007222 list_for_each_safe(pos, next, &reaplist) {
7223 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04007224 list_del_init(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +02007225 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -04007226 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
Trond Myklebust60116952014-07-29 21:34:06 -04007227 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228 }
7229
Jeff Layton7919d0a2016-09-16 16:28:25 -04007230 BUG_ON(!list_empty(&reaplist));
Jeff Layton0cc11a62016-10-20 09:34:31 -04007231 spin_lock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04007232 while (!list_empty(&nn->blocked_locks_lru)) {
7233 nbl = list_first_entry(&nn->blocked_locks_lru,
7234 struct nfsd4_blocked_lock, nbl_lru);
7235 list_move(&nbl->nbl_lru, &reaplist);
7236 list_del_init(&nbl->nbl_list);
7237 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04007238 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04007239
7240 while (!list_empty(&reaplist)) {
Naofumi Honda64ebe1242017-11-09 10:57:16 -05007241 nbl = list_first_entry(&reaplist,
Jeff Layton7919d0a2016-09-16 16:28:25 -04007242 struct nfsd4_blocked_lock, nbl_lru);
7243 list_del_init(&nbl->nbl_lru);
7244 posix_unblock_lock(&nbl->nbl_lock);
7245 free_blocked_lock(nbl);
7246 }
7247
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03007248 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007249 nfs4_state_destroy_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250}
7251
7252void
7253nfs4_state_shutdown(void)
7254{
NeilBrown5e8d5c22006-04-10 22:55:37 -07007255 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04007256 nfsd4_destroy_callback_queue();
Kinglong Meef7d1ddb2017-02-05 09:57:07 +08007257 cleanup_callback_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007258}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007259
7260static void
7261get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7262{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007263 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
7264 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007265}
7266
7267static void
7268put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7269{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007270 if (cstate->minorversion) {
7271 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
7272 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
7273 }
7274}
7275
7276void
7277clear_current_stateid(struct nfsd4_compound_state *cstate)
7278{
7279 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007280}
7281
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007282/*
7283 * functions to set current state id
7284 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007285void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007286nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate,
7287 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007288{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007289 put_stateid(cstate, &u->open_downgrade.od_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007290}
7291
7292void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007293nfsd4_set_openstateid(struct nfsd4_compound_state *cstate,
7294 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007295{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007296 put_stateid(cstate, &u->open.op_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007297}
7298
7299void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007300nfsd4_set_closestateid(struct nfsd4_compound_state *cstate,
7301 union nfsd4_op_u *u)
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007302{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007303 put_stateid(cstate, &u->close.cl_stateid);
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007304}
7305
7306void
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007307nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate,
7308 union nfsd4_op_u *u)
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007309{
Christoph Hellwigb60e9852017-05-08 20:03:15 +02007310 put_stateid(cstate, &u->lock.lk_resp_stateid);
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007311}
7312
7313/*
7314 * functions to consume current state id
7315 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007316
7317void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007318nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate,
7319 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007320{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007321 get_stateid(cstate, &u->open_downgrade.od_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007322}
7323
7324void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007325nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate,
7326 union nfsd4_op_u *u)
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007327{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007328 get_stateid(cstate, &u->delegreturn.dr_stateid);
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007329}
7330
7331void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007332nfsd4_get_freestateid(struct nfsd4_compound_state *cstate,
7333 union nfsd4_op_u *u)
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007334{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007335 get_stateid(cstate, &u->free_stateid.fr_stateid);
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007336}
7337
7338void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007339nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate,
7340 union nfsd4_op_u *u)
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007341{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007342 get_stateid(cstate, &u->setattr.sa_stateid);
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007343}
7344
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007345void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007346nfsd4_get_closestateid(struct nfsd4_compound_state *cstate,
7347 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007348{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007349 get_stateid(cstate, &u->close.cl_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007350}
7351
7352void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007353nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate,
7354 union nfsd4_op_u *u)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007355{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007356 get_stateid(cstate, &u->locku.lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007357}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007358
7359void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007360nfsd4_get_readstateid(struct nfsd4_compound_state *cstate,
7361 union nfsd4_op_u *u)
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007362{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007363 get_stateid(cstate, &u->read.rd_stateid);
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007364}
7365
7366void
Christoph Hellwig57832e72017-05-08 20:37:33 +02007367nfsd4_get_writestateid(struct nfsd4_compound_state *cstate,
7368 union nfsd4_op_u *u)
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007369{
Christoph Hellwig57832e72017-05-08 20:37:33 +02007370 get_stateid(cstate, &u->write.wr_stateid);
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007371}