blob: 4509c76716e36dfae94f6be372ff16b86f2b8f65 [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 Myklebust5cd35862017-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 Elblef25e2222017-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 Halevycdc97502014-05-30 09:09:30 -040088static DEFINE_SPINLOCK(state_lock);
J. Bruce Fields8b671b82009-02-22 14:51:34 -080089
Jeff Laytonb401be222014-07-29 21:34:33 -040090/*
91 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
92 * the refcount on the open stateid to drop.
93 */
94static DECLARE_WAIT_QUEUE_HEAD(close_wq);
95
Christoph Hellwigabf11352014-05-21 07:43:03 -070096static struct kmem_cache *openowner_slab;
97static struct kmem_cache *lockowner_slab;
98static struct kmem_cache *file_slab;
99static struct kmem_cache *stateid_slab;
100static struct kmem_cache *deleg_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +0200101static struct kmem_cache *odstate_slab;
NeilBrowne60d4392005-06-23 22:03:01 -0700102
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400103static void free_session(struct nfsd4_session *);
Benny Halevy508dc6e2012-02-23 17:40:52 -0800104
Julia Lawallc4cb8972015-11-21 22:57:39 +0100105static const struct nfsd4_callback_ops nfsd4_cb_recall_ops;
Jeff Layton76d348f2016-09-16 16:28:24 -0400106static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops;
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200107
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400108static bool is_session_dead(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -0800109{
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400110 return ses->se_flags & NFS4_SESSION_DEAD;
111}
112
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -0400113static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
114{
115 if (atomic_read(&ses->se_ref) > ref_held_by_me)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -0400116 return nfserr_jukebox;
117 ses->se_flags |= NFS4_SESSION_DEAD;
118 return nfs_ok;
119}
120
J. Bruce Fields221a6872013-04-01 22:23:49 -0400121static bool is_client_expired(struct nfs4_client *clp)
122{
123 return clp->cl_time == 0;
124}
125
J. Bruce Fields221a6872013-04-01 22:23:49 -0400126static __be32 get_client_locked(struct nfs4_client *clp)
127{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400128 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
129
130 lockdep_assert_held(&nn->client_lock);
131
J. Bruce Fields221a6872013-04-01 22:23:49 -0400132 if (is_client_expired(clp))
133 return nfserr_expired;
134 atomic_inc(&clp->cl_refcount);
135 return nfs_ok;
136}
137
138/* must be called under the client_lock */
139static inline void
140renew_client_locked(struct nfs4_client *clp)
141{
142 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
143
144 if (is_client_expired(clp)) {
145 WARN_ON(1);
146 printk("%s: client (clientid %08x/%08x) already expired\n",
147 __func__,
148 clp->cl_clientid.cl_boot,
149 clp->cl_clientid.cl_id);
150 return;
151 }
152
153 dprintk("renewing client (clientid %08x/%08x)\n",
154 clp->cl_clientid.cl_boot,
155 clp->cl_clientid.cl_id);
156 list_move_tail(&clp->cl_lru, &nn->client_lru);
157 clp->cl_time = get_seconds();
158}
159
Fengguang Wuba138432013-04-16 22:14:15 -0400160static void put_client_renew_locked(struct nfs4_client *clp)
J. Bruce Fields221a6872013-04-01 22:23:49 -0400161{
Trond Myklebust0a880a22014-07-30 08:27:10 -0400162 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
163
164 lockdep_assert_held(&nn->client_lock);
165
J. Bruce Fields221a6872013-04-01 22:23:49 -0400166 if (!atomic_dec_and_test(&clp->cl_refcount))
167 return;
168 if (!is_client_expired(clp))
169 renew_client_locked(clp);
170}
171
Jeff Layton4b24ca72014-06-30 11:48:44 -0400172static void put_client_renew(struct nfs4_client *clp)
173{
174 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
175
Jeff Laytond6c249b2014-07-08 14:02:50 -0400176 if (!atomic_dec_and_lock(&clp->cl_refcount, &nn->client_lock))
177 return;
178 if (!is_client_expired(clp))
179 renew_client_locked(clp);
Jeff Layton4b24ca72014-06-30 11:48:44 -0400180 spin_unlock(&nn->client_lock);
181}
182
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400183static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
184{
185 __be32 status;
186
187 if (is_session_dead(ses))
188 return nfserr_badsession;
189 status = get_client_locked(ses->se_client);
190 if (status)
191 return status;
192 atomic_inc(&ses->se_ref);
193 return nfs_ok;
194}
195
196static void nfsd4_put_session_locked(struct nfsd4_session *ses)
197{
198 struct nfs4_client *clp = ses->se_client;
Trond Myklebust0a880a22014-07-30 08:27:10 -0400199 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
200
201 lockdep_assert_held(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -0400202
203 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
204 free_session(ses);
205 put_client_renew_locked(clp);
206}
207
208static void nfsd4_put_session(struct nfsd4_session *ses)
209{
210 struct nfs4_client *clp = ses->se_client;
211 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
212
213 spin_lock(&nn->client_lock);
214 nfsd4_put_session_locked(ses);
215 spin_unlock(&nn->client_lock);
216}
217
Jeff Layton76d348f2016-09-16 16:28:24 -0400218static struct nfsd4_blocked_lock *
219find_blocked_lock(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
220 struct nfsd_net *nn)
221{
222 struct nfsd4_blocked_lock *cur, *found = NULL;
223
Jeff Layton0cc11a62016-10-20 09:34:31 -0400224 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400225 list_for_each_entry(cur, &lo->lo_blocked, nbl_list) {
226 if (fh_match(fh, &cur->nbl_fh)) {
227 list_del_init(&cur->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -0400228 list_del_init(&cur->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -0400229 found = cur;
230 break;
231 }
232 }
Jeff Layton0cc11a62016-10-20 09:34:31 -0400233 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -0400234 if (found)
235 posix_unblock_lock(&found->nbl_lock);
236 return found;
237}
238
239static struct nfsd4_blocked_lock *
240find_or_allocate_block(struct nfs4_lockowner *lo, struct knfsd_fh *fh,
241 struct nfsd_net *nn)
242{
243 struct nfsd4_blocked_lock *nbl;
244
245 nbl = find_blocked_lock(lo, fh, nn);
246 if (!nbl) {
247 nbl= kmalloc(sizeof(*nbl), GFP_KERNEL);
248 if (nbl) {
249 fh_copy_shallow(&nbl->nbl_fh, fh);
250 locks_init_lock(&nbl->nbl_lock);
251 nfsd4_init_cb(&nbl->nbl_cb, lo->lo_owner.so_client,
252 &nfsd4_cb_notify_lock_ops,
253 NFSPROC4_CLNT_CB_NOTIFY_LOCK);
254 }
255 }
256 return nbl;
257}
258
259static void
260free_blocked_lock(struct nfsd4_blocked_lock *nbl)
261{
262 locks_release_private(&nbl->nbl_lock);
263 kfree(nbl);
264}
265
Jeff Laytone294c4c2018-03-16 11:32:02 -0400266static void
267remove_blocked_locks(struct nfs4_lockowner *lo)
268{
269 struct nfs4_client *clp = lo->lo_owner.so_client;
270 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
271 struct nfsd4_blocked_lock *nbl;
272 LIST_HEAD(reaplist);
273
274 /* Dequeue all blocked locks */
275 spin_lock(&nn->blocked_locks_lock);
276 while (!list_empty(&lo->lo_blocked)) {
277 nbl = list_first_entry(&lo->lo_blocked,
278 struct nfsd4_blocked_lock,
279 nbl_list);
280 list_del_init(&nbl->nbl_list);
281 list_move(&nbl->nbl_lru, &reaplist);
282 }
283 spin_unlock(&nn->blocked_locks_lock);
284
285 /* Now free them */
286 while (!list_empty(&reaplist)) {
287 nbl = list_first_entry(&reaplist, struct nfsd4_blocked_lock,
288 nbl_lru);
289 list_del_init(&nbl->nbl_lru);
290 posix_unblock_lock(&nbl->nbl_lock);
291 free_blocked_lock(nbl);
292 }
293}
294
Jeff Layton76d348f2016-09-16 16:28:24 -0400295static int
296nfsd4_cb_notify_lock_done(struct nfsd4_callback *cb, struct rpc_task *task)
297{
298 /*
299 * Since this is just an optimization, we don't try very hard if it
300 * turns out not to succeed. We'll requeue it on NFS4ERR_DELAY, and
301 * just quit trying on anything else.
302 */
303 switch (task->tk_status) {
304 case -NFS4ERR_DELAY:
305 rpc_delay(task, 1 * HZ);
306 return 0;
307 default:
308 return 1;
309 }
310}
311
312static void
313nfsd4_cb_notify_lock_release(struct nfsd4_callback *cb)
314{
315 struct nfsd4_blocked_lock *nbl = container_of(cb,
316 struct nfsd4_blocked_lock, nbl_cb);
317
318 free_blocked_lock(nbl);
319}
320
321static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops = {
322 .done = nfsd4_cb_notify_lock_done,
323 .release = nfsd4_cb_notify_lock_release,
324};
325
Kinglong Meeb5971af2014-08-22 10:18:43 -0400326static inline struct nfs4_stateowner *
327nfs4_get_stateowner(struct nfs4_stateowner *sop)
328{
329 atomic_inc(&sop->so_count);
330 return sop;
331}
332
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400333static int
Trond Myklebustd4f04892014-07-29 21:34:36 -0400334same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400335{
336 return (sop->so_owner.len == owner->len) &&
Trond Myklebustd4f04892014-07-29 21:34:36 -0400337 0 == memcmp(sop->so_owner.data, owner->data, owner->len);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400338}
339
340static struct nfs4_openowner *
341find_openstateowner_str_locked(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400342 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400343{
344 struct nfs4_stateowner *so;
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400345
Trond Myklebustd4f04892014-07-29 21:34:36 -0400346 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400347
Trond Myklebustd4f04892014-07-29 21:34:36 -0400348 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[hashval],
349 so_strhash) {
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400350 if (!so->so_is_open_owner)
351 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -0400352 if (same_owner_str(so, &open->op_owner))
353 return openowner(nfs4_get_stateowner(so));
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400354 }
355 return NULL;
356}
357
358static struct nfs4_openowner *
359find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
Trond Myklebustd4f04892014-07-29 21:34:36 -0400360 struct nfs4_client *clp)
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400361{
362 struct nfs4_openowner *oo;
363
Trond Myklebustd4f04892014-07-29 21:34:36 -0400364 spin_lock(&clp->cl_lock);
365 oo = find_openstateowner_str_locked(hashval, open, clp);
366 spin_unlock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -0400367 return oo;
368}
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370static inline u32
371opaque_hashval(const void *ptr, int nbytes)
372{
373 unsigned char *cptr = (unsigned char *) ptr;
374
375 u32 x = 0;
376 while (nbytes--) {
377 x *= 37;
378 x += *cptr++;
379 }
380 return x;
381}
382
Jeff Layton5b095e92014-10-23 08:01:02 -0400383static void nfsd4_free_file_rcu(struct rcu_head *rcu)
J. Bruce Fields32513b42011-10-13 16:00:16 -0400384{
Jeff Layton5b095e92014-10-23 08:01:02 -0400385 struct nfs4_file *fp = container_of(rcu, struct nfs4_file, fi_rcu);
386
387 kmem_cache_free(file_slab, fp);
J. Bruce Fields32513b42011-10-13 16:00:16 -0400388}
389
Christoph Hellwige6ba76e2014-08-14 08:50:16 +0200390void
NeilBrown13cd2182005-06-23 22:03:10 -0700391put_nfs4_file(struct nfs4_file *fi)
392{
Jeff Layton02e12152014-07-16 10:31:57 -0400393 might_lock(&state_lock);
394
Benny Halevycdc97502014-05-30 09:09:30 -0400395 if (atomic_dec_and_lock(&fi->fi_ref, &state_lock)) {
Jeff Layton5b095e92014-10-23 08:01:02 -0400396 hlist_del_rcu(&fi->fi_hash);
Benny Halevycdc97502014-05-30 09:09:30 -0400397 spin_unlock(&state_lock);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200398 WARN_ON_ONCE(!list_empty(&fi->fi_clnt_odstate));
Jeff Layton5b095e92014-10-23 08:01:02 -0400399 WARN_ON_ONCE(!list_empty(&fi->fi_delegations));
400 call_rcu(&fi->fi_rcu, nfsd4_free_file_rcu);
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800401 }
NeilBrown13cd2182005-06-23 22:03:10 -0700402}
403
Trond Myklebustde186432014-07-10 14:07:26 -0400404static struct file *
405__nfs4_get_fd(struct nfs4_file *f, int oflag)
406{
407 if (f->fi_fds[oflag])
408 return get_file(f->fi_fds[oflag]);
409 return NULL;
410}
411
412static struct file *
413find_writeable_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_WRONLY);
420 if (!ret)
421 ret = __nfs4_get_fd(f, O_RDWR);
422 return ret;
423}
424
425static struct file *
426find_writeable_file(struct nfs4_file *f)
427{
428 struct file *ret;
429
430 spin_lock(&f->fi_lock);
431 ret = find_writeable_file_locked(f);
432 spin_unlock(&f->fi_lock);
433
434 return ret;
435}
436
437static struct file *find_readable_file_locked(struct nfs4_file *f)
438{
439 struct file *ret;
440
441 lockdep_assert_held(&f->fi_lock);
442
443 ret = __nfs4_get_fd(f, O_RDONLY);
444 if (!ret)
445 ret = __nfs4_get_fd(f, O_RDWR);
446 return ret;
447}
448
449static struct file *
450find_readable_file(struct nfs4_file *f)
451{
452 struct file *ret;
453
454 spin_lock(&f->fi_lock);
455 ret = find_readable_file_locked(f);
456 spin_unlock(&f->fi_lock);
457
458 return ret;
459}
460
Christoph Hellwig4d227fc2014-08-17 07:40:00 -0500461struct file *
Trond Myklebustde186432014-07-10 14:07:26 -0400462find_any_file(struct nfs4_file *f)
463{
464 struct file *ret;
465
466 spin_lock(&f->fi_lock);
467 ret = __nfs4_get_fd(f, O_RDWR);
468 if (!ret) {
469 ret = __nfs4_get_fd(f, O_WRONLY);
470 if (!ret)
471 ret = __nfs4_get_fd(f, O_RDONLY);
472 }
473 spin_unlock(&f->fi_lock);
474 return ret;
475}
476
Trond Myklebust02a35082014-07-25 07:34:22 -0400477static atomic_long_t num_delegations;
Zhang Yanfei697ce9b2013-02-22 16:35:47 -0800478unsigned long max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700479
480/*
481 * Open owner state (share locks)
482 */
483
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500484/* hash tables for lock and open owners */
485#define OWNER_HASH_BITS 8
486#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
487#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700488
Trond Myklebustd4f04892014-07-29 21:34:36 -0400489static unsigned int ownerstr_hashval(struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400490{
491 unsigned int ret;
492
493 ret = opaque_hashval(ownername->data, ownername->len);
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -0500494 return ret & OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400495}
NeilBrownef0f3392006-04-10 22:55:41 -0700496
NeilBrownef0f3392006-04-10 22:55:41 -0700497/* hash table for nfs4_file */
498#define FILE_HASH_BITS 8
499#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800500
Trond Myklebustca943212014-07-23 16:17:39 -0400501static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400502{
Trond Myklebustca943212014-07-23 16:17:39 -0400503 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
504}
505
506static unsigned int file_hashval(struct knfsd_fh *fh)
507{
508 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
509}
510
Jeff Layton89876f82013-04-02 09:01:59 -0400511static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700512
Jeff Layton12659652014-07-10 14:07:28 -0400513static void
514__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields34775652013-08-23 17:55:18 -0400515{
Jeff Layton7214e862014-07-10 14:07:33 -0400516 lockdep_assert_held(&fp->fi_lock);
517
Jeff Layton12659652014-07-10 14:07:28 -0400518 if (access & NFS4_SHARE_ACCESS_WRITE)
519 atomic_inc(&fp->fi_access[O_WRONLY]);
520 if (access & NFS4_SHARE_ACCESS_READ)
521 atomic_inc(&fp->fi_access[O_RDONLY]);
J. Bruce Fields34775652013-08-23 17:55:18 -0400522}
523
Jeff Layton12659652014-07-10 14:07:28 -0400524static __be32
525nfs4_file_get_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400526{
Jeff Layton7214e862014-07-10 14:07:33 -0400527 lockdep_assert_held(&fp->fi_lock);
528
Jeff Layton12659652014-07-10 14:07:28 -0400529 /* Does this access mode make sense? */
530 if (access & ~NFS4_SHARE_ACCESS_BOTH)
531 return nfserr_inval;
532
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400533 /* Does it conflict with a deny mode already set? */
534 if ((access & fp->fi_share_deny) != 0)
535 return nfserr_share_denied;
536
Jeff Layton12659652014-07-10 14:07:28 -0400537 __nfs4_file_get_access(fp, access);
538 return nfs_ok;
J. Bruce Fields998db522010-08-07 09:21:41 -0400539}
540
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -0400541static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
542{
543 /* Common case is that there is no deny mode. */
544 if (deny) {
545 /* Does this deny mode make sense? */
546 if (deny & ~NFS4_SHARE_DENY_BOTH)
547 return nfserr_inval;
548
549 if ((deny & NFS4_SHARE_DENY_READ) &&
550 atomic_read(&fp->fi_access[O_RDONLY]))
551 return nfserr_share_denied;
552
553 if ((deny & NFS4_SHARE_DENY_WRITE) &&
554 atomic_read(&fp->fi_access[O_WRONLY]))
555 return nfserr_share_denied;
556 }
557 return nfs_ok;
558}
559
J. Bruce Fields998db522010-08-07 09:21:41 -0400560static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400561{
Trond Myklebustde186432014-07-10 14:07:26 -0400562 might_lock(&fp->fi_lock);
563
564 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
565 struct file *f1 = NULL;
566 struct file *f2 = NULL;
567
Jeff Layton6d338b52014-07-10 14:07:29 -0400568 swap(f1, fp->fi_fds[oflag]);
J. Bruce Fields0c7c3e62013-03-28 20:37:14 -0400569 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
Jeff Layton6d338b52014-07-10 14:07:29 -0400570 swap(f2, fp->fi_fds[O_RDWR]);
Trond Myklebustde186432014-07-10 14:07:26 -0400571 spin_unlock(&fp->fi_lock);
572 if (f1)
573 fput(f1);
574 if (f2)
575 fput(f2);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400576 }
577}
578
Jeff Layton12659652014-07-10 14:07:28 -0400579static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
J. Bruce Fields998db522010-08-07 09:21:41 -0400580{
Jeff Layton12659652014-07-10 14:07:28 -0400581 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
582
583 if (access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields998db522010-08-07 09:21:41 -0400584 __nfs4_file_put_access(fp, O_WRONLY);
Jeff Layton12659652014-07-10 14:07:28 -0400585 if (access & NFS4_SHARE_ACCESS_READ)
586 __nfs4_file_put_access(fp, O_RDONLY);
J. Bruce Fields998db522010-08-07 09:21:41 -0400587}
588
Sachin Bhamare8287f002015-04-27 14:50:14 +0200589/*
590 * Allocate a new open/delegation state counter. This is needed for
591 * pNFS for proper return on close semantics.
592 *
593 * Note that we only allocate it for pNFS-enabled exports, otherwise
594 * all pointers to struct nfs4_clnt_odstate are always NULL.
595 */
596static struct nfs4_clnt_odstate *
597alloc_clnt_odstate(struct nfs4_client *clp)
598{
599 struct nfs4_clnt_odstate *co;
600
601 co = kmem_cache_zalloc(odstate_slab, GFP_KERNEL);
602 if (co) {
603 co->co_client = clp;
604 atomic_set(&co->co_odcount, 1);
605 }
606 return co;
607}
608
609static void
610hash_clnt_odstate_locked(struct nfs4_clnt_odstate *co)
611{
612 struct nfs4_file *fp = co->co_file;
613
614 lockdep_assert_held(&fp->fi_lock);
615 list_add(&co->co_perfile, &fp->fi_clnt_odstate);
616}
617
618static inline void
619get_clnt_odstate(struct nfs4_clnt_odstate *co)
620{
621 if (co)
622 atomic_inc(&co->co_odcount);
623}
624
625static void
626put_clnt_odstate(struct nfs4_clnt_odstate *co)
627{
628 struct nfs4_file *fp;
629
630 if (!co)
631 return;
632
633 fp = co->co_file;
634 if (atomic_dec_and_lock(&co->co_odcount, &fp->fi_lock)) {
635 list_del(&co->co_perfile);
636 spin_unlock(&fp->fi_lock);
637
638 nfsd4_return_all_file_layouts(co->co_client, fp);
639 kmem_cache_free(odstate_slab, co);
640 }
641}
642
643static struct nfs4_clnt_odstate *
644find_or_hash_clnt_odstate(struct nfs4_file *fp, struct nfs4_clnt_odstate *new)
645{
646 struct nfs4_clnt_odstate *co;
647 struct nfs4_client *cl;
648
649 if (!new)
650 return NULL;
651
652 cl = new->co_client;
653
654 spin_lock(&fp->fi_lock);
655 list_for_each_entry(co, &fp->fi_clnt_odstate, co_perfile) {
656 if (co->co_client == cl) {
657 get_clnt_odstate(co);
658 goto out;
659 }
660 }
661 co = new;
662 co->co_file = fp;
663 hash_clnt_odstate_locked(new);
664out:
665 spin_unlock(&fp->fi_lock);
666 return co;
667}
668
Kinglong Mee743146d32017-01-18 19:04:42 +0800669struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab,
670 void (*sc_free)(struct nfs4_stid *))
J. Bruce Fields996e0932011-10-17 11:14:48 -0400671{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500672 struct nfs4_stid *stid;
673 int new_id;
674
Trond Myklebustf8338832014-07-25 07:34:19 -0400675 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500676 if (!stid)
677 return NULL;
J. Bruce Fields996e0932011-10-17 11:14:48 -0400678
Jeff Layton4770d722014-07-29 21:34:10 -0400679 idr_preload(GFP_KERNEL);
680 spin_lock(&cl->cl_lock);
681 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 0, 0, GFP_NOWAIT);
682 spin_unlock(&cl->cl_lock);
683 idr_preload_end();
Tejun Heoebd6c702013-03-13 14:59:37 -0700684 if (new_id < 0)
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500685 goto out_free;
Kinglong Mee743146d32017-01-18 19:04:42 +0800686
687 stid->sc_free = sc_free;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500688 stid->sc_client = cl;
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500689 stid->sc_stateid.si_opaque.so_id = new_id;
690 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
691 /* Will be incremented before return to client: */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -0400692 atomic_set(&stid->sc_count, 1);
Jeff Layton9767feb2015-10-01 09:05:50 -0400693 spin_lock_init(&stid->sc_lock);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500694
J. Bruce Fields996e0932011-10-17 11:14:48 -0400695 /*
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500696 * It shouldn't be a problem to reuse an opaque stateid value.
697 * I don't think it is for 4.1. But with 4.0 I worry that, for
698 * example, a stray write retransmission could be accepted by
699 * the server when it should have been rejected. Therefore,
700 * adopt a trick from the sctp code to attempt to maximize the
701 * amount of time until an id is reused, by ensuring they always
702 * "increase" (mod INT_MAX):
J. Bruce Fields996e0932011-10-17 11:14:48 -0400703 */
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500704 return stid;
705out_free:
Wei Yongjun2c44a232013-04-09 14:15:31 +0800706 kmem_cache_free(slab, stid);
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500707 return NULL;
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400708}
709
Jeff Laytonb49e0842014-07-29 21:34:11 -0400710static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400711{
Trond Myklebust60116952014-07-29 21:34:06 -0400712 struct nfs4_stid *stid;
Trond Myklebust60116952014-07-29 21:34:06 -0400713
Kinglong Mee743146d32017-01-18 19:04:42 +0800714 stid = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_ol_stateid);
Trond Myklebust60116952014-07-29 21:34:06 -0400715 if (!stid)
716 return NULL;
717
Kinglong Mee743146d32017-01-18 19:04:42 +0800718 return openlockstateid(stid);
Trond Myklebust60116952014-07-29 21:34:06 -0400719}
720
721static void nfs4_free_deleg(struct nfs4_stid *stid)
722{
Trond Myklebust60116952014-07-29 21:34:06 -0400723 kmem_cache_free(deleg_slab, stid);
724 atomic_long_dec(&num_delegations);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -0400725}
726
NeilBrown6282cd52014-06-04 17:39:26 +1000727/*
728 * When we recall a delegation, we should be careful not to hand it
729 * out again straight away.
730 * To ensure this we keep a pair of bloom filters ('new' and 'old')
731 * in which the filehandles of recalled delegations are "stored".
732 * If a filehandle appear in either filter, a delegation is blocked.
733 * When a delegation is recalled, the filehandle is stored in the "new"
734 * filter.
735 * Every 30 seconds we swap the filters and clear the "new" one,
736 * unless both are empty of course.
737 *
738 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
739 * low 3 bytes as hash-table indices.
740 *
Jeff Laytonf54fe962014-07-25 07:34:26 -0400741 * 'blocked_delegations_lock', which is always taken in block_delegations(),
NeilBrown6282cd52014-06-04 17:39:26 +1000742 * is used to manage concurrent access. Testing does not need the lock
743 * except when swapping the two filters.
744 */
Jeff Laytonf54fe962014-07-25 07:34:26 -0400745static DEFINE_SPINLOCK(blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000746static struct bloom_pair {
747 int entries, old_entries;
748 time_t swap_time;
749 int new; /* index into 'set' */
750 DECLARE_BITMAP(set[2], 256);
751} blocked_delegations;
752
753static int delegation_blocked(struct knfsd_fh *fh)
754{
755 u32 hash;
756 struct bloom_pair *bd = &blocked_delegations;
757
758 if (bd->entries == 0)
759 return 0;
760 if (seconds_since_boot() - bd->swap_time > 30) {
Jeff Laytonf54fe962014-07-25 07:34:26 -0400761 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000762 if (seconds_since_boot() - bd->swap_time > 30) {
763 bd->entries -= bd->old_entries;
764 bd->old_entries = bd->entries;
765 memset(bd->set[bd->new], 0,
766 sizeof(bd->set[0]));
767 bd->new = 1-bd->new;
768 bd->swap_time = seconds_since_boot();
769 }
Jeff Laytonf54fe962014-07-25 07:34:26 -0400770 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000771 }
Daniel Borkmann87545892014-12-10 16:33:11 +0100772 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000773 if (test_bit(hash&255, bd->set[0]) &&
774 test_bit((hash>>8)&255, bd->set[0]) &&
775 test_bit((hash>>16)&255, bd->set[0]))
776 return 1;
777
778 if (test_bit(hash&255, bd->set[1]) &&
779 test_bit((hash>>8)&255, bd->set[1]) &&
780 test_bit((hash>>16)&255, bd->set[1]))
781 return 1;
782
783 return 0;
784}
785
786static void block_delegations(struct knfsd_fh *fh)
787{
788 u32 hash;
789 struct bloom_pair *bd = &blocked_delegations;
790
Daniel Borkmann87545892014-12-10 16:33:11 +0100791 hash = jhash(&fh->fh_base, fh->fh_size, 0);
NeilBrown6282cd52014-06-04 17:39:26 +1000792
Jeff Laytonf54fe962014-07-25 07:34:26 -0400793 spin_lock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000794 __set_bit(hash&255, bd->set[bd->new]);
795 __set_bit((hash>>8)&255, bd->set[bd->new]);
796 __set_bit((hash>>16)&255, bd->set[bd->new]);
797 if (bd->entries == 0)
798 bd->swap_time = seconds_since_boot();
799 bd->entries += 1;
Jeff Laytonf54fe962014-07-25 07:34:26 -0400800 spin_unlock(&blocked_delegations_lock);
NeilBrown6282cd52014-06-04 17:39:26 +1000801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803static struct nfs4_delegation *
Sachin Bhamare8287f002015-04-27 14:50:14 +0200804alloc_init_deleg(struct nfs4_client *clp, struct svc_fh *current_fh,
805 struct nfs4_clnt_odstate *odstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 struct nfs4_delegation *dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400808 long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 dprintk("NFSD alloc_init_deleg\n");
Trond Myklebust02a35082014-07-25 07:34:22 -0400811 n = atomic_long_inc_return(&num_delegations);
812 if (n < 0 || n > max_delegations)
813 goto out_dec;
NeilBrown6282cd52014-06-04 17:39:26 +1000814 if (delegation_blocked(&current_fh->fh_handle))
Trond Myklebust02a35082014-07-25 07:34:22 -0400815 goto out_dec;
Kinglong Mee743146d32017-01-18 19:04:42 +0800816 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab, nfs4_free_deleg));
NeilBrown5b2d21c2005-06-23 22:03:04 -0700817 if (dp == NULL)
Trond Myklebust02a35082014-07-25 07:34:22 -0400818 goto out_dec;
Trond Myklebust60116952014-07-29 21:34:06 -0400819
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400820 /*
821 * delegation seqid's are never incremented. The 4.1 special
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400822 * meaning of seqid 0 isn't meaningful, really, but let's avoid
823 * 0 anyway just for consistency and use 1:
J. Bruce Fields2a74aba2011-09-23 17:20:02 -0400824 */
825 dp->dl_stid.sc_stateid.si_generation = 1;
NeilBrownea1da632005-06-23 22:04:17 -0700826 INIT_LIST_HEAD(&dp->dl_perfile);
827 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 INIT_LIST_HEAD(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +0200829 dp->dl_clnt_odstate = odstate;
830 get_clnt_odstate(odstate);
J. Bruce Fields99c41512013-05-21 16:21:25 -0400831 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
Christoph Hellwigf0b5de12014-09-24 12:19:18 +0200832 dp->dl_retries = 1;
833 nfsd4_init_cb(&dp->dl_recall, dp->dl_stid.sc_client,
Christoph Hellwig0162ac22014-09-24 12:19:19 +0200834 &nfsd4_cb_recall_ops, NFSPROC4_CLNT_CB_RECALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return dp;
Trond Myklebust02a35082014-07-25 07:34:22 -0400836out_dec:
837 atomic_long_dec(&num_delegations);
838 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
841void
Trond Myklebust60116952014-07-29 21:34:06 -0400842nfs4_put_stid(struct nfs4_stid *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Trond Myklebust11b91642014-07-29 21:34:08 -0400844 struct nfs4_file *fp = s->sc_file;
Trond Myklebust60116952014-07-29 21:34:06 -0400845 struct nfs4_client *clp = s->sc_client;
846
Jeff Layton4770d722014-07-29 21:34:10 -0400847 might_lock(&clp->cl_lock);
848
Jeff Laytonb401be222014-07-29 21:34:33 -0400849 if (!atomic_dec_and_lock(&s->sc_count, &clp->cl_lock)) {
850 wake_up_all(&close_wq);
Trond Myklebust60116952014-07-29 21:34:06 -0400851 return;
Jeff Laytonb401be222014-07-29 21:34:33 -0400852 }
Trond Myklebust60116952014-07-29 21:34:06 -0400853 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
Jeff Layton4770d722014-07-29 21:34:10 -0400854 spin_unlock(&clp->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -0400855 s->sc_free(s);
Trond Myklebust11b91642014-07-29 21:34:08 -0400856 if (fp)
857 put_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Jeff Layton9767feb2015-10-01 09:05:50 -0400860void
861nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid)
862{
863 stateid_t *src = &stid->sc_stateid;
864
865 spin_lock(&stid->sc_lock);
866 if (unlikely(++src->si_generation == 0))
867 src->si_generation = 1;
868 memcpy(dst, src, sizeof(*dst));
869 spin_unlock(&stid->sc_lock);
870}
871
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500872static void nfs4_put_deleg_lease(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Jeff Layton6bcc0342014-08-09 10:22:40 -0400874 struct file *filp = NULL;
Jeff Layton417c6622014-07-21 09:34:57 -0400875
Jeff Layton6bcc0342014-08-09 10:22:40 -0400876 spin_lock(&fp->fi_lock);
Jeff Layton67db1032014-12-13 09:11:40 -0500877 if (fp->fi_deleg_file && --fp->fi_delegees == 0)
Jeff Layton6bcc0342014-08-09 10:22:40 -0400878 swap(filp, fp->fi_deleg_file);
Jeff Layton6bcc0342014-08-09 10:22:40 -0400879 spin_unlock(&fp->fi_lock);
880
881 if (filp) {
Christoph Hellwig2ab99ee2015-01-21 19:14:02 +0100882 vfs_setlease(filp, F_UNLCK, NULL, (void **)&fp);
Jeff Layton6bcc0342014-08-09 10:22:40 -0400883 fput(filp);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Christoph Hellwigcd61c522014-08-14 08:44:57 +0200887void nfs4_unhash_stid(struct nfs4_stid *s)
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400888{
J. Bruce Fields3abdb602013-02-03 12:23:01 -0500889 s->sc_type = 0;
J. Bruce Fields6136d2b2011-09-23 16:21:15 -0400890}
891
Andrew Elble34ed9872015-10-15 12:07:28 -0400892/**
893 * nfs4_get_existing_delegation - Discover if this delegation already exists
894 * @clp: a pointer to the nfs4_client we're granting a delegation to
895 * @fp: a pointer to the nfs4_file we're granting a delegation on
896 *
897 * Return:
898 * On success: NULL if an existing delegation was not found.
899 *
900 * On error: -EAGAIN if one was previously granted to this nfs4_client
901 * for this nfs4_file.
902 *
903 */
904
905static int
906nfs4_get_existing_delegation(struct nfs4_client *clp, struct nfs4_file *fp)
Benny Halevy931ee562014-05-30 09:09:27 -0400907{
Andrew Elble34ed9872015-10-15 12:07:28 -0400908 struct nfs4_delegation *searchdp = NULL;
909 struct nfs4_client *searchclp = NULL;
910
Benny Halevycdc97502014-05-30 09:09:30 -0400911 lockdep_assert_held(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -0400912 lockdep_assert_held(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400913
Andrew Elble34ed9872015-10-15 12:07:28 -0400914 list_for_each_entry(searchdp, &fp->fi_delegations, dl_perfile) {
915 searchclp = searchdp->dl_stid.sc_client;
916 if (clp == searchclp) {
917 return -EAGAIN;
918 }
919 }
920 return 0;
921}
922
923/**
924 * hash_delegation_locked - Add a delegation to the appropriate lists
925 * @dp: a pointer to the nfs4_delegation we are adding.
926 * @fp: a pointer to the nfs4_file we're granting a delegation on
927 *
928 * Return:
929 * On success: NULL if the delegation was successfully hashed.
930 *
931 * On error: -EAGAIN if one was previously granted to this
932 * nfs4_client for this nfs4_file. Delegation is not hashed.
933 *
934 */
935
936static int
937hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
938{
939 int status;
940 struct nfs4_client *clp = dp->dl_stid.sc_client;
941
942 lockdep_assert_held(&state_lock);
943 lockdep_assert_held(&fp->fi_lock);
944
945 status = nfs4_get_existing_delegation(clp, fp);
946 if (status)
947 return status;
948 ++fp->fi_delegees;
Trond Myklebust67cb1272014-07-29 21:34:17 -0400949 atomic_inc(&dp->dl_stid.sc_count);
Benny Halevy3fb87d12014-05-30 09:09:31 -0400950 dp->dl_stid.sc_type = NFS4_DELEG_STID;
Benny Halevy931ee562014-05-30 09:09:27 -0400951 list_add(&dp->dl_perfile, &fp->fi_delegations);
Andrew Elble34ed9872015-10-15 12:07:28 -0400952 list_add(&dp->dl_perclnt, &clp->cl_delegations);
953 return 0;
Benny Halevy931ee562014-05-30 09:09:27 -0400954}
955
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400956static bool
Jeff Layton42690672014-07-25 07:34:20 -0400957unhash_delegation_locked(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Trond Myklebust11b91642014-07-29 21:34:08 -0400959 struct nfs4_file *fp = dp->dl_stid.sc_file;
Jeff Layton02e12152014-07-16 10:31:57 -0400960
Jeff Layton42690672014-07-25 07:34:20 -0400961 lockdep_assert_held(&state_lock);
962
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400963 if (list_empty(&dp->dl_perfile))
964 return false;
965
Trond Myklebustb0fc29d2014-07-16 10:31:59 -0400966 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
Jeff Laytond55a1662014-07-22 13:52:06 -0400967 /* Ensure that deleg break won't try to requeue it */
968 ++dp->dl_time;
Jeff Layton417c6622014-07-21 09:34:57 -0400969 spin_lock(&fp->fi_lock);
Benny Halevy931ee562014-05-30 09:09:27 -0400970 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 list_del_init(&dp->dl_recall_lru);
Jeff Layton02e12152014-07-16 10:31:57 -0400972 list_del_init(&dp->dl_perfile);
973 spin_unlock(&fp->fi_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400974 return true;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400975}
976
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400977static void destroy_delegation(struct nfs4_delegation *dp)
978{
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400979 bool unhashed;
980
Jeff Layton42690672014-07-25 07:34:20 -0400981 spin_lock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400982 unhashed = unhash_delegation_locked(dp);
Jeff Layton42690672014-07-25 07:34:20 -0400983 spin_unlock(&state_lock);
Jeff Layton3fcbbd22015-08-24 12:41:48 -0400984 if (unhashed) {
985 put_clnt_odstate(dp->dl_clnt_odstate);
986 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
987 nfs4_put_stid(&dp->dl_stid);
988 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -0400989}
990
991static void revoke_delegation(struct nfs4_delegation *dp)
992{
993 struct nfs4_client *clp = dp->dl_stid.sc_client;
994
Jeff Layton2d4a5322014-07-25 07:34:21 -0400995 WARN_ON(!list_empty(&dp->dl_recall_lru));
996
Sachin Bhamare8287f002015-04-27 14:50:14 +0200997 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -0400998 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
999
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001000 if (clp->cl_minorversion == 0)
Trond Myklebust60116952014-07-29 21:34:06 -04001001 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001002 else {
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001003 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
Jeff Layton2d4a5322014-07-25 07:34:21 -04001004 spin_lock(&clp->cl_lock);
1005 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
1006 spin_unlock(&clp->cl_lock);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04001007 }
1008}
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010/*
1011 * SETCLIENTID state
1012 */
1013
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04001014static unsigned int clientid_hashval(u32 id)
1015{
1016 return id & CLIENT_HASH_MASK;
1017}
1018
1019static unsigned int clientstr_hashval(const char *name)
1020{
1021 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
1022}
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024/*
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001025 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1026 * st_{access,deny}_bmap field of the stateid, in order to track not
1027 * only what share bits are currently in force, but also what
1028 * combinations of share bits previous opens have used. This allows us
1029 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1030 * return an error if the client attempt to downgrade to a combination
1031 * of share bits not explicable by closing some of its previous opens.
1032 *
1033 * XXX: This enforcement is actually incomplete, since we don't keep
1034 * track of access/deny bit combinations; so, e.g., we allow:
1035 *
1036 * OPEN allow read, deny write
1037 * OPEN allow both, deny none
1038 * DOWNGRADE allow read, deny none
1039 *
1040 * which we should reject.
1041 */
Jeff Layton5ae037e2012-05-11 09:45:11 -04001042static unsigned int
1043bmap_to_share_mode(unsigned long bmap) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001044 int i;
Jeff Layton5ae037e2012-05-11 09:45:11 -04001045 unsigned int access = 0;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001046
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001047 for (i = 1; i < 4; i++) {
1048 if (test_bit(i, &bmap))
Jeff Layton5ae037e2012-05-11 09:45:11 -04001049 access |= i;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001050 }
Jeff Layton5ae037e2012-05-11 09:45:11 -04001051 return access;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001052}
1053
Jeff Layton82c5ff12012-05-11 09:45:13 -04001054/* set share access for a given stateid */
1055static inline void
1056set_access(u32 access, struct nfs4_ol_stateid *stp)
1057{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001058 unsigned char mask = 1 << access;
1059
1060 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1061 stp->st_access_bmap |= mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001062}
1063
1064/* clear share access for a given stateid */
1065static inline void
1066clear_access(u32 access, struct nfs4_ol_stateid *stp)
1067{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001068 unsigned char mask = 1 << access;
1069
1070 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
1071 stp->st_access_bmap &= ~mask;
Jeff Layton82c5ff12012-05-11 09:45:13 -04001072}
1073
1074/* test whether a given stateid has access */
1075static inline bool
1076test_access(u32 access, struct nfs4_ol_stateid *stp)
1077{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001078 unsigned char mask = 1 << access;
1079
1080 return (bool)(stp->st_access_bmap & mask);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001081}
1082
Jeff Laytonce0fc432012-05-11 09:45:14 -04001083/* set share deny for a given stateid */
1084static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001085set_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001086{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001087 unsigned char mask = 1 << deny;
1088
1089 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1090 stp->st_deny_bmap |= mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001091}
1092
1093/* clear share deny for a given stateid */
1094static inline void
Jeff Laytonc11c5912014-07-10 14:07:30 -04001095clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001096{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001097 unsigned char mask = 1 << deny;
1098
1099 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
1100 stp->st_deny_bmap &= ~mask;
Jeff Laytonce0fc432012-05-11 09:45:14 -04001101}
1102
1103/* test whether a given stateid is denying specific access */
1104static inline bool
Jeff Laytonc11c5912014-07-10 14:07:30 -04001105test_deny(u32 deny, struct nfs4_ol_stateid *stp)
Jeff Laytonce0fc432012-05-11 09:45:14 -04001106{
Jeff Laytonc11c5912014-07-10 14:07:30 -04001107 unsigned char mask = 1 << deny;
1108
1109 return (bool)(stp->st_deny_bmap & mask);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001110}
1111
1112static int nfs4_access_to_omode(u32 access)
1113{
J. Bruce Fields8f34a432010-09-02 15:23:16 -04001114 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001115 case NFS4_SHARE_ACCESS_READ:
1116 return O_RDONLY;
1117 case NFS4_SHARE_ACCESS_WRITE:
1118 return O_WRONLY;
1119 case NFS4_SHARE_ACCESS_BOTH:
1120 return O_RDWR;
1121 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05001122 WARN_ON_ONCE(1);
1123 return O_RDONLY;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04001124}
1125
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001126/*
1127 * A stateid that had a deny mode associated with it is being released
1128 * or downgraded. Recalculate the deny mode on the file.
1129 */
1130static void
1131recalculate_deny_mode(struct nfs4_file *fp)
1132{
1133 struct nfs4_ol_stateid *stp;
1134
1135 spin_lock(&fp->fi_lock);
1136 fp->fi_share_deny = 0;
1137 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
1138 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
1139 spin_unlock(&fp->fi_lock);
1140}
1141
1142static void
1143reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
1144{
1145 int i;
1146 bool change = false;
1147
1148 for (i = 1; i < 4; i++) {
1149 if ((i & deny) != i) {
1150 change = true;
1151 clear_deny(i, stp);
1152 }
1153 }
1154
1155 /* Recalculate per-file deny mode if there was a change */
1156 if (change)
Trond Myklebust11b91642014-07-29 21:34:08 -04001157 recalculate_deny_mode(stp->st_stid.sc_file);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001158}
1159
Jeff Layton82c5ff12012-05-11 09:45:13 -04001160/* release all access and file references for a given stateid */
1161static void
1162release_all_access(struct nfs4_ol_stateid *stp)
1163{
1164 int i;
Trond Myklebust11b91642014-07-29 21:34:08 -04001165 struct nfs4_file *fp = stp->st_stid.sc_file;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04001166
1167 if (fp && stp->st_deny_bmap != 0)
1168 recalculate_deny_mode(fp);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001169
1170 for (i = 1; i < 4; i++) {
1171 if (test_access(i, stp))
Trond Myklebust11b91642014-07-29 21:34:08 -04001172 nfs4_file_put_access(stp->st_stid.sc_file, i);
Jeff Layton82c5ff12012-05-11 09:45:13 -04001173 clear_access(i, stp);
1174 }
1175}
1176
Kinglong Meed50ffde2015-07-16 12:05:07 +08001177static inline void nfs4_free_stateowner(struct nfs4_stateowner *sop)
1178{
1179 kfree(sop->so_owner.data);
1180 sop->so_ops->so_free(sop);
1181}
1182
Jeff Layton6b180f02014-07-29 21:34:26 -04001183static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
1184{
Jeff Laytona819ecc2014-07-29 21:34:38 -04001185 struct nfs4_client *clp = sop->so_client;
1186
1187 might_lock(&clp->cl_lock);
1188
1189 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock))
Jeff Layton6b180f02014-07-29 21:34:26 -04001190 return;
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001191 sop->so_ops->so_unhash(sop);
Jeff Laytona819ecc2014-07-29 21:34:38 -04001192 spin_unlock(&clp->cl_lock);
Kinglong Meed50ffde2015-07-16 12:05:07 +08001193 nfs4_free_stateowner(sop);
Jeff Layton6b180f02014-07-29 21:34:26 -04001194}
1195
Jeff Laytone8568732015-08-24 12:41:47 -04001196static bool unhash_ol_stateid(struct nfs4_ol_stateid *stp)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001197{
Trond Myklebust11b91642014-07-29 21:34:08 -04001198 struct nfs4_file *fp = stp->st_stid.sc_file;
Trond Myklebust1d31a252014-07-10 14:07:25 -04001199
Jeff Layton1c755dc2014-07-29 21:34:12 -04001200 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
1201
Jeff Laytone8568732015-08-24 12:41:47 -04001202 if (list_empty(&stp->st_perfile))
1203 return false;
1204
Trond Myklebust1d31a252014-07-10 14:07:25 -04001205 spin_lock(&fp->fi_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001206 list_del_init(&stp->st_perfile);
Trond Myklebust1d31a252014-07-10 14:07:25 -04001207 spin_unlock(&fp->fi_lock);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001208 list_del(&stp->st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001209 return true;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001210}
1211
Trond Myklebust60116952014-07-29 21:34:06 -04001212static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001213{
Trond Myklebust60116952014-07-29 21:34:06 -04001214 struct nfs4_ol_stateid *stp = openlockstateid(stid);
J. Bruce Fields4665e2b2011-09-06 14:50:49 -04001215
Sachin Bhamare8287f002015-04-27 14:50:14 +02001216 put_clnt_odstate(stp->st_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04001217 release_all_access(stp);
Jeff Laytond3134b12014-07-29 21:34:32 -04001218 if (stp->st_stateowner)
1219 nfs4_put_stateowner(stp->st_stateowner);
Trond Myklebust60116952014-07-29 21:34:06 -04001220 kmem_cache_free(stateid_slab, stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001221}
1222
Jeff Laytonb49e0842014-07-29 21:34:11 -04001223static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001224{
Jeff Laytonb49e0842014-07-29 21:34:11 -04001225 struct nfs4_ol_stateid *stp = openlockstateid(stid);
1226 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001227 struct file *file;
1228
Jeff Laytonb49e0842014-07-29 21:34:11 -04001229 file = find_any_file(stp->st_stid.sc_file);
1230 if (file)
1231 filp_close(file, (fl_owner_t)lo);
1232 nfs4_free_ol_stateid(stid);
1233}
1234
Jeff Layton2c41beb2014-07-29 21:34:41 -04001235/*
1236 * Put the persistent reference to an already unhashed generic stateid, while
1237 * holding the cl_lock. If it's the last reference, then put it onto the
1238 * reaplist for later destruction.
1239 */
1240static void put_ol_stateid_locked(struct nfs4_ol_stateid *stp,
1241 struct list_head *reaplist)
1242{
1243 struct nfs4_stid *s = &stp->st_stid;
1244 struct nfs4_client *clp = s->sc_client;
1245
1246 lockdep_assert_held(&clp->cl_lock);
1247
1248 WARN_ON_ONCE(!list_empty(&stp->st_locks));
1249
1250 if (!atomic_dec_and_test(&s->sc_count)) {
1251 wake_up_all(&close_wq);
1252 return;
1253 }
1254
1255 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
1256 list_add(&stp->st_locks, reaplist);
1257}
1258
Jeff Laytone8568732015-08-24 12:41:47 -04001259static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Layton3c1c9952014-07-29 21:34:39 -04001260{
Chuck Leverf46c4452016-10-29 18:19:03 -04001261 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001262
1263 list_del_init(&stp->st_locks);
Christoph Hellwigcd61c522014-08-14 08:44:57 +02001264 nfs4_unhash_stid(&stp->st_stid);
Jeff Laytone8568732015-08-24 12:41:47 -04001265 return unhash_ol_stateid(stp);
Jeff Layton3c1c9952014-07-29 21:34:39 -04001266}
1267
Jeff Layton5adfd882014-07-29 21:34:31 -04001268static void release_lock_stateid(struct nfs4_ol_stateid *stp)
Jeff Laytonb49e0842014-07-29 21:34:11 -04001269{
Chuck Leverf46c4452016-10-29 18:19:03 -04001270 struct nfs4_client *clp = stp->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04001271 bool unhashed;
Jeff Layton1c755dc2014-07-29 21:34:12 -04001272
Chuck Leverf46c4452016-10-29 18:19:03 -04001273 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001274 unhashed = unhash_lock_stateid(stp);
Chuck Leverf46c4452016-10-29 18:19:03 -04001275 spin_unlock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001276 if (unhashed)
1277 nfs4_put_stid(&stp->st_stid);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001278}
1279
Trond Myklebustc58c6612014-07-29 21:34:35 -04001280static void unhash_lockowner_locked(struct nfs4_lockowner *lo)
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001281{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001282 struct nfs4_client *clp = lo->lo_owner.so_client;
Trond Myklebustc58c6612014-07-29 21:34:35 -04001283
Trond Myklebustd4f04892014-07-29 21:34:36 -04001284 lockdep_assert_held(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04001285
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001286 list_del_init(&lo->lo_owner.so_strhash);
1287}
1288
Jeff Layton2c41beb2014-07-29 21:34:41 -04001289/*
1290 * Free a list of generic stateids that were collected earlier after being
1291 * fully unhashed.
1292 */
1293static void
1294free_ol_stateid_reaplist(struct list_head *reaplist)
1295{
1296 struct nfs4_ol_stateid *stp;
Kinglong Meefb94d762014-08-05 21:20:27 +08001297 struct nfs4_file *fp;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001298
1299 might_sleep();
1300
1301 while (!list_empty(reaplist)) {
1302 stp = list_first_entry(reaplist, struct nfs4_ol_stateid,
1303 st_locks);
1304 list_del(&stp->st_locks);
Kinglong Meefb94d762014-08-05 21:20:27 +08001305 fp = stp->st_stid.sc_file;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001306 stp->st_stid.sc_free(&stp->st_stid);
Kinglong Meefb94d762014-08-05 21:20:27 +08001307 if (fp)
1308 put_nfs4_file(fp);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001309 }
1310}
1311
Jeff Laytond83017f2014-07-29 21:34:42 -04001312static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp,
1313 struct list_head *reaplist)
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001314{
1315 struct nfs4_ol_stateid *stp;
1316
Jeff Laytone8568732015-08-24 12:41:47 -04001317 lockdep_assert_held(&open_stp->st_stid.sc_client->cl_lock);
1318
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04001319 while (!list_empty(&open_stp->st_locks)) {
1320 stp = list_entry(open_stp->st_locks.next,
1321 struct nfs4_ol_stateid, st_locks);
Jeff Laytone8568732015-08-24 12:41:47 -04001322 WARN_ON(!unhash_lock_stateid(stp));
Jeff Laytond83017f2014-07-29 21:34:42 -04001323 put_ol_stateid_locked(stp, reaplist);
J. Bruce Fields529d7b22011-03-02 23:48:33 -05001324 }
1325}
1326
Jeff Laytone8568732015-08-24 12:41:47 -04001327static bool unhash_open_stateid(struct nfs4_ol_stateid *stp,
Jeff Laytond83017f2014-07-29 21:34:42 -04001328 struct list_head *reaplist)
J. Bruce Fields22839632009-01-11 14:27:17 -05001329{
Jeff Laytone8568732015-08-24 12:41:47 -04001330 bool unhashed;
1331
Jeff Layton2c41beb2014-07-29 21:34:41 -04001332 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1333
Jeff Laytone8568732015-08-24 12:41:47 -04001334 unhashed = unhash_ol_stateid(stp);
Jeff Laytond83017f2014-07-29 21:34:42 -04001335 release_open_stateid_locks(stp, reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04001336 return unhashed;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04001337}
1338
1339static void release_open_stateid(struct nfs4_ol_stateid *stp)
1340{
Jeff Layton2c41beb2014-07-29 21:34:41 -04001341 LIST_HEAD(reaplist);
1342
1343 spin_lock(&stp->st_stid.sc_client->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04001344 if (unhash_open_stateid(stp, &reaplist))
1345 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001346 spin_unlock(&stp->st_stid.sc_client->cl_lock);
1347 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fields22839632009-01-11 14:27:17 -05001348}
1349
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001350static void unhash_openowner_locked(struct nfs4_openowner *oo)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001351{
Trond Myklebustd4f04892014-07-29 21:34:36 -04001352 struct nfs4_client *clp = oo->oo_owner.so_client;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001353
Trond Myklebustd4f04892014-07-29 21:34:36 -04001354 lockdep_assert_held(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001355
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001356 list_del_init(&oo->oo_owner.so_strhash);
1357 list_del_init(&oo->oo_perclient);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001358}
1359
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001360static void release_last_closed_stateid(struct nfs4_openowner *oo)
1361{
Jeff Layton217526e2014-07-30 08:27:11 -04001362 struct nfsd_net *nn = net_generic(oo->oo_owner.so_client->net,
1363 nfsd_net_id);
1364 struct nfs4_ol_stateid *s;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001365
Jeff Layton217526e2014-07-30 08:27:11 -04001366 spin_lock(&nn->client_lock);
1367 s = oo->oo_last_closed_stid;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001368 if (s) {
Jeff Laytond3134b12014-07-29 21:34:32 -04001369 list_del_init(&oo->oo_close_lru);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001370 oo->oo_last_closed_stid = NULL;
1371 }
Jeff Layton217526e2014-07-30 08:27:11 -04001372 spin_unlock(&nn->client_lock);
1373 if (s)
1374 nfs4_put_stid(&s->st_stid);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001375}
1376
Jeff Layton2c41beb2014-07-29 21:34:41 -04001377static void release_openowner(struct nfs4_openowner *oo)
Jeff Layton8f4b54c2014-07-29 21:34:29 -04001378{
1379 struct nfs4_ol_stateid *stp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001380 struct nfs4_client *clp = oo->oo_owner.so_client;
Jeff Layton2c41beb2014-07-29 21:34:41 -04001381 struct list_head reaplist;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001382
Jeff Layton2c41beb2014-07-29 21:34:41 -04001383 INIT_LIST_HEAD(&reaplist);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001384
Trond Myklebustd4f04892014-07-29 21:34:36 -04001385 spin_lock(&clp->cl_lock);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04001386 unhash_openowner_locked(oo);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001387 while (!list_empty(&oo->oo_owner.so_stateids)) {
1388 stp = list_first_entry(&oo->oo_owner.so_stateids,
1389 struct nfs4_ol_stateid, st_perstateowner);
Jeff Laytone8568732015-08-24 12:41:47 -04001390 if (unhash_open_stateid(stp, &reaplist))
1391 put_ol_stateid_locked(stp, &reaplist);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001392 }
Trond Myklebustd4f04892014-07-29 21:34:36 -04001393 spin_unlock(&clp->cl_lock);
Jeff Layton2c41beb2014-07-29 21:34:41 -04001394 free_ol_stateid_reaplist(&reaplist);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04001395 release_last_closed_stateid(oo);
Jeff Layton6b180f02014-07-29 21:34:26 -04001396 nfs4_put_stateowner(&oo->oo_owner);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -05001397}
1398
Marc Eshel5282fd72009-04-03 08:27:52 +03001399static inline int
1400hash_sessionid(struct nfs4_sessionid *sessionid)
1401{
1402 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1403
1404 return sid->sequence % SESSION_HASH_SIZE;
1405}
1406
Mark Salter135dd002015-04-06 09:46:00 -04001407#ifdef CONFIG_SUNRPC_DEBUG
Marc Eshel5282fd72009-04-03 08:27:52 +03001408static inline void
1409dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1410{
1411 u32 *ptr = (u32 *)(&sessionid->data[0]);
1412 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1413}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001414#else
1415static inline void
1416dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1417{
1418}
1419#endif
1420
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001421/*
1422 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1423 * won't be used for replay.
1424 */
1425void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1426{
1427 struct nfs4_stateowner *so = cstate->replay_owner;
1428
1429 if (nfserr == nfserr_replay_me)
1430 return;
1431
1432 if (!seqid_mutating_err(ntohl(nfserr))) {
Jeff Layton58fb12e2014-07-29 21:34:27 -04001433 nfsd4_cstate_clear_replay(cstate);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04001434 return;
1435 }
1436 if (!so)
1437 return;
1438 if (so->so_is_open_owner)
1439 release_last_closed_stateid(openowner(so));
1440 so->so_seqid++;
1441 return;
1442}
Marc Eshel5282fd72009-04-03 08:27:52 +03001443
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001444static void
1445gen_sessionid(struct nfsd4_session *ses)
1446{
1447 struct nfs4_client *clp = ses->se_client;
1448 struct nfsd4_sessionid *sid;
1449
1450 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1451 sid->clientid = clp->cl_clientid;
1452 sid->sequence = current_sessionid++;
1453 sid->reserved = 0;
1454}
1455
1456/*
Andy Adamsona6496372009-08-28 08:45:01 -04001457 * The protocol defines ca_maxresponssize_cached to include the size of
1458 * the rpc header, but all we need to cache is the data starting after
1459 * the end of the initial SEQUENCE operation--the rest we regenerate
1460 * each time. Therefore we can advertise a ca_maxresponssize_cached
1461 * value that is the number of bytes in our cache plus a few additional
1462 * bytes. In order to stay on the safe side, and not promise more than
1463 * we can cache, those additional bytes must be the minimum possible: 24
1464 * bytes of rpc header (xid through accept state, with AUTH_NULL
1465 * verifier), 12 for the compound header (with zero-length tag), and 44
1466 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001467 */
Andy Adamsona6496372009-08-28 08:45:01 -04001468#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1469
Andy Adamson557ce262009-08-28 08:45:04 -04001470static void
1471free_session_slots(struct nfsd4_session *ses)
1472{
1473 int i;
1474
J. Bruce Fields877362f2017-10-17 20:38:49 -04001475 for (i = 0; i < ses->se_fchannel.maxreqs; i++) {
1476 free_svc_cred(&ses->se_slots[i]->sl_cred);
Andy Adamson557ce262009-08-28 08:45:04 -04001477 kfree(ses->se_slots[i]);
J. Bruce Fields877362f2017-10-17 20:38:49 -04001478 }
Andy Adamson557ce262009-08-28 08:45:04 -04001479}
1480
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001481/*
1482 * We don't actually need to cache the rpc and session headers, so we
1483 * can allocate a little less for each slot:
1484 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001485static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001486{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001487 u32 size;
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -04001488
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001489 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1490 size = 0;
1491 else
1492 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1493 return size + sizeof(struct nfsd4_slot);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001494}
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001495
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001496/*
1497 * XXX: If we run out of reserved DRC memory we could (up to a point)
1498 * re-negotiate active sessions and reduce their slot usage to make
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001499 * room for new connections. For now we just fail the create session.
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001500 */
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001501static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001502{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001503 u32 slotsize = slot_bytes(ca);
1504 u32 num = ca->maxreqs;
J. Bruce Fieldscdc106c6c2019-02-21 10:47:00 -05001505 unsigned long avail, total_avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001506
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001507 spin_lock(&nfsd_drc_lock);
J. Bruce Fieldscdc106c6c2019-02-21 10:47:00 -05001508 total_avail = nfsd_drc_max_mem - nfsd_drc_mem_used;
1509 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION, total_avail);
J. Bruce Fields6d548072017-09-19 19:25:41 -04001510 /*
1511 * Never use more than a third of the remaining memory,
1512 * unless it's the only way to give this client a slot:
1513 */
Paul Menzel7546e0c2019-07-03 13:28:15 +02001514 avail = clamp_t(unsigned long, avail, slotsize, total_avail/3);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001515 num = min_t(int, num, avail / slotsize);
1516 nfsd_drc_mem_used += num * slotsize;
1517 spin_unlock(&nfsd_drc_lock);
1518
1519 return num;
1520}
1521
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001522static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001523{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001524 int slotsize = slot_bytes(ca);
1525
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001526 spin_lock(&nfsd_drc_lock);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001527 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001528 spin_unlock(&nfsd_drc_lock);
1529}
1530
Kinglong Mee60810e52014-01-01 00:35:47 +08001531static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1532 struct nfsd4_channel_attrs *battrs)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001533{
Kinglong Mee60810e52014-01-01 00:35:47 +08001534 int numslots = fattrs->maxreqs;
1535 int slotsize = slot_bytes(fattrs);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001536 struct nfsd4_session *new;
1537 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001538
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -04001539 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001540 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1541 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -04001542
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001543 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001544 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001545 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -04001546 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001547 for (i = 0; i < numslots; i++) {
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001548 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001549 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -04001550 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -04001551 }
Kinglong Mee60810e52014-01-01 00:35:47 +08001552
1553 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1554 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1555
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001556 return new;
1557out_free:
1558 while (i--)
1559 kfree(new->se_slots[i]);
1560 kfree(new);
1561 return NULL;
1562}
1563
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001564static void free_conn(struct nfsd4_conn *c)
1565{
1566 svc_xprt_put(c->cn_xprt);
1567 kfree(c);
1568}
1569
1570static void nfsd4_conn_lost(struct svc_xpt_user *u)
1571{
1572 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1573 struct nfs4_client *clp = c->cn_session->se_client;
1574
1575 spin_lock(&clp->cl_lock);
1576 if (!list_empty(&c->cn_persession)) {
1577 list_del(&c->cn_persession);
1578 free_conn(c);
1579 }
J. Bruce Fieldseea49802010-11-18 08:34:12 -05001580 nfsd4_probe_callback(clp);
J. Bruce Fields2e4b7232013-03-08 09:30:43 -05001581 spin_unlock(&clp->cl_lock);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001582}
1583
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001584static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001585{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001586 struct nfsd4_conn *conn;
1587
1588 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1589 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001590 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001591 svc_xprt_get(rqstp->rq_xprt);
1592 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -04001593 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001594 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1595 return conn;
1596}
1597
J. Bruce Fields328ead22010-09-29 16:11:06 -04001598static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1599{
1600 conn->cn_session = ses;
1601 list_add(&conn->cn_persession, &ses->se_conns);
1602}
1603
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001604static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1605{
1606 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001607
1608 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001609 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001610 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001611}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001612
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001613static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001614{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001615 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001616 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001617}
1618
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001619static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001620{
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001621 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001622
J. Bruce Fieldsdb906812010-09-29 15:29:32 -04001623 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001624 ret = nfsd4_register_conn(conn);
1625 if (ret)
1626 /* oops; xprt is already down: */
1627 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fields57a37142014-07-18 15:06:47 -04001628 /* We may have gained or lost a callback channel: */
1629 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001630}
1631
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001632static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001633{
1634 u32 dir = NFS4_CDFC4_FORE;
1635
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001636 if (cses->flags & SESSION4_BACK_CHAN)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001637 dir |= NFS4_CDFC4_BACK;
J. Bruce Fieldse1ff3712012-09-11 17:10:25 -04001638 return alloc_conn(rqstp, dir);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001639}
1640
1641/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001642static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001643{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001644 struct nfs4_client *clp = s->se_client;
1645 struct nfsd4_conn *c;
1646
1647 spin_lock(&clp->cl_lock);
1648 while (!list_empty(&s->se_conns)) {
1649 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1650 list_del_init(&c->cn_persession);
1651 spin_unlock(&clp->cl_lock);
1652
1653 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1654 free_conn(c);
1655
1656 spin_lock(&clp->cl_lock);
1657 }
1658 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001659}
1660
J. Bruce Fields1377b692012-09-11 21:42:40 -04001661static void __free_session(struct nfsd4_session *ses)
1662{
J. Bruce Fields1377b692012-09-11 21:42:40 -04001663 free_session_slots(ses);
1664 kfree(ses);
1665}
1666
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001667static void free_session(struct nfsd4_session *ses)
Benny Halevy508dc6e2012-02-23 17:40:52 -08001668{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001669 nfsd4_del_conns(ses);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04001670 nfsd4_put_drc_mem(&ses->se_fchannel);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001671 __free_session(ses);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001672}
Andy Adamson557ce262009-08-28 08:45:04 -04001673
Fengguang Wu135ae822012-11-10 07:20:25 -05001674static 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 -04001675{
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001676 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001677 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsa827bcb2012-09-12 09:51:34 -04001678
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001679 new->se_client = clp;
1680 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001681
J. Bruce Fieldsc7662512010-06-06 18:12:14 -04001682 INIT_LIST_HEAD(&new->se_conns);
1683
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001684 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001685 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -04001686 new->se_cb_prog = cses->callback_prog;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001687 new->se_cb_sec = cses->cb_sec;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001688 atomic_set(&new->se_ref, 0);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -04001689 idx = hash_sessionid(&new->se_sessionid);
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001690 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001691 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001692 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001693 spin_unlock(&clp->cl_lock);
Kinglong Mee60810e52014-01-01 00:35:47 +08001694
Chuck Leverb0d2e422014-08-22 15:10:59 -04001695 {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001696 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001697 /*
1698 * This is a little silly; with sessions there's no real
1699 * use for the callback address. Use the peer address
1700 * as a reasonable default for now, but consider fixing
1701 * the rpc client not to require an address in the
1702 * future:
1703 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001704 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1705 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001706 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001707}
1708
Benny Halevy9089f1b2010-05-12 00:12:26 +03001709/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +03001710static struct nfsd4_session *
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001711__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
Marc Eshel5282fd72009-04-03 08:27:52 +03001712{
1713 struct nfsd4_session *elem;
1714 int idx;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001715 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Marc Eshel5282fd72009-04-03 08:27:52 +03001716
Trond Myklebust0a880a22014-07-30 08:27:10 -04001717 lockdep_assert_held(&nn->client_lock);
1718
Marc Eshel5282fd72009-04-03 08:27:52 +03001719 dump_sessionid(__func__, sessionid);
1720 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +03001721 /* Search in the appropriate list */
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03001722 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +03001723 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1724 NFS4_MAX_SESSIONID_LEN)) {
1725 return elem;
1726 }
1727 }
1728
1729 dprintk("%s: session not found\n", __func__);
1730 return NULL;
1731}
1732
Trond Myklebustd4e19e702014-06-30 11:48:42 -04001733static struct nfsd4_session *
1734find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1735 __be32 *ret)
1736{
1737 struct nfsd4_session *session;
1738 __be32 status = nfserr_badsession;
1739
1740 session = __find_in_sessionid_hashtbl(sessionid, net);
1741 if (!session)
1742 goto out;
1743 status = nfsd4_get_session_locked(session);
1744 if (status)
1745 session = NULL;
1746out:
1747 *ret = status;
1748 return session;
1749}
1750
Benny Halevy9089f1b2010-05-12 00:12:26 +03001751/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +03001752static void
Marc Eshel5282fd72009-04-03 08:27:52 +03001753unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +03001754{
Trond Myklebust0a880a22014-07-30 08:27:10 -04001755 struct nfs4_client *clp = ses->se_client;
1756 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1757
1758 lockdep_assert_held(&nn->client_lock);
1759
Andy Adamson7116ed62009-04-03 08:27:43 +03001760 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001761 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +03001762 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001763 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +03001764}
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1767static int
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001768STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
J. Bruce Fieldsbbc7f332015-01-20 11:51:26 -05001770 /*
1771 * We're assuming the clid was not given out from a boot
1772 * precisely 2^32 (about 136 years) before this one. That seems
1773 * a safe assumption:
1774 */
1775 if (clid->cl_boot == (u32)nn->boot_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +03001777 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04001778 clid->cl_boot, clid->cl_id, nn->boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return 1;
1780}
1781
1782/*
1783 * XXX Should we use a slab cache ?
1784 * This type of memory management is somewhat inefficient, but we use it
1785 * anyway since SETCLIENTID is not a common operation.
1786 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001787static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
1789 struct nfs4_client *clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001790 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001792 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1793 if (clp == NULL)
1794 return NULL;
Thomas Meyer67114fe2011-11-17 23:43:40 +01001795 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001796 if (clp->cl_name.data == NULL)
1797 goto err_no_name;
1798 clp->cl_ownerstr_hashtbl = kmalloc(sizeof(struct list_head) *
1799 OWNER_HASH_SIZE, GFP_KERNEL);
1800 if (!clp->cl_ownerstr_hashtbl)
1801 goto err_no_hashtbl;
1802 for (i = 0; i < OWNER_HASH_SIZE; i++)
1803 INIT_LIST_HEAD(&clp->cl_ownerstr_hashtbl[i]);
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001804 clp->cl_name.len = name.len;
Trond Myklebust5694c932014-04-18 14:43:56 -04001805 INIT_LIST_HEAD(&clp->cl_sessions);
1806 idr_init(&clp->cl_stateids);
1807 atomic_set(&clp->cl_refcount, 0);
1808 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1809 INIT_LIST_HEAD(&clp->cl_idhash);
1810 INIT_LIST_HEAD(&clp->cl_openowners);
1811 INIT_LIST_HEAD(&clp->cl_delegations);
1812 INIT_LIST_HEAD(&clp->cl_lru);
Trond Myklebust5694c932014-04-18 14:43:56 -04001813 INIT_LIST_HEAD(&clp->cl_revoked);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001814#ifdef CONFIG_NFSD_PNFS
1815 INIT_LIST_HEAD(&clp->cl_lo_states);
1816#endif
Trond Myklebust5694c932014-04-18 14:43:56 -04001817 spin_lock_init(&clp->cl_lock);
1818 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return clp;
Trond Myklebustd4f04892014-07-29 21:34:36 -04001820err_no_hashtbl:
1821 kfree(clp->cl_name.data);
1822err_no_name:
1823 kfree(clp);
1824 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
Trond Myklebust4dd86e152014-04-18 14:43:58 -04001827static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828free_client(struct nfs4_client *clp)
1829{
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001830 while (!list_empty(&clp->cl_sessions)) {
1831 struct nfsd4_session *ses;
1832 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1833 se_perclnt);
1834 list_del(&ses->se_perclnt);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04001835 WARN_ON_ONCE(atomic_read(&ses->se_ref));
1836 free_session(ses);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001837 }
Trond Myklebust4cb57e32014-04-18 14:43:57 -04001838 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001839 free_svc_cred(&clp->cl_cred);
Trond Myklebustd4f04892014-07-29 21:34:36 -04001840 kfree(clp->cl_ownerstr_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 kfree(clp->cl_name.data);
majianpeng2d32b292013-01-29 13:16:06 +08001842 idr_destroy(&clp->cl_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 kfree(clp);
1844}
1845
Benny Halevy84d38ac2010-05-12 00:13:16 +03001846/* must be called under the client_lock */
Trond Myklebust4beb3452014-07-30 08:27:02 -04001847static void
Benny Halevy84d38ac2010-05-12 00:13:16 +03001848unhash_client_locked(struct nfs4_client *clp)
1849{
Trond Myklebust4beb3452014-07-30 08:27:02 -04001850 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001851 struct nfsd4_session *ses;
1852
Trond Myklebust0a880a22014-07-30 08:27:10 -04001853 lockdep_assert_held(&nn->client_lock);
1854
Trond Myklebust4beb3452014-07-30 08:27:02 -04001855 /* Mark the client as expired! */
1856 clp->cl_time = 0;
1857 /* Make it invisible */
1858 if (!list_empty(&clp->cl_idhash)) {
1859 list_del_init(&clp->cl_idhash);
1860 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
1861 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
1862 else
1863 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
1864 }
1865 list_del_init(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001866 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001867 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1868 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -04001869 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +03001870}
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872static void
Trond Myklebust4beb3452014-07-30 08:27:02 -04001873unhash_client(struct nfs4_client *clp)
1874{
1875 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1876
1877 spin_lock(&nn->client_lock);
1878 unhash_client_locked(clp);
1879 spin_unlock(&nn->client_lock);
1880}
1881
Jeff Layton97403d92014-07-30 08:27:12 -04001882static __be32 mark_client_expired_locked(struct nfs4_client *clp)
1883{
1884 if (atomic_read(&clp->cl_refcount))
1885 return nfserr_jukebox;
1886 unhash_client_locked(clp);
1887 return nfs_ok;
1888}
1889
Trond Myklebust4beb3452014-07-30 08:27:02 -04001890static void
1891__destroy_client(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Jeff Laytone294c4c2018-03-16 11:32:02 -04001893 int i;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001894 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 struct list_head reaplist;
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc97502014-05-30 09:09:30 -04001899 spin_lock(&state_lock);
NeilBrownea1da632005-06-23 22:04:17 -07001900 while (!list_empty(&clp->cl_delegations)) {
1901 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04001902 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04001903 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
Benny Halevycdc97502014-05-30 09:09:30 -04001905 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 while (!list_empty(&reaplist)) {
1907 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04001908 list_del_init(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +02001909 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -04001910 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
Trond Myklebust60116952014-07-29 21:34:06 -04001911 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
Jeff Layton2d4a5322014-07-25 07:34:21 -04001913 while (!list_empty(&clp->cl_revoked)) {
Andrew Elblec8764862015-02-25 17:46:27 -05001914 dp = list_entry(clp->cl_revoked.next, struct nfs4_delegation, dl_recall_lru);
Jeff Layton2d4a5322014-07-25 07:34:21 -04001915 list_del_init(&dp->dl_recall_lru);
Trond Myklebust60116952014-07-29 21:34:06 -04001916 nfs4_put_stid(&dp->dl_stid);
Benny Halevy956c4fe2013-10-29 11:39:12 +02001917 }
NeilBrownea1da632005-06-23 22:04:17 -07001918 while (!list_empty(&clp->cl_openowners)) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001919 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
Kinglong Meeb5971af2014-08-22 10:18:43 -04001920 nfs4_get_stateowner(&oo->oo_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001921 release_openowner(oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
Jeff Laytone294c4c2018-03-16 11:32:02 -04001923 for (i = 0; i < OWNER_HASH_SIZE; i++) {
1924 struct nfs4_stateowner *so, *tmp;
1925
1926 list_for_each_entry_safe(so, tmp, &clp->cl_ownerstr_hashtbl[i],
1927 so_strhash) {
1928 /* Should be no openowners at this point */
1929 WARN_ON_ONCE(so->so_is_open_owner);
1930 remove_blocked_locks(lockowner(so));
1931 }
1932 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001933 nfsd4_return_all_client_layouts(clp);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001934 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -05001935 if (clp->cl_cb_conn.cb_xprt)
1936 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
J. Bruce Fields221a6872013-04-01 22:23:49 -04001937 free_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
Trond Myklebust4beb3452014-07-30 08:27:02 -04001940static void
1941destroy_client(struct nfs4_client *clp)
1942{
1943 unhash_client(clp);
1944 __destroy_client(clp);
1945}
1946
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001947static void expire_client(struct nfs4_client *clp)
1948{
Trond Myklebust4beb3452014-07-30 08:27:02 -04001949 unhash_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001950 nfsd4_client_record_remove(clp);
Trond Myklebust4beb3452014-07-30 08:27:02 -04001951 __destroy_client(clp);
J. Bruce Fields0d22f682012-09-26 11:36:16 -04001952}
1953
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001954static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1955{
1956 memcpy(target->cl_verifier.data, source->data,
1957 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001960static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1961{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1963 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1964}
1965
J. Bruce Fields50043852015-11-20 15:58:37 -05001966int strdup_if_nonnull(char **target, char *source)
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001967{
J. Bruce Fields50043852015-11-20 15:58:37 -05001968 if (source) {
1969 *target = kstrdup(source, GFP_KERNEL);
1970 if (!*target)
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001971 return -ENOMEM;
1972 } else
J. Bruce Fields50043852015-11-20 15:58:37 -05001973 *target = NULL;
1974 return 0;
1975}
1976
1977static int copy_cred(struct svc_cred *target, struct svc_cred *source)
1978{
1979 int ret;
1980
1981 ret = strdup_if_nonnull(&target->cr_principal, source->cr_principal);
1982 if (ret)
1983 return ret;
J. Bruce Fields414ca012015-11-20 10:48:02 -05001984 ret = strdup_if_nonnull(&target->cr_raw_principal,
1985 source->cr_raw_principal);
1986 if (ret)
1987 return ret;
J. Bruce Fieldsd5497fc2012-05-14 22:06:49 -04001988 target->cr_flavor = source->cr_flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 target->cr_uid = source->cr_uid;
1990 target->cr_gid = source->cr_gid;
1991 target->cr_group_info = source->cr_group_info;
1992 get_group_info(target->cr_group_info);
J. Bruce Fields0dc15312013-05-14 16:07:13 -04001993 target->cr_gss_mech = source->cr_gss_mech;
1994 if (source->cr_gss_mech)
1995 gss_mech_get(source->cr_gss_mech);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04001996 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997}
1998
Rasmus Villemoesef17af22014-12-05 16:40:07 +01001999static int
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002000compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
2001{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002002 if (o1->len < o2->len)
2003 return -1;
2004 if (o1->len > o2->len)
2005 return 1;
2006 return memcmp(o1->data, o2->data, o1->len);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002007}
2008
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05002009static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002010{
NeilBrowna55370a2005-06-23 22:03:52 -07002011 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
2014static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002015same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
2016{
2017 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
2019
2020static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002021same_clid(clientid_t *cl1, clientid_t *cl2)
2022{
2023 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002026static bool groups_equal(struct group_info *g1, struct group_info *g2)
2027{
2028 int i;
2029
2030 if (g1->ngroups != g2->ngroups)
2031 return false;
2032 for (i=0; i<g1->ngroups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -07002033 if (!gid_eq(g1->gid[i], g2->gid[i]))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002034 return false;
2035 return true;
2036}
2037
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002038/*
2039 * RFC 3530 language requires clid_inuse be returned when the
2040 * "principal" associated with a requests differs from that previously
2041 * used. We use uid, gid's, and gss principal string as our best
2042 * approximation. We also don't want to allow non-gss use of a client
2043 * established using gss: in theory cr_principal should catch that
2044 * change, but in practice cr_principal can be null even in the gss case
2045 * since gssd doesn't always pass down a principal string.
2046 */
2047static bool is_gss_cred(struct svc_cred *cr)
2048{
2049 /* Is cr_flavor one of the gss "pseudoflavors"?: */
2050 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
2051}
2052
2053
Vivek Trivedi5559b502012-07-24 21:18:20 +05302054static bool
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002055same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
2056{
J. Bruce Fields68eb3502012-08-21 12:48:30 -04002057 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002058 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
2059 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
J. Bruce Fields8fbba962012-05-14 21:20:54 -04002060 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
2061 return false;
2062 if (cr1->cr_principal == cr2->cr_principal)
2063 return true;
2064 if (!cr1->cr_principal || !cr2->cr_principal)
2065 return false;
Vivek Trivedi5559b502012-07-24 21:18:20 +05302066 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
J. Bruce Fields57266a62013-04-13 14:27:29 -04002069static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
2070{
2071 struct svc_cred *cr = &rqstp->rq_cred;
2072 u32 service;
2073
J. Bruce Fieldsc4720592013-08-07 11:41:49 -04002074 if (!cr->cr_gss_mech)
2075 return false;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002076 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
2077 return service == RPC_GSS_SVC_INTEGRITY ||
2078 service == RPC_GSS_SVC_PRIVACY;
2079}
2080
Andrew Elblededeb132016-06-15 12:52:08 -04002081bool nfsd4_mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
J. Bruce Fields57266a62013-04-13 14:27:29 -04002082{
2083 struct svc_cred *cr = &rqstp->rq_cred;
2084
2085 if (!cl->cl_mach_cred)
2086 return true;
2087 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
2088 return false;
2089 if (!svc_rqst_integrity_protected(rqstp))
2090 return false;
J. Bruce Fields414ca012015-11-20 10:48:02 -05002091 if (cl->cl_cred.cr_raw_principal)
2092 return 0 == strcmp(cl->cl_cred.cr_raw_principal,
2093 cr->cr_raw_principal);
J. Bruce Fields57266a62013-04-13 14:27:29 -04002094 if (!cr->cr_principal)
2095 return false;
2096 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
2097}
2098
Jeff Layton294ac322014-07-30 08:27:15 -04002099static void gen_confirm(struct nfs4_client *clp, struct nfsd_net *nn)
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05002100{
Chuck Leverab4684d2012-03-02 17:13:50 -05002101 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Jeff Laytonf4199922014-06-17 07:44:11 -04002103 /*
2104 * This is opaque to client, so no need to byte-swap. Use
2105 * __force to keep sparse happy
2106 */
2107 verf[0] = (__force __be32)get_seconds();
Kinglong Mee19311aa82015-07-18 07:33:31 +08002108 verf[1] = (__force __be32)nn->clverifier_counter++;
Chuck Leverab4684d2012-03-02 17:13:50 -05002109 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110}
2111
Jeff Layton294ac322014-07-30 08:27:15 -04002112static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
2113{
2114 clp->cl_clientid.cl_boot = nn->boot_time;
2115 clp->cl_clientid.cl_id = nn->clientid_counter++;
2116 gen_confirm(clp, nn);
2117}
2118
Jeff Layton4770d722014-07-29 21:34:10 -04002119static struct nfs4_stid *
2120find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
J. Bruce Fields4581d142011-09-06 14:56:09 -04002121{
J. Bruce Fields3abdb602013-02-03 12:23:01 -05002122 struct nfs4_stid *ret;
2123
2124 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
2125 if (!ret || !ret->sc_type)
2126 return NULL;
2127 return ret;
J. Bruce Fields4d71ab82011-09-06 16:48:57 -04002128}
2129
Jeff Layton4770d722014-07-29 21:34:10 -04002130static struct nfs4_stid *
Jeff Layton4770d722014-07-29 21:34:10 -04002131find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04002132{
2133 struct nfs4_stid *s;
2134
Jeff Layton4770d722014-07-29 21:34:10 -04002135 spin_lock(&cl->cl_lock);
2136 s = find_stateid_locked(cl, t);
Trond Myklebust2d3f9662014-07-29 21:34:25 -04002137 if (s != NULL) {
2138 if (typemask & s->sc_type)
2139 atomic_inc(&s->sc_count);
2140 else
2141 s = NULL;
2142 }
Jeff Layton4770d722014-07-29 21:34:10 -04002143 spin_unlock(&cl->cl_lock);
2144 return s;
J. Bruce Fields4581d142011-09-06 14:56:09 -04002145}
2146
Jeff Layton2216d442012-11-12 15:00:57 -05002147static struct nfs4_client *create_client(struct xdr_netobj name,
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002148 struct svc_rqst *rqstp, nfs4_verifier *verf)
2149{
2150 struct nfs4_client *clp;
2151 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002152 int ret;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002153 struct net *net = SVC_NET(rqstp);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002154
2155 clp = alloc_client(name);
2156 if (clp == NULL)
2157 return NULL;
2158
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002159 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
2160 if (ret) {
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002161 free_client(clp);
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -04002162 return NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002163 }
Christoph Hellwig0162ac22014-09-24 12:19:19 +02002164 nfsd4_init_cb(&clp->cl_cb_null, clp, NULL, NFSPROC4_CLNT_CB_NULL);
Benny Halevy07cd4902010-05-12 00:13:41 +03002165 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002166 clear_bit(0, &clp->cl_cb_slot_busy);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002167 copy_verf(clp, verf);
2168 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04002169 clp->cl_cb_session = NULL;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002170 clp->net = net;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002171 return clp;
2172}
2173
NeilBrownfd39ca92005-06-23 22:04:03 -07002174static void
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002175add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
2176{
2177 struct rb_node **new = &(root->rb_node), *parent = NULL;
2178 struct nfs4_client *clp;
2179
2180 while (*new) {
2181 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
2182 parent = *new;
2183
2184 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
2185 new = &((*new)->rb_left);
2186 else
2187 new = &((*new)->rb_right);
2188 }
2189
2190 rb_link_node(&new_clp->cl_namenode, parent, new);
2191 rb_insert_color(&new_clp->cl_namenode, root);
2192}
2193
2194static struct nfs4_client *
2195find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
2196{
Rasmus Villemoesef17af22014-12-05 16:40:07 +01002197 int cmp;
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002198 struct rb_node *node = root->rb_node;
2199 struct nfs4_client *clp;
2200
2201 while (node) {
2202 clp = rb_entry(node, struct nfs4_client, cl_namenode);
2203 cmp = compare_blob(&clp->cl_name, name);
2204 if (cmp > 0)
2205 node = node->rb_left;
2206 else if (cmp < 0)
2207 node = node->rb_right;
2208 else
2209 return clp;
2210 }
2211 return NULL;
2212}
2213
2214static void
2215add_to_unconfirmed(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
2217 unsigned int idhashval;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002218 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Trond Myklebust0a880a22014-07-30 08:27:10 -04002220 lockdep_assert_held(&nn->client_lock);
2221
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002222 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002223 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002225 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002226 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
NeilBrownfd39ca92005-06-23 22:04:03 -07002229static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230move_to_confirmed(struct nfs4_client *clp)
2231{
2232 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002233 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Trond Myklebust0a880a22014-07-30 08:27:10 -04002235 lockdep_assert_held(&nn->client_lock);
2236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002238 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002239 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002240 add_clp_to_name_tree(clp, &nn->conf_name_tree);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002241 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002242 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
2245static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002246find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 struct nfs4_client *clp;
2249 unsigned int idhashval = clientid_hashval(clid->cl_id);
2250
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002251 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002252 if (same_clid(&clp->cl_clientid, clid)) {
J. Bruce Fieldsd15c0772012-09-13 16:19:31 -04002253 if ((bool)clp->cl_minorversion != sessions)
2254 return NULL;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002255 renew_client_locked(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return clp;
J. Bruce Fieldsa50d2ad2011-10-12 16:24:27 -04002257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 }
2259 return NULL;
2260}
2261
2262static struct nfs4_client *
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002263find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
2264{
2265 struct list_head *tbl = nn->conf_id_hashtbl;
2266
Trond Myklebust0a880a22014-07-30 08:27:10 -04002267 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002268 return find_client_in_id_table(tbl, clid, sessions);
2269}
2270
2271static struct nfs4_client *
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002272find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002274 struct list_head *tbl = nn->unconf_id_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Trond Myklebust0a880a22014-07-30 08:27:10 -04002276 lockdep_assert_held(&nn->client_lock);
J. Bruce Fieldsbfa85e832013-03-14 18:24:52 -04002277 return find_client_in_id_table(tbl, clid, sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002280static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002281{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05002282 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002283}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03002284
NeilBrown28ce6052005-06-23 22:03:56 -07002285static struct nfs4_client *
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002286find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002287{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002288 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002289 return find_clp_in_name_tree(name, &nn->conf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002290}
2291
2292static struct nfs4_client *
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002293find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
NeilBrown28ce6052005-06-23 22:03:56 -07002294{
Trond Myklebust0a880a22014-07-30 08:27:10 -04002295 lockdep_assert_held(&nn->client_lock);
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002296 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
NeilBrown28ce6052005-06-23 22:03:56 -07002297}
2298
NeilBrownfd39ca92005-06-23 22:04:03 -07002299static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002300gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
J. Bruce Fields07263f12010-05-31 19:09:40 -04002302 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002303 struct sockaddr *sa = svc_addr(rqstp);
2304 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04002305 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Jeff Layton7077ecb2009-08-14 12:57:58 -04002307 /* Currently, we only support tcp and tcp6 for the callback channel */
2308 if (se->se_callback_netid_len == 3 &&
2309 !memcmp(se->se_callback_netid_val, "tcp", 3))
2310 expected_family = AF_INET;
2311 else if (se->se_callback_netid_len == 4 &&
2312 !memcmp(se->se_callback_netid_val, "tcp6", 4))
2313 expected_family = AF_INET6;
2314 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 goto out_err;
2316
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002317 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002318 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04002319 (struct sockaddr *)&conn->cb_addr,
2320 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002321
J. Bruce Fields07263f12010-05-31 19:09:40 -04002322 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04002324
J. Bruce Fields07263f12010-05-31 19:09:40 -04002325 if (conn->cb_addr.ss_family == AF_INET6)
2326 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04002327
J. Bruce Fields07263f12010-05-31 19:09:40 -04002328 conn->cb_prog = se->se_callback_prog;
2329 conn->cb_ident = se->se_callback_ident;
Mi Jinlong849a1cf2011-08-30 17:18:41 +08002330 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return;
2332out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04002333 conn->cb_addr.ss_family = AF_UNSPEC;
2334 conn->cb_addrlen = 0;
Neil Brown849823c2005-09-13 01:25:36 -07002335 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 "will not receive delegations\n",
2337 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return;
2340}
2341
Andy Adamson074fe892009-04-03 08:28:15 +03002342/*
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04002343 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03002344 */
Trond Myklebustb6076642014-06-30 11:48:35 -04002345static void
Andy Adamson074fe892009-04-03 08:28:15 +03002346nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
2347{
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002348 struct xdr_buf *buf = resp->xdr.buf;
Andy Adamson557ce262009-08-28 08:45:04 -04002349 struct nfsd4_slot *slot = resp->cstate.slot;
2350 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03002351
Andy Adamson557ce262009-08-28 08:45:04 -04002352 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002353
J. Bruce Fieldsf92c45b2017-10-18 16:17:18 -04002354 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
Andy Adamson557ce262009-08-28 08:45:04 -04002355 slot->sl_opcnt = resp->opcnt;
2356 slot->sl_status = resp->cstate.status;
J. Bruce Fields877362f2017-10-17 20:38:49 -04002357 free_svc_cred(&slot->sl_cred);
2358 copy_cred(&slot->sl_cred, &resp->rqstp->rq_cred);
Andy Adamsonbf864a32009-04-03 08:28:35 +03002359
J. Bruce Fieldsf92c45b2017-10-18 16:17:18 -04002360 if (!nfsd4_cache_this(resp)) {
2361 slot->sl_flags &= ~NFSD4_SLOT_CACHED;
Andy Adamsonbf864a32009-04-03 08:28:35 +03002362 return;
2363 }
J. Bruce Fieldsf92c45b2017-10-18 16:17:18 -04002364 slot->sl_flags |= NFSD4_SLOT_CACHED;
2365
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002366 base = resp->cstate.data_offset;
2367 slot->sl_datalen = buf->len - base;
2368 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
Dan Carpenterd3f03402015-11-21 13:28:50 +03002369 WARN(1, "%s: sessions DRC could not cache compound\n",
2370 __func__);
Andy Adamson557ce262009-08-28 08:45:04 -04002371 return;
Andy Adamson074fe892009-04-03 08:28:15 +03002372}
2373
2374/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04002375 * Encode the replay sequence operation from the slot values.
2376 * If cachethis is FALSE encode the uncached rep error on the next
2377 * operation which sets resp->p and increments resp->opcnt for
2378 * nfs4svc_encode_compoundres.
2379 *
Andy Adamson074fe892009-04-03 08:28:15 +03002380 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04002381static __be32
2382nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
2383 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03002384{
Andy Adamsonabfabf82009-07-23 19:02:18 -04002385 struct nfsd4_op *op;
2386 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03002387
Andy Adamsonabfabf82009-07-23 19:02:18 -04002388 /* Encode the replayed sequence operation */
2389 op = &args->ops[resp->opcnt - 1];
2390 nfsd4_encode_operation(resp, op);
2391
J. Bruce Fieldsf92c45b2017-10-18 16:17:18 -04002392 if (slot->sl_flags & NFSD4_SLOT_CACHED)
2393 return op->status;
2394 if (args->opcnt == 1) {
2395 /*
2396 * The original operation wasn't a solo sequence--we
2397 * always cache those--so this retry must not match the
2398 * original:
2399 */
2400 op->status = nfserr_seq_false_retry;
2401 } else {
Andy Adamsonabfabf82009-07-23 19:02:18 -04002402 op = &args->ops[resp->opcnt++];
2403 op->status = nfserr_retry_uncached_rep;
2404 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03002405 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04002406 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03002407}
2408
2409/*
Andy Adamson557ce262009-08-28 08:45:04 -04002410 * The sequence operation is not cached because we can use the slot and
2411 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03002412 */
J. Bruce Fields3ca2eb92014-03-21 12:04:21 -04002413static __be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03002414nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
2415 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03002416{
Andy Adamson557ce262009-08-28 08:45:04 -04002417 struct nfsd4_slot *slot = resp->cstate.slot;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002418 struct xdr_stream *xdr = &resp->xdr;
2419 __be32 *p;
Andy Adamson074fe892009-04-03 08:28:15 +03002420 __be32 status;
2421
Andy Adamson557ce262009-08-28 08:45:04 -04002422 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03002423
Andy Adamsonabfabf82009-07-23 19:02:18 -04002424 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
J. Bruce Fields0da7b192014-03-21 11:43:34 -04002425 if (status)
Andy Adamsonabfabf82009-07-23 19:02:18 -04002426 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03002427
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002428 p = xdr_reserve_space(xdr, slot->sl_datalen);
2429 if (!p) {
2430 WARN_ON_ONCE(1);
2431 return nfserr_serverfault;
2432 }
2433 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
2434 xdr_commit_encode(xdr);
Andy Adamson074fe892009-04-03 08:28:15 +03002435
Andy Adamson557ce262009-08-28 08:45:04 -04002436 resp->opcnt = slot->sl_opcnt;
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04002437 return slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03002438}
2439
Andy Adamson0733d212009-04-03 08:28:01 +03002440/*
2441 * Set the exchange_id flags returned by the server.
2442 */
2443static void
2444nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
2445{
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002446#ifdef CONFIG_NFSD_PNFS
2447 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_PNFS_MDS;
2448#else
Andy Adamson0733d212009-04-03 08:28:01 +03002449 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002450#endif
Andy Adamson0733d212009-04-03 08:28:01 +03002451
2452 /* Referrals are supported, Migration is not. */
2453 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
2454
2455 /* set the wire flags to return to client. */
2456 clid->flags = new->cl_exchange_flags;
2457}
2458
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002459static bool client_has_openowners(struct nfs4_client *clp)
2460{
2461 struct nfs4_openowner *oo;
2462
2463 list_for_each_entry(oo, &clp->cl_openowners, oo_perclient) {
2464 if (!list_empty(&oo->oo_owner.so_stateids))
2465 return true;
2466 }
2467 return false;
2468}
2469
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002470static bool client_has_state(struct nfs4_client *clp)
2471{
J. Bruce Fields4eaea132015-10-15 16:11:01 -04002472 return client_has_openowners(clp)
Kinglong Mee47e970b2015-07-21 13:09:17 +08002473#ifdef CONFIG_NFSD_PNFS
2474 || !list_empty(&clp->cl_lo_states)
2475#endif
J. Bruce Fields6eccece2012-05-29 16:37:44 -04002476 || !list_empty(&clp->cl_delegations)
2477 || !list_empty(&clp->cl_sessions);
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002478}
2479
Al Virob37ad282006-10-19 23:28:59 -07002480__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03002481nfsd4_exchange_id(struct svc_rqst *rqstp,
2482 struct nfsd4_compound_state *cstate,
2483 struct nfsd4_exchange_id *exid)
2484{
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002485 struct nfs4_client *conf, *new;
2486 struct nfs4_client *unconf = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002487 __be32 status;
Jeff Layton363168b2009-08-14 12:57:56 -04002488 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03002489 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04002490 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002491 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002492 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03002493
Jeff Layton363168b2009-08-14 12:57:56 -04002494 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03002495 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04002496 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03002497 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04002498 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03002499
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04002500 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
Andy Adamson0733d212009-04-03 08:28:01 +03002501 return nfserr_inval;
2502
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002503 new = create_client(exid->clname, rqstp, &verf);
2504 if (new == NULL)
2505 return nfserr_jukebox;
2506
Andy Adamson0733d212009-04-03 08:28:01 +03002507 switch (exid->spa_how) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002508 case SP4_MACH_CRED:
Andrew Elbleed941642016-06-15 12:52:09 -04002509 exid->spo_must_enforce[0] = 0;
2510 exid->spo_must_enforce[1] = (
2511 1 << (OP_BIND_CONN_TO_SESSION - 32) |
2512 1 << (OP_EXCHANGE_ID - 32) |
2513 1 << (OP_CREATE_SESSION - 32) |
2514 1 << (OP_DESTROY_SESSION - 32) |
2515 1 << (OP_DESTROY_CLIENTID - 32));
2516
2517 exid->spo_must_allow[0] &= (1 << (OP_CLOSE) |
2518 1 << (OP_OPEN_DOWNGRADE) |
2519 1 << (OP_LOCKU) |
2520 1 << (OP_DELEGRETURN));
2521
2522 exid->spo_must_allow[1] &= (
2523 1 << (OP_TEST_STATEID - 32) |
2524 1 << (OP_FREE_STATEID - 32));
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002525 if (!svc_rqst_integrity_protected(rqstp)) {
2526 status = nfserr_inval;
2527 goto out_nolock;
2528 }
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05002529 /*
2530 * Sometimes userspace doesn't give us a principal.
2531 * Which is a bug, really. Anyway, we can't enforce
2532 * MACH_CRED in that case, better to give up now:
2533 */
J. Bruce Fields414ca012015-11-20 10:48:02 -05002534 if (!new->cl_cred.cr_principal &&
2535 !new->cl_cred.cr_raw_principal) {
J. Bruce Fields920dd9b2015-11-20 16:42:40 -05002536 status = nfserr_serverfault;
2537 goto out_nolock;
2538 }
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002539 new->cl_mach_cred = true;
Andy Adamson0733d212009-04-03 08:28:01 +03002540 case SP4_NONE:
2541 break;
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05002542 default: /* checked by xdr code */
2543 WARN_ON_ONCE(1);
Andy Adamson0733d212009-04-03 08:28:01 +03002544 case SP4_SSV:
Kinglong Mee8edf4b02016-02-26 22:36:42 +08002545 status = nfserr_encr_alg_unsupp;
2546 goto out_nolock;
Andy Adamson0733d212009-04-03 08:28:01 +03002547 }
2548
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002549 /* Cases below refer to rfc 5661 section 18.35.4: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002550 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002551 conf = find_confirmed_client_by_name(&exid->clname, nn);
Andy Adamson0733d212009-04-03 08:28:01 +03002552 if (conf) {
J. Bruce Fields83e08fd2012-05-14 09:08:10 -04002553 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
2554 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
2555
J. Bruce Fields136e6582012-05-12 20:37:23 -04002556 if (update) {
2557 if (!clp_used_exchangeid(conf)) { /* buggy client */
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002558 status = nfserr_inval;
Andy Adamson0733d212009-04-03 08:28:01 +03002559 goto out;
2560 }
Andrew Elblededeb132016-06-15 12:52:08 -04002561 if (!nfsd4_mach_creds_match(conf, rqstp)) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002562 status = nfserr_wrong_cred;
2563 goto out;
2564 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002565 if (!creds_match) { /* case 9 */
Andy Adamson0733d212009-04-03 08:28:01 +03002566 status = nfserr_perm;
2567 goto out;
2568 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002569 if (!verfs_match) { /* case 8 */
Andy Adamson0733d212009-04-03 08:28:01 +03002570 status = nfserr_not_same;
2571 goto out;
2572 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002573 /* case 6 */
2574 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002575 goto out_copy;
Andy Adamson0733d212009-04-03 08:28:01 +03002576 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002577 if (!creds_match) { /* case 3 */
J. Bruce Fields631fc9e2012-05-14 15:57:23 -04002578 if (client_has_state(conf)) {
2579 status = nfserr_clid_inuse;
2580 goto out;
2581 }
Andy Adamson0733d212009-04-03 08:28:01 +03002582 goto out_new;
2583 }
J. Bruce Fields136e6582012-05-12 20:37:23 -04002584 if (verfs_match) { /* case 2 */
J. Bruce Fields0f1ba0e2012-05-25 21:24:40 -04002585 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002586 goto out_copy;
2587 }
2588 /* case 5, client reboot */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002589 conf = NULL;
J. Bruce Fields136e6582012-05-12 20:37:23 -04002590 goto out_new;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002591 }
2592
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002593 if (update) { /* case 7 */
Mike Sager6ddbbbf2009-06-16 04:20:47 +03002594 status = nfserr_noent;
2595 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03002596 }
2597
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03002598 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002599 if (unconf) /* case 4, possible retry or client restart */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002600 unhash_client_locked(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002601
J. Bruce Fields2dbb2692012-05-14 09:47:11 -04002602 /* case 1 (normal case) */
Andy Adamson0733d212009-04-03 08:28:01 +03002603out_new:
Jeff Laytonfd699b82014-07-30 08:27:14 -04002604 if (conf) {
2605 status = mark_client_expired_locked(conf);
2606 if (status)
2607 goto out;
2608 }
J. Bruce Fields4f540e22013-05-07 11:57:52 -04002609 new->cl_minorversion = cstate->minorversion;
Andrew Elbleed941642016-06-15 12:52:09 -04002610 new->cl_spo_must_allow.u.words[0] = exid->spo_must_allow[0];
2611 new->cl_spo_must_allow.u.words[1] = exid->spo_must_allow[1];
Andy Adamson0733d212009-04-03 08:28:01 +03002612
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03002613 gen_clid(new, nn);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05002614 add_to_unconfirmed(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002615 swap(new, conf);
Andy Adamson0733d212009-04-03 08:28:01 +03002616out_copy:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002617 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
2618 exid->clientid.cl_id = conf->cl_clientid.cl_id;
Andy Adamson0733d212009-04-03 08:28:01 +03002619
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002620 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
2621 nfsd4_set_ex_flags(conf, exid);
Andy Adamson0733d212009-04-03 08:28:01 +03002622
2623 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002624 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03002625 status = nfs_ok;
2626
2627out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002628 spin_unlock(&nn->client_lock);
J. Bruce Fields50c7b942015-11-23 15:39:12 -07002629out_nolock:
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04002630 if (new)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04002631 expire_client(new);
2632 if (unconf)
2633 expire_client(unconf);
Andy Adamson0733d212009-04-03 08:28:01 +03002634 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002635}
2636
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002637static __be32
Andy Adamson88e588d2009-07-23 19:02:15 -04002638check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002639{
Andy Adamson88e588d2009-07-23 19:02:15 -04002640 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
2641 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03002642
2643 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04002644 if (slot_inuse) {
2645 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002646 return nfserr_jukebox;
2647 else
2648 return nfserr_seq_misordered;
2649 }
J. Bruce Fieldsf6d82482012-02-13 16:13:41 -05002650 /* Note unsigned 32-bit arithmetic handles wraparound: */
Andy Adamson88e588d2009-07-23 19:02:15 -04002651 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03002652 return nfs_ok;
Andy Adamson88e588d2009-07-23 19:02:15 -04002653 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03002654 return nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03002655 return nfserr_seq_misordered;
2656}
2657
Andy Adamson49557cc2009-07-23 19:02:16 -04002658/*
2659 * Cache the create session result into the create session single DRC
2660 * slot cache by saving the xdr structure. sl_seqid has been set.
2661 * Do this for solo or embedded create session operations.
2662 */
2663static void
2664nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002665 struct nfsd4_clid_slot *slot, __be32 nfserr)
Andy Adamson49557cc2009-07-23 19:02:16 -04002666{
2667 slot->sl_status = nfserr;
2668 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
2669}
2670
2671static __be32
2672nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
2673 struct nfsd4_clid_slot *slot)
2674{
2675 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
2676 return slot->sl_status;
2677}
2678
Mi Jinlong1b74c252011-07-14 14:50:17 +08002679#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2680 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2681 1 + /* MIN tag is length with zero, only length */ \
2682 3 + /* version, opcount, opcode */ \
2683 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2684 /* seqid, slotID, slotID, cache */ \
2685 4 ) * sizeof(__be32))
2686
2687#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2688 2 + /* verifier: AUTH_NULL, length 0 */\
2689 1 + /* status */ \
2690 1 + /* MIN tag is length with zero, only length */ \
2691 3 + /* opcount, opcode, opstatus*/ \
2692 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2693 /* seqid, slotID, slotID, slotID, status */ \
2694 5 ) * sizeof(__be32))
2695
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002696static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
Mi Jinlong1b74c252011-07-14 14:50:17 +08002697{
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002698 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
2699
J. Bruce Fields373cd402013-04-08 15:42:12 -04002700 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
2701 return nfserr_toosmall;
2702 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
2703 return nfserr_toosmall;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002704 ca->headerpadsz = 0;
2705 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
2706 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
2707 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
2708 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
2709 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
2710 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
2711 /*
2712 * Note decreasing slot size below client's request may make it
2713 * difficult for client to function correctly, whereas
2714 * decreasing the number of slots will (just?) affect
2715 * performance. When short on memory we therefore prefer to
2716 * decrease number of slots instead of their size. Clients that
2717 * request larger slots than they need will get poor results:
2718 */
2719 ca->maxreqs = nfsd4_get_drc_mem(ca);
2720 if (!ca->maxreqs)
2721 return nfserr_jukebox;
2722
J. Bruce Fields373cd402013-04-08 15:42:12 -04002723 return nfs_ok;
Mi Jinlong1b74c252011-07-14 14:50:17 +08002724}
2725
Chuck Lever45006322016-03-01 13:06:02 -05002726/*
2727 * Server's NFSv4.1 backchannel support is AUTH_SYS-only for now.
2728 * These are based on similar macros in linux/sunrpc/msg_prot.h .
2729 */
2730#define RPC_MAX_HEADER_WITH_AUTH_SYS \
2731 (RPC_CALLHDRSIZE + 2 * (2 + UNX_CALLSLACK))
2732
2733#define RPC_MAX_REPHEADER_WITH_AUTH_SYS \
2734 (RPC_REPHDRSIZE + (2 + NUL_REPLYSLACK))
2735
Kinglong Mee8a891632013-12-23 18:11:02 +08002736#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05002737 RPC_MAX_HEADER_WITH_AUTH_SYS) * sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08002738#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
Chuck Lever45006322016-03-01 13:06:02 -05002739 RPC_MAX_REPHEADER_WITH_AUTH_SYS) * \
2740 sizeof(__be32))
Kinglong Mee8a891632013-12-23 18:11:02 +08002741
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002742static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
2743{
2744 ca->headerpadsz = 0;
2745
Kinglong Mee8a891632013-12-23 18:11:02 +08002746 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002747 return nfserr_toosmall;
Kinglong Mee8a891632013-12-23 18:11:02 +08002748 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002749 return nfserr_toosmall;
2750 ca->maxresp_cached = 0;
2751 if (ca->maxops < 2)
2752 return nfserr_toosmall;
2753
2754 return nfs_ok;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002755}
2756
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002757static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
2758{
2759 switch (cbs->flavor) {
2760 case RPC_AUTH_NULL:
2761 case RPC_AUTH_UNIX:
2762 return nfs_ok;
2763 default:
2764 /*
2765 * GSS case: the spec doesn't allow us to return this
2766 * error. But it also doesn't allow us not to support
2767 * GSS.
2768 * I'd rather this fail hard than return some error the
2769 * client might think it can already handle:
2770 */
2771 return nfserr_encr_alg_unsupp;
2772 }
2773}
2774
Andy Adamson069b6ad2009-04-03 08:27:58 +03002775__be32
2776nfsd4_create_session(struct svc_rqst *rqstp,
2777 struct nfsd4_compound_state *cstate,
2778 struct nfsd4_create_session *cr_ses)
2779{
Jeff Layton363168b2009-08-14 12:57:56 -04002780 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002781 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04002782 struct nfs4_client *old = NULL;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04002783 struct nfsd4_session *new;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002784 struct nfsd4_conn *conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002785 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04002786 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002787 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002788
Mi Jinlonga62573d2011-03-23 17:57:07 +08002789 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
2790 return nfserr_inval;
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002791 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
2792 if (status)
2793 return status;
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002794 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
J. Bruce Fields373cd402013-04-08 15:42:12 -04002795 if (status)
2796 return status;
J. Bruce Fields06b332a2013-04-09 11:34:36 -04002797 status = check_backchannel_attrs(&cr_ses->back_channel);
2798 if (status)
Kinglong Meef403e452013-12-23 17:31:21 +08002799 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002800 status = nfserr_jukebox;
Kinglong Mee60810e52014-01-01 00:35:47 +08002801 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002802 if (!new)
2803 goto out_release_drc_mem;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002804 conn = alloc_conn_from_crses(rqstp, cr_ses);
2805 if (!conn)
2806 goto out_free_session;
Mi Jinlonga62573d2011-03-23 17:57:07 +08002807
Jeff Laytond20c11d2014-07-30 08:27:07 -04002808 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03002809 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03002810 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04002811 WARN_ON_ONCE(conf && unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002812
2813 if (conf) {
J. Bruce Fields57266a62013-04-13 14:27:29 -04002814 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002815 if (!nfsd4_mach_creds_match(conf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002816 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002817 cs_slot = &conf->cl_cs_slot;
2818 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Kinglong Meef5e22bb2015-07-13 17:32:34 +08002819 if (status) {
2820 if (status == nfserr_replay_cache)
2821 status = nfsd4_replay_create_session(cr_ses, cs_slot);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002822 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002823 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002824 } else if (unconf) {
2825 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04002826 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002827 status = nfserr_clid_inuse;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002828 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002829 }
J. Bruce Fields57266a62013-04-13 14:27:29 -04002830 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002831 if (!nfsd4_mach_creds_match(unconf, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002832 goto out_free_conn;
Andy Adamson49557cc2009-07-23 19:02:16 -04002833 cs_slot = &unconf->cl_cs_slot;
2834 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03002835 if (status) {
2836 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002837 status = nfserr_seq_misordered;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002838 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002839 }
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03002840 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
J. Bruce Fields221a6872013-04-01 22:23:49 -04002841 if (old) {
Jeff Laytond20c11d2014-07-30 08:27:07 -04002842 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04002843 if (status) {
2844 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04002845 goto out_free_conn;
Jeff Layton7abea1e2014-07-30 08:27:13 -04002846 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04002847 }
J. Bruce Fields8f9d3d32012-09-12 14:41:31 -04002848 move_to_confirmed(unconf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002849 conf = unconf;
2850 } else {
2851 status = nfserr_stale_clientid;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002852 goto out_free_conn;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002853 }
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002854 status = nfs_ok;
Chuck Lever4ce85c82016-03-01 13:05:27 -05002855 /* Persistent sessions are not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002856 cr_ses->flags &= ~SESSION4_PERSIST;
Chuck Lever4ce85c82016-03-01 13:05:27 -05002857 /* Upshifting from TCP to RDMA is not supported */
J. Bruce Fields408b79b2010-04-15 15:11:09 -04002858 cr_ses->flags &= ~SESSION4_RDMA;
2859
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002860 init_session(rqstp, new, conf, cr_ses);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002861 nfsd4_get_session_locked(new);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002862
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04002863 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002864 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04002865 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04002866 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002867
Jeff Laytond20c11d2014-07-30 08:27:07 -04002868 /* cache solo and embedded create sessions under the client_lock */
Andy Adamson49557cc2009-07-23 19:02:16 -04002869 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002870 spin_unlock(&nn->client_lock);
2871 /* init connection and backchannel */
2872 nfsd4_init_conn(rqstp, conn, new);
2873 nfsd4_put_session(new);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002874 if (old)
2875 expire_client(old);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002876 return status;
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002877out_free_conn:
Jeff Laytond20c11d2014-07-30 08:27:07 -04002878 spin_unlock(&nn->client_lock);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002879 free_conn(conn);
Jeff Laytond20c11d2014-07-30 08:27:07 -04002880 if (old)
2881 expire_client(old);
J. Bruce Fields81f0b2a2012-09-12 11:04:33 -04002882out_free_session:
2883 __free_session(new);
J. Bruce Fields55c760c2013-04-08 16:44:14 -04002884out_release_drc_mem:
2885 nfsd4_put_drc_mem(&cr_ses->fore_channel);
J. Bruce Fields1ca50792013-03-14 18:12:03 -04002886 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03002887}
2888
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002889static __be32 nfsd4_map_bcts_dir(u32 *dir)
2890{
2891 switch (*dir) {
2892 case NFS4_CDFC4_FORE:
2893 case NFS4_CDFC4_BACK:
2894 return nfs_ok;
2895 case NFS4_CDFC4_FORE_OR_BOTH:
2896 case NFS4_CDFC4_BACK_OR_BOTH:
2897 *dir = NFS4_CDFC4_BOTH;
2898 return nfs_ok;
2899 };
2900 return nfserr_inval;
2901}
2902
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002903__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc)
2904{
2905 struct nfsd4_session *session = cstate->session;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002906 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002907 __be32 status;
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002908
J. Bruce Fieldsb78724b2013-05-15 17:34:39 -04002909 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
2910 if (status)
2911 return status;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002912 spin_lock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002913 session->se_cb_prog = bc->bc_cb_program;
2914 session->se_cb_sec = bc->bc_cb_sec;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002915 spin_unlock(&nn->client_lock);
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002916
2917 nfsd4_probe_callback(session->se_client);
2918
2919 return nfs_ok;
2920}
2921
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002922__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
2923 struct nfsd4_compound_state *cstate,
2924 struct nfsd4_bind_conn_to_session *bcts)
2925{
2926 __be32 status;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002927 struct nfsd4_conn *conn;
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002928 struct nfsd4_session *session;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002929 struct net *net = SVC_NET(rqstp);
2930 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002931
2932 if (!nfsd4_last_compound_op(rqstp))
2933 return nfserr_not_only_op;
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002934 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002935 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002936 spin_unlock(&nn->client_lock);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002937 if (!session)
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002938 goto out_no_session;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002939 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002940 if (!nfsd4_mach_creds_match(session->se_client, rqstp))
J. Bruce Fields57266a62013-04-13 14:27:29 -04002941 goto out;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002942 status = nfsd4_map_bcts_dir(&bcts->dir);
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002943 if (status)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002944 goto out;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002945 conn = alloc_conn(rqstp, bcts->dir);
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002946 status = nfserr_jukebox;
J. Bruce Fields3ba63672012-09-11 15:37:40 -04002947 if (!conn)
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002948 goto out;
2949 nfsd4_init_conn(rqstp, conn, session);
2950 status = nfs_ok;
2951out:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002952 nfsd4_put_session(session);
2953out_no_session:
J. Bruce Fields4f6e6c12013-03-18 17:31:30 -04002954 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002955}
2956
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002957static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
2958{
2959 if (!session)
2960 return 0;
2961 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
2962}
2963
Andy Adamson069b6ad2009-04-03 08:27:58 +03002964__be32
2965nfsd4_destroy_session(struct svc_rqst *r,
2966 struct nfsd4_compound_state *cstate,
2967 struct nfsd4_destroy_session *sessionid)
2968{
Benny Halevye10e0cf2009-04-03 08:28:38 +03002969 struct nfsd4_session *ses;
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002970 __be32 status;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002971 int ref_held_by_me = 0;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002972 struct net *net = SVC_NET(r);
2973 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002974
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002975 status = nfserr_not_only_op;
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04002976 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04002977 if (!nfsd4_last_compound_op(r))
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002978 goto out;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002979 ref_held_by_me++;
J. Bruce Fields57716352010-04-21 12:27:19 -04002980 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03002981 dump_sessionid(__func__, &sessionid->sessionid);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002982 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002983 ses = find_in_sessionid_hashtbl(&sessionid->sessionid, net, &status);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04002984 if (!ses)
2985 goto out_client_lock;
J. Bruce Fields57266a62013-04-13 14:27:29 -04002986 status = nfserr_wrong_cred;
Andrew Elblededeb132016-06-15 12:52:08 -04002987 if (!nfsd4_mach_creds_match(ses->se_client, r))
Trond Myklebustd4e19e702014-06-30 11:48:42 -04002988 goto out_put_session;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002989 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04002990 if (status)
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002991 goto out_put_session;
Benny Halevye10e0cf2009-04-03 08:28:38 +03002992 unhash_session(ses);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002993 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002994
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05002995 nfsd4_probe_callback_sync(ses->se_client);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04002996
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03002997 spin_lock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03002998 status = nfs_ok;
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04002999out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003000 nfsd4_put_session_locked(ses);
J. Bruce Fieldsabcdff02013-03-14 19:55:33 -04003001out_client_lock:
3002 spin_unlock(&nn->client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03003003out:
Benny Halevye10e0cf2009-04-03 08:28:38 +03003004 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003005}
3006
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003007static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003008{
3009 struct nfsd4_conn *c;
3010
3011 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003012 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04003013 return c;
3014 }
3015 }
3016 return NULL;
3017}
3018
J. Bruce Fields57266a62013-04-13 14:27:29 -04003019static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04003020{
3021 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003022 struct nfsd4_conn *c;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003023 __be32 status = nfs_ok;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003024 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003025
3026 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003027 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003028 if (c)
3029 goto out_free;
3030 status = nfserr_conn_not_bound_to_session;
3031 if (clp->cl_mach_cred)
3032 goto out_free;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003033 __nfsd4_hash_conn(new, ses);
3034 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04003035 ret = nfsd4_register_conn(new);
3036 if (ret)
3037 /* oops; xprt is already down: */
3038 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003039 return nfs_ok;
3040out_free:
3041 spin_unlock(&clp->cl_lock);
3042 free_conn(new);
3043 return status;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003044}
3045
Mi Jinlong868b89c2011-04-27 09:09:58 +08003046static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
3047{
3048 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3049
3050 return args->opcnt > session->se_fchannel.maxops;
3051}
3052
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003053static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
3054 struct nfsd4_session *session)
3055{
3056 struct xdr_buf *xb = &rqstp->rq_arg;
3057
3058 return xb->len > session->se_fchannel.maxreq_sz;
3059}
3060
J. Bruce Fields877362f2017-10-17 20:38:49 -04003061static bool replay_matches_cache(struct svc_rqst *rqstp,
3062 struct nfsd4_sequence *seq, struct nfsd4_slot *slot)
3063{
3064 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3065
3066 if ((bool)(slot->sl_flags & NFSD4_SLOT_CACHETHIS) !=
3067 (bool)seq->cachethis)
3068 return false;
3069 /*
Scott Mayhewaf49ad52019-10-09 15:11:37 -04003070 * If there's an error then the reply can have fewer ops than
3071 * the call.
J. Bruce Fields877362f2017-10-17 20:38:49 -04003072 */
Scott Mayhewaf49ad52019-10-09 15:11:37 -04003073 if (slot->sl_opcnt < argp->opcnt && !slot->sl_status)
3074 return false;
3075 /*
3076 * But if we cached a reply with *more* ops than the call you're
3077 * sending us now, then this new call is clearly not really a
3078 * replay of the old one:
3079 */
3080 if (slot->sl_opcnt > argp->opcnt)
J. Bruce Fields877362f2017-10-17 20:38:49 -04003081 return false;
3082 /* This is the only check explicitly called by spec: */
3083 if (!same_creds(&rqstp->rq_cred, &slot->sl_cred))
3084 return false;
3085 /*
3086 * There may be more comparisons we could actually do, but the
3087 * spec doesn't require us to catch every case where the calls
3088 * don't match (that would require caching the call as well as
3089 * the reply), so we don't bother.
3090 */
3091 return true;
3092}
3093
Andy Adamson069b6ad2009-04-03 08:27:58 +03003094__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03003095nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003096 struct nfsd4_compound_state *cstate,
3097 struct nfsd4_sequence *seq)
3098{
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03003099 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003100 struct xdr_stream *xdr = &resp->xdr;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003101 struct nfsd4_session *session;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003102 struct nfs4_client *clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003103 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003104 struct nfsd4_conn *conn;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003105 __be32 status;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003106 int buflen;
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003107 struct net *net = SVC_NET(rqstp);
3108 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003109
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03003110 if (resp->opcnt != 1)
3111 return nfserr_sequence_pos;
3112
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003113 /*
3114 * Will be either used or freed by nfsd4_sequence_check_conn
3115 * below.
3116 */
3117 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
3118 if (!conn)
3119 return nfserr_jukebox;
3120
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003121 spin_lock(&nn->client_lock);
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003122 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003123 if (!session)
J. Bruce Fields221a6872013-04-01 22:23:49 -04003124 goto out_no_session;
3125 clp = session->se_client;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003126
Mi Jinlong868b89c2011-04-27 09:09:58 +08003127 status = nfserr_too_many_ops;
3128 if (nfsd4_session_too_many_ops(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003129 goto out_put_session;
Mi Jinlong868b89c2011-04-27 09:09:58 +08003130
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003131 status = nfserr_req_too_big;
3132 if (nfsd4_request_too_big(rqstp, session))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003133 goto out_put_session;
Mi Jinlongae82a8d2011-07-14 14:56:02 +08003134
Benny Halevyb85d4c02009-04-03 08:28:08 +03003135 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003136 if (seq->slotid >= session->se_fchannel.maxreqs)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003137 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003138
Andy Adamson557ce262009-08-28 08:45:04 -04003139 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03003140 dprintk("%s: slotid %d\n", __func__, seq->slotid);
3141
Andy Adamsona8dfdae2009-08-28 08:45:02 -04003142 /* We do not negotiate the number of slots yet, so set the
3143 * maxslots to the session maxreqs which is used to encode
3144 * sr_highest_slotid and the sr_target_slot id to maxslots */
3145 seq->maxslots = session->se_fchannel.maxreqs;
3146
J. Bruce Fields73e79482012-02-13 16:39:00 -05003147 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
3148 slot->sl_flags & NFSD4_SLOT_INUSE);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003149 if (status == nfserr_replay_cache) {
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003150 status = nfserr_seq_misordered;
3151 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003152 goto out_put_session;
J. Bruce Fields877362f2017-10-17 20:38:49 -04003153 status = nfserr_seq_false_retry;
3154 if (!replay_matches_cache(rqstp, seq, slot))
3155 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003156 cstate->slot = slot;
3157 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003158 cstate->clp = clp;
Andy Adamsonda3846a2009-04-03 08:28:22 +03003159 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04003160 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03003161 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003162 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003163 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003164 }
3165 if (status)
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003166 goto out_put_session;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003167
J. Bruce Fields57266a62013-04-13 14:27:29 -04003168 status = nfsd4_sequence_check_conn(conn, session);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04003169 conn = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003170 if (status)
3171 goto out_put_session;
J. Bruce Fields328ead22010-09-29 16:11:06 -04003172
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003173 buflen = (seq->cachethis) ?
3174 session->se_fchannel.maxresp_cached :
3175 session->se_fchannel.maxresp_sz;
3176 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
3177 nfserr_rep_too_big;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04003178 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003179 goto out_put_session;
J. Bruce Fields32aaa622014-03-20 20:47:41 -04003180 svc_reserve(rqstp, buflen);
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003181
3182 status = nfs_ok;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003183 /* Success! bump slot seqid */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003184 slot->sl_seqid = seq->seqid;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003185 slot->sl_flags |= NFSD4_SLOT_INUSE;
J. Bruce Fields73e79482012-02-13 16:39:00 -05003186 if (seq->cachethis)
3187 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
J. Bruce Fieldsbf5c43c2012-02-13 16:56:19 -05003188 else
3189 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003190
3191 cstate->slot = slot;
3192 cstate->session = session;
Jeff Layton4b24ca72014-06-30 11:48:44 -04003193 cstate->clp = clp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003194
Benny Halevyb85d4c02009-04-03 08:28:08 +03003195out:
J. Bruce Fields221a6872013-04-01 22:23:49 -04003196 switch (clp->cl_cb_state) {
3197 case NFSD4_CB_DOWN:
3198 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
3199 break;
3200 case NFSD4_CB_FAULT:
3201 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
3202 break;
3203 default:
3204 seq->status_flags = 0;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03003205 }
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04003206 if (!list_empty(&clp->cl_revoked))
3207 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003208out_no_session:
Kinglong Mee3f42d2c2014-03-24 11:56:59 +08003209 if (conn)
3210 free_conn(conn);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03003211 spin_unlock(&nn->client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003212 return status;
J. Bruce Fields66b2b9b2013-03-19 12:05:39 -04003213out_put_session:
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003214 nfsd4_put_session_locked(session);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003215 goto out_no_session;
Andy Adamson069b6ad2009-04-03 08:27:58 +03003216}
3217
Trond Myklebustb6076642014-06-30 11:48:35 -04003218void
3219nfsd4_sequence_done(struct nfsd4_compoundres *resp)
3220{
3221 struct nfsd4_compound_state *cs = &resp->cstate;
3222
3223 if (nfsd4_has_session(cs)) {
Trond Myklebustb6076642014-06-30 11:48:35 -04003224 if (cs->status != nfserr_replay_cache) {
3225 nfsd4_store_cache_entry(resp);
3226 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
3227 }
Trond Myklebustd4e19e702014-06-30 11:48:42 -04003228 /* Drop session reference that was taken in nfsd4_sequence() */
Trond Myklebustb6076642014-06-30 11:48:35 -04003229 nfsd4_put_session(cs->session);
Jeff Layton4b24ca72014-06-30 11:48:44 -04003230 } else if (cs->clp)
3231 put_client_renew(cs->clp);
Trond Myklebustb6076642014-06-30 11:48:35 -04003232}
3233
Mi Jinlong345c2842011-10-20 17:51:39 +08003234__be32
3235nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
3236{
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003237 struct nfs4_client *conf, *unconf;
3238 struct nfs4_client *clp = NULL;
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003239 __be32 status = 0;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003240 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Mi Jinlong345c2842011-10-20 17:51:39 +08003241
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003242 spin_lock(&nn->client_lock);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003243 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003244 conf = find_confirmed_client(&dc->clientid, true, nn);
J. Bruce Fields78389042013-03-12 10:12:37 -04003245 WARN_ON_ONCE(conf && unconf);
Mi Jinlong345c2842011-10-20 17:51:39 +08003246
3247 if (conf) {
J. Bruce Fieldsc0293b02013-03-14 18:20:01 -04003248 if (client_has_state(conf)) {
Mi Jinlong345c2842011-10-20 17:51:39 +08003249 status = nfserr_clientid_busy;
3250 goto out;
3251 }
Jeff Laytonfd699b82014-07-30 08:27:14 -04003252 status = mark_client_expired_locked(conf);
3253 if (status)
3254 goto out;
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003255 clp = conf;
Mi Jinlong345c2842011-10-20 17:51:39 +08003256 } else if (unconf)
3257 clp = unconf;
3258 else {
3259 status = nfserr_stale_clientid;
3260 goto out;
3261 }
Andrew Elblededeb132016-06-15 12:52:08 -04003262 if (!nfsd4_mach_creds_match(clp, rqstp)) {
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003263 clp = NULL;
J. Bruce Fields57266a62013-04-13 14:27:29 -04003264 status = nfserr_wrong_cred;
3265 goto out;
3266 }
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003267 unhash_client_locked(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003268out:
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003269 spin_unlock(&nn->client_lock);
Trond Myklebust6b10ad12014-07-30 08:27:08 -04003270 if (clp)
3271 expire_client(clp);
Mi Jinlong345c2842011-10-20 17:51:39 +08003272 return status;
3273}
3274
Andy Adamson069b6ad2009-04-03 08:27:58 +03003275__be32
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003276nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
3277{
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003278 __be32 status = 0;
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003279
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003280 if (rc->rca_one_fs) {
3281 if (!cstate->current_fh.fh_dentry)
3282 return nfserr_nofilehandle;
3283 /*
3284 * We don't take advantage of the rca_one_fs case.
3285 * That's OK, it's optional, we can safely ignore it.
3286 */
Christophe JAILLETd28c4422016-07-02 08:24:32 +02003287 return nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003288 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003289
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003290 status = nfserr_complete_already;
Jeff Laytona52d7262012-03-21 09:52:02 -04003291 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
3292 &cstate->session->se_client->cl_flags))
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003293 goto out;
3294
3295 status = nfserr_stale_clientid;
3296 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003297 /*
3298 * The following error isn't really legal.
3299 * But we only get here if the client just explicitly
3300 * destroyed the client. Surely it no longer cares what
3301 * error it gets back on an operation for the dead
3302 * client.
3303 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003304 goto out;
3305
3306 status = nfs_ok;
Jeff Layton2a4317c2012-03-21 16:42:43 -04003307 nfsd4_client_record_create(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003308out:
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08003309 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003310}
3311
3312__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003313nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3314 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04003316 struct xdr_netobj clname = setclid->se_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 nfs4_verifier clverifier = setclid->se_verf;
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003318 struct nfs4_client *conf, *new;
3319 struct nfs4_client *unconf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07003320 __be32 status;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003321 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3322
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003323 new = create_client(clname, rqstp, &clverifier);
3324 if (new == NULL)
3325 return nfserr_jukebox;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003326 /* Cases below refer to rfc 3530 section 14.2.33: */
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003327 spin_lock(&nn->client_lock);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03003328 conf = find_confirmed_client_by_name(&clname, nn);
J. Bruce Fields2b634822015-10-15 15:33:23 -04003329 if (conf && client_has_state(conf)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003330 /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05003332 if (clp_used_exchangeid(conf))
3333 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04003334 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04003335 char addr_str[INET6_ADDRSTRLEN];
3336 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
3337 sizeof(addr_str));
3338 dprintk("NFSD: setclientid: string in use by client "
3339 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 goto out;
3341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03003343 unconf = find_unconfirmed_client_by_name(&clname, nn);
J. Bruce Fields8f930712012-05-18 22:06:41 -04003344 if (unconf)
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003345 unhash_client_locked(unconf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003346 if (conf && same_verf(&conf->cl_verifier, &clverifier)) {
J. Bruce Fields63db4632012-05-18 21:54:19 -04003347 /* case 1: probable callback update */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 copy_clid(new, conf);
Kinglong Mee41eb1672015-07-13 17:29:41 +08003349 gen_confirm(new, nn);
3350 } else /* case 4 (new client) or cases 2, 3 (client reboot): */
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +03003351 gen_clid(new, nn);
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04003352 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09003353 gen_callback(new, setclid, rqstp);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05003354 add_to_unconfirmed(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
3356 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
3357 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003358 new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 status = nfs_ok;
3360out:
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003361 spin_unlock(&nn->client_lock);
Trond Myklebust5cc40fd2014-07-30 08:27:05 -04003362 if (new)
3363 free_client(new);
Trond Myklebust3dbacee2014-07-30 08:27:06 -04003364 if (unconf)
3365 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 return status;
3367}
3368
3369
Al Virob37ad282006-10-19 23:28:59 -07003370__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003371nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
3372 struct nfsd4_compound_state *cstate,
3373 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374{
NeilBrown21ab45a2005-06-23 22:04:14 -07003375 struct nfs4_client *conf, *unconf;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003376 struct nfs4_client *old = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
3378 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07003379 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03003380 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04003382 if (STALE_CLIENTID(clid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 return nfserr_stale_clientid;
NeilBrown21ab45a2005-06-23 22:04:14 -07003384
Jeff Laytond20c11d2014-07-30 08:27:07 -04003385 spin_lock(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03003386 conf = find_confirmed_client(clid, false, nn);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03003387 unconf = find_unconfirmed_client(clid, false, nn);
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003388 /*
J. Bruce Fields8695b902012-05-19 10:05:58 -04003389 * We try hard to give out unique clientid's, so if we get an
3390 * attempt to confirm the same clientid with a different cred,
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003391 * the client may be buggy; this should never happen.
3392 *
3393 * Nevertheless, RFC 7530 recommends INUSE for this case:
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05003394 */
J. Bruce Fieldsf984a7c2015-09-01 13:40:53 -04003395 status = nfserr_clid_inuse;
J. Bruce Fields8695b902012-05-19 10:05:58 -04003396 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
3397 goto out;
3398 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
3399 goto out;
J. Bruce Fields63db4632012-05-18 21:54:19 -04003400 /* cases below refer to rfc 3530 section 14.2.34: */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003401 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003402 if (conf && same_verf(&confirm, &conf->cl_confirm)) {
3403 /* case 2: probable retransmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 status = nfs_ok;
J. Bruce Fields7d22fc12016-09-20 20:55:36 -04003405 } else /* case 4: client hasn't noticed we rebooted yet? */
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003406 status = nfserr_stale_clientid;
3407 goto out;
3408 }
3409 status = nfs_ok;
3410 if (conf) { /* case 1: callback update */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003411 old = unconf;
3412 unhash_client_locked(old);
J. Bruce Fields8695b902012-05-19 10:05:58 -04003413 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
J. Bruce Fields90d700b2012-05-19 13:55:22 -04003414 } else { /* case 3: normal case; new or rebooted client */
Jeff Laytond20c11d2014-07-30 08:27:07 -04003415 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
3416 if (old) {
J. Bruce Fields2b634822015-10-15 15:33:23 -04003417 status = nfserr_clid_inuse;
3418 if (client_has_state(old)
3419 && !same_creds(&unconf->cl_cred,
3420 &old->cl_cred))
3421 goto out;
Jeff Laytond20c11d2014-07-30 08:27:07 -04003422 status = mark_client_expired_locked(old);
Jeff Layton7abea1e2014-07-30 08:27:13 -04003423 if (status) {
3424 old = NULL;
J. Bruce Fields221a6872013-04-01 22:23:49 -04003425 goto out;
Jeff Layton7abea1e2014-07-30 08:27:13 -04003426 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04003427 }
J. Bruce Fields8695b902012-05-19 10:05:58 -04003428 move_to_confirmed(unconf);
Jeff Laytond20c11d2014-07-30 08:27:07 -04003429 conf = unconf;
NeilBrown08e89872005-06-23 22:04:11 -07003430 }
Jeff Laytond20c11d2014-07-30 08:27:07 -04003431 get_client_locked(conf);
3432 spin_unlock(&nn->client_lock);
3433 nfsd4_probe_callback(conf);
3434 spin_lock(&nn->client_lock);
3435 put_client_renew_locked(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436out:
Jeff Laytond20c11d2014-07-30 08:27:07 -04003437 spin_unlock(&nn->client_lock);
3438 if (old)
3439 expire_client(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 return status;
3441}
3442
J. Bruce Fields32513b42011-10-13 16:00:16 -04003443static struct nfs4_file *nfsd4_alloc_file(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444{
J. Bruce Fields32513b42011-10-13 16:00:16 -04003445 return kmem_cache_alloc(file_slab, GFP_KERNEL);
3446}
3447
3448/* OPEN Share state helper functions */
Jeff Layton5b095e92014-10-23 08:01:02 -04003449static void nfsd4_init_file(struct knfsd_fh *fh, unsigned int hashval,
3450 struct nfs4_file *fp)
J. Bruce Fields32513b42011-10-13 16:00:16 -04003451{
Trond Myklebust950e0112014-06-30 11:48:31 -04003452 lockdep_assert_held(&state_lock);
3453
J. Bruce Fields32513b42011-10-13 16:00:16 -04003454 atomic_set(&fp->fi_ref, 1);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003455 spin_lock_init(&fp->fi_lock);
J. Bruce Fields32513b42011-10-13 16:00:16 -04003456 INIT_LIST_HEAD(&fp->fi_stateids);
3457 INIT_LIST_HEAD(&fp->fi_delegations);
Sachin Bhamare8287f002015-04-27 14:50:14 +02003458 INIT_LIST_HEAD(&fp->fi_clnt_odstate);
Trond Myklebuste2cf80d2014-07-23 16:17:38 -04003459 fh_copy_shallow(&fp->fi_fhandle, fh);
Jeff Layton0c637be2014-08-22 12:05:43 -04003460 fp->fi_deleg_file = NULL;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003461 fp->fi_had_conflict = false;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003462 fp->fi_share_deny = 0;
J. Bruce Fields32513b42011-10-13 16:00:16 -04003463 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
3464 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003465#ifdef CONFIG_NFSD_PNFS
3466 INIT_LIST_HEAD(&fp->fi_lo_states);
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02003467 atomic_set(&fp->fi_lo_recalls, 0);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003468#endif
Jeff Layton5b095e92014-10-23 08:01:02 -04003469 hlist_add_head_rcu(&fp->fi_hash, &file_hashtbl[hashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470}
3471
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003472void
NeilBrowne60d4392005-06-23 22:03:01 -07003473nfsd4_free_slabs(void)
3474{
Sachin Bhamare8287f002015-04-27 14:50:14 +02003475 kmem_cache_destroy(odstate_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07003476 kmem_cache_destroy(openowner_slab);
3477 kmem_cache_destroy(lockowner_slab);
3478 kmem_cache_destroy(file_slab);
3479 kmem_cache_destroy(stateid_slab);
3480 kmem_cache_destroy(deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07003481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Bryan Schumaker72083392011-11-01 15:24:59 -04003483int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484nfsd4_init_slabs(void)
3485{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003486 openowner_slab = kmem_cache_create("nfsd4_openowners",
3487 sizeof(struct nfs4_openowner), 0, 0, NULL);
3488 if (openowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003489 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003490 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
Yanchuan Nian3c407942012-10-24 14:44:19 +08003491 sizeof(struct nfs4_lockowner), 0, 0, NULL);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003492 if (lockowner_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003493 goto out_free_openowner_slab;
NeilBrowne60d4392005-06-23 22:03:01 -07003494 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09003495 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07003496 if (file_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003497 goto out_free_lockowner_slab;
NeilBrown5ac049a2005-06-23 22:03:03 -07003498 stateid_slab = kmem_cache_create("nfsd4_stateids",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04003499 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07003500 if (stateid_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003501 goto out_free_file_slab;
NeilBrown5b2d21c2005-06-23 22:03:04 -07003502 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09003503 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07003504 if (deleg_slab == NULL)
Christoph Hellwigabf11352014-05-21 07:43:03 -07003505 goto out_free_stateid_slab;
Sachin Bhamare8287f002015-04-27 14:50:14 +02003506 odstate_slab = kmem_cache_create("nfsd4_odstate",
3507 sizeof(struct nfs4_clnt_odstate), 0, 0, NULL);
3508 if (odstate_slab == NULL)
3509 goto out_free_deleg_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 return 0;
Christoph Hellwigabf11352014-05-21 07:43:03 -07003511
Sachin Bhamare8287f002015-04-27 14:50:14 +02003512out_free_deleg_slab:
3513 kmem_cache_destroy(deleg_slab);
Christoph Hellwigabf11352014-05-21 07:43:03 -07003514out_free_stateid_slab:
3515 kmem_cache_destroy(stateid_slab);
3516out_free_file_slab:
3517 kmem_cache_destroy(file_slab);
3518out_free_lockowner_slab:
3519 kmem_cache_destroy(lockowner_slab);
3520out_free_openowner_slab:
3521 kmem_cache_destroy(openowner_slab);
3522out:
NeilBrowne60d4392005-06-23 22:03:01 -07003523 dprintk("nfsd4: out of memory while initializing nfsv4\n");
3524 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525}
3526
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003527static void init_nfs4_replay(struct nfs4_replay *rp)
3528{
3529 rp->rp_status = nfserr_serverfault;
3530 rp->rp_buflen = 0;
3531 rp->rp_buf = rp->rp_ibuf;
Jeff Layton58fb12e2014-07-29 21:34:27 -04003532 mutex_init(&rp->rp_mutex);
3533}
3534
3535static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
3536 struct nfs4_stateowner *so)
3537{
3538 if (!nfsd4_has_session(cstate)) {
3539 mutex_lock(&so->so_replay.rp_mutex);
Kinglong Meeb5971af2014-08-22 10:18:43 -04003540 cstate->replay_owner = nfs4_get_stateowner(so);
Jeff Layton58fb12e2014-07-29 21:34:27 -04003541 }
3542}
3543
3544void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
3545{
3546 struct nfs4_stateowner *so = cstate->replay_owner;
3547
3548 if (so != NULL) {
3549 cstate->replay_owner = NULL;
3550 mutex_unlock(&so->so_replay.rp_mutex);
3551 nfs4_put_stateowner(so);
3552 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003553}
3554
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003555static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556{
3557 struct nfs4_stateowner *sop;
3558
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003559 sop = kmem_cache_alloc(slab, GFP_KERNEL);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003560 if (!sop)
3561 return NULL;
3562
3563 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
3564 if (!sop->so_owner.data) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003565 kmem_cache_free(slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003566 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003568 sop->so_owner.len = owner->len;
3569
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003570 INIT_LIST_HEAD(&sop->so_stateids);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003571 sop->so_client = clp;
3572 init_nfs4_replay(&sop->so_replay);
Jeff Layton6b180f02014-07-29 21:34:26 -04003573 atomic_set(&sop->so_count, 1);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003574 return sop;
3575}
3576
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003577static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003578{
Trond Myklebustd4f04892014-07-29 21:34:36 -04003579 lockdep_assert_held(&clp->cl_lock);
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03003580
Trond Myklebustd4f04892014-07-29 21:34:36 -04003581 list_add(&oo->oo_owner.so_strhash,
3582 &clp->cl_ownerstr_hashtbl[strhashval]);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003583 list_add(&oo->oo_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584}
3585
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003586static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
3587{
Trond Myklebustd4f04892014-07-29 21:34:36 -04003588 unhash_openowner_locked(openowner(so));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003589}
3590
Jeff Layton6b180f02014-07-29 21:34:26 -04003591static void nfs4_free_openowner(struct nfs4_stateowner *so)
3592{
3593 struct nfs4_openowner *oo = openowner(so);
3594
3595 kmem_cache_free(openowner_slab, oo);
3596}
3597
3598static const struct nfs4_stateowner_operations openowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04003599 .so_unhash = nfs4_unhash_openowner,
3600 .so_free = nfs4_free_openowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04003601};
3602
Andrew Elble7fc05642015-11-05 20:42:43 -05003603static struct nfs4_ol_stateid *
3604nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
3605{
3606 struct nfs4_ol_stateid *local, *ret = NULL;
3607 struct nfs4_openowner *oo = open->op_openowner;
3608
3609 lockdep_assert_held(&fp->fi_lock);
3610
3611 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
3612 /* ignore lock owners */
3613 if (local->st_stateowner->so_is_open_owner == 0)
3614 continue;
Trond Myklebust1c8ea412017-11-03 08:00:10 -04003615 if (local->st_stateowner != &oo->oo_owner)
3616 continue;
3617 if (local->st_stid.sc_type == NFS4_OPEN_STID) {
Andrew Elble7fc05642015-11-05 20:42:43 -05003618 ret = local;
3619 atomic_inc(&ret->st_stid.sc_count);
3620 break;
3621 }
3622 }
3623 return ret;
3624}
3625
Trond Myklebust1c8ea412017-11-03 08:00:10 -04003626static __be32
3627nfsd4_verify_open_stid(struct nfs4_stid *s)
3628{
3629 __be32 ret = nfs_ok;
3630
3631 switch (s->sc_type) {
3632 default:
3633 break;
3634 case NFS4_CLOSED_STID:
3635 case NFS4_CLOSED_DELEG_STID:
3636 ret = nfserr_bad_stateid;
3637 break;
3638 case NFS4_REVOKED_DELEG_STID:
3639 ret = nfserr_deleg_revoked;
3640 }
3641 return ret;
3642}
3643
3644/* Lock the stateid st_mutex, and deal with races with CLOSE */
3645static __be32
3646nfsd4_lock_ol_stateid(struct nfs4_ol_stateid *stp)
3647{
3648 __be32 ret;
3649
3650 mutex_lock(&stp->st_mutex);
3651 ret = nfsd4_verify_open_stid(&stp->st_stid);
3652 if (ret != nfs_ok)
3653 mutex_unlock(&stp->st_mutex);
3654 return ret;
3655}
3656
3657static struct nfs4_ol_stateid *
3658nfsd4_find_and_lock_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
3659{
3660 struct nfs4_ol_stateid *stp;
3661 for (;;) {
3662 spin_lock(&fp->fi_lock);
3663 stp = nfsd4_find_existing_open(fp, open);
3664 spin_unlock(&fp->fi_lock);
3665 if (!stp || nfsd4_lock_ol_stateid(stp) == nfs_ok)
3666 break;
3667 nfs4_put_stid(&stp->st_stid);
3668 }
3669 return stp;
3670}
3671
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003672static struct nfs4_openowner *
Trond Myklebust13d6f662014-06-30 11:48:45 -04003673alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04003674 struct nfsd4_compound_state *cstate)
3675{
Trond Myklebust13d6f662014-06-30 11:48:45 -04003676 struct nfs4_client *clp = cstate->clp;
Trond Myklebust7ffb5882014-07-29 21:34:34 -04003677 struct nfs4_openowner *oo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003679 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
3680 if (!oo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 return NULL;
Jeff Layton6b180f02014-07-29 21:34:26 -04003682 oo->oo_owner.so_ops = &openowner_ops;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003683 oo->oo_owner.so_is_open_owner = 1;
3684 oo->oo_owner.so_seqid = open->op_seqid;
Jeff Laytond3134b12014-07-29 21:34:32 -04003685 oo->oo_flags = 0;
Jeff Laytondb24b3b2014-06-30 11:48:36 -04003686 if (nfsd4_has_session(cstate))
3687 oo->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003688 oo->oo_time = 0;
J. Bruce Fields38c387b2011-09-16 17:42:48 -04003689 oo->oo_last_closed_stid = NULL;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003690 INIT_LIST_HEAD(&oo->oo_close_lru);
Trond Myklebustd4f04892014-07-29 21:34:36 -04003691 spin_lock(&clp->cl_lock);
3692 ret = find_openstateowner_str_locked(strhashval, open, clp);
Trond Myklebust7ffb5882014-07-29 21:34:34 -04003693 if (ret == NULL) {
3694 hash_openowner(oo, clp, strhashval);
3695 ret = oo;
3696 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08003697 nfs4_free_stateowner(&oo->oo_owner);
3698
Trond Myklebustd4f04892014-07-29 21:34:36 -04003699 spin_unlock(&clp->cl_lock);
Jeff Laytonc5952332015-03-23 10:53:42 -04003700 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701}
3702
Andrew Elble7fc05642015-11-05 20:42:43 -05003703static struct nfs4_ol_stateid *
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003704init_open_stateid(struct nfs4_file *fp, struct nfsd4_open *open)
Andrew Elble7fc05642015-11-05 20:42:43 -05003705{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
Andrew Elble7fc05642015-11-05 20:42:43 -05003707 struct nfs4_openowner *oo = open->op_openowner;
3708 struct nfs4_ol_stateid *retstp = NULL;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003709 struct nfs4_ol_stateid *stp;
Andrew Elble7fc05642015-11-05 20:42:43 -05003710
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003711 stp = open->op_stp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003712 /* We are moving these outside of the spinlocks to avoid the warnings */
3713 mutex_init(&stp->st_mutex);
3714 mutex_lock(&stp->st_mutex);
3715
Trond Myklebust1c8ea412017-11-03 08:00:10 -04003716retry:
Andrew Elble7fc05642015-11-05 20:42:43 -05003717 spin_lock(&oo->oo_owner.so_client->cl_lock);
3718 spin_lock(&fp->fi_lock);
3719
3720 retstp = nfsd4_find_existing_open(fp, open);
3721 if (retstp)
3722 goto out_unlock;
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003723
3724 open->op_stp = NULL;
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04003725 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05003726 stp->st_stid.sc_type = NFS4_OPEN_STID;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04003727 INIT_LIST_HEAD(&stp->st_locks);
Kinglong Meeb5971af2014-08-22 10:18:43 -04003728 stp->st_stateowner = nfs4_get_stateowner(&oo->oo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07003729 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04003730 stp->st_stid.sc_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 stp->st_access_bmap = 0;
3732 stp->st_deny_bmap = 0;
NeilBrown4c4cd222005-07-07 17:59:27 -07003733 stp->st_openstp = NULL;
Jeff Layton1c755dc2014-07-29 21:34:12 -04003734 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04003735 list_add(&stp->st_perfile, &fp->fi_stateids);
Andrew Elble7fc05642015-11-05 20:42:43 -05003736
3737out_unlock:
Trond Myklebust1d31a252014-07-10 14:07:25 -04003738 spin_unlock(&fp->fi_lock);
Jeff Layton1c755dc2014-07-29 21:34:12 -04003739 spin_unlock(&oo->oo_owner.so_client->cl_lock);
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003740 if (retstp) {
Trond Myklebust1c8ea412017-11-03 08:00:10 -04003741 /* Handle races with CLOSE */
3742 if (nfsd4_lock_ol_stateid(retstp) != nfs_ok) {
3743 nfs4_put_stid(&retstp->st_stid);
3744 goto retry;
3745 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003746 /* To keep mutex tracking happy */
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003747 mutex_unlock(&stp->st_mutex);
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003748 stp = retstp;
Oleg Drokin5cc1fb22016-06-14 23:28:05 -04003749 }
Oleg Drokin8c7245ab2016-06-14 23:28:06 -04003750 return stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751}
3752
Jeff Laytond3134b12014-07-29 21:34:32 -04003753/*
3754 * In the 4.0 case we need to keep the owners around a little while to handle
3755 * CLOSE replay. We still do need to release any file access that is held by
3756 * them before returning however.
3757 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758static void
Jeff Laytond3134b12014-07-29 21:34:32 -04003759move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760{
Jeff Layton217526e2014-07-30 08:27:11 -04003761 struct nfs4_ol_stateid *last;
Jeff Laytond3134b12014-07-29 21:34:32 -04003762 struct nfs4_openowner *oo = openowner(s->st_stateowner);
3763 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
3764 nfsd_net_id);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003765
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003766 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Jeff Laytonb401be222014-07-29 21:34:33 -04003768 /*
3769 * We know that we hold one reference via nfsd4_close, and another
3770 * "persistent" reference for the client. If the refcount is higher
3771 * than 2, then there are still calls in progress that are using this
3772 * stateid. We can't put the sc_file reference until they are finished.
3773 * Wait for the refcount to drop to 2. Since it has been unhashed,
3774 * there should be no danger of the refcount going back up again at
3775 * this point.
3776 */
3777 wait_event(close_wq, atomic_read(&s->st_stid.sc_count) == 2);
3778
Jeff Laytond3134b12014-07-29 21:34:32 -04003779 release_all_access(s);
3780 if (s->st_stid.sc_file) {
3781 put_nfs4_file(s->st_stid.sc_file);
3782 s->st_stid.sc_file = NULL;
3783 }
Jeff Layton217526e2014-07-30 08:27:11 -04003784
3785 spin_lock(&nn->client_lock);
3786 last = oo->oo_last_closed_stid;
Jeff Laytond3134b12014-07-29 21:34:32 -04003787 oo->oo_last_closed_stid = s;
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03003788 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04003789 oo->oo_time = get_seconds();
Jeff Layton217526e2014-07-30 08:27:11 -04003790 spin_unlock(&nn->client_lock);
3791 if (last)
3792 nfs4_put_stid(&last->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793}
3794
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795/* search file_hashtbl[] for file */
3796static struct nfs4_file *
Jeff Layton5b095e92014-10-23 08:01:02 -04003797find_file_locked(struct knfsd_fh *fh, unsigned int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 struct nfs4_file *fp;
3800
Jeff Layton5b095e92014-10-23 08:01:02 -04003801 hlist_for_each_entry_rcu(fp, &file_hashtbl[hashval], fi_hash) {
Christoph Hellwig4d94c2e2014-08-14 08:41:48 +02003802 if (fh_match(&fp->fi_fhandle, fh)) {
Jeff Layton5b095e92014-10-23 08:01:02 -04003803 if (atomic_inc_not_zero(&fp->fi_ref))
3804 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07003805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 }
3807 return NULL;
3808}
3809
Christoph Hellwige6ba76e2014-08-14 08:50:16 +02003810struct nfs4_file *
Trond Myklebustca943212014-07-23 16:17:39 -04003811find_file(struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003812{
3813 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04003814 unsigned int hashval = file_hashval(fh);
Trond Myklebust950e0112014-06-30 11:48:31 -04003815
Jeff Layton5b095e92014-10-23 08:01:02 -04003816 rcu_read_lock();
3817 fp = find_file_locked(fh, hashval);
3818 rcu_read_unlock();
Trond Myklebust950e0112014-06-30 11:48:31 -04003819 return fp;
3820}
3821
3822static struct nfs4_file *
Jeff Laytonf9c00c32014-07-23 16:17:41 -04003823find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
Trond Myklebust950e0112014-06-30 11:48:31 -04003824{
3825 struct nfs4_file *fp;
Jeff Layton5b095e92014-10-23 08:01:02 -04003826 unsigned int hashval = file_hashval(fh);
3827
3828 rcu_read_lock();
3829 fp = find_file_locked(fh, hashval);
3830 rcu_read_unlock();
3831 if (fp)
3832 return fp;
Trond Myklebust950e0112014-06-30 11:48:31 -04003833
3834 spin_lock(&state_lock);
Jeff Layton5b095e92014-10-23 08:01:02 -04003835 fp = find_file_locked(fh, hashval);
3836 if (likely(fp == NULL)) {
3837 nfsd4_init_file(fh, hashval, new);
Trond Myklebust950e0112014-06-30 11:48:31 -04003838 fp = new;
3839 }
3840 spin_unlock(&state_lock);
3841
3842 return fp;
3843}
3844
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04003845/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 * Called to check deny when READ with all zero stateid or
3847 * WRITE with all zero or all one stateid
3848 */
Al Virob37ad282006-10-19 23:28:59 -07003849static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
3851{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 struct nfs4_file *fp;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003853 __be32 ret = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
Trond Myklebustca943212014-07-23 16:17:39 -04003855 fp = find_file(&current_fh->fh_handle);
NeilBrown13cd2182005-06-23 22:03:10 -07003856 if (!fp)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003857 return ret;
3858 /* Check for conflicting share reservations */
Trond Myklebust1d31a252014-07-10 14:07:25 -04003859 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04003860 if (fp->fi_share_deny & deny_type)
3861 ret = nfserr_locked;
Trond Myklebust1d31a252014-07-10 14:07:25 -04003862 spin_unlock(&fp->fi_lock);
NeilBrown13cd2182005-06-23 22:03:10 -07003863 put_nfs4_file(fp);
3864 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865}
3866
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003867static void nfsd4_cb_recall_prepare(struct nfsd4_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868{
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003869 struct nfs4_delegation *dp = cb_to_delegation(cb);
Trond Myklebust11b91642014-07-29 21:34:08 -04003870 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
3871 nfsd_net_id);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04003872
Trond Myklebust11b91642014-07-29 21:34:08 -04003873 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
Jeff Laytonf54fe962014-07-25 07:34:26 -04003874
Jeff Layton02e12152014-07-16 10:31:57 -04003875 /*
3876 * We can't do this in nfsd_break_deleg_cb because it is
Jeff Laytonf54fe962014-07-25 07:34:26 -04003877 * already holding inode->i_lock.
3878 *
Jeff Laytondff13992014-07-08 14:02:49 -04003879 * If the dl_time != 0, then we know that it has already been
3880 * queued for a lease break. Don't queue it again.
3881 */
Jeff Laytonf54fe962014-07-25 07:34:26 -04003882 spin_lock(&state_lock);
Jeff Laytondff13992014-07-08 14:02:49 -04003883 if (dp->dl_time == 0) {
Jeff Laytondff13992014-07-08 14:02:49 -04003884 dp->dl_time = get_seconds();
Jeff Layton02e12152014-07-16 10:31:57 -04003885 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
Jeff Laytondff13992014-07-08 14:02:49 -04003886 }
Jeff Layton02e12152014-07-16 10:31:57 -04003887 spin_unlock(&state_lock);
3888}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003890static int nfsd4_cb_recall_done(struct nfsd4_callback *cb,
3891 struct rpc_task *task)
3892{
3893 struct nfs4_delegation *dp = cb_to_delegation(cb);
3894
Andrew Elblea4579742015-08-31 12:06:41 -04003895 if (dp->dl_stid.sc_type == NFS4_CLOSED_DELEG_STID)
3896 return 1;
3897
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003898 switch (task->tk_status) {
3899 case 0:
3900 return 1;
3901 case -EBADHANDLE:
3902 case -NFS4ERR_BAD_STATEID:
3903 /*
3904 * Race: client probably got cb_recall before open reply
3905 * granting delegation.
3906 */
3907 if (dp->dl_retries--) {
3908 rpc_delay(task, 2 * HZ);
3909 return 0;
3910 }
3911 /*FALLTHRU*/
3912 default:
3913 return -1;
3914 }
3915}
3916
3917static void nfsd4_cb_recall_release(struct nfsd4_callback *cb)
3918{
3919 struct nfs4_delegation *dp = cb_to_delegation(cb);
3920
3921 nfs4_put_stid(&dp->dl_stid);
3922}
3923
Julia Lawallc4cb8972015-11-21 22:57:39 +01003924static const struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
Christoph Hellwig0162ac22014-09-24 12:19:19 +02003925 .prepare = nfsd4_cb_recall_prepare,
3926 .done = nfsd4_cb_recall_done,
3927 .release = nfsd4_cb_recall_release,
3928};
3929
Jeff Layton02e12152014-07-16 10:31:57 -04003930static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
3931{
3932 /*
3933 * We're assuming the state code never drops its reference
3934 * without first removing the lease. Since we're in this lease
3935 * callback (and since the lease code is serialized by the kernel
3936 * lock) we know the server hasn't removed the lease yet, we know
3937 * it's safe to take a reference.
3938 */
Trond Myklebust72c0b0f2014-07-21 09:34:58 -04003939 atomic_inc(&dp->dl_stid.sc_count);
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02003940 nfsd4_run_cb(&dp->dl_recall);
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003941}
3942
Jeff Layton1c8c6012013-06-21 08:58:15 -04003943/* Called from break_lease() with i_lock held. */
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003944static bool
3945nfsd_break_deleg_cb(struct file_lock *fl)
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003946{
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003947 bool ret = false;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003948 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
3949 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003950
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003951 if (!fp) {
3952 WARN(1, "(%p)->fl_owner NULL\n", fl);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003953 return ret;
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003954 }
3955 if (fp->fi_had_conflict) {
3956 WARN(1, "duplicate break on %p\n", fp);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003957 return ret;
J. Bruce Fields7fa10cd2012-10-16 12:39:33 -04003958 }
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003959 /*
3960 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003961 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05003962 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04003963 */
3964 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Jeff Layton02e12152014-07-16 10:31:57 -04003966 spin_lock(&fp->fi_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04003967 fp->fi_had_conflict = true;
3968 /*
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003969 * If there are no delegations on the list, then return true
3970 * so that the lease code will go ahead and delete it.
Jeff Layton417c6622014-07-21 09:34:57 -04003971 */
3972 if (list_empty(&fp->fi_delegations))
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003973 ret = true;
Jeff Layton417c6622014-07-21 09:34:57 -04003974 else
3975 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
3976 nfsd_break_one_deleg(dp);
Jeff Layton02e12152014-07-16 10:31:57 -04003977 spin_unlock(&fp->fi_lock);
Jeff Layton4d01b7f2014-09-01 15:06:54 -04003978 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979}
3980
Jeff Laytonc45198e2014-09-01 07:12:07 -04003981static int
Jeff Layton7448cc32015-01-16 15:05:57 -05003982nfsd_change_deleg_cb(struct file_lock *onlist, int arg,
3983 struct list_head *dispose)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984{
3985 if (arg & F_UNLCK)
Jeff Laytonc45198e2014-09-01 07:12:07 -04003986 return lease_modify(onlist, arg, dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 else
3988 return -EAGAIN;
3989}
3990
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003991static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04003992 .lm_break = nfsd_break_deleg_cb,
3993 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994};
3995
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04003996static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
3997{
3998 if (nfsd4_has_session(cstate))
3999 return nfs_ok;
4000 if (seqid == so->so_seqid - 1)
4001 return nfserr_replay_me;
4002 if (seqid == so->so_seqid)
4003 return nfs_ok;
4004 return nfserr_bad_seqid;
4005}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Jeff Layton4b24ca72014-06-30 11:48:44 -04004007static __be32 lookup_clientid(clientid_t *clid,
4008 struct nfsd4_compound_state *cstate,
4009 struct nfsd_net *nn)
4010{
4011 struct nfs4_client *found;
4012
4013 if (cstate->clp) {
4014 found = cstate->clp;
4015 if (!same_clid(&found->cl_clientid, clid))
4016 return nfserr_stale_clientid;
4017 return nfs_ok;
4018 }
4019
4020 if (STALE_CLIENTID(clid, nn))
4021 return nfserr_stale_clientid;
4022
4023 /*
4024 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
4025 * cached already then we know this is for is for v4.0 and "sessions"
4026 * will be false.
4027 */
4028 WARN_ON_ONCE(cstate->session);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004029 spin_lock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004030 found = find_confirmed_client(clid, false, nn);
Trond Myklebust3e339f92014-07-30 08:27:09 -04004031 if (!found) {
4032 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004033 return nfserr_expired;
Trond Myklebust3e339f92014-07-30 08:27:09 -04004034 }
4035 atomic_inc(&found->cl_refcount);
4036 spin_unlock(&nn->client_lock);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004037
4038 /* Cache the nfs4_client in cstate! */
4039 cstate->clp = found;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004040 return nfs_ok;
4041}
4042
Al Virob37ad282006-10-19 23:28:59 -07004043__be32
Andy Adamson66689582009-04-03 08:28:45 +03004044nfsd4_process_open1(struct nfsd4_compound_state *cstate,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03004045 struct nfsd4_open *open, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 clientid_t *clientid = &open->op_clientid;
4048 struct nfs4_client *clp = NULL;
4049 unsigned int strhashval;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004050 struct nfs4_openowner *oo = NULL;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004051 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04004053 if (STALE_CLIENTID(&open->op_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 return nfserr_stale_clientid;
J. Bruce Fields32513b42011-10-13 16:00:16 -04004055 /*
4056 * In case we need it later, after we've already created the
4057 * file and don't want to risk a further failure:
4058 */
4059 open->op_file = nfsd4_alloc_file();
4060 if (open->op_file == NULL)
4061 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062
Trond Myklebust2d91e892014-06-30 11:48:46 -04004063 status = lookup_clientid(clientid, cstate, nn);
4064 if (status)
4065 return status;
4066 clp = cstate->clp;
4067
Trond Myklebustd4f04892014-07-29 21:34:36 -04004068 strhashval = ownerstr_hashval(&open->op_owner);
4069 oo = find_openstateowner_str(strhashval, open, clp);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004070 open->op_openowner = oo;
4071 if (!oo) {
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004072 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004074 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004075 /* Replace unconfirmed owners without checking for replay. */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004076 release_openowner(oo);
4077 open->op_openowner = NULL;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004078 goto new_owner;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004079 }
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004080 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
4081 if (status)
4082 return status;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004083 goto alloc_stateid;
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004084new_owner:
Trond Myklebust13d6f662014-06-30 11:48:45 -04004085 oo = alloc_init_open_stateowner(strhashval, open, cstate);
J. Bruce Fieldsbcf130f2011-10-12 20:44:20 -04004086 if (oo == NULL)
4087 return nfserr_jukebox;
4088 open->op_openowner = oo;
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004089alloc_stateid:
Jeff Laytonb49e0842014-07-29 21:34:11 -04004090 open->op_stp = nfs4_alloc_open_stateid(clp);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004091 if (!open->op_stp)
4092 return nfserr_jukebox;
Sachin Bhamare8287f002015-04-27 14:50:14 +02004093
4094 if (nfsd4_has_session(cstate) &&
4095 (cstate->current_fh.fh_export->ex_flags & NFSEXP_PNFS)) {
4096 open->op_odstate = alloc_clnt_odstate(clp);
4097 if (!open->op_odstate)
4098 return nfserr_jukebox;
4099 }
4100
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08004101 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102}
4103
Al Virob37ad282006-10-19 23:28:59 -07004104static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07004105nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
4106{
4107 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
4108 return nfserr_openmode;
4109 else
4110 return nfs_ok;
4111}
4112
Daniel Mackc47d8322011-05-16 16:38:14 +02004113static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04004114{
J. Bruce Fields24a01112010-05-18 20:01:35 -04004115 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
4116}
4117
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004118static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004119{
4120 struct nfs4_stid *ret;
4121
Andrew Elble62f0b692017-11-03 14:06:31 -04004122 ret = find_stateid_by_type(cl, s,
4123 NFS4_DELEG_STID|NFS4_REVOKED_DELEG_STID);
J. Bruce Fieldsf459e452011-09-09 09:06:12 -04004124 if (!ret)
4125 return NULL;
4126 return delegstateid(ret);
4127}
4128
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004129static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
4130{
4131 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
4132 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
4133}
4134
Al Virob37ad282006-10-19 23:28:59 -07004135static __be32
J. Bruce Fields41d22662013-03-21 15:49:47 -04004136nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
NeilBrown567d9822005-06-23 22:02:53 -07004137 struct nfs4_delegation **dp)
4138{
4139 int flags;
Al Virob37ad282006-10-19 23:28:59 -07004140 __be32 status = nfserr_bad_stateid;
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004141 struct nfs4_delegation *deleg;
NeilBrown567d9822005-06-23 22:02:53 -07004142
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004143 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
4144 if (deleg == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07004145 goto out;
Andrew Elble62f0b692017-11-03 14:06:31 -04004146 if (deleg->dl_stid.sc_type == NFS4_REVOKED_DELEG_STID) {
4147 nfs4_put_stid(&deleg->dl_stid);
4148 if (cl->cl_minorversion)
4149 status = nfserr_deleg_revoked;
4150 goto out;
4151 }
J. Bruce Fields24a01112010-05-18 20:01:35 -04004152 flags = share_access_to_flags(open->op_share_access);
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004153 status = nfs4_check_delegmode(deleg, flags);
4154 if (status) {
4155 nfs4_put_stid(&deleg->dl_stid);
4156 goto out;
4157 }
4158 *dp = deleg;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004159out:
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004160 if (!nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004161 return nfs_ok;
4162 if (status)
4163 return status;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004164 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004165 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07004166}
4167
J. Bruce Fields21fb4012010-07-28 12:21:23 -04004168static inline int nfs4_access_to_access(u32 nfs4_access)
4169{
4170 int flags = 0;
4171
4172 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
4173 flags |= NFSD_MAY_READ;
4174 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
4175 flags |= NFSD_MAY_WRITE;
4176 return flags;
4177}
4178
Al Virob37ad282006-10-19 23:28:59 -07004179static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
4181 struct nfsd4_open *open)
4182{
4183 struct iattr iattr = {
4184 .ia_valid = ATTR_SIZE,
4185 .ia_size = 0,
4186 };
4187 if (!open->op_truncate)
4188 return 0;
4189 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08004190 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
4192}
4193
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004194static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004195 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
4196 struct nfsd4_open *open)
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004197{
Trond Myklebustde186432014-07-10 14:07:26 -04004198 struct file *filp = NULL;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004199 __be32 status;
4200 int oflag = nfs4_access_to_omode(open->op_share_access);
4201 int access = nfs4_access_to_access(open->op_share_access);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004202 unsigned char old_access_bmap, old_deny_bmap;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004203
Trond Myklebustde186432014-07-10 14:07:26 -04004204 spin_lock(&fp->fi_lock);
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004205
4206 /*
4207 * Are we trying to set a deny mode that would conflict with
4208 * current access?
4209 */
4210 status = nfs4_file_check_deny(fp, open->op_share_deny);
4211 if (status != nfs_ok) {
4212 spin_unlock(&fp->fi_lock);
4213 goto out;
4214 }
4215
4216 /* set access to the file */
4217 status = nfs4_file_get_access(fp, open->op_share_access);
4218 if (status != nfs_ok) {
4219 spin_unlock(&fp->fi_lock);
4220 goto out;
4221 }
4222
4223 /* Set access bits in stateid */
4224 old_access_bmap = stp->st_access_bmap;
4225 set_access(open->op_share_access, stp);
4226
4227 /* Set new deny mask */
4228 old_deny_bmap = stp->st_deny_bmap;
4229 set_deny(open->op_share_deny, stp);
4230 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4231
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004232 if (!fp->fi_fds[oflag]) {
Trond Myklebustde186432014-07-10 14:07:26 -04004233 spin_unlock(&fp->fi_lock);
4234 status = nfsd_open(rqstp, cur_fh, S_IFREG, access, &filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004235 if (status)
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004236 goto out_put_access;
Trond Myklebustde186432014-07-10 14:07:26 -04004237 spin_lock(&fp->fi_lock);
4238 if (!fp->fi_fds[oflag]) {
4239 fp->fi_fds[oflag] = filp;
4240 filp = NULL;
4241 }
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004242 }
Trond Myklebustde186432014-07-10 14:07:26 -04004243 spin_unlock(&fp->fi_lock);
4244 if (filp)
4245 fput(filp);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004246
4247 status = nfsd4_truncate(rqstp, cur_fh, open);
4248 if (status)
4249 goto out_put_access;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004250out:
4251 return status;
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004252out_put_access:
4253 stp->st_access_bmap = old_access_bmap;
4254 nfs4_file_put_access(fp, open->op_share_access);
4255 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
4256 goto out;
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004257}
4258
Al Virob37ad282006-10-19 23:28:59 -07004259static __be32
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004260nfs4_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 -07004261{
Al Virob37ad282006-10-19 23:28:59 -07004262 __be32 status;
Arnd Bergmann6ac75362015-05-12 23:31:29 +02004263 unsigned char old_deny_bmap = stp->st_deny_bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004265 if (!test_access(open->op_share_access, stp))
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004266 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
Christoph Hellwig7e6a72e2014-06-30 11:48:30 -04004267
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004268 /* test and set deny mode */
4269 spin_lock(&fp->fi_lock);
4270 status = nfs4_file_check_deny(fp, open->op_share_deny);
4271 if (status == nfs_ok) {
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004272 set_deny(open->op_share_deny, stp);
4273 fp->fi_share_deny |=
4274 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
4275 }
4276 spin_unlock(&fp->fi_lock);
4277
4278 if (status != nfs_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
Jeff Laytonbaeb4ff2014-07-10 14:07:34 -04004281 status = nfsd4_truncate(rqstp, cur_fh, open);
4282 if (status != nfs_ok)
4283 reset_union_bmap_deny(old_deny_bmap, stp);
4284 return status;
4285}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004287/* Should we give out recallable state?: */
4288static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
4289{
4290 if (clp->cl_cb_state == NFSD4_CB_UP)
4291 return true;
4292 /*
4293 * In the sessions case, since we don't have to establish a
4294 * separate connection for callbacks, we assume it's OK
4295 * until we hear otherwise:
4296 */
4297 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
4298}
4299
Jeff Laytond564fbe2014-07-16 10:31:58 -04004300static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag)
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004301{
4302 struct file_lock *fl;
4303
4304 fl = locks_alloc_lock();
4305 if (!fl)
4306 return NULL;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004307 fl->fl_lmops = &nfsd_lease_mng_ops;
J. Bruce Fields617588d2011-07-01 15:18:34 -04004308 fl->fl_flags = FL_DELEG;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004309 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
4310 fl->fl_end = OFFSET_MAX;
Jeff Laytond564fbe2014-07-16 10:31:58 -04004311 fl->fl_owner = (fl_owner_t)fp;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004312 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05004313 return fl;
4314}
4315
Andrew Elble34ed9872015-10-15 12:07:28 -04004316/**
4317 * nfs4_setlease - Obtain a delegation by requesting lease from vfs layer
4318 * @dp: a pointer to the nfs4_delegation we're adding.
4319 *
4320 * Return:
4321 * On success: Return code will be 0 on success.
4322 *
4323 * On error: -EAGAIN if there was an existing delegation.
4324 * nonzero if there is an error in other cases.
4325 *
4326 */
4327
J. Bruce Fields99c41512013-05-21 16:21:25 -04004328static int nfs4_setlease(struct nfs4_delegation *dp)
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004329{
Trond Myklebust11b91642014-07-29 21:34:08 -04004330 struct nfs4_file *fp = dp->dl_stid.sc_file;
Kinglong Meeefde6b42015-07-13 17:33:24 +08004331 struct file_lock *fl;
Jeff Layton417c6622014-07-21 09:34:57 -04004332 struct file *filp;
4333 int status = 0;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004334
Jeff Laytond564fbe2014-07-16 10:31:58 -04004335 fl = nfs4_alloc_init_lease(fp, NFS4_OPEN_DELEGATE_READ);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004336 if (!fl)
4337 return -ENOMEM;
Jeff Layton417c6622014-07-21 09:34:57 -04004338 filp = find_readable_file(fp);
4339 if (!filp) {
4340 /* We should always have a readable file here */
4341 WARN_ON_ONCE(1);
Kinglong Meeaf9dbaf2015-07-13 17:30:51 +08004342 locks_free_lock(fl);
Jeff Layton417c6622014-07-21 09:34:57 -04004343 return -EBADF;
4344 }
4345 fl->fl_file = filp;
Jeff Laytone6f5c782014-08-22 10:40:25 -04004346 status = vfs_setlease(filp, fl->fl_type, &fl, NULL);
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04004347 if (fl)
Jeff Layton417c6622014-07-21 09:34:57 -04004348 locks_free_lock(fl);
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04004349 if (status)
Jeff Layton417c6622014-07-21 09:34:57 -04004350 goto out_fput;
Benny Halevycdc97502014-05-30 09:09:30 -04004351 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004352 spin_lock(&fp->fi_lock);
4353 /* Did the lease get broken before we took the lock? */
4354 status = -EAGAIN;
4355 if (fp->fi_had_conflict)
4356 goto out_unlock;
4357 /* Race breaker */
Jeff Layton0c637be2014-08-22 12:05:43 -04004358 if (fp->fi_deleg_file) {
Andrew Elble34ed9872015-10-15 12:07:28 -04004359 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004360 goto out_unlock;
4361 }
Jeff Layton417c6622014-07-21 09:34:57 -04004362 fp->fi_deleg_file = filp;
Andrew Elble34ed9872015-10-15 12:07:28 -04004363 fp->fi_delegees = 0;
4364 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004365 spin_unlock(&fp->fi_lock);
Benny Halevycdc97502014-05-30 09:09:30 -04004366 spin_unlock(&state_lock);
Andrew Elble34ed9872015-10-15 12:07:28 -04004367 if (status) {
4368 /* Should never happen, this is a new fi_deleg_file */
4369 WARN_ON_ONCE(1);
4370 goto out_fput;
4371 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004372 return 0;
Jeff Layton417c6622014-07-21 09:34:57 -04004373out_unlock:
4374 spin_unlock(&fp->fi_lock);
4375 spin_unlock(&state_lock);
4376out_fput:
4377 fput(filp);
J. Bruce Fieldse8730882012-01-23 13:52:01 -05004378 return status;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004379}
4380
Jeff Layton0b266932014-07-25 07:34:25 -04004381static struct nfs4_delegation *
4382nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
Sachin Bhamare8287f002015-04-27 14:50:14 +02004383 struct nfs4_file *fp, struct nfs4_clnt_odstate *odstate)
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004384{
Jeff Layton0b266932014-07-25 07:34:25 -04004385 int status;
4386 struct nfs4_delegation *dp;
Jeff Layton417c6622014-07-21 09:34:57 -04004387
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004388 if (fp->fi_had_conflict)
Jeff Layton0b266932014-07-25 07:34:25 -04004389 return ERR_PTR(-EAGAIN);
4390
Andrew Elble34ed9872015-10-15 12:07:28 -04004391 spin_lock(&state_lock);
4392 spin_lock(&fp->fi_lock);
4393 status = nfs4_get_existing_delegation(clp, fp);
4394 spin_unlock(&fp->fi_lock);
4395 spin_unlock(&state_lock);
4396
4397 if (status)
4398 return ERR_PTR(status);
4399
Sachin Bhamare8287f002015-04-27 14:50:14 +02004400 dp = alloc_init_deleg(clp, fh, odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04004401 if (!dp)
4402 return ERR_PTR(-ENOMEM);
4403
J. Bruce Fieldsbf7bd3e2013-08-15 16:55:26 -04004404 get_nfs4_file(fp);
Benny Halevycdc97502014-05-30 09:09:30 -04004405 spin_lock(&state_lock);
Jeff Layton417c6622014-07-21 09:34:57 -04004406 spin_lock(&fp->fi_lock);
Trond Myklebust11b91642014-07-29 21:34:08 -04004407 dp->dl_stid.sc_file = fp;
Jeff Layton0c637be2014-08-22 12:05:43 -04004408 if (!fp->fi_deleg_file) {
Jeff Layton417c6622014-07-21 09:34:57 -04004409 spin_unlock(&fp->fi_lock);
4410 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04004411 status = nfs4_setlease(dp);
4412 goto out;
Jeff Layton417c6622014-07-21 09:34:57 -04004413 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004414 if (fp->fi_had_conflict) {
Jeff Layton417c6622014-07-21 09:34:57 -04004415 status = -EAGAIN;
4416 goto out_unlock;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05004417 }
Andrew Elble34ed9872015-10-15 12:07:28 -04004418 status = hash_delegation_locked(dp, fp);
Jeff Layton417c6622014-07-21 09:34:57 -04004419out_unlock:
4420 spin_unlock(&fp->fi_lock);
Benny Halevycdc97502014-05-30 09:09:30 -04004421 spin_unlock(&state_lock);
Jeff Layton0b266932014-07-25 07:34:25 -04004422out:
4423 if (status) {
Sachin Bhamare8287f002015-04-27 14:50:14 +02004424 put_clnt_odstate(dp->dl_clnt_odstate);
Trond Myklebust60116952014-07-29 21:34:06 -04004425 nfs4_put_stid(&dp->dl_stid);
Jeff Layton0b266932014-07-25 07:34:25 -04004426 return ERR_PTR(status);
4427 }
4428 return dp;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05004429}
4430
Benny Halevy4aa89132012-02-21 14:16:44 -08004431static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
4432{
4433 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4434 if (status == -EAGAIN)
4435 open->op_why_no_deleg = WND4_CONTENTION;
4436 else {
4437 open->op_why_no_deleg = WND4_RESOURCE;
4438 switch (open->op_deleg_want) {
4439 case NFS4_SHARE_WANT_READ_DELEG:
4440 case NFS4_SHARE_WANT_WRITE_DELEG:
4441 case NFS4_SHARE_WANT_ANY_DELEG:
4442 break;
4443 case NFS4_SHARE_WANT_CANCEL:
4444 open->op_why_no_deleg = WND4_CANCELLED;
4445 break;
4446 case NFS4_SHARE_WANT_NO_DELEG:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05004447 WARN_ON_ONCE(1);
Benny Halevy4aa89132012-02-21 14:16:44 -08004448 }
4449 }
4450}
4451
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452/*
4453 * Attempt to hand out a delegation.
J. Bruce Fields99c41512013-05-21 16:21:25 -04004454 *
4455 * Note we don't support write delegations, and won't until the vfs has
4456 * proper support for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 */
4458static void
Jeff Layton4cf59222014-07-25 07:34:24 -04004459nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
4460 struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461{
4462 struct nfs4_delegation *dp;
Jeff Layton4cf59222014-07-25 07:34:24 -04004463 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
4464 struct nfs4_client *clp = stp->st_stid.sc_client;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05004465 int cb_up;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004466 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004468 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
NeilBrown7b190fe2005-06-23 22:03:23 -07004469 open->op_recall = 0;
4470 switch (open->op_claim_type) {
4471 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05004472 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07004473 open->op_recall = 1;
J. Bruce Fields99c41512013-05-21 16:21:25 -04004474 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
4475 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004476 break;
4477 case NFS4_OPEN_CLAIM_NULL:
Ming Chened47b062014-01-09 21:26:10 +00004478 case NFS4_OPEN_CLAIM_FH:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004479 /*
4480 * Let's not give out any delegations till everyone's
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004481 * had the chance to reclaim theirs, *and* until
4482 * NLM locks have all been reclaimed:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004483 */
Jeff Layton4cf59222014-07-25 07:34:24 -04004484 if (locks_in_grace(clp->net))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004485 goto out_no_deleg;
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04004486 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
J. Bruce Fields99c41512013-05-21 16:21:25 -04004487 goto out_no_deleg;
Steve Dickson9a0590a2013-05-15 14:51:49 -04004488 /*
4489 * Also, if the file was opened for write or
4490 * create, there's a good chance the client's
4491 * about to write to it, resulting in an
4492 * immediate recall (since we don't support
4493 * write delegations):
4494 */
NeilBrown7b190fe2005-06-23 22:03:23 -07004495 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
J. Bruce Fields99c41512013-05-21 16:21:25 -04004496 goto out_no_deleg;
4497 if (open->op_create == NFS4_OPEN_CREATE)
4498 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004499 break;
4500 default:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004501 goto out_no_deleg;
NeilBrown7b190fe2005-06-23 22:03:23 -07004502 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02004503 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file, stp->st_clnt_odstate);
Jeff Layton0b266932014-07-25 07:34:25 -04004504 if (IS_ERR(dp))
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004505 goto out_no_deleg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004507 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004509 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04004510 STATEID_VAL(&dp->dl_stid.sc_stateid));
J. Bruce Fields99c41512013-05-21 16:21:25 -04004511 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
Trond Myklebust67cb1272014-07-29 21:34:17 -04004512 nfs4_put_stid(&dp->dl_stid);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004513 return;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05004514out_no_deleg:
J. Bruce Fields99c41512013-05-21 16:21:25 -04004515 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
4516 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04004517 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
J. Bruce Fields99c41512013-05-21 16:21:25 -04004518 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
J. Bruce Fieldsd08d32e2013-06-21 11:05:32 -04004519 open->op_recall = 1;
4520 }
J. Bruce Fields99c41512013-05-21 16:21:25 -04004521
4522 /* 4.1 client asking for a delegation? */
4523 if (open->op_deleg_want)
4524 nfsd4_open_deleg_none_ext(open, status);
4525 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526}
4527
Benny Halevye27f49c2012-02-21 14:16:54 -08004528static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
4529 struct nfs4_delegation *dp)
4530{
4531 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
4532 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4533 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4534 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
4535 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
4536 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4537 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4538 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
4539 }
4540 /* Otherwise the client must be confused wanting a delegation
4541 * it already has, therefore we don't return
4542 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
4543 */
4544}
4545
Al Virob37ad282006-10-19 23:28:59 -07004546__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
4548{
Andy Adamson66689582009-04-03 08:28:45 +03004549 struct nfsd4_compoundres *resp = rqstp->rq_resp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04004550 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 struct nfs4_file *fp = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004552 struct nfs4_ol_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07004553 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07004554 __be32 status;
Trond Myklebust1c404252017-11-03 08:00:11 -04004555 bool new_stp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 /*
4558 * Lookup file; if found, lookup stateid and check open request,
4559 * and check for delegations in the process of being recalled.
4560 * If not found, create the nfs4_file struct
4561 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04004562 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
Trond Myklebust950e0112014-06-30 11:48:31 -04004563 if (fp != open->op_file) {
J. Bruce Fields41d22662013-03-21 15:49:47 -04004564 status = nfs4_check_deleg(cl, open, &dp);
NeilBrownc44c5ee2005-06-23 22:02:54 -07004565 if (status)
4566 goto out;
Trond Myklebust1c8ea412017-11-03 08:00:10 -04004567 stp = nfsd4_find_and_lock_existing_open(fp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 } else {
Trond Myklebust950e0112014-06-30 11:48:31 -04004569 open->op_file = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07004570 status = nfserr_bad_stateid;
J. Bruce Fields8b289b22011-10-19 11:52:12 -04004571 if (nfsd4_is_deleg_cur(open))
NeilBrownc44c5ee2005-06-23 22:02:54 -07004572 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 }
4574
Trond Myklebust1c404252017-11-03 08:00:11 -04004575 if (!stp) {
4576 stp = init_open_stateid(fp, open);
4577 if (!open->op_stp)
4578 new_stp = true;
4579 }
4580
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 /*
4582 * OPEN the file, or upgrade an existing OPEN.
4583 * If truncate fails, the OPEN fails.
Trond Myklebust1c404252017-11-03 08:00:11 -04004584 *
4585 * stp is already locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 */
Trond Myklebust1c404252017-11-03 08:00:11 -04004587 if (!new_stp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004589 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Jeff Layton35a92fe2015-09-17 07:47:08 -04004590 if (status) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04004591 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 goto out;
Jeff Layton35a92fe2015-09-17 07:47:08 -04004593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 } else {
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004595 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
4596 if (status) {
Trond Myklebust1c404252017-11-03 08:00:11 -04004597 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004598 release_open_stateid(stp);
Trond Myklebust1c404252017-11-03 08:00:11 -04004599 mutex_unlock(&stp->st_mutex);
Jeff Layton6eb3a1d2014-07-10 14:07:31 -04004600 goto out;
4601 }
Sachin Bhamare8287f002015-04-27 14:50:14 +02004602
4603 stp->st_clnt_odstate = find_or_hash_clnt_odstate(fp,
4604 open->op_odstate);
4605 if (stp->st_clnt_odstate == open->op_odstate)
4606 open->op_odstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 }
Trond Myklebust1c404252017-11-03 08:00:11 -04004608
Jeff Layton9767feb2015-10-01 09:05:50 -04004609 nfs4_inc_and_copy_stateid(&open->op_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04004610 mutex_unlock(&stp->st_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
Benny Halevyd24433c2012-02-16 20:57:17 +02004612 if (nfsd4_has_session(&resp->cstate)) {
Benny Halevyd24433c2012-02-16 20:57:17 +02004613 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
4614 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4615 open->op_why_no_deleg = WND4_NOT_WANTED;
4616 goto nodeleg;
4617 }
4618 }
4619
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 /*
4621 * Attempt to hand out a delegation. No error return, because the
4622 * OPEN succeeds even if we fail.
4623 */
Jeff Layton4cf59222014-07-25 07:34:24 -04004624 nfs4_open_delegation(current_fh, open, stp);
Benny Halevyd24433c2012-02-16 20:57:17 +02004625nodeleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 status = nfs_ok;
4627
Benny Halevy8c10cbd2009-10-19 12:04:53 +02004628 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004629 STATEID_VAL(&stp->st_stid.sc_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630out:
Benny Halevyd24433c2012-02-16 20:57:17 +02004631 /* 4.1 client trying to upgrade/downgrade delegation? */
4632 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
Benny Halevye27f49c2012-02-21 14:16:54 -08004633 open->op_deleg_want)
4634 nfsd4_deleg_xgrade_none_ext(open, dp);
Benny Halevyd24433c2012-02-16 20:57:17 +02004635
NeilBrown13cd2182005-06-23 22:03:10 -07004636 if (fp)
4637 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07004638 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
Kinglong Mee87186022015-07-13 17:32:59 +08004639 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 /*
4641 * To finish the open response, we just need to set the rflags.
4642 */
4643 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Jeff Layton19e4c342016-09-16 16:28:27 -04004644 if (nfsd4_has_session(&resp->cstate))
4645 open->op_rflags |= NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK;
4646 else if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
Jeff Layton19e4c342016-09-16 16:28:27 -04004648
Trond Myklebustdcd94cc2014-07-29 21:34:18 -04004649 if (dp)
4650 nfs4_put_stid(&dp->dl_stid);
Trond Myklebustd6f2bc52014-07-29 21:34:19 -04004651 if (stp)
4652 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
4654 return status;
4655}
4656
Jeff Layton58fb12e2014-07-29 21:34:27 -04004657void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
Jeff Layton42297892015-03-23 10:53:44 -04004658 struct nfsd4_open *open)
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004659{
4660 if (open->op_openowner) {
Jeff Laytond3134b12014-07-29 21:34:32 -04004661 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004662
Jeff Laytond3134b12014-07-29 21:34:32 -04004663 nfsd4_cstate_assign_replay(cstate, so);
4664 nfs4_put_stateowner(so);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004665 }
J. Bruce Fields32513b42011-10-13 16:00:16 -04004666 if (open->op_file)
Jeff Layton5b095e92014-10-23 08:01:02 -04004667 kmem_cache_free(file_slab, open->op_file);
J. Bruce Fields4cdc9512011-10-17 15:57:47 -04004668 if (open->op_stp)
Trond Myklebust60116952014-07-29 21:34:06 -04004669 nfs4_put_stid(&open->op_stp->st_stid);
Sachin Bhamare8287f002015-04-27 14:50:14 +02004670 if (open->op_odstate)
4671 kmem_cache_free(odstate_slab, open->op_odstate);
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -04004672}
4673
Al Virob37ad282006-10-19 23:28:59 -07004674__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08004675nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4676 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677{
4678 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07004679 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03004680 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 dprintk("process_renew(%08x/%08x): starting\n",
4683 clid->cl_boot, clid->cl_id);
Jeff Layton4b24ca72014-06-30 11:48:44 -04004684 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05004685 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 goto out;
Jeff Layton4b24ca72014-06-30 11:48:44 -04004687 clp = cstate->clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07004689 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04004690 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 goto out;
4692 status = nfs_ok;
4693out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 return status;
4695}
4696
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04004697void
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03004698nfsd4_end_grace(struct nfsd_net *nn)
NeilBrowna76b4312005-06-23 22:04:01 -07004699{
Jeff Layton33dcc482012-04-10 11:08:48 -04004700 /* do nothing if grace period already ended */
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04004701 if (nn->grace_ended)
Jeff Layton33dcc482012-04-10 11:08:48 -04004702 return;
4703
NeilBrowna76b4312005-06-23 22:04:01 -07004704 dprintk("NFSD: end of grace period\n");
Stanislav Kinsburskya51c84e2012-07-25 16:57:37 +04004705 nn->grace_ended = true;
J. Bruce Fields70b28232014-09-16 17:37:32 -04004706 /*
4707 * If the server goes down again right now, an NFSv4
4708 * client will still be allowed to reclaim after it comes back up,
4709 * even if it hasn't yet had a chance to reclaim state this time.
4710 *
4711 */
Jeff Layton919b8042014-09-12 16:40:20 -04004712 nfsd4_record_grace_done(nn);
J. Bruce Fields70b28232014-09-16 17:37:32 -04004713 /*
4714 * At this point, NFSv4 clients can still reclaim. But if the
4715 * server crashes, any that have not yet reclaimed will be out
4716 * of luck on the next boot.
4717 *
4718 * (NFSv4.1+ clients are considered to have reclaimed once they
4719 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
4720 * have reclaimed after their first OPEN.)
4721 */
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04004722 locks_end_grace(&nn->nfsd4_manager);
J. Bruce Fields70b28232014-09-16 17:37:32 -04004723 /*
4724 * At this point, and once lockd and/or any other containers
4725 * exit their grace period, further reclaims will fail and
4726 * regular locking can resume.
4727 */
NeilBrowna76b4312005-06-23 22:04:01 -07004728}
4729
NeilBrownfd39ca92005-06-23 22:04:03 -07004730static time_t
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004731nfs4_laundromat(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732{
4733 struct nfs4_client *clp;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04004734 struct nfs4_openowner *oo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 struct nfs4_delegation *dp;
Jeff Layton217526e2014-07-30 08:27:11 -04004736 struct nfs4_ol_stateid *stp;
Jeff Layton7919d0a2016-09-16 16:28:25 -04004737 struct nfsd4_blocked_lock *nbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03004739 time_t cutoff = get_seconds() - nn->nfsd4_lease;
Jeff Laytona832e7a2014-05-30 09:09:26 -04004740 time_t t, new_timeo = nn->nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 dprintk("NFSD: laundromat service - starting\n");
Stanislav Kinsbursky12760c62012-11-14 18:22:12 +03004743 nfsd4_end_grace(nn);
Benny Halevy36acb662010-05-12 00:13:04 +03004744 INIT_LIST_HEAD(&reaplist);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03004745 spin_lock(&nn->client_lock);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03004746 list_for_each_safe(pos, next, &nn->client_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 clp = list_entry(pos, struct nfs4_client, cl_lru);
4748 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
4749 t = clp->cl_time - cutoff;
Jeff Laytona832e7a2014-05-30 09:09:26 -04004750 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 break;
4752 }
J. Bruce Fields221a6872013-04-01 22:23:49 -04004753 if (mark_client_expired_locked(clp)) {
Benny Halevyd7682982010-05-12 00:13:54 +03004754 dprintk("NFSD: client in use (clientid %08x)\n",
4755 clp->cl_clientid.cl_id);
4756 continue;
4757 }
Trond Myklebust4864af92014-07-30 08:27:03 -04004758 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03004759 }
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03004760 spin_unlock(&nn->client_lock);
Benny Halevy36acb662010-05-12 00:13:04 +03004761 list_for_each_safe(pos, next, &reaplist) {
4762 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 dprintk("NFSD: purging unused client (clientid %08x)\n",
4764 clp->cl_clientid.cl_id);
Trond Myklebust4864af92014-07-30 08:27:03 -04004765 list_del_init(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 expire_client(clp);
4767 }
Benny Halevycdc97502014-05-30 09:09:30 -04004768 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04004769 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4771 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04004772 t = dp->dl_time - cutoff;
4773 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 break;
4775 }
Jeff Layton3fcbbd22015-08-24 12:41:48 -04004776 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04004777 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 }
Benny Halevycdc97502014-05-30 09:09:30 -04004779 spin_unlock(&state_lock);
Jeff Layton2d4a5322014-07-25 07:34:21 -04004780 while (!list_empty(&reaplist)) {
4781 dp = list_first_entry(&reaplist, struct nfs4_delegation,
4782 dl_recall_lru);
4783 list_del_init(&dp->dl_recall_lru);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004784 revoke_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 }
Jeff Layton217526e2014-07-30 08:27:11 -04004786
4787 spin_lock(&nn->client_lock);
4788 while (!list_empty(&nn->close_lru)) {
4789 oo = list_first_entry(&nn->close_lru, struct nfs4_openowner,
4790 oo_close_lru);
4791 if (time_after((unsigned long)oo->oo_time,
4792 (unsigned long)cutoff)) {
Jeff Laytona832e7a2014-05-30 09:09:26 -04004793 t = oo->oo_time - cutoff;
4794 new_timeo = min(new_timeo, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 break;
4796 }
Jeff Layton217526e2014-07-30 08:27:11 -04004797 list_del_init(&oo->oo_close_lru);
4798 stp = oo->oo_last_closed_stid;
4799 oo->oo_last_closed_stid = NULL;
4800 spin_unlock(&nn->client_lock);
4801 nfs4_put_stid(&stp->st_stid);
4802 spin_lock(&nn->client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 }
Jeff Layton217526e2014-07-30 08:27:11 -04004804 spin_unlock(&nn->client_lock);
4805
Jeff Layton7919d0a2016-09-16 16:28:25 -04004806 /*
4807 * It's possible for a client to try and acquire an already held lock
4808 * that is being held for a long time, and then lose interest in it.
4809 * So, we clean out any un-revisited request after a lease period
4810 * under the assumption that the client is no longer interested.
4811 *
4812 * RFC5661, sec. 9.6 states that the client must not rely on getting
4813 * notifications and must continue to poll for locks, even when the
4814 * server supports them. Thus this shouldn't lead to clients blocking
4815 * indefinitely once the lock does become free.
4816 */
4817 BUG_ON(!list_empty(&reaplist));
Jeff Layton0cc11a62016-10-20 09:34:31 -04004818 spin_lock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04004819 while (!list_empty(&nn->blocked_locks_lru)) {
4820 nbl = list_first_entry(&nn->blocked_locks_lru,
4821 struct nfsd4_blocked_lock, nbl_lru);
4822 if (time_after((unsigned long)nbl->nbl_time,
4823 (unsigned long)cutoff)) {
4824 t = nbl->nbl_time - cutoff;
4825 new_timeo = min(new_timeo, t);
4826 break;
4827 }
4828 list_move(&nbl->nbl_lru, &reaplist);
4829 list_del_init(&nbl->nbl_list);
4830 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04004831 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton7919d0a2016-09-16 16:28:25 -04004832
4833 while (!list_empty(&reaplist)) {
Naofumi Hondaaa1a6cf2017-11-09 10:57:16 -05004834 nbl = list_first_entry(&reaplist,
Jeff Layton7919d0a2016-09-16 16:28:25 -04004835 struct nfsd4_blocked_lock, nbl_lru);
4836 list_del_init(&nbl->nbl_lru);
4837 posix_unblock_lock(&nbl->nbl_lock);
4838 free_blocked_lock(nbl);
4839 }
4840
Jeff Laytona832e7a2014-05-30 09:09:26 -04004841 new_timeo = max_t(time_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
Jeff Laytona832e7a2014-05-30 09:09:26 -04004842 return new_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843}
4844
Harvey Harrisona254b242008-02-20 12:49:00 -08004845static struct workqueue_struct *laundry_wq;
4846static void laundromat_main(struct work_struct *);
Harvey Harrisona254b242008-02-20 12:49:00 -08004847
4848static void
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004849laundromat_main(struct work_struct *laundry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850{
4851 time_t t;
Geliang Tang2e55f3a2016-01-01 22:06:28 +08004852 struct delayed_work *dwork = to_delayed_work(laundry);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004853 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
4854 laundromat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004856 t = nfs4_laundromat(nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03004858 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859}
4860
Jeff Layton8fcd4612015-07-30 06:57:46 -04004861static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stid *stp)
NeilBrownf8816512005-07-07 17:59:25 -07004862{
Jeff Layton8fcd4612015-07-30 06:57:46 -04004863 if (!fh_match(&fhp->fh_handle, &stp->sc_file->fi_fhandle))
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04004864 return nfserr_bad_stateid;
4865 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866}
4867
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004869access_permit_read(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004871 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
4872 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
4873 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874}
4875
4876static inline int
Jeff Layton82c5ff12012-05-11 09:45:13 -04004877access_permit_write(struct nfs4_ol_stateid *stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878{
Jeff Layton82c5ff12012-05-11 09:45:13 -04004879 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
4880 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881}
4882
4883static
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04004884__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885{
Al Virob37ad282006-10-19 23:28:59 -07004886 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887
J. Bruce Fields02921912010-07-29 15:16:59 -04004888 /* For lock stateid's, we test the parent open, not the lock: */
4889 if (stp->st_openstp)
4890 stp = stp->st_openstp;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004891 if ((flags & WR_STATE) && !access_permit_write(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 goto out;
Jeff Layton82c5ff12012-05-11 09:45:13 -04004893 if ((flags & RD_STATE) && !access_permit_read(stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 goto out;
4895 status = nfs_ok;
4896out:
4897 return status;
4898}
4899
Al Virob37ad282006-10-19 23:28:59 -07004900static inline __be32
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004901check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08004903 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 return nfs_ok;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004905 else if (opens_in_grace(net)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004906 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 * conflicting state; so we must wait out the grace period. */
4908 return nfserr_grace;
4909 } else if (flags & WR_STATE)
4910 return nfs4_share_conflict(current_fh,
4911 NFS4_SHARE_DENY_WRITE);
4912 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4913 return nfs4_share_conflict(current_fh,
4914 NFS4_SHARE_DENY_READ);
4915}
4916
4917/*
4918 * Allow READ/WRITE during grace period on recovered state only for files
4919 * that are not able to provide mandatory locking.
4920 */
4921static inline int
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04004922grace_disallows_io(struct net *net, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923{
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -04004924 return opens_in_grace(net) && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925}
4926
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004927static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05004928{
Andy Adamson66689582009-04-03 08:28:45 +03004929 /*
4930 * When sessions are used the stateid generation number is ignored
4931 * when it is zero.
4932 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04004933 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04004934 return nfs_ok;
4935
4936 if (in->si_generation == ref->si_generation)
4937 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03004938
J. Bruce Fields0836f582008-01-26 19:08:12 -05004939 /* If the client sends us a stateid from the future, it's buggy: */
Jeff Layton14b7f4a2016-05-05 06:53:47 -04004940 if (nfsd4_stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05004941 return nfserr_bad_stateid;
4942 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04004943 * However, we could see a stateid from the past, even from a
4944 * non-buggy client. For example, if the client sends a lock
4945 * while some IO is outstanding, the lock may bump si_generation
4946 * while the IO is still in flight. The client could avoid that
4947 * situation by waiting for responses on all the IO requests,
4948 * but better performance may result in retrying IO that
4949 * receives an old_stateid error if requests are rarely
4950 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05004951 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04004952 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05004953}
4954
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02004955static __be32 nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid *ols)
4956{
4957 if (ols->st_stateowner->so_is_open_owner &&
4958 !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
4959 return nfserr_bad_stateid;
4960 return nfs_ok;
4961}
4962
Chuck Lever7df302f2012-05-29 13:56:37 -04004963static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
Bryan Schumaker17456802011-07-13 10:50:48 -04004964{
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004965 struct nfs4_stid *s;
Jeff Layton1af71cc2014-07-29 21:34:14 -04004966 __be32 status = nfserr_bad_stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04004967
Andrew Elblef25e2222017-11-09 13:41:10 -05004968 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
4969 CLOSE_STATEID(stateid))
Jeff Layton1af71cc2014-07-29 21:34:14 -04004970 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004971 /* Client debugging aid. */
4972 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
4973 char addr_str[INET6_ADDRSTRLEN];
4974 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
4975 sizeof(addr_str));
4976 pr_warn_ratelimited("NFSD: client %s testing state ID "
4977 "with incorrect client ID\n", addr_str);
Jeff Layton1af71cc2014-07-29 21:34:14 -04004978 return status;
Chuck Lever7df302f2012-05-29 13:56:37 -04004979 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04004980 spin_lock(&cl->cl_lock);
4981 s = find_stateid_locked(cl, stateid);
J. Bruce Fields97b7e3b2011-09-09 11:26:58 -04004982 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004983 goto out_unlock;
J. Bruce Fields36279ac2011-09-26 12:53:00 -04004984 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
Bryan Schumaker17456802011-07-13 10:50:48 -04004985 if (status)
Jeff Layton1af71cc2014-07-29 21:34:14 -04004986 goto out_unlock;
J. Bruce Fields23340032013-04-09 17:42:28 -04004987 switch (s->sc_type) {
4988 case NFS4_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004989 status = nfs_ok;
4990 break;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04004991 case NFS4_REVOKED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04004992 status = nfserr_deleg_revoked;
4993 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004994 case NFS4_OPEN_STID:
4995 case NFS4_LOCK_STID:
Christoph Hellwigebe9cb32015-04-28 15:41:15 +02004996 status = nfsd4_check_openowner_confirmed(openlockstateid(s));
Jeff Layton1af71cc2014-07-29 21:34:14 -04004997 break;
J. Bruce Fields23340032013-04-09 17:42:28 -04004998 default:
4999 printk("unknown stateid type %x\n", s->sc_type);
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04005000 /* Fallthrough */
J. Bruce Fields23340032013-04-09 17:42:28 -04005001 case NFS4_CLOSED_STID:
Trond Myklebustb0fc29d2014-07-16 10:31:59 -04005002 case NFS4_CLOSED_DELEG_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005003 status = nfserr_bad_stateid;
J. Bruce Fields23340032013-04-09 17:42:28 -04005004 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04005005out_unlock:
5006 spin_unlock(&cl->cl_lock);
5007 return status;
Bryan Schumaker17456802011-07-13 10:50:48 -04005008}
5009
Christoph Hellwigcd61c522014-08-14 08:44:57 +02005010__be32
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005011nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
5012 stateid_t *stateid, unsigned char typemask,
5013 struct nfs4_stid **s, struct nfsd_net *nn)
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005014{
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005015 __be32 status;
Andrew Elble62f0b692017-11-03 14:06:31 -04005016 bool return_revoked = false;
5017
5018 /*
5019 * only return revoked delegations if explicitly asked.
5020 * otherwise we report revoked or bad_stateid status.
5021 */
5022 if (typemask & NFS4_REVOKED_DELEG_STID)
5023 return_revoked = true;
5024 else if (typemask & NFS4_DELEG_STID)
5025 typemask |= NFS4_REVOKED_DELEG_STID;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005026
Andrew Elblef25e2222017-11-09 13:41:10 -05005027 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid) ||
5028 CLOSE_STATEID(stateid))
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005029 return nfserr_bad_stateid;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005030 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn);
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005031 if (status == nfserr_stale_clientid) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04005032 if (cstate->session)
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005033 return nfserr_bad_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005034 return nfserr_stale_stateid;
Trond Myklebusta8a7c672014-03-29 14:43:38 -04005035 }
J. Bruce Fields0eb6f202013-03-12 17:36:17 -04005036 if (status)
5037 return status;
Jeff Layton4b24ca72014-06-30 11:48:44 -04005038 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005039 if (!*s)
5040 return nfserr_bad_stateid;
Andrew Elble62f0b692017-11-03 14:06:31 -04005041 if (((*s)->sc_type == NFS4_REVOKED_DELEG_STID) && !return_revoked) {
5042 nfs4_put_stid(*s);
5043 if (cstate->minorversion)
5044 return nfserr_deleg_revoked;
5045 return nfserr_bad_stateid;
5046 }
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005047 return nfs_ok;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005048}
5049
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005050static struct file *
5051nfs4_find_file(struct nfs4_stid *s, int flags)
5052{
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005053 if (!s)
5054 return NULL;
5055
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005056 switch (s->sc_type) {
5057 case NFS4_DELEG_STID:
5058 if (WARN_ON_ONCE(!s->sc_file->fi_deleg_file))
5059 return NULL;
5060 return get_file(s->sc_file->fi_deleg_file);
5061 case NFS4_OPEN_STID:
5062 case NFS4_LOCK_STID:
5063 if (flags & RD_STATE)
5064 return find_readable_file(s->sc_file);
5065 else
5066 return find_writeable_file(s->sc_file);
5067 break;
5068 }
5069
5070 return NULL;
5071}
5072
5073static __be32
5074nfs4_check_olstateid(struct svc_fh *fhp, struct nfs4_ol_stateid *ols, int flags)
5075{
5076 __be32 status;
5077
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005078 status = nfsd4_check_openowner_confirmed(ols);
5079 if (status)
5080 return status;
5081 return nfs4_check_openmode(ols, flags);
5082}
5083
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005084static __be32
5085nfs4_check_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfs4_stid *s,
5086 struct file **filpp, bool *tmp_file, int flags)
5087{
5088 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE;
5089 struct file *file;
5090 __be32 status;
5091
5092 file = nfs4_find_file(s, flags);
5093 if (file) {
5094 status = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
5095 acc | NFSD_MAY_OWNER_OVERRIDE);
5096 if (status) {
5097 fput(file);
5098 return status;
5099 }
5100
5101 *filpp = file;
5102 } else {
5103 status = nfsd_open(rqstp, fhp, S_IFREG, acc, filpp);
5104 if (status)
5105 return status;
5106
5107 if (tmp_file)
5108 *tmp_file = true;
5109 }
5110
5111 return 0;
5112}
5113
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114/*
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005115 * Checks for stateid operations
5116 */
Al Virob37ad282006-10-19 23:28:59 -07005117__be32
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005118nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01005119 struct nfsd4_compound_state *cstate, struct svc_fh *fhp,
5120 stateid_t *stateid, int flags, struct file **filpp, bool *tmp_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121{
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005122 struct inode *ino = d_inode(fhp->fh_dentry);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005123 struct net *net = SVC_NET(rqstp);
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005124 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005125 struct nfs4_stid *s = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005126 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 if (filpp)
5129 *filpp = NULL;
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005130 if (tmp_file)
5131 *tmp_file = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04005133 if (grace_disallows_io(net, ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 return nfserr_grace;
5135
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005136 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
5137 status = check_special_stateids(net, fhp, stateid, flags);
5138 goto done;
5139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005141 status = nfsd4_lookup_stateid(cstate, stateid,
Jeff Laytondb24b3b2014-06-30 11:48:36 -04005142 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005143 &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005144 if (status)
Trond Myklebustc2d1d6a2014-07-30 08:27:25 -04005145 return status;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005146 status = check_stateid_generation(stateid, &s->sc_stateid,
5147 nfsd4_has_session(cstate));
J. Bruce Fields69064a22011-09-09 11:54:57 -04005148 if (status)
5149 goto out;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005150
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005151 switch (s->sc_type) {
5152 case NFS4_DELEG_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005153 status = nfs4_check_delegmode(delegstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005154 break;
5155 case NFS4_OPEN_STID:
5156 case NFS4_LOCK_STID:
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005157 status = nfs4_check_olstateid(fhp, openlockstateid(s), flags);
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005158 break;
5159 default:
Trond Myklebust14bcab12014-04-18 14:44:07 -04005160 status = nfserr_bad_stateid;
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005161 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 }
Jeff Layton8fcd4612015-07-30 06:57:46 -04005163 if (status)
5164 goto out;
5165 status = nfs4_check_fh(fhp, s);
Christoph Hellwiga0649b22015-06-18 16:44:59 +02005166
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005167done:
5168 if (!status && filpp)
5169 status = nfs4_check_file(rqstp, fhp, s, filpp, tmp_file, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170out:
Christoph Hellwigaf90f702015-06-18 16:45:00 +02005171 if (s)
5172 nfs4_put_stid(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 return status;
5174}
5175
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005176/*
Bryan Schumaker17456802011-07-13 10:50:48 -04005177 * Test if the stateid is valid
5178 */
5179__be32
5180nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5181 struct nfsd4_test_stateid *test_stateid)
5182{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005183 struct nfsd4_test_stateid_id *stateid;
5184 struct nfs4_client *cl = cstate->session->se_client;
5185
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005186 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
Chuck Lever7df302f2012-05-29 13:56:37 -04005187 stateid->ts_id_status =
5188 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05005189
Bryan Schumaker17456802011-07-13 10:50:48 -04005190 return nfs_ok;
5191}
5192
Chuck Lever42691392016-08-11 10:37:30 -04005193static __be32
5194nfsd4_free_lock_stateid(stateid_t *stateid, struct nfs4_stid *s)
5195{
5196 struct nfs4_ol_stateid *stp = openlockstateid(s);
5197 __be32 ret;
5198
5199 mutex_lock(&stp->st_mutex);
5200
5201 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5202 if (ret)
5203 goto out;
5204
5205 ret = nfserr_locks_held;
5206 if (check_for_locks(stp->st_stid.sc_file,
5207 lockowner(stp->st_stateowner)))
5208 goto out;
5209
5210 release_lock_stateid(stp);
5211 ret = nfs_ok;
5212
5213out:
5214 mutex_unlock(&stp->st_mutex);
5215 nfs4_put_stid(s);
5216 return ret;
5217}
5218
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005219__be32
5220nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5221 struct nfsd4_free_stateid *free_stateid)
5222{
5223 stateid_t *stateid = &free_stateid->fr_stateid;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005224 struct nfs4_stid *s;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005225 struct nfs4_delegation *dp;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005226 struct nfs4_client *cl = cstate->session->se_client;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005227 __be32 ret = nfserr_bad_stateid;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005228
Jeff Layton1af71cc2014-07-29 21:34:14 -04005229 spin_lock(&cl->cl_lock);
5230 s = find_stateid_locked(cl, stateid);
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005231 if (!s)
Jeff Layton1af71cc2014-07-29 21:34:14 -04005232 goto out_unlock;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005233 switch (s->sc_type) {
5234 case NFS4_DELEG_STID:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005235 ret = nfserr_locks_held;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005236 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005237 case NFS4_OPEN_STID:
Jeff Layton1af71cc2014-07-29 21:34:14 -04005238 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
5239 if (ret)
5240 break;
5241 ret = nfserr_locks_held;
5242 break;
J. Bruce Fields2da1cec2011-09-16 18:56:20 -04005243 case NFS4_LOCK_STID:
Chuck Lever42691392016-08-11 10:37:30 -04005244 atomic_inc(&s->sc_count);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005245 spin_unlock(&cl->cl_lock);
Chuck Lever42691392016-08-11 10:37:30 -04005246 ret = nfsd4_free_lock_stateid(stateid, s);
Jeff Layton1af71cc2014-07-29 21:34:14 -04005247 goto out;
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005248 case NFS4_REVOKED_DELEG_STID:
5249 dp = delegstateid(s);
Jeff Layton2d4a5322014-07-25 07:34:21 -04005250 list_del_init(&dp->dl_recall_lru);
5251 spin_unlock(&cl->cl_lock);
Trond Myklebust60116952014-07-29 21:34:06 -04005252 nfs4_put_stid(s);
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005253 ret = nfs_ok;
Jeff Layton1af71cc2014-07-29 21:34:14 -04005254 goto out;
5255 /* Default falls through and returns nfserr_bad_stateid */
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005256 }
Jeff Layton1af71cc2014-07-29 21:34:14 -04005257out_unlock:
5258 spin_unlock(&cl->cl_lock);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005259out:
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04005260 return ret;
5261}
5262
NeilBrown4c4cd222005-07-07 17:59:27 -07005263static inline int
5264setlkflg (int type)
5265{
5266 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
5267 RD_STATE : WR_STATE;
5268}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005270static __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 -04005271{
5272 struct svc_fh *current_fh = &cstate->current_fh;
5273 struct nfs4_stateowner *sop = stp->st_stateowner;
5274 __be32 status;
5275
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005276 status = nfsd4_check_seqid(cstate, sop, seqid);
5277 if (status)
5278 return status;
Trond Myklebust2a7d4a72017-11-03 08:00:15 -04005279 status = nfsd4_lock_ol_stateid(stp);
5280 if (status != nfs_ok)
5281 return status;
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005282 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
Jeff Layton35a92fe2015-09-17 07:47:08 -04005283 if (status == nfs_ok)
5284 status = nfs4_check_fh(current_fh, &stp->st_stid);
5285 if (status != nfs_ok)
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005286 mutex_unlock(&stp->st_mutex);
Jeff Layton35a92fe2015-09-17 07:47:08 -04005287 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005288}
5289
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290/*
5291 * Checks for sequence id mutating operations.
5292 */
Al Virob37ad282006-10-19 23:28:59 -07005293static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03005294nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
J. Bruce Fields2288d0e2011-09-06 15:50:21 -04005295 stateid_t *stateid, char typemask,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005296 struct nfs4_ol_stateid **stpp,
5297 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298{
J. Bruce Fields0836f582008-01-26 19:08:12 -05005299 __be32 status;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005300 struct nfs4_stid *s;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005301 struct nfs4_ol_stateid *stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005303 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
5304 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07005305
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 *stpp = NULL;
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005307 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005308 if (status)
5309 return status;
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005310 stp = openlockstateid(s);
Jeff Layton58fb12e2014-07-29 21:34:27 -04005311 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005313 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
Trond Myklebustfd911012014-07-29 21:34:24 -04005314 if (!status)
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005315 *stpp = stp;
Trond Myklebustfd911012014-07-29 21:34:24 -04005316 else
5317 nfs4_put_stid(&stp->st_stid);
Trond Myklebuste17f99b2014-06-30 11:48:34 -04005318 return status;
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005319}
J. Bruce Fields39325bd2007-11-26 17:06:39 -05005320
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005321static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
5322 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005323{
5324 __be32 status;
5325 struct nfs4_openowner *oo;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005326 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005328 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005329 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04005330 if (status)
5331 return status;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005332 oo = openowner(stp->st_stateowner);
5333 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005334 mutex_unlock(&stp->st_mutex);
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005335 nfs4_put_stid(&stp->st_stid);
NeilBrown3a4f98b2005-07-07 17:59:26 -07005336 return nfserr_bad_stateid;
Trond Myklebust4cbfc9f2014-07-29 21:34:23 -04005337 }
5338 *stpp = stp;
NeilBrown3a4f98b2005-07-07 17:59:26 -07005339 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340}
5341
Al Virob37ad282006-10-19 23:28:59 -07005342__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005343nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005344 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345{
Al Virob37ad282006-10-19 23:28:59 -07005346 __be32 status;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005347 struct nfs4_openowner *oo;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005348 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005349 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
Al Viroa6a9f182013-09-16 10:57:01 -04005351 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
5352 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005354 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07005355 if (status)
5356 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005358 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005359 oc->oc_seqid, &oc->oc_req_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005360 NFS4_OPEN_STID, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005361 if (status)
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005362 goto out;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005363 oo = openowner(stp->st_stateowner);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005364 status = nfserr_bad_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005365 if (oo->oo_flags & NFS4_OO_CONFIRMED) {
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005366 mutex_unlock(&stp->st_mutex);
Trond Myklebust2585fc72014-07-29 21:34:21 -04005367 goto put_stateid;
Jeff Layton35a92fe2015-09-17 07:47:08 -04005368 }
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -04005369 oo->oo_flags |= NFS4_OO_CONFIRMED;
Jeff Layton9767feb2015-10-01 09:05:50 -04005370 nfs4_inc_and_copy_stateid(&oc->oc_resp_stateid, &stp->st_stid);
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005371 mutex_unlock(&stp->st_mutex);
Benny Halevy8c10cbd2009-10-19 12:04:53 +02005372 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005373 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07005374
Jeff Layton2a4317c2012-03-21 16:42:43 -04005375 nfsd4_client_record_create(oo->oo_owner.so_client);
J. Bruce Fields68b66e82011-09-02 12:19:43 -04005376 status = nfs_ok;
Trond Myklebust2585fc72014-07-29 21:34:21 -04005377put_stateid:
5378 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005380 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 return status;
5382}
5383
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005384static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385{
Jeff Layton82c5ff12012-05-11 09:45:13 -04005386 if (!test_access(access, stp))
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005387 return;
Trond Myklebust11b91642014-07-29 21:34:08 -04005388 nfs4_file_put_access(stp->st_stid.sc_file, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04005389 clear_access(access, stp);
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005390}
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04005391
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005392static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
5393{
5394 switch (to_access) {
5395 case NFS4_SHARE_ACCESS_READ:
5396 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
5397 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
5398 break;
5399 case NFS4_SHARE_ACCESS_WRITE:
5400 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
5401 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
5402 break;
5403 case NFS4_SHARE_ACCESS_BOTH:
5404 break;
5405 default:
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005406 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 }
5408}
5409
Al Virob37ad282006-10-19 23:28:59 -07005410__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005411nfsd4_open_downgrade(struct svc_rqst *rqstp,
5412 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005413 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414{
Al Virob37ad282006-10-19 23:28:59 -07005415 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005416 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005417 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418
Al Viroa6a9f182013-09-16 10:57:01 -04005419 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
5420 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421
J. Bruce Fieldsc30e92d2011-10-10 17:34:31 -04005422 /* We don't yet support WANT bits: */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02005423 if (od->od_deleg_want)
5424 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
5425 od->od_deleg_want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005427 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005428 &od->od_stateid, &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005429 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 status = nfserr_inval;
Jeff Layton82c5ff12012-05-11 09:45:13 -04005432 if (!test_access(od->od_share_access, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04005433 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 stp->st_access_bmap, od->od_share_access);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005435 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 }
Jeff Laytonce0fc432012-05-11 09:45:14 -04005437 if (!test_deny(od->od_share_deny, stp)) {
Jeff Laytonc11c5912014-07-10 14:07:30 -04005438 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 stp->st_deny_bmap, od->od_share_deny);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005440 goto put_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 }
J. Bruce Fields6409a5a2011-09-28 11:37:56 -04005442 nfs4_stateid_downgrade(stp, od->od_share_access);
Jeff Laytonce0fc432012-05-11 09:45:14 -04005443 reset_union_bmap_deny(od->od_share_deny, stp);
Jeff Layton9767feb2015-10-01 09:05:50 -04005444 nfs4_inc_and_copy_stateid(&od->od_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 status = nfs_ok;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005446put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005447 mutex_unlock(&stp->st_mutex);
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005448 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005450 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451 return status;
5452}
5453
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005454static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
5455{
Trond Myklebustacf92952014-06-30 11:48:37 -04005456 struct nfs4_client *clp = s->st_stid.sc_client;
Jeff Laytone8568732015-08-24 12:41:47 -04005457 bool unhashed;
Jeff Laytond83017f2014-07-29 21:34:42 -04005458 LIST_HEAD(reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04005459
Jeff Layton2c41beb2014-07-29 21:34:41 -04005460 spin_lock(&clp->cl_lock);
Jeff Laytone8568732015-08-24 12:41:47 -04005461 unhashed = unhash_open_stateid(s, &reaplist);
Trond Myklebustacf92952014-06-30 11:48:37 -04005462
Jeff Laytond83017f2014-07-29 21:34:42 -04005463 if (clp->cl_minorversion) {
Jeff Laytone8568732015-08-24 12:41:47 -04005464 if (unhashed)
5465 put_ol_stateid_locked(s, &reaplist);
Jeff Laytond83017f2014-07-29 21:34:42 -04005466 spin_unlock(&clp->cl_lock);
5467 free_ol_stateid_reaplist(&reaplist);
5468 } else {
5469 spin_unlock(&clp->cl_lock);
5470 free_ol_stateid_reaplist(&reaplist);
Jeff Laytone8568732015-08-24 12:41:47 -04005471 if (unhashed)
5472 move_to_close_lru(s, clp->net);
Jeff Laytond83017f2014-07-29 21:34:42 -04005473 }
J. Bruce Fields38c387b2011-09-16 17:42:48 -04005474}
5475
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476/*
5477 * nfs4_unlock_state() called after encode
5478 */
Al Virob37ad282006-10-19 23:28:59 -07005479__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005480nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005481 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482{
Al Virob37ad282006-10-19 23:28:59 -07005483 __be32 status;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005484 struct nfs4_ol_stateid *stp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005485 struct net *net = SVC_NET(rqstp);
5486 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487
Al Viroa6a9f182013-09-16 10:57:01 -04005488 dprintk("NFSD: nfsd4_close on file %pd\n",
5489 cstate->current_fh.fh_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005491 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
5492 &close->cl_stateid,
5493 NFS4_OPEN_STID|NFS4_CLOSED_STID,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005494 &stp, nn);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005495 nfsd4_bump_seqid(cstate, status);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04005496 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 goto out;
Trond Myklebust1c8ea412017-11-03 08:00:10 -04005498
5499 stp->st_stid.sc_type = NFS4_CLOSED_STID;
Jeff Layton9767feb2015-10-01 09:05:50 -04005500 nfs4_inc_and_copy_stateid(&close->cl_stateid, &stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501
J. Bruce Fieldsf7a4d872011-09-16 20:12:38 -04005502 nfsd4_close_open_stateid(stp);
Trond Myklebust1c8ea412017-11-03 08:00:10 -04005503 mutex_unlock(&stp->st_mutex);
Trond Myklebust8a0b5892014-07-29 21:34:20 -04005504
Trond Myklebust5cd35862017-11-03 08:00:12 -04005505 /* See RFC5661 sectionm 18.2.4 */
5506 if (stp->st_stid.sc_client->cl_minorversion)
5507 memcpy(&close->cl_stateid, &close_stateid,
5508 sizeof(close->cl_stateid));
5509
Trond Myklebust8a0b5892014-07-29 21:34:20 -04005510 /* put reference from nfs4_preprocess_seqid_op */
5511 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 return status;
5514}
5515
Al Virob37ad282006-10-19 23:28:59 -07005516__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005517nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5518 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005520 struct nfs4_delegation *dp;
5521 stateid_t *stateid = &dr->dr_stateid;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005522 struct nfs4_stid *s;
Al Virob37ad282006-10-19 23:28:59 -07005523 __be32 status;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005524 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005526 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005527 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528
Trond Myklebust2dd6e452014-06-30 11:48:43 -04005529 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005530 if (status)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005531 goto out;
J. Bruce Fields38c2f4b2011-09-23 17:01:19 -04005532 dp = delegstateid(s);
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -04005533 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005534 if (status)
Trond Myklebustfd911012014-07-29 21:34:24 -04005535 goto put_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08005536
J. Bruce Fields3bd64a52013-04-09 17:02:51 -04005537 destroy_delegation(dp);
Trond Myklebustfd911012014-07-29 21:34:24 -04005538put_stateid:
5539 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540out:
5541 return status;
5542}
5543
Benny Halevy87df4de2008-12-15 19:42:03 +02005544static inline u64
5545end_offset(u64 start, u64 len)
5546{
5547 u64 end;
5548
5549 end = start + len;
5550 return end >= start ? end: NFS4_MAX_UINT64;
5551}
5552
5553/* last octet in a range */
5554static inline u64
5555last_byte_offset(u64 start, u64 len)
5556{
5557 u64 end;
5558
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05005559 WARN_ON_ONCE(!len);
Benny Halevy87df4de2008-12-15 19:42:03 +02005560 end = start + len;
5561 return end > start ? end - 1: NFS4_MAX_UINT64;
5562}
5563
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564/*
5565 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
5566 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
5567 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
5568 * locking, this prevents us from being completely protocol-compliant. The
5569 * real solution to this problem is to start using unsigned file offsets in
5570 * the VFS, but this is a very deep change!
5571 */
5572static inline void
5573nfs4_transform_lock_offset(struct file_lock *lock)
5574{
5575 if (lock->fl_start < 0)
5576 lock->fl_start = OFFSET_MAX;
5577 if (lock->fl_end < 0)
5578 lock->fl_end = OFFSET_MAX;
5579}
5580
Jeff Laytoncae80b32015-04-03 09:04:04 -04005581static fl_owner_t
5582nfsd4_fl_get_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04005583{
Jeff Laytoncae80b32015-04-03 09:04:04 -04005584 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
5585
5586 nfs4_get_stateowner(&lo->lo_owner);
5587 return owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04005588}
5589
Jeff Laytoncae80b32015-04-03 09:04:04 -04005590static void
5591nfsd4_fl_put_owner(fl_owner_t owner)
Kinglong Meeaef95832014-08-22 10:18:44 -04005592{
Jeff Laytoncae80b32015-04-03 09:04:04 -04005593 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)owner;
Kinglong Meeaef95832014-08-22 10:18:44 -04005594
Jeff Laytoncae80b32015-04-03 09:04:04 -04005595 if (lo)
Kinglong Meeaef95832014-08-22 10:18:44 -04005596 nfs4_put_stateowner(&lo->lo_owner);
Kinglong Meeaef95832014-08-22 10:18:44 -04005597}
5598
Jeff Layton76d348f2016-09-16 16:28:24 -04005599static void
5600nfsd4_lm_notify(struct file_lock *fl)
5601{
5602 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)fl->fl_owner;
5603 struct net *net = lo->lo_owner.so_client->net;
5604 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5605 struct nfsd4_blocked_lock *nbl = container_of(fl,
5606 struct nfsd4_blocked_lock, nbl_lock);
5607 bool queue = false;
5608
Jeff Layton7919d0a2016-09-16 16:28:25 -04005609 /* An empty list means that something else is going to be using it */
Jeff Layton0cc11a62016-10-20 09:34:31 -04005610 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005611 if (!list_empty(&nbl->nbl_list)) {
5612 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04005613 list_del_init(&nbl->nbl_lru);
Jeff Layton76d348f2016-09-16 16:28:24 -04005614 queue = true;
5615 }
Jeff Layton0cc11a62016-10-20 09:34:31 -04005616 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005617
5618 if (queue)
5619 nfsd4_run_cb(&nbl->nbl_cb);
5620}
5621
Alexey Dobriyan7b021962009-09-21 17:01:12 -07005622static const struct lock_manager_operations nfsd_posix_mng_ops = {
Jeff Layton76d348f2016-09-16 16:28:24 -04005623 .lm_notify = nfsd4_lm_notify,
Kinglong Meeaef95832014-08-22 10:18:44 -04005624 .lm_get_owner = nfsd4_fl_get_owner,
5625 .lm_put_owner = nfsd4_fl_put_owner,
NeilBrownd5b90262006-04-10 22:55:22 -07005626};
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627
5628static inline void
5629nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
5630{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005631 struct nfs4_lockowner *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632
NeilBrownd5b90262006-04-10 22:55:22 -07005633 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005634 lo = (struct nfs4_lockowner *) fl->fl_owner;
5635 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
5636 lo->lo_owner.so_owner.len, GFP_KERNEL);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04005637 if (!deny->ld_owner.data)
5638 /* We just don't care that much */
5639 goto nevermind;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005640 deny->ld_owner.len = lo->lo_owner.so_owner.len;
5641 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07005642 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04005643nevermind:
5644 deny->ld_owner.len = 0;
5645 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07005646 deny->ld_clientid.cl_boot = 0;
5647 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 }
5649 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02005650 deny->ld_length = NFS4_MAX_UINT64;
5651 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652 deny->ld_length = fl->fl_end - fl->fl_start + 1;
5653 deny->ld_type = NFS4_READ_LT;
5654 if (fl->fl_type != F_RDLCK)
5655 deny->ld_type = NFS4_WRITE_LT;
5656}
5657
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005658static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08005659find_lockowner_str_locked(struct nfs4_client *clp, struct xdr_netobj *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660{
Trond Myklebustd4f04892014-07-29 21:34:36 -04005661 unsigned int strhashval = ownerstr_hashval(owner);
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005662 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663
Trond Myklebust0a880a22014-07-30 08:27:10 -04005664 lockdep_assert_held(&clp->cl_lock);
5665
Trond Myklebustd4f04892014-07-29 21:34:36 -04005666 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[strhashval],
5667 so_strhash) {
Trond Myklebustb3c32bc2014-06-30 11:48:40 -04005668 if (so->so_is_open_owner)
5669 continue;
Kinglong Meeb5971af2014-08-22 10:18:43 -04005670 if (same_owner_str(so, owner))
5671 return lockowner(nfs4_get_stateowner(so));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 }
5673 return NULL;
5674}
5675
Trond Myklebustc58c6612014-07-29 21:34:35 -04005676static struct nfs4_lockowner *
Kinglong Meec8623992015-07-13 17:35:37 +08005677find_lockowner_str(struct nfs4_client *clp, struct xdr_netobj *owner)
Trond Myklebustc58c6612014-07-29 21:34:35 -04005678{
5679 struct nfs4_lockowner *lo;
5680
Trond Myklebustd4f04892014-07-29 21:34:36 -04005681 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08005682 lo = find_lockowner_str_locked(clp, owner);
Trond Myklebustd4f04892014-07-29 21:34:36 -04005683 spin_unlock(&clp->cl_lock);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005684 return lo;
5685}
5686
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005687static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
5688{
Trond Myklebustc58c6612014-07-29 21:34:35 -04005689 unhash_lockowner_locked(lockowner(sop));
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005690}
5691
Jeff Layton6b180f02014-07-29 21:34:26 -04005692static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
5693{
5694 struct nfs4_lockowner *lo = lockowner(sop);
5695
5696 kmem_cache_free(lockowner_slab, lo);
5697}
5698
5699static const struct nfs4_stateowner_operations lockowner_ops = {
Jeff Layton8f4b54c2014-07-29 21:34:29 -04005700 .so_unhash = nfs4_unhash_lockowner,
5701 .so_free = nfs4_free_lockowner,
Jeff Layton6b180f02014-07-29 21:34:26 -04005702};
5703
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704/*
5705 * Alloc a lock owner structure.
5706 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005707 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708 *
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05005709 * strhashval = ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 */
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005711static struct nfs4_lockowner *
Trond Myklebustc58c6612014-07-29 21:34:35 -04005712alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp,
5713 struct nfs4_ol_stateid *open_stp,
5714 struct nfsd4_lock *lock)
5715{
Trond Myklebustc58c6612014-07-29 21:34:35 -04005716 struct nfs4_lockowner *lo, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005718 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
5719 if (!lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720 return NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04005721 INIT_LIST_HEAD(&lo->lo_blocked);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005722 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
5723 lo->lo_owner.so_is_open_owner = 0;
Jeff Layton5db1c032014-07-29 21:34:28 -04005724 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
Jeff Layton6b180f02014-07-29 21:34:26 -04005725 lo->lo_owner.so_ops = &lockowner_ops;
Trond Myklebustd4f04892014-07-29 21:34:36 -04005726 spin_lock(&clp->cl_lock);
Kinglong Meec8623992015-07-13 17:35:37 +08005727 ret = find_lockowner_str_locked(clp, &lock->lk_new_owner);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005728 if (ret == NULL) {
5729 list_add(&lo->lo_owner.so_strhash,
Trond Myklebustd4f04892014-07-29 21:34:36 -04005730 &clp->cl_ownerstr_hashtbl[strhashval]);
Trond Myklebustc58c6612014-07-29 21:34:35 -04005731 ret = lo;
5732 } else
Kinglong Meed50ffde2015-07-16 12:05:07 +08005733 nfs4_free_stateowner(&lo->lo_owner);
5734
Trond Myklebustd4f04892014-07-29 21:34:36 -04005735 spin_unlock(&clp->cl_lock);
J. Bruce Fields340f0ba2015-03-23 11:02:30 -04005736 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737}
5738
Jeff Layton356a95e2014-07-29 21:34:13 -04005739static void
5740init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
5741 struct nfs4_file *fp, struct inode *inode,
5742 struct nfs4_ol_stateid *open_stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743{
J. Bruce Fieldsd3b313a2011-09-15 15:02:41 -04005744 struct nfs4_client *clp = lo->lo_owner.so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745
Jeff Layton356a95e2014-07-29 21:34:13 -04005746 lockdep_assert_held(&clp->cl_lock);
5747
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005748 atomic_inc(&stp->st_stid.sc_count);
J. Bruce Fields3abdb602013-02-03 12:23:01 -05005749 stp->st_stid.sc_type = NFS4_LOCK_STID;
Kinglong Meeb5971af2014-08-22 10:18:43 -04005750 stp->st_stateowner = nfs4_get_stateowner(&lo->lo_owner);
NeilBrown13cd2182005-06-23 22:03:10 -07005751 get_nfs4_file(fp);
Trond Myklebust11b91642014-07-29 21:34:08 -04005752 stp->st_stid.sc_file = fp;
J. Bruce Fields0997b172011-03-02 18:01:35 -05005753 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07005755 stp->st_openstp = open_stp;
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005756 mutex_init(&stp->st_mutex);
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04005757 list_add(&stp->st_locks, &open_stp->st_locks);
Jeff Layton1c755dc2014-07-29 21:34:12 -04005758 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
Trond Myklebust1d31a252014-07-10 14:07:25 -04005759 spin_lock(&fp->fi_lock);
5760 list_add(&stp->st_perfile, &fp->fi_stateids);
5761 spin_unlock(&fp->fi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762}
5763
Jeff Laytonc53530d2014-06-30 11:48:39 -04005764static struct nfs4_ol_stateid *
5765find_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp)
5766{
5767 struct nfs4_ol_stateid *lst;
Jeff Layton356a95e2014-07-29 21:34:13 -04005768 struct nfs4_client *clp = lo->lo_owner.so_client;
5769
5770 lockdep_assert_held(&clp->cl_lock);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005771
5772 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) {
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005773 if (lst->st_stid.sc_file == fp) {
5774 atomic_inc(&lst->st_stid.sc_count);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005775 return lst;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005776 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04005777 }
5778 return NULL;
5779}
5780
Jeff Layton356a95e2014-07-29 21:34:13 -04005781static struct nfs4_ol_stateid *
5782find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
5783 struct inode *inode, struct nfs4_ol_stateid *ost,
5784 bool *new)
5785{
5786 struct nfs4_stid *ns = NULL;
5787 struct nfs4_ol_stateid *lst;
5788 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
5789 struct nfs4_client *clp = oo->oo_owner.so_client;
5790
5791 spin_lock(&clp->cl_lock);
5792 lst = find_lock_stateid(lo, fi);
5793 if (lst == NULL) {
5794 spin_unlock(&clp->cl_lock);
Kinglong Mee743146d32017-01-18 19:04:42 +08005795 ns = nfs4_alloc_stid(clp, stateid_slab, nfs4_free_lock_stateid);
Jeff Layton356a95e2014-07-29 21:34:13 -04005796 if (ns == NULL)
5797 return NULL;
5798
5799 spin_lock(&clp->cl_lock);
5800 lst = find_lock_stateid(lo, fi);
5801 if (likely(!lst)) {
5802 lst = openlockstateid(ns);
5803 init_lock_stateid(lst, lo, fi, inode, ost);
5804 ns = NULL;
5805 *new = true;
5806 }
5807 }
5808 spin_unlock(&clp->cl_lock);
5809 if (ns)
5810 nfs4_put_stid(ns);
5811 return lst;
5812}
Jeff Laytonc53530d2014-06-30 11:48:39 -04005813
NeilBrownfd39ca92005-06-23 22:04:03 -07005814static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815check_lock_length(u64 offset, u64 length)
5816{
Kinglong Meee7969312015-07-13 17:34:19 +08005817 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
5818 (length > ~offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819}
5820
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04005821static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
J. Bruce Fields0997b172011-03-02 18:01:35 -05005822{
Trond Myklebust11b91642014-07-29 21:34:08 -04005823 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
J. Bruce Fields0997b172011-03-02 18:01:35 -05005824
Jeff Layton7214e862014-07-10 14:07:33 -04005825 lockdep_assert_held(&fp->fi_lock);
5826
Jeff Layton82c5ff12012-05-11 09:45:13 -04005827 if (test_access(access, lock_stp))
J. Bruce Fields0997b172011-03-02 18:01:35 -05005828 return;
Jeff Layton12659652014-07-10 14:07:28 -04005829 __nfs4_file_get_access(fp, access);
Jeff Layton82c5ff12012-05-11 09:45:13 -04005830 set_access(access, lock_stp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005831}
5832
Jeff Layton356a95e2014-07-29 21:34:13 -04005833static __be32
5834lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
5835 struct nfs4_ol_stateid *ost,
5836 struct nfsd4_lock *lock,
Jeff Laytondd257932016-08-11 10:37:39 -04005837 struct nfs4_ol_stateid **plst, bool *new)
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005838{
Jeff Layton5db1c032014-07-29 21:34:28 -04005839 __be32 status;
Trond Myklebust11b91642014-07-29 21:34:08 -04005840 struct nfs4_file *fi = ost->st_stid.sc_file;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005841 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
5842 struct nfs4_client *cl = oo->oo_owner.so_client;
David Howells2b0143b2015-03-17 22:25:59 +00005843 struct inode *inode = d_inode(cstate->current_fh.fh_dentry);
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005844 struct nfs4_lockowner *lo;
Jeff Laytondd257932016-08-11 10:37:39 -04005845 struct nfs4_ol_stateid *lst;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005846 unsigned int strhashval;
Jeff Laytondd257932016-08-11 10:37:39 -04005847 bool hashed;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005848
Kinglong Meec8623992015-07-13 17:35:37 +08005849 lo = find_lockowner_str(cl, &lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005850 if (!lo) {
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005851 strhashval = ownerstr_hashval(&lock->lk_new_owner);
Jeff Laytonc53530d2014-06-30 11:48:39 -04005852 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
5853 if (lo == NULL)
5854 return nfserr_jukebox;
5855 } else {
5856 /* with an existing lockowner, seqids must be the same */
Jeff Layton5db1c032014-07-29 21:34:28 -04005857 status = nfserr_bad_seqid;
Jeff Laytonc53530d2014-06-30 11:48:39 -04005858 if (!cstate->minorversion &&
5859 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
Jeff Layton5db1c032014-07-29 21:34:28 -04005860 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005861 }
Jeff Laytonc53530d2014-06-30 11:48:39 -04005862
Jeff Laytondd257932016-08-11 10:37:39 -04005863retry:
5864 lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
5865 if (lst == NULL) {
Jeff Layton5db1c032014-07-29 21:34:28 -04005866 status = nfserr_jukebox;
5867 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005868 }
Jeff Laytondd257932016-08-11 10:37:39 -04005869
5870 mutex_lock(&lst->st_mutex);
5871
5872 /* See if it's still hashed to avoid race with FREE_STATEID */
5873 spin_lock(&cl->cl_lock);
5874 hashed = !list_empty(&lst->st_perfile);
5875 spin_unlock(&cl->cl_lock);
5876
5877 if (!hashed) {
5878 mutex_unlock(&lst->st_mutex);
5879 nfs4_put_stid(&lst->st_stid);
5880 goto retry;
5881 }
Jeff Layton5db1c032014-07-29 21:34:28 -04005882 status = nfs_ok;
Jeff Laytondd257932016-08-11 10:37:39 -04005883 *plst = lst;
Jeff Layton5db1c032014-07-29 21:34:28 -04005884out:
5885 nfs4_put_stateowner(&lo->lo_owner);
5886 return status;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005887}
5888
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889/*
5890 * LOCK operation
5891 */
Al Virob37ad282006-10-19 23:28:59 -07005892__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005893nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08005894 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895{
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005896 struct nfs4_openowner *open_sop = NULL;
5897 struct nfs4_lockowner *lock_sop = NULL;
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005898 struct nfs4_ol_stateid *lock_stp = NULL;
Trond Myklebust0667b1e2014-07-29 21:34:22 -04005899 struct nfs4_ol_stateid *open_stp = NULL;
Jeff Layton7214e862014-07-10 14:07:33 -04005900 struct nfs4_file *fp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04005901 struct file *filp = NULL;
Jeff Layton76d348f2016-09-16 16:28:24 -04005902 struct nfsd4_blocked_lock *nbl = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04005903 struct file_lock *file_lock = NULL;
5904 struct file_lock *conflock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07005905 __be32 status = 0;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005906 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07005907 int err;
Jeff Layton5db1c032014-07-29 21:34:28 -04005908 bool new = false;
Jeff Layton76d348f2016-09-16 16:28:24 -04005909 unsigned char fl_type;
5910 unsigned int fl_flags = FL_POSIX;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005911 struct net *net = SVC_NET(rqstp);
5912 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913
5914 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
5915 (long long) lock->lk_offset,
5916 (long long) lock->lk_length);
5917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 if (check_lock_length(lock->lk_offset, lock->lk_length))
5919 return nfserr_inval;
5920
J.Bruce Fieldsca364312006-12-13 00:35:27 -08005921 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02005922 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08005923 dprintk("NFSD: nfsd4_lock: permission denied!\n");
5924 return status;
5925 }
5926
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 if (lock->lk_is_new) {
J. Bruce Fields684e5632011-11-04 17:08:10 -04005928 if (nfsd4_has_session(cstate))
5929 /* See rfc 5661 18.10.3: given clientid is ignored: */
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005930 memcpy(&lock->lk_new_clientid,
J. Bruce Fields684e5632011-11-04 17:08:10 -04005931 &cstate->session->se_client->cl_clientid,
5932 sizeof(clientid_t));
5933
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934 status = nfserr_stale_clientid;
Stanislav Kinsbursky2c142ba2012-07-25 16:57:45 +04005935 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938 /* validate and update open stateid and open seqid */
J. Bruce Fieldsc0a5d932011-09-06 15:19:46 -04005939 status = nfs4_preprocess_confirmed_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940 lock->lk_new_open_seqid,
5941 &lock->lk_new_open_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005942 &open_stp, nn);
NeilBrown37515172005-07-07 17:59:16 -07005943 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944 goto out;
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04005945 mutex_unlock(&open_stp->st_mutex);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005946 open_sop = openowner(open_stp->st_stateowner);
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005947 status = nfserr_bad_stateid;
J. Bruce Fields684e5632011-11-04 17:08:10 -04005948 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
Kinglong Mee76f6c9e2015-07-13 17:35:10 +08005949 &lock->lk_new_clientid))
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005950 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005951 status = lookup_or_create_lock_state(cstate, open_stp, lock,
Jeff Layton5db1c032014-07-29 21:34:28 -04005952 &lock_stp, &new);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005953 } else {
Benny Halevydd453df2009-04-03 08:28:41 +03005954 status = nfs4_preprocess_seqid_op(cstate,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04005955 lock->lk_old_lock_seqid,
5956 &lock->lk_old_lock_stateid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005957 NFS4_LOCK_STID, &lock_stp, nn);
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04005958 }
J. Bruce Fieldse1aaa892012-06-06 16:01:37 -04005959 if (status)
5960 goto out;
J. Bruce Fields64a284d2011-10-20 06:57:46 -04005961 lock_sop = lockowner(lock_stp->st_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04005963 lkflg = setlkflg(lock->lk_type);
5964 status = nfs4_check_openmode(lock_stp, lkflg);
5965 if (status)
5966 goto out;
5967
NeilBrown0dd395d2005-07-07 17:59:15 -07005968 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005969 if (locks_in_grace(net) && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07005970 goto out;
5971 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03005972 if (!locks_in_grace(net) && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07005973 goto out;
5974
Trond Myklebust11b91642014-07-29 21:34:08 -04005975 fp = lock_stp->st_stid.sc_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 switch (lock->lk_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977 case NFS4_READW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04005978 if (nfsd4_has_session(cstate))
5979 fl_flags |= FL_SLEEP;
5980 /* Fallthrough */
5981 case NFS4_READ_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04005982 spin_lock(&fp->fi_lock);
5983 filp = find_readable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005984 if (filp)
5985 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Jeff Layton7214e862014-07-10 14:07:33 -04005986 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005987 fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05005988 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 case NFS4_WRITEW_LT:
Jeff Layton76d348f2016-09-16 16:28:24 -04005990 if (nfsd4_has_session(cstate))
5991 fl_flags |= FL_SLEEP;
5992 /* Fallthrough */
5993 case NFS4_WRITE_LT:
Jeff Layton7214e862014-07-10 14:07:33 -04005994 spin_lock(&fp->fi_lock);
5995 filp = find_writeable_file_locked(fp);
J. Bruce Fields0997b172011-03-02 18:01:35 -05005996 if (filp)
5997 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Jeff Layton7214e862014-07-10 14:07:33 -04005998 spin_unlock(&fp->fi_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04005999 fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05006000 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001 default:
6002 status = nfserr_inval;
6003 goto out;
6004 }
Jeff Layton76d348f2016-09-16 16:28:24 -04006005
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006006 if (!filp) {
6007 status = nfserr_openmode;
6008 goto out;
6009 }
Kinglong Meeaef95832014-08-22 10:18:44 -04006010
Jeff Layton76d348f2016-09-16 16:28:24 -04006011 nbl = find_or_allocate_block(lock_sop, &fp->fi_fhandle, nn);
6012 if (!nbl) {
6013 dprintk("NFSD: %s: unable to allocate block!\n", __func__);
6014 status = nfserr_jukebox;
6015 goto out;
6016 }
6017
6018 file_lock = &nbl->nbl_lock;
6019 file_lock->fl_type = fl_type;
Kinglong Meeaef95832014-08-22 10:18:44 -04006020 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lock_sop->lo_owner));
Jeff Layton21179d82012-08-21 08:03:32 -04006021 file_lock->fl_pid = current->tgid;
6022 file_lock->fl_file = filp;
Jeff Layton76d348f2016-09-16 16:28:24 -04006023 file_lock->fl_flags = fl_flags;
Jeff Layton21179d82012-08-21 08:03:32 -04006024 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6025 file_lock->fl_start = lock->lk_offset;
6026 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
6027 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028
Jeff Layton21179d82012-08-21 08:03:32 -04006029 conflock = locks_alloc_lock();
6030 if (!conflock) {
6031 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6032 status = nfserr_jukebox;
6033 goto out;
6034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035
Jeff Layton76d348f2016-09-16 16:28:24 -04006036 if (fl_flags & FL_SLEEP) {
Arnd Bergmann669210a2019-11-04 14:43:17 +01006037 nbl->nbl_time = get_seconds();
Jeff Layton0cc11a62016-10-20 09:34:31 -04006038 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006039 list_add_tail(&nbl->nbl_list, &lock_sop->lo_blocked);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006040 list_add_tail(&nbl->nbl_lru, &nn->blocked_locks_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006041 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006042 }
6043
Jeff Layton21179d82012-08-21 08:03:32 -04006044 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006045 switch (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 case 0: /* success! */
Jeff Layton9767feb2015-10-01 09:05:50 -04006047 nfs4_inc_and_copy_stateid(&lock->lk_resp_stateid, &lock_stp->st_stid);
Al Virob8dd7b92006-10-19 23:29:01 -07006048 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006049 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006050 case FILE_LOCK_DEFERRED:
6051 nbl = NULL;
6052 /* Fallthrough */
6053 case -EAGAIN: /* conflock holds conflicting lock */
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006054 status = nfserr_denied;
6055 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
Jeff Layton21179d82012-08-21 08:03:32 -04006056 nfs4_set_lock_denied(conflock, &lock->lk_denied);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006057 break;
Jeff Layton76d348f2016-09-16 16:28:24 -04006058 case -EDEADLK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006060 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04006061 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05006062 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04006063 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08006064 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066out:
Jeff Layton76d348f2016-09-16 16:28:24 -04006067 if (nbl) {
6068 /* dequeue it if we queued it before */
6069 if (fl_flags & FL_SLEEP) {
Jeff Layton0cc11a62016-10-20 09:34:31 -04006070 spin_lock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006071 list_del_init(&nbl->nbl_list);
Jeff Layton7919d0a2016-09-16 16:28:25 -04006072 list_del_init(&nbl->nbl_lru);
Jeff Layton0cc11a62016-10-20 09:34:31 -04006073 spin_unlock(&nn->blocked_locks_lock);
Jeff Layton76d348f2016-09-16 16:28:24 -04006074 }
6075 free_blocked_lock(nbl);
6076 }
Trond Myklebustde186432014-07-10 14:07:26 -04006077 if (filp)
6078 fput(filp);
Jeff Layton5db1c032014-07-29 21:34:28 -04006079 if (lock_stp) {
6080 /* Bump seqid manually if the 4.0 replay owner is openowner */
6081 if (cstate->replay_owner &&
6082 cstate->replay_owner != &lock_sop->lo_owner &&
6083 seqid_mutating_err(ntohl(status)))
6084 lock_sop->lo_owner.so_seqid++;
6085
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006086 mutex_unlock(&lock_stp->st_mutex);
Jeff Layton35a92fe2015-09-17 07:47:08 -04006087
Jeff Layton5db1c032014-07-29 21:34:28 -04006088 /*
6089 * If this is a new, never-before-used stateid, and we are
6090 * returning an error, then just go ahead and release it.
6091 */
6092 if (status && new)
6093 release_lock_stateid(lock_stp);
6094
Trond Myklebust3d0fabd2014-07-29 21:34:15 -04006095 nfs4_put_stid(&lock_stp->st_stid);
Jeff Layton5db1c032014-07-29 21:34:28 -04006096 }
Trond Myklebust0667b1e2014-07-29 21:34:22 -04006097 if (open_stp)
6098 nfs4_put_stid(&open_stp->st_stid);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006099 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006100 if (conflock)
6101 locks_free_lock(conflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102 return status;
6103}
6104
6105/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006106 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
6107 * so we do a temporary open here just to get an open file to pass to
6108 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
6109 * inode operation.)
6110 */
Al Viro04da6e92012-04-13 00:00:04 -04006111static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006112{
6113 struct file *file;
Al Viro04da6e92012-04-13 00:00:04 -04006114 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
6115 if (!err) {
6116 err = nfserrno(vfs_test_lock(file, lock));
Christoph Hellwigfd891452015-04-28 15:41:16 +02006117 fput(file);
Al Viro04da6e92012-04-13 00:00:04 -04006118 }
J. Bruce Fields55ef1272008-12-20 11:58:38 -08006119 return err;
6120}
6121
6122/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123 * LOCKT operation
6124 */
Al Virob37ad282006-10-19 23:28:59 -07006125__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006126nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
6127 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128{
Jeff Layton21179d82012-08-21 08:03:32 -04006129 struct file_lock *file_lock = NULL;
Jeff Layton5db1c032014-07-29 21:34:28 -04006130 struct nfs4_lockowner *lo = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006131 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006132 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04006134 if (locks_in_grace(SVC_NET(rqstp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135 return nfserr_grace;
6136
6137 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
6138 return nfserr_inval;
6139
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006140 if (!nfsd4_has_session(cstate)) {
Jeff Layton4b24ca72014-06-30 11:48:44 -04006141 status = lookup_clientid(&lockt->lt_clientid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006142 if (status)
6143 goto out;
6144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
J. Bruce Fields75c096f2011-08-15 18:39:32 -04006146 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
Jeff Layton21179d82012-08-21 08:03:32 -04006149 file_lock = locks_alloc_lock();
6150 if (!file_lock) {
6151 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6152 status = nfserr_jukebox;
6153 goto out;
6154 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006155
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 switch (lockt->lt_type) {
6157 case NFS4_READ_LT:
6158 case NFS4_READW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006159 file_lock->fl_type = F_RDLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160 break;
6161 case NFS4_WRITE_LT:
6162 case NFS4_WRITEW_LT:
Jeff Layton21179d82012-08-21 08:03:32 -04006163 file_lock->fl_type = F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164 break;
6165 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04006166 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167 status = nfserr_inval;
6168 goto out;
6169 }
6170
Kinglong Meec8623992015-07-13 17:35:37 +08006171 lo = find_lockowner_str(cstate->clp, &lockt->lt_owner);
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04006172 if (lo)
Jeff Layton21179d82012-08-21 08:03:32 -04006173 file_lock->fl_owner = (fl_owner_t)lo;
6174 file_lock->fl_pid = current->tgid;
6175 file_lock->fl_flags = FL_POSIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176
Jeff Layton21179d82012-08-21 08:03:32 -04006177 file_lock->fl_start = lockt->lt_offset;
6178 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179
Jeff Layton21179d82012-08-21 08:03:32 -04006180 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181
Jeff Layton21179d82012-08-21 08:03:32 -04006182 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
Al Viro04da6e92012-04-13 00:00:04 -04006183 if (status)
Marc Eshelfd85b812006-11-28 16:26:41 -05006184 goto out;
Al Viro04da6e92012-04-13 00:00:04 -04006185
Jeff Layton21179d82012-08-21 08:03:32 -04006186 if (file_lock->fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187 status = nfserr_denied;
Jeff Layton21179d82012-08-21 08:03:32 -04006188 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189 }
6190out:
Jeff Layton5db1c032014-07-29 21:34:28 -04006191 if (lo)
6192 nfs4_put_stateowner(&lo->lo_owner);
Jeff Layton21179d82012-08-21 08:03:32 -04006193 if (file_lock)
6194 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195 return status;
6196}
6197
Al Virob37ad282006-10-19 23:28:59 -07006198__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08006199nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08006200 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201{
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006202 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203 struct file *filp = NULL;
Jeff Layton21179d82012-08-21 08:03:32 -04006204 struct file_lock *file_lock = NULL;
Al Virob37ad282006-10-19 23:28:59 -07006205 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07006206 int err;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006207 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
6208
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
6210 (long long) locku->lu_offset,
6211 (long long) locku->lu_length);
6212
6213 if (check_lock_length(locku->lu_offset, locku->lu_length))
6214 return nfserr_inval;
6215
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006216 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03006217 &locku->lu_stateid, NFS4_LOCK_STID,
6218 &stp, nn);
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04006219 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220 goto out;
Trond Myklebust11b91642014-07-29 21:34:08 -04006221 filp = find_any_file(stp->st_stid.sc_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006222 if (!filp) {
6223 status = nfserr_lock_range;
Trond Myklebust858cc572014-07-29 21:34:16 -04006224 goto put_stateid;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04006225 }
Jeff Layton21179d82012-08-21 08:03:32 -04006226 file_lock = locks_alloc_lock();
6227 if (!file_lock) {
6228 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
6229 status = nfserr_jukebox;
Trond Myklebustde186432014-07-10 14:07:26 -04006230 goto fput;
Jeff Layton21179d82012-08-21 08:03:32 -04006231 }
Kinglong Mee6cd90662014-08-15 08:02:55 +08006232
Jeff Layton21179d82012-08-21 08:03:32 -04006233 file_lock->fl_type = F_UNLCK;
Kinglong Meeaef95832014-08-22 10:18:44 -04006234 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(stp->st_stateowner));
Jeff Layton21179d82012-08-21 08:03:32 -04006235 file_lock->fl_pid = current->tgid;
6236 file_lock->fl_file = filp;
6237 file_lock->fl_flags = FL_POSIX;
6238 file_lock->fl_lmops = &nfsd_posix_mng_ops;
6239 file_lock->fl_start = locku->lu_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
Jeff Layton21179d82012-08-21 08:03:32 -04006241 file_lock->fl_end = last_byte_offset(locku->lu_offset,
6242 locku->lu_length);
6243 nfs4_transform_lock_offset(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244
Jeff Layton21179d82012-08-21 08:03:32 -04006245 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07006246 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05006247 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248 goto out_nfserr;
6249 }
Jeff Layton9767feb2015-10-01 09:05:50 -04006250 nfs4_inc_and_copy_stateid(&locku->lu_stateid, &stp->st_stid);
Trond Myklebustde186432014-07-10 14:07:26 -04006251fput:
6252 fput(filp);
Trond Myklebust858cc572014-07-29 21:34:16 -04006253put_stateid:
Oleg Drokinfeb9dad2016-06-14 23:28:04 -04006254 mutex_unlock(&stp->st_mutex);
Trond Myklebust858cc572014-07-29 21:34:16 -04006255 nfs4_put_stid(&stp->st_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256out:
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04006257 nfsd4_bump_seqid(cstate, status);
Jeff Layton21179d82012-08-21 08:03:32 -04006258 if (file_lock)
6259 locks_free_lock(file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260 return status;
6261
6262out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07006263 status = nfserrno(err);
Trond Myklebustde186432014-07-10 14:07:26 -04006264 goto fput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265}
6266
6267/*
6268 * returns
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006269 * true: locks held by lockowner
6270 * false: no locks held by lockowner
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271 */
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006272static bool
6273check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274{
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006275 struct file_lock *fl;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006276 int status = false;
6277 struct file *filp = find_any_file(fp);
6278 struct inode *inode;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006279 struct file_lock_context *flctx;
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006280
6281 if (!filp) {
6282 /* Any valid lock stateid should have some sort of access */
6283 WARN_ON_ONCE(1);
6284 return status;
6285 }
6286
6287 inode = file_inode(filp);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006288 flctx = inode->i_flctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006290 if (flctx && !list_empty_careful(&flctx->flc_posix)) {
Jeff Layton6109c852015-01-16 15:05:57 -05006291 spin_lock(&flctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05006292 list_for_each_entry(fl, &flctx->flc_posix, fl_list) {
6293 if (fl->fl_owner == (fl_owner_t)lowner) {
6294 status = true;
6295 break;
6296 }
J. Bruce Fields796dadf2006-01-18 17:43:22 -08006297 }
Jeff Layton6109c852015-01-16 15:05:57 -05006298 spin_unlock(&flctx->flc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299 }
Jeff Laytonf9c00c32014-07-23 16:17:41 -04006300 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301 return status;
6302}
6303
Al Virob37ad282006-10-19 23:28:59 -07006304__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08006305nfsd4_release_lockowner(struct svc_rqst *rqstp,
6306 struct nfsd4_compound_state *cstate,
6307 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308{
6309 clientid_t *clid = &rlockowner->rl_clientid;
Jeff Layton882e9d22014-07-29 21:34:37 -04006310 struct nfs4_stateowner *sop;
6311 struct nfs4_lockowner *lo = NULL;
J. Bruce Fieldsdcef0412011-09-07 16:06:42 -04006312 struct nfs4_ol_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313 struct xdr_netobj *owner = &rlockowner->rl_owner;
Trond Myklebustd4f04892014-07-29 21:34:36 -04006314 unsigned int hashval = ownerstr_hashval(owner);
Al Virob37ad282006-10-19 23:28:59 -07006315 __be32 status;
Stanislav Kinsbursky7f2210f2012-11-14 18:21:05 +03006316 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Trond Myklebustc58c6612014-07-29 21:34:35 -04006317 struct nfs4_client *clp;
Chuck Lever88584812016-07-13 16:40:14 -04006318 LIST_HEAD (reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319
6320 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
6321 clid->cl_boot, clid->cl_id);
6322
Jeff Layton4b24ca72014-06-30 11:48:44 -04006323 status = lookup_clientid(clid, cstate, nn);
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006324 if (status)
Trond Myklebust51f5e782014-07-30 08:27:27 -04006325 return status;
J. Bruce Fields9b2ef622012-12-03 17:24:41 -05006326
Trond Myklebustd4f04892014-07-29 21:34:36 -04006327 clp = cstate->clp;
Jeff Laytonfd449072014-06-30 11:48:41 -04006328 /* Find the matching lock stateowner */
Trond Myklebustd4f04892014-07-29 21:34:36 -04006329 spin_lock(&clp->cl_lock);
Jeff Layton882e9d22014-07-29 21:34:37 -04006330 list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval],
Trond Myklebustd4f04892014-07-29 21:34:36 -04006331 so_strhash) {
Jeff Layton882e9d22014-07-29 21:34:37 -04006332
6333 if (sop->so_is_open_owner || !same_owner_str(sop, owner))
J. Bruce Fields16bfdaaf2011-11-07 17:23:30 -05006334 continue;
Jeff Laytonfd449072014-06-30 11:48:41 -04006335
Jeff Layton882e9d22014-07-29 21:34:37 -04006336 /* see if there are still any locks associated with it */
6337 lo = lockowner(sop);
6338 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
6339 if (check_for_locks(stp->st_stid.sc_file, lo)) {
6340 status = nfserr_locks_held;
6341 spin_unlock(&clp->cl_lock);
Trond Myklebust51f5e782014-07-30 08:27:27 -04006342 return status;
Jeff Layton882e9d22014-07-29 21:34:37 -04006343 }
Jeff Layton5adfd882014-07-29 21:34:31 -04006344 }
Jeff Layton882e9d22014-07-29 21:34:37 -04006345
Kinglong Meeb5971af2014-08-22 10:18:43 -04006346 nfs4_get_stateowner(sop);
Jeff Layton882e9d22014-07-29 21:34:37 -04006347 break;
Jeff Laytonfd449072014-06-30 11:48:41 -04006348 }
Chuck Lever88584812016-07-13 16:40:14 -04006349 if (!lo) {
6350 spin_unlock(&clp->cl_lock);
6351 return status;
6352 }
6353
6354 unhash_lockowner_locked(lo);
6355 while (!list_empty(&lo->lo_owner.so_stateids)) {
6356 stp = list_first_entry(&lo->lo_owner.so_stateids,
6357 struct nfs4_ol_stateid,
6358 st_perstateowner);
6359 WARN_ON(!unhash_lock_stateid(stp));
6360 put_ol_stateid_locked(stp, &reaplist);
6361 }
Trond Myklebustc58c6612014-07-29 21:34:35 -04006362 spin_unlock(&clp->cl_lock);
Chuck Lever88584812016-07-13 16:40:14 -04006363 free_ol_stateid_reaplist(&reaplist);
Jeff Laytone294c4c2018-03-16 11:32:02 -04006364 remove_blocked_locks(lo);
Chuck Lever88584812016-07-13 16:40:14 -04006365 nfs4_put_stateowner(&lo->lo_owner);
6366
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367 return status;
6368}
6369
6370static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07006371alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372{
NeilBrowna55370a2005-06-23 22:03:52 -07006373 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374}
6375
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006376bool
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006377nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn)
NeilBrownc7b9a452005-06-23 22:04:30 -07006378{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006379 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -07006380
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006381 crp = nfsd4_find_reclaim_client(name, nn);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006382 return (crp && crp->cr_clp);
NeilBrownc7b9a452005-06-23 22:04:30 -07006383}
6384
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385/*
6386 * failure => all reset bets are off, nfserr_no_grace...
6387 */
Jeff Layton772a9bb2012-11-12 15:00:54 -05006388struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006389nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390{
6391 unsigned int strhashval;
Jeff Layton772a9bb2012-11-12 15:00:54 -05006392 struct nfs4_client_reclaim *crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393
NeilBrowna55370a2005-06-23 22:03:52 -07006394 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
6395 crp = alloc_reclaim();
Jeff Layton772a9bb2012-11-12 15:00:54 -05006396 if (crp) {
6397 strhashval = clientstr_hashval(name);
6398 INIT_LIST_HEAD(&crp->cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006399 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
Jeff Layton772a9bb2012-11-12 15:00:54 -05006400 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -05006401 crp->cr_clp = NULL;
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006402 nn->reclaim_str_hashtbl_size++;
Jeff Layton772a9bb2012-11-12 15:00:54 -05006403 }
6404 return crp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405}
6406
Jeff Layton2a4317c2012-03-21 16:42:43 -04006407void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006408nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
Jeff Laytonce30e532012-11-12 15:00:53 -05006409{
6410 list_del(&crp->cr_strhash);
6411 kfree(crp);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006412 nn->reclaim_str_hashtbl_size--;
Jeff Laytonce30e532012-11-12 15:00:53 -05006413}
6414
6415void
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006416nfs4_release_reclaim(struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417{
6418 struct nfs4_client_reclaim *crp = NULL;
6419 int i;
6420
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006422 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
6423 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424 struct nfs4_client_reclaim, cr_strhash);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006425 nfs4_remove_reclaim_record(crp, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426 }
6427 }
J. Bruce Fields063b0fb2012-11-25 14:48:10 -05006428 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429}
6430
6431/*
6432 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
Jeff Layton2a4317c2012-03-21 16:42:43 -04006433struct nfs4_client_reclaim *
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006434nfsd4_find_reclaim_client(const char *recdir, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435{
6436 unsigned int strhashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 struct nfs4_client_reclaim *crp = NULL;
6438
Jeff Layton278c9312012-11-12 15:00:52 -05006439 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440
Jeff Layton278c9312012-11-12 15:00:52 -05006441 strhashval = clientstr_hashval(recdir);
Stanislav Kinsbursky52e19c02012-11-14 18:21:16 +03006442 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
Jeff Layton278c9312012-11-12 15:00:52 -05006443 if (same_name(crp->cr_recdir, recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444 return crp;
6445 }
6446 }
6447 return NULL;
6448}
6449
6450/*
6451* Called from OPEN. Look for clientid in reclaim list.
6452*/
Al Virob37ad282006-10-19 23:28:59 -07006453__be32
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006454nfs4_check_open_reclaim(clientid_t *clid,
6455 struct nfsd4_compound_state *cstate,
6456 struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457{
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006458 __be32 status;
Jeff Laytona52d7262012-03-21 09:52:02 -04006459
6460 /* find clientid in conf_id_hashtbl */
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006461 status = lookup_clientid(clid, cstate, nn);
6462 if (status)
Jeff Laytona52d7262012-03-21 09:52:02 -04006463 return nfserr_reclaim_bad;
6464
Jeff Layton3b3e7b72014-09-12 16:40:22 -04006465 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags))
6466 return nfserr_no_grace;
6467
Trond Myklebust0fe492d2014-06-30 11:48:47 -04006468 if (nfsd4_client_record_check(cstate->clp))
6469 return nfserr_reclaim_bad;
6470
6471 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472}
6473
Bryan Schumaker65178db2011-11-01 13:35:21 -04006474#ifdef CONFIG_NFSD_FAULT_INJECTION
Jeff Layton016200c2014-07-30 08:27:21 -04006475static inline void
6476put_client(struct nfs4_client *clp)
6477{
6478 atomic_dec(&clp->cl_refcount);
6479}
6480
Jeff Layton285abde2014-07-30 08:27:24 -04006481static struct nfs4_client *
6482nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
6483{
6484 struct nfs4_client *clp;
6485 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6486 nfsd_net_id);
6487
6488 if (!nfsd_netns_ready(nn))
6489 return NULL;
6490
6491 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6492 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
6493 return clp;
6494 }
6495 return NULL;
6496}
6497
Jeff Layton7ec0e362014-07-30 08:27:17 -04006498u64
Jeff Layton285abde2014-07-30 08:27:24 -04006499nfsd_inject_print_clients(void)
Jeff Layton7ec0e362014-07-30 08:27:17 -04006500{
6501 struct nfs4_client *clp;
6502 u64 count = 0;
6503 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6504 nfsd_net_id);
6505 char buf[INET6_ADDRSTRLEN];
6506
6507 if (!nfsd_netns_ready(nn))
6508 return 0;
6509
6510 spin_lock(&nn->client_lock);
6511 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6512 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
6513 pr_info("NFS Client: %s\n", buf);
6514 ++count;
6515 }
6516 spin_unlock(&nn->client_lock);
6517
6518 return count;
6519}
Bryan Schumaker65178db2011-11-01 13:35:21 -04006520
Jeff Laytona0926d12014-07-30 08:27:18 -04006521u64
Jeff Layton285abde2014-07-30 08:27:24 -04006522nfsd_inject_forget_client(struct sockaddr_storage *addr, size_t addr_size)
Jeff Laytona0926d12014-07-30 08:27:18 -04006523{
6524 u64 count = 0;
6525 struct nfs4_client *clp;
6526 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6527 nfsd_net_id);
6528
6529 if (!nfsd_netns_ready(nn))
6530 return count;
6531
6532 spin_lock(&nn->client_lock);
6533 clp = nfsd_find_client(addr, addr_size);
6534 if (clp) {
6535 if (mark_client_expired_locked(clp) == nfs_ok)
6536 ++count;
6537 else
6538 clp = NULL;
6539 }
6540 spin_unlock(&nn->client_lock);
6541
6542 if (clp)
6543 expire_client(clp);
6544
6545 return count;
6546}
6547
Jeff Layton69fc9ed2014-07-30 08:27:19 -04006548u64
Jeff Layton285abde2014-07-30 08:27:24 -04006549nfsd_inject_forget_clients(u64 max)
Jeff Layton69fc9ed2014-07-30 08:27:19 -04006550{
6551 u64 count = 0;
6552 struct nfs4_client *clp, *next;
6553 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6554 nfsd_net_id);
6555 LIST_HEAD(reaplist);
6556
6557 if (!nfsd_netns_ready(nn))
6558 return count;
6559
6560 spin_lock(&nn->client_lock);
6561 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
6562 if (mark_client_expired_locked(clp) == nfs_ok) {
6563 list_add(&clp->cl_lru, &reaplist);
6564 if (max != 0 && ++count >= max)
6565 break;
6566 }
6567 }
6568 spin_unlock(&nn->client_lock);
6569
6570 list_for_each_entry_safe(clp, next, &reaplist, cl_lru)
6571 expire_client(clp);
6572
6573 return count;
6574}
6575
Bryan Schumaker184c1842012-11-29 11:40:44 -05006576static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
6577 const char *type)
6578{
6579 char buf[INET6_ADDRSTRLEN];
Bryan Schumaker0a5c33e2012-12-07 16:17:28 -05006580 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
Bryan Schumaker184c1842012-11-29 11:40:44 -05006581 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
6582}
6583
Jeff Layton016200c2014-07-30 08:27:21 -04006584static void
6585nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid *lst,
6586 struct list_head *collect)
6587{
6588 struct nfs4_client *clp = lst->st_stid.sc_client;
6589 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6590 nfsd_net_id);
6591
6592 if (!collect)
6593 return;
6594
6595 lockdep_assert_held(&nn->client_lock);
6596 atomic_inc(&clp->cl_refcount);
6597 list_add(&lst->st_locks, collect);
6598}
6599
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006600static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
Jeff Layton3738d502014-07-30 08:27:20 -04006601 struct list_head *collect,
Jeff Laytone8568732015-08-24 12:41:47 -04006602 bool (*func)(struct nfs4_ol_stateid *))
Bryan Schumakerfc291712012-11-29 11:40:40 -05006603{
6604 struct nfs4_openowner *oop;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006605 struct nfs4_ol_stateid *stp, *st_next;
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006606 struct nfs4_ol_stateid *lst, *lst_next;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006607 u64 count = 0;
6608
Jeff Layton016200c2014-07-30 08:27:21 -04006609 spin_lock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006610 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
Trond Myklebust3c87b9b2014-06-30 11:48:38 -04006611 list_for_each_entry_safe(stp, st_next,
6612 &oop->oo_owner.so_stateids, st_perstateowner) {
6613 list_for_each_entry_safe(lst, lst_next,
6614 &stp->st_locks, st_locks) {
Jeff Layton3738d502014-07-30 08:27:20 -04006615 if (func) {
Jeff Laytone8568732015-08-24 12:41:47 -04006616 if (func(lst))
6617 nfsd_inject_add_lock_to_list(lst,
6618 collect);
Jeff Layton3738d502014-07-30 08:27:20 -04006619 }
Jeff Layton016200c2014-07-30 08:27:21 -04006620 ++count;
6621 /*
6622 * Despite the fact that these functions deal
6623 * with 64-bit integers for "count", we must
6624 * ensure that it doesn't blow up the
6625 * clp->cl_refcount. Throw a warning if we
6626 * start to approach INT_MAX here.
6627 */
6628 WARN_ON_ONCE(count == (INT_MAX / 2));
6629 if (count == max)
6630 goto out;
Bryan Schumakerfc291712012-11-29 11:40:40 -05006631 }
6632 }
6633 }
Jeff Layton016200c2014-07-30 08:27:21 -04006634out:
6635 spin_unlock(&clp->cl_lock);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006636
6637 return count;
6638}
6639
Jeff Layton016200c2014-07-30 08:27:21 -04006640static u64
6641nfsd_collect_client_locks(struct nfs4_client *clp, struct list_head *collect,
6642 u64 max)
Bryan Schumakerfc291712012-11-29 11:40:40 -05006643{
Jeff Layton016200c2014-07-30 08:27:21 -04006644 return nfsd_foreach_client_lock(clp, max, collect, unhash_lock_stateid);
Bryan Schumakerfc291712012-11-29 11:40:40 -05006645}
6646
Jeff Layton016200c2014-07-30 08:27:21 -04006647static u64
6648nfsd_print_client_locks(struct nfs4_client *clp)
Bryan Schumaker184c1842012-11-29 11:40:44 -05006649{
Jeff Layton016200c2014-07-30 08:27:21 -04006650 u64 count = nfsd_foreach_client_lock(clp, 0, NULL, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006651 nfsd_print_count(clp, count, "locked files");
6652 return count;
6653}
6654
Jeff Layton016200c2014-07-30 08:27:21 -04006655u64
Jeff Layton285abde2014-07-30 08:27:24 -04006656nfsd_inject_print_locks(void)
Jeff Layton016200c2014-07-30 08:27:21 -04006657{
6658 struct nfs4_client *clp;
6659 u64 count = 0;
6660 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6661 nfsd_net_id);
6662
6663 if (!nfsd_netns_ready(nn))
6664 return 0;
6665
6666 spin_lock(&nn->client_lock);
6667 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6668 count += nfsd_print_client_locks(clp);
6669 spin_unlock(&nn->client_lock);
6670
6671 return count;
6672}
6673
6674static void
6675nfsd_reap_locks(struct list_head *reaplist)
6676{
6677 struct nfs4_client *clp;
6678 struct nfs4_ol_stateid *stp, *next;
6679
6680 list_for_each_entry_safe(stp, next, reaplist, st_locks) {
6681 list_del_init(&stp->st_locks);
6682 clp = stp->st_stid.sc_client;
6683 nfs4_put_stid(&stp->st_stid);
6684 put_client(clp);
6685 }
6686}
6687
6688u64
Jeff Layton285abde2014-07-30 08:27:24 -04006689nfsd_inject_forget_client_locks(struct sockaddr_storage *addr, size_t addr_size)
Jeff Layton016200c2014-07-30 08:27:21 -04006690{
6691 unsigned int count = 0;
6692 struct nfs4_client *clp;
6693 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6694 nfsd_net_id);
6695 LIST_HEAD(reaplist);
6696
6697 if (!nfsd_netns_ready(nn))
6698 return count;
6699
6700 spin_lock(&nn->client_lock);
6701 clp = nfsd_find_client(addr, addr_size);
6702 if (clp)
6703 count = nfsd_collect_client_locks(clp, &reaplist, 0);
6704 spin_unlock(&nn->client_lock);
6705 nfsd_reap_locks(&reaplist);
6706 return count;
6707}
6708
6709u64
Jeff Layton285abde2014-07-30 08:27:24 -04006710nfsd_inject_forget_locks(u64 max)
Jeff Layton016200c2014-07-30 08:27:21 -04006711{
6712 u64 count = 0;
6713 struct nfs4_client *clp;
6714 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6715 nfsd_net_id);
6716 LIST_HEAD(reaplist);
6717
6718 if (!nfsd_netns_ready(nn))
6719 return count;
6720
6721 spin_lock(&nn->client_lock);
6722 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6723 count += nfsd_collect_client_locks(clp, &reaplist, max - count);
6724 if (max != 0 && count >= max)
6725 break;
6726 }
6727 spin_unlock(&nn->client_lock);
6728 nfsd_reap_locks(&reaplist);
6729 return count;
6730}
6731
Jeff Layton82e05ef2014-07-30 08:27:22 -04006732static u64
6733nfsd_foreach_client_openowner(struct nfs4_client *clp, u64 max,
6734 struct list_head *collect,
6735 void (*func)(struct nfs4_openowner *))
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006736{
6737 struct nfs4_openowner *oop, *next;
Jeff Layton82e05ef2014-07-30 08:27:22 -04006738 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6739 nfsd_net_id);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006740 u64 count = 0;
6741
Jeff Layton82e05ef2014-07-30 08:27:22 -04006742 lockdep_assert_held(&nn->client_lock);
6743
6744 spin_lock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006745 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
Jeff Layton82e05ef2014-07-30 08:27:22 -04006746 if (func) {
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006747 func(oop);
Jeff Layton82e05ef2014-07-30 08:27:22 -04006748 if (collect) {
6749 atomic_inc(&clp->cl_refcount);
6750 list_add(&oop->oo_perclient, collect);
6751 }
6752 }
6753 ++count;
6754 /*
6755 * Despite the fact that these functions deal with
6756 * 64-bit integers for "count", we must ensure that
6757 * it doesn't blow up the clp->cl_refcount. Throw a
6758 * warning if we start to approach INT_MAX here.
6759 */
6760 WARN_ON_ONCE(count == (INT_MAX / 2));
6761 if (count == max)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006762 break;
6763 }
Jeff Layton82e05ef2014-07-30 08:27:22 -04006764 spin_unlock(&clp->cl_lock);
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006765
6766 return count;
6767}
6768
Jeff Layton82e05ef2014-07-30 08:27:22 -04006769static u64
6770nfsd_print_client_openowners(struct nfs4_client *clp)
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006771{
Jeff Layton82e05ef2014-07-30 08:27:22 -04006772 u64 count = nfsd_foreach_client_openowner(clp, 0, NULL, NULL);
6773
6774 nfsd_print_count(clp, count, "openowners");
6775 return count;
Bryan Schumaker4dbdbda2012-11-29 11:40:41 -05006776}
6777
Jeff Layton82e05ef2014-07-30 08:27:22 -04006778static u64
6779nfsd_collect_client_openowners(struct nfs4_client *clp,
6780 struct list_head *collect, u64 max)
Bryan Schumaker184c1842012-11-29 11:40:44 -05006781{
Jeff Layton82e05ef2014-07-30 08:27:22 -04006782 return nfsd_foreach_client_openowner(clp, max, collect,
6783 unhash_openowner_locked);
6784}
6785
6786u64
Jeff Layton285abde2014-07-30 08:27:24 -04006787nfsd_inject_print_openowners(void)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006788{
6789 struct nfs4_client *clp;
6790 u64 count = 0;
6791 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6792 nfsd_net_id);
6793
6794 if (!nfsd_netns_ready(nn))
6795 return 0;
6796
6797 spin_lock(&nn->client_lock);
6798 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6799 count += nfsd_print_client_openowners(clp);
6800 spin_unlock(&nn->client_lock);
6801
6802 return count;
6803}
6804
6805static void
6806nfsd_reap_openowners(struct list_head *reaplist)
6807{
6808 struct nfs4_client *clp;
6809 struct nfs4_openowner *oop, *next;
6810
6811 list_for_each_entry_safe(oop, next, reaplist, oo_perclient) {
6812 list_del_init(&oop->oo_perclient);
6813 clp = oop->oo_owner.so_client;
6814 release_openowner(oop);
6815 put_client(clp);
6816 }
6817}
6818
6819u64
Jeff Layton285abde2014-07-30 08:27:24 -04006820nfsd_inject_forget_client_openowners(struct sockaddr_storage *addr,
6821 size_t addr_size)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006822{
6823 unsigned int count = 0;
6824 struct nfs4_client *clp;
6825 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6826 nfsd_net_id);
6827 LIST_HEAD(reaplist);
6828
6829 if (!nfsd_netns_ready(nn))
6830 return count;
6831
6832 spin_lock(&nn->client_lock);
6833 clp = nfsd_find_client(addr, addr_size);
6834 if (clp)
6835 count = nfsd_collect_client_openowners(clp, &reaplist, 0);
6836 spin_unlock(&nn->client_lock);
6837 nfsd_reap_openowners(&reaplist);
6838 return count;
6839}
6840
6841u64
Jeff Layton285abde2014-07-30 08:27:24 -04006842nfsd_inject_forget_openowners(u64 max)
Jeff Layton82e05ef2014-07-30 08:27:22 -04006843{
6844 u64 count = 0;
6845 struct nfs4_client *clp;
6846 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6847 nfsd_net_id);
6848 LIST_HEAD(reaplist);
6849
6850 if (!nfsd_netns_ready(nn))
6851 return count;
6852
6853 spin_lock(&nn->client_lock);
6854 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6855 count += nfsd_collect_client_openowners(clp, &reaplist,
6856 max - count);
6857 if (max != 0 && count >= max)
6858 break;
6859 }
6860 spin_unlock(&nn->client_lock);
6861 nfsd_reap_openowners(&reaplist);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006862 return count;
6863}
6864
Bryan Schumaker269de302012-11-29 11:40:42 -05006865static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
6866 struct list_head *victims)
6867{
6868 struct nfs4_delegation *dp, *next;
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006869 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6870 nfsd_net_id);
Bryan Schumaker269de302012-11-29 11:40:42 -05006871 u64 count = 0;
6872
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006873 lockdep_assert_held(&nn->client_lock);
6874
6875 spin_lock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05006876 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
Jeff Laytondff13992014-07-08 14:02:49 -04006877 if (victims) {
6878 /*
6879 * It's not safe to mess with delegations that have a
6880 * non-zero dl_time. They might have already been broken
6881 * and could be processed by the laundromat outside of
6882 * the state_lock. Just leave them be.
6883 */
6884 if (dp->dl_time != 0)
6885 continue;
6886
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006887 atomic_inc(&clp->cl_refcount);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04006888 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04006889 list_add(&dp->dl_recall_lru, victims);
Jeff Laytondff13992014-07-08 14:02:49 -04006890 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006891 ++count;
6892 /*
6893 * Despite the fact that these functions deal with
6894 * 64-bit integers for "count", we must ensure that
6895 * it doesn't blow up the clp->cl_refcount. Throw a
6896 * warning if we start to approach INT_MAX here.
6897 */
6898 WARN_ON_ONCE(count == (INT_MAX / 2));
6899 if (count == max)
Bryan Schumaker269de302012-11-29 11:40:42 -05006900 break;
6901 }
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006902 spin_unlock(&state_lock);
Bryan Schumaker269de302012-11-29 11:40:42 -05006903 return count;
6904}
6905
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006906static u64
6907nfsd_print_client_delegations(struct nfs4_client *clp)
Bryan Schumaker269de302012-11-29 11:40:42 -05006908{
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006909 u64 count = nfsd_find_all_delegations(clp, 0, NULL);
Bryan Schumaker184c1842012-11-29 11:40:44 -05006910
6911 nfsd_print_count(clp, count, "delegations");
6912 return count;
6913}
6914
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006915u64
Jeff Layton285abde2014-07-30 08:27:24 -04006916nfsd_inject_print_delegations(void)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006917{
6918 struct nfs4_client *clp;
6919 u64 count = 0;
6920 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6921 nfsd_net_id);
6922
6923 if (!nfsd_netns_ready(nn))
6924 return 0;
6925
6926 spin_lock(&nn->client_lock);
6927 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6928 count += nfsd_print_client_delegations(clp);
6929 spin_unlock(&nn->client_lock);
6930
6931 return count;
6932}
6933
6934static void
6935nfsd_forget_delegations(struct list_head *reaplist)
6936{
6937 struct nfs4_client *clp;
6938 struct nfs4_delegation *dp, *next;
6939
6940 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
6941 list_del_init(&dp->dl_recall_lru);
6942 clp = dp->dl_stid.sc_client;
6943 revoke_delegation(dp);
6944 put_client(clp);
6945 }
6946}
6947
6948u64
Jeff Layton285abde2014-07-30 08:27:24 -04006949nfsd_inject_forget_client_delegations(struct sockaddr_storage *addr,
6950 size_t addr_size)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006951{
6952 u64 count = 0;
6953 struct nfs4_client *clp;
6954 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6955 nfsd_net_id);
6956 LIST_HEAD(reaplist);
6957
6958 if (!nfsd_netns_ready(nn))
6959 return count;
6960
6961 spin_lock(&nn->client_lock);
6962 clp = nfsd_find_client(addr, addr_size);
6963 if (clp)
6964 count = nfsd_find_all_delegations(clp, 0, &reaplist);
6965 spin_unlock(&nn->client_lock);
6966
6967 nfsd_forget_delegations(&reaplist);
6968 return count;
6969}
6970
6971u64
Jeff Layton285abde2014-07-30 08:27:24 -04006972nfsd_inject_forget_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04006973{
6974 u64 count = 0;
6975 struct nfs4_client *clp;
6976 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6977 nfsd_net_id);
6978 LIST_HEAD(reaplist);
6979
6980 if (!nfsd_netns_ready(nn))
6981 return count;
6982
6983 spin_lock(&nn->client_lock);
6984 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6985 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
6986 if (max != 0 && count >= max)
6987 break;
6988 }
6989 spin_unlock(&nn->client_lock);
6990 nfsd_forget_delegations(&reaplist);
6991 return count;
6992}
6993
6994static void
6995nfsd_recall_delegations(struct list_head *reaplist)
6996{
6997 struct nfs4_client *clp;
6998 struct nfs4_delegation *dp, *next;
6999
7000 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
7001 list_del_init(&dp->dl_recall_lru);
7002 clp = dp->dl_stid.sc_client;
7003 /*
7004 * We skipped all entries that had a zero dl_time before,
7005 * so we can now reset the dl_time back to 0. If a delegation
7006 * break comes in now, then it won't make any difference since
7007 * we're recalling it either way.
7008 */
7009 spin_lock(&state_lock);
7010 dp->dl_time = 0;
7011 spin_unlock(&state_lock);
7012 nfsd_break_one_deleg(dp);
7013 put_client(clp);
7014 }
7015}
7016
7017u64
Jeff Layton285abde2014-07-30 08:27:24 -04007018nfsd_inject_recall_client_delegations(struct sockaddr_storage *addr,
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007019 size_t addr_size)
7020{
7021 u64 count = 0;
7022 struct nfs4_client *clp;
7023 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7024 nfsd_net_id);
7025 LIST_HEAD(reaplist);
7026
7027 if (!nfsd_netns_ready(nn))
7028 return count;
7029
7030 spin_lock(&nn->client_lock);
7031 clp = nfsd_find_client(addr, addr_size);
7032 if (clp)
7033 count = nfsd_find_all_delegations(clp, 0, &reaplist);
7034 spin_unlock(&nn->client_lock);
7035
7036 nfsd_recall_delegations(&reaplist);
7037 return count;
7038}
7039
7040u64
Jeff Layton285abde2014-07-30 08:27:24 -04007041nfsd_inject_recall_delegations(u64 max)
Jeff Layton98d5c7c2014-07-30 08:27:23 -04007042{
7043 u64 count = 0;
7044 struct nfs4_client *clp, *next;
7045 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
7046 nfsd_net_id);
7047 LIST_HEAD(reaplist);
7048
7049 if (!nfsd_netns_ready(nn))
7050 return count;
7051
7052 spin_lock(&nn->client_lock);
7053 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
7054 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
7055 if (max != 0 && ++count >= max)
7056 break;
7057 }
7058 spin_unlock(&nn->client_lock);
7059 nfsd_recall_delegations(&reaplist);
7060 return count;
7061}
Bryan Schumaker65178db2011-11-01 13:35:21 -04007062#endif /* CONFIG_NFSD_FAULT_INJECTION */
7063
Meelap Shahc2f1a552007-07-17 04:04:39 -07007064/*
7065 * Since the lifetime of a delegation isn't limited to that of an open, a
7066 * client may quite reasonably hang on to a delegation as long as it has
7067 * the inode cached. This becomes an obvious problem the first time a
7068 * client's inode cache approaches the size of the server's total memory.
7069 *
7070 * For now we avoid this problem by imposing a hard limit on the number
7071 * of delegations, which varies according to the server's memory size.
7072 */
7073static void
7074set_max_delegations(void)
7075{
7076 /*
7077 * Allow at most 4 delegations per megabyte of RAM. Quick
7078 * estimates suggest that in the worst case (where every delegation
7079 * is for a different inode), a delegation could take about 1.5K,
7080 * giving a worst case usage of about 6% of memory.
7081 */
7082 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
7083}
7084
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007085static int nfs4_state_create_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007086{
7087 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7088 int i;
7089
7090 nn->conf_id_hashtbl = kmalloc(sizeof(struct list_head) *
7091 CLIENT_HASH_SIZE, GFP_KERNEL);
7092 if (!nn->conf_id_hashtbl)
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007093 goto err;
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007094 nn->unconf_id_hashtbl = kmalloc(sizeof(struct list_head) *
7095 CLIENT_HASH_SIZE, GFP_KERNEL);
7096 if (!nn->unconf_id_hashtbl)
7097 goto err_unconf_id;
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007098 nn->sessionid_hashtbl = kmalloc(sizeof(struct list_head) *
7099 SESSION_HASH_SIZE, GFP_KERNEL);
7100 if (!nn->sessionid_hashtbl)
7101 goto err_sessionid;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007102
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007103 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007104 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007105 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007106 }
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007107 for (i = 0; i < SESSION_HASH_SIZE; i++)
7108 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007109 nn->conf_name_tree = RB_ROOT;
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007110 nn->unconf_name_tree = RB_ROOT;
Vasily Averin3b774232017-11-13 07:25:40 +03007111 nn->boot_time = get_seconds();
7112 nn->grace_ended = false;
7113 nn->nfsd4_manager.block_opens = true;
7114 INIT_LIST_HEAD(&nn->nfsd4_manager.list);
Stanislav Kinsbursky5ed58bb2012-11-14 18:21:56 +03007115 INIT_LIST_HEAD(&nn->client_lru);
Stanislav Kinsbursky73758fed2012-11-14 18:22:01 +03007116 INIT_LIST_HEAD(&nn->close_lru);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007117 INIT_LIST_HEAD(&nn->del_recall_lru);
Stanislav Kinsburskyc9a49622012-11-26 15:21:58 +03007118 spin_lock_init(&nn->client_lock);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007119
Jeff Layton0cc11a62016-10-20 09:34:31 -04007120 spin_lock_init(&nn->blocked_locks_lock);
7121 INIT_LIST_HEAD(&nn->blocked_locks_lru);
7122
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007123 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007124 get_net(net);
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007125
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007126 return 0;
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007127
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007128err_sessionid:
Stanislav Kinsbursky9b531132012-11-14 18:21:41 +03007129 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007130err_unconf_id:
7131 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky382a62e2012-11-14 18:21:26 +03007132err:
7133 return -ENOMEM;
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007134}
7135
7136static void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007137nfs4_state_destroy_net(struct net *net)
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007138{
7139 int i;
7140 struct nfs4_client *clp = NULL;
7141 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
7142
7143 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7144 while (!list_empty(&nn->conf_id_hashtbl[i])) {
7145 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7146 destroy_client(clp);
7147 }
7148 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007149
Jeff Laytone294c4c2018-03-16 11:32:02 -04007150 WARN_ON(!list_empty(&nn->blocked_locks_lru));
7151
Kinglong Mee2b905632014-03-26 22:09:30 +08007152 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
7153 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
7154 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
7155 destroy_client(clp);
7156 }
Stanislav Kinsburskya99454a2012-11-14 18:21:36 +03007157 }
7158
Stanislav Kinsbursky1872de02012-11-14 18:21:51 +03007159 kfree(nn->sessionid_hashtbl);
Stanislav Kinsbursky0a7ec372012-11-14 18:21:31 +03007160 kfree(nn->unconf_id_hashtbl);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007161 kfree(nn->conf_id_hashtbl);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007162 put_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007163}
7164
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007165int
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007166nfs4_state_start_net(struct net *net)
NeilBrownac4d8ff22005-06-23 22:03:30 -07007167{
Stanislav Kinsbursky5e1533c2012-07-25 16:56:58 +04007168 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007169 int ret;
7170
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007171 ret = nfs4_state_create_net(net);
Stanislav Kinsbursky8daae4d2012-11-14 18:21:21 +03007172 if (ret)
7173 return ret;
Jeff Laytond4318ac2014-09-12 16:40:21 -04007174 locks_start_grace(net, &nn->nfsd4_manager);
7175 nfsd4_client_tracking_init(net);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007176 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %p)\n",
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03007177 nn->nfsd4_grace, net);
7178 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007179 return 0;
7180}
7181
7182/* initialization to perform when the nfsd service is started: */
7183
7184int
7185nfs4_state_start(void)
7186{
7187 int ret;
7188
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007189 ret = set_callback_cred();
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007190 if (ret)
Kinglong Meed4bda742017-02-05 09:57:07 +08007191 return ret;
7192
Jeff Layton51a54562015-08-20 07:17:01 -04007193 laundry_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, "nfsd4");
Jeff Laytona6d6b782012-03-05 11:42:36 -05007194 if (laundry_wq == NULL) {
7195 ret = -ENOMEM;
Kinglong Meed4bda742017-02-05 09:57:07 +08007196 goto out_cleanup_cred;
Jeff Laytona6d6b782012-03-05 11:42:36 -05007197 }
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007198 ret = nfsd4_create_callback_queue();
7199 if (ret)
7200 goto out_free_laundry;
Stanislav Kinsbursky09121282012-11-14 18:22:17 +03007201
Meelap Shahc2f1a552007-07-17 04:04:39 -07007202 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007203 return 0;
Stanislav Kinsburskyd85ed442012-11-26 15:22:13 +03007204
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007205out_free_laundry:
7206 destroy_workqueue(laundry_wq);
Kinglong Meed4bda742017-02-05 09:57:07 +08007207out_cleanup_cred:
7208 cleanup_callback_cred();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05007209 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210}
7211
Stanislav Kinsburskyf252bc62012-11-26 15:22:18 +03007212void
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007213nfs4_state_shutdown_net(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007215 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216 struct list_head *pos, *next, reaplist;
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007217 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007219 cancel_delayed_work_sync(&nn->laundromat_work);
7220 locks_end_grace(&nn->nfsd4_manager);
Jeff Laytonac55fdc2012-11-12 15:00:56 -05007221
Linus Torvalds1da177e2005-04-16 15:20:36 -07007222 INIT_LIST_HEAD(&reaplist);
Benny Halevycdc97502014-05-30 09:09:30 -04007223 spin_lock(&state_lock);
J. Bruce Fieldse8c69d12013-03-21 15:19:33 -04007224 list_for_each_safe(pos, next, &nn->del_recall_lru) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton3fcbbd22015-08-24 12:41:48 -04007226 WARN_ON(!unhash_delegation_locked(dp));
Jeff Layton42690672014-07-25 07:34:20 -04007227 list_add(&dp->dl_recall_lru, &reaplist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228 }
Benny Halevycdc97502014-05-30 09:09:30 -04007229 spin_unlock(&state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230 list_for_each_safe(pos, next, &reaplist) {
7231 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
Jeff Layton42690672014-07-25 07:34:20 -04007232 list_del_init(&dp->dl_recall_lru);
Sachin Bhamare8287f002015-04-27 14:50:14 +02007233 put_clnt_odstate(dp->dl_clnt_odstate);
Jeff Laytonafbda402014-08-09 10:22:41 -04007234 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
Trond Myklebust60116952014-07-29 21:34:06 -04007235 nfs4_put_stid(&dp->dl_stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236 }
7237
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +03007238 nfsd4_client_tracking_exit(net);
Stanislav Kinsbursky4dce0ac2012-11-26 15:22:08 +03007239 nfs4_state_destroy_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240}
7241
7242void
7243nfs4_state_shutdown(void)
7244{
NeilBrown5e8d5c22006-04-10 22:55:37 -07007245 destroy_workqueue(laundry_wq);
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04007246 nfsd4_destroy_callback_queue();
Kinglong Meed4bda742017-02-05 09:57:07 +08007247 cleanup_callback_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007248}
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007249
7250static void
7251get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7252{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007253 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
7254 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007255}
7256
7257static void
7258put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
7259{
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01007260 if (cstate->minorversion) {
7261 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
7262 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
7263 }
7264}
7265
7266void
7267clear_current_stateid(struct nfsd4_compound_state *cstate)
7268{
7269 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007270}
7271
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007272/*
7273 * functions to set current state id
7274 */
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007275void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007276nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
7277{
7278 put_stateid(cstate, &odp->od_stateid);
7279}
7280
7281void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007282nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
7283{
7284 put_stateid(cstate, &open->op_stateid);
7285}
7286
7287void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007288nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
7289{
7290 put_stateid(cstate, &close->cl_stateid);
7291}
7292
7293void
7294nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
7295{
7296 put_stateid(cstate, &lock->lk_resp_stateid);
7297}
7298
7299/*
7300 * functions to consume current state id
7301 */
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007302
7303void
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01007304nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
7305{
7306 get_stateid(cstate, &odp->od_stateid);
7307}
7308
7309void
7310nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
7311{
7312 get_stateid(cstate, &drp->dr_stateid);
7313}
7314
7315void
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01007316nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
7317{
7318 get_stateid(cstate, &fsp->fr_stateid);
7319}
7320
7321void
7322nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
7323{
7324 get_stateid(cstate, &setattr->sa_stateid);
7325}
7326
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007327void
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007328nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
7329{
7330 get_stateid(cstate, &close->cl_stateid);
7331}
7332
7333void
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007334nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007335{
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01007336 get_stateid(cstate, &locku->lu_stateid);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01007337}
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01007338
7339void
7340nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
7341{
7342 get_stateid(cstate, &read->rd_stateid);
7343}
7344
7345void
7346nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
7347{
7348 get_stateid(cstate, &write->wr_stateid);
7349}