rpc: change comments to assertions
[deliverable/linux.git] / fs / nfsd / nfs4state.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2* 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
aceaf78d 35#include <linux/file.h>
b89f4321 36#include <linux/fs.h>
5a0e3ad6 37#include <linux/slab.h>
0964a3d3 38#include <linux/namei.h>
c2f1a551 39#include <linux/swap.h>
17456804 40#include <linux/pagemap.h>
7df302f7 41#include <linux/ratelimit.h>
68e76ad0 42#include <linux/sunrpc/svcauth_gss.h>
5976687a 43#include <linux/sunrpc/addr.h>
6282cd56 44#include <linux/hash.h>
9a74af21 45#include "xdr4.h"
06b332a5 46#include "xdr4cb.h"
0a3adade 47#include "vfs.h"
bfa4b365 48#include "current_stateid.h"
1da177e4 49
5e1533c7
SK
50#include "netns.h"
51
1da177e4
LT
52#define NFSDDBG_FACILITY NFSDDBG_PROC
53
f32f3c2d
BF
54#define all_ones {{~0,~0},~0}
55static const stateid_t one_stateid = {
56 .si_generation = ~0,
57 .si_opaque = all_ones,
58};
59static const stateid_t zero_stateid = {
60 /* all fields zero */
61};
19ff0f28
TM
62static const stateid_t currentstateid = {
63 .si_generation = 1,
64};
f32f3c2d 65
ec6b5d7b 66static u64 current_sessionid = 1;
fd39ca9a 67
f32f3c2d
BF
68#define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
69#define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
19ff0f28 70#define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
1da177e4 71
1da177e4 72/* forward declarations */
f9c00c3a 73static bool check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner);
6011695d 74static void nfs4_free_ol_stateid(struct nfs4_stid *stid);
1da177e4 75
8b671b80
BF
76/* Locking: */
77
8b671b80
BF
78/*
79 * Currently used for the del_recall_lru and file hash table. In an
80 * effort to decrease the scope of the client_mutex, this spinlock may
81 * eventually cover more:
82 */
cdc97505 83static DEFINE_SPINLOCK(state_lock);
8b671b80 84
b401be22
JL
85/*
86 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
87 * the refcount on the open stateid to drop.
88 */
89static DECLARE_WAIT_QUEUE_HEAD(close_wq);
90
abf1135b
CH
91static struct kmem_cache *openowner_slab;
92static struct kmem_cache *lockowner_slab;
93static struct kmem_cache *file_slab;
94static struct kmem_cache *stateid_slab;
95static struct kmem_cache *deleg_slab;
e60d4398 96
66b2b9b2 97static void free_session(struct nfsd4_session *);
508dc6e1 98
0162ac2b
CH
99static struct nfsd4_callback_ops nfsd4_cb_recall_ops;
100
f0f51f5c 101static bool is_session_dead(struct nfsd4_session *ses)
66b2b9b2 102{
f0f51f5c 103 return ses->se_flags & NFS4_SESSION_DEAD;
66b2b9b2
BF
104}
105
f0f51f5c 106static __be32 mark_session_dead_locked(struct nfsd4_session *ses, int ref_held_by_me)
508dc6e1 107{
f0f51f5c 108 if (atomic_read(&ses->se_ref) > ref_held_by_me)
66b2b9b2
BF
109 return nfserr_jukebox;
110 ses->se_flags |= NFS4_SESSION_DEAD;
111 return nfs_ok;
508dc6e1
BH
112}
113
221a6876
BF
114static bool is_client_expired(struct nfs4_client *clp)
115{
116 return clp->cl_time == 0;
117}
118
221a6876
BF
119static __be32 get_client_locked(struct nfs4_client *clp)
120{
0a880a28
TM
121 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
122
123 lockdep_assert_held(&nn->client_lock);
124
221a6876
BF
125 if (is_client_expired(clp))
126 return nfserr_expired;
127 atomic_inc(&clp->cl_refcount);
128 return nfs_ok;
129}
130
131/* must be called under the client_lock */
132static inline void
133renew_client_locked(struct nfs4_client *clp)
134{
135 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
136
137 if (is_client_expired(clp)) {
138 WARN_ON(1);
139 printk("%s: client (clientid %08x/%08x) already expired\n",
140 __func__,
141 clp->cl_clientid.cl_boot,
142 clp->cl_clientid.cl_id);
143 return;
144 }
145
146 dprintk("renewing client (clientid %08x/%08x)\n",
147 clp->cl_clientid.cl_boot,
148 clp->cl_clientid.cl_id);
149 list_move_tail(&clp->cl_lru, &nn->client_lru);
150 clp->cl_time = get_seconds();
151}
152
153static inline void
154renew_client(struct nfs4_client *clp)
155{
156 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
157
158 spin_lock(&nn->client_lock);
159 renew_client_locked(clp);
160 spin_unlock(&nn->client_lock);
161}
162
ba138435 163static void put_client_renew_locked(struct nfs4_client *clp)
221a6876 164{
0a880a28
TM
165 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
166
167 lockdep_assert_held(&nn->client_lock);
168
221a6876
BF
169 if (!atomic_dec_and_test(&clp->cl_refcount))
170 return;
171 if (!is_client_expired(clp))
172 renew_client_locked(clp);
173}
174
4b24ca7d
JL
175static void put_client_renew(struct nfs4_client *clp)
176{
177 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
178
d6c249b4
JL
179 if (!atomic_dec_and_lock(&clp->cl_refcount, &nn->client_lock))
180 return;
181 if (!is_client_expired(clp))
182 renew_client_locked(clp);
4b24ca7d
JL
183 spin_unlock(&nn->client_lock);
184}
185
d4e19e70
TM
186static __be32 nfsd4_get_session_locked(struct nfsd4_session *ses)
187{
188 __be32 status;
189
190 if (is_session_dead(ses))
191 return nfserr_badsession;
192 status = get_client_locked(ses->se_client);
193 if (status)
194 return status;
195 atomic_inc(&ses->se_ref);
196 return nfs_ok;
197}
198
199static void nfsd4_put_session_locked(struct nfsd4_session *ses)
200{
201 struct nfs4_client *clp = ses->se_client;
0a880a28
TM
202 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
203
204 lockdep_assert_held(&nn->client_lock);
d4e19e70
TM
205
206 if (atomic_dec_and_test(&ses->se_ref) && is_session_dead(ses))
207 free_session(ses);
208 put_client_renew_locked(clp);
209}
210
211static void nfsd4_put_session(struct nfsd4_session *ses)
212{
213 struct nfs4_client *clp = ses->se_client;
214 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
215
216 spin_lock(&nn->client_lock);
217 nfsd4_put_session_locked(ses);
218 spin_unlock(&nn->client_lock);
219}
220
b5971afa
KM
221static inline struct nfs4_stateowner *
222nfs4_get_stateowner(struct nfs4_stateowner *sop)
223{
224 atomic_inc(&sop->so_count);
225 return sop;
226}
227
7ffb5880 228static int
d4f0489f 229same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner)
7ffb5880
TM
230{
231 return (sop->so_owner.len == owner->len) &&
d4f0489f 232 0 == memcmp(sop->so_owner.data, owner->data, owner->len);
7ffb5880
TM
233}
234
235static struct nfs4_openowner *
236find_openstateowner_str_locked(unsigned int hashval, struct nfsd4_open *open,
d4f0489f 237 struct nfs4_client *clp)
7ffb5880
TM
238{
239 struct nfs4_stateowner *so;
7ffb5880 240
d4f0489f 241 lockdep_assert_held(&clp->cl_lock);
7ffb5880 242
d4f0489f
TM
243 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[hashval],
244 so_strhash) {
7ffb5880
TM
245 if (!so->so_is_open_owner)
246 continue;
b5971afa
KM
247 if (same_owner_str(so, &open->op_owner))
248 return openowner(nfs4_get_stateowner(so));
7ffb5880
TM
249 }
250 return NULL;
251}
252
253static struct nfs4_openowner *
254find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
d4f0489f 255 struct nfs4_client *clp)
7ffb5880
TM
256{
257 struct nfs4_openowner *oo;
258
d4f0489f
TM
259 spin_lock(&clp->cl_lock);
260 oo = find_openstateowner_str_locked(hashval, open, clp);
261 spin_unlock(&clp->cl_lock);
7ffb5880
TM
262 return oo;
263}
264
1da177e4
LT
265static inline u32
266opaque_hashval(const void *ptr, int nbytes)
267{
268 unsigned char *cptr = (unsigned char *) ptr;
269
270 u32 x = 0;
271 while (nbytes--) {
272 x *= 37;
273 x += *cptr++;
274 }
275 return x;
276}
277
32513b40
BF
278static void nfsd4_free_file(struct nfs4_file *f)
279{
280 kmem_cache_free(file_slab, f);
281}
282
13cd2184
N
283static inline void
284put_nfs4_file(struct nfs4_file *fi)
285{
02e1215f
JL
286 might_lock(&state_lock);
287
cdc97505 288 if (atomic_dec_and_lock(&fi->fi_ref, &state_lock)) {
89876f8c 289 hlist_del(&fi->fi_hash);
cdc97505 290 spin_unlock(&state_lock);
32513b40 291 nfsd4_free_file(fi);
8b671b80 292 }
13cd2184
N
293}
294
295static inline void
296get_nfs4_file(struct nfs4_file *fi)
297{
8b671b80 298 atomic_inc(&fi->fi_ref);
13cd2184
N
299}
300
de18643d
TM
301static struct file *
302__nfs4_get_fd(struct nfs4_file *f, int oflag)
303{
304 if (f->fi_fds[oflag])
305 return get_file(f->fi_fds[oflag]);
306 return NULL;
307}
308
309static struct file *
310find_writeable_file_locked(struct nfs4_file *f)
311{
312 struct file *ret;
313
314 lockdep_assert_held(&f->fi_lock);
315
316 ret = __nfs4_get_fd(f, O_WRONLY);
317 if (!ret)
318 ret = __nfs4_get_fd(f, O_RDWR);
319 return ret;
320}
321
322static struct file *
323find_writeable_file(struct nfs4_file *f)
324{
325 struct file *ret;
326
327 spin_lock(&f->fi_lock);
328 ret = find_writeable_file_locked(f);
329 spin_unlock(&f->fi_lock);
330
331 return ret;
332}
333
334static struct file *find_readable_file_locked(struct nfs4_file *f)
335{
336 struct file *ret;
337
338 lockdep_assert_held(&f->fi_lock);
339
340 ret = __nfs4_get_fd(f, O_RDONLY);
341 if (!ret)
342 ret = __nfs4_get_fd(f, O_RDWR);
343 return ret;
344}
345
346static struct file *
347find_readable_file(struct nfs4_file *f)
348{
349 struct file *ret;
350
351 spin_lock(&f->fi_lock);
352 ret = find_readable_file_locked(f);
353 spin_unlock(&f->fi_lock);
354
355 return ret;
356}
357
358static struct file *
359find_any_file(struct nfs4_file *f)
360{
361 struct file *ret;
362
363 spin_lock(&f->fi_lock);
364 ret = __nfs4_get_fd(f, O_RDWR);
365 if (!ret) {
366 ret = __nfs4_get_fd(f, O_WRONLY);
367 if (!ret)
368 ret = __nfs4_get_fd(f, O_RDONLY);
369 }
370 spin_unlock(&f->fi_lock);
371 return ret;
372}
373
02a3508d 374static atomic_long_t num_delegations;
697ce9be 375unsigned long max_delegations;
ef0f3390
N
376
377/*
378 * Open owner state (share locks)
379 */
380
16bfdaaf
BF
381/* hash tables for lock and open owners */
382#define OWNER_HASH_BITS 8
383#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
384#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
ef0f3390 385
d4f0489f 386static unsigned int ownerstr_hashval(struct xdr_netobj *ownername)
ddc04c41
BF
387{
388 unsigned int ret;
389
390 ret = opaque_hashval(ownername->data, ownername->len);
16bfdaaf 391 return ret & OWNER_HASH_MASK;
ddc04c41 392}
ef0f3390 393
ef0f3390
N
394/* hash table for nfs4_file */
395#define FILE_HASH_BITS 8
396#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
35079582 397
ca943217 398static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
ddc04c41 399{
ca943217
TM
400 return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
401}
402
403static unsigned int file_hashval(struct knfsd_fh *fh)
404{
405 return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
406}
407
408static bool nfsd_fh_match(struct knfsd_fh *fh1, struct knfsd_fh *fh2)
409{
410 return fh1->fh_size == fh2->fh_size &&
411 !memcmp(fh1->fh_base.fh_pad,
412 fh2->fh_base.fh_pad,
413 fh1->fh_size);
ddc04c41
BF
414}
415
89876f8c 416static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
ef0f3390 417
12659651
JL
418static void
419__nfs4_file_get_access(struct nfs4_file *fp, u32 access)
3477565e 420{
7214e860
JL
421 lockdep_assert_held(&fp->fi_lock);
422
12659651
JL
423 if (access & NFS4_SHARE_ACCESS_WRITE)
424 atomic_inc(&fp->fi_access[O_WRONLY]);
425 if (access & NFS4_SHARE_ACCESS_READ)
426 atomic_inc(&fp->fi_access[O_RDONLY]);
3477565e
BF
427}
428
12659651
JL
429static __be32
430nfs4_file_get_access(struct nfs4_file *fp, u32 access)
998db52c 431{
7214e860
JL
432 lockdep_assert_held(&fp->fi_lock);
433
12659651
JL
434 /* Does this access mode make sense? */
435 if (access & ~NFS4_SHARE_ACCESS_BOTH)
436 return nfserr_inval;
437
baeb4ff0
JL
438 /* Does it conflict with a deny mode already set? */
439 if ((access & fp->fi_share_deny) != 0)
440 return nfserr_share_denied;
441
12659651
JL
442 __nfs4_file_get_access(fp, access);
443 return nfs_ok;
998db52c
BF
444}
445
baeb4ff0
JL
446static __be32 nfs4_file_check_deny(struct nfs4_file *fp, u32 deny)
447{
448 /* Common case is that there is no deny mode. */
449 if (deny) {
450 /* Does this deny mode make sense? */
451 if (deny & ~NFS4_SHARE_DENY_BOTH)
452 return nfserr_inval;
453
454 if ((deny & NFS4_SHARE_DENY_READ) &&
455 atomic_read(&fp->fi_access[O_RDONLY]))
456 return nfserr_share_denied;
457
458 if ((deny & NFS4_SHARE_DENY_WRITE) &&
459 atomic_read(&fp->fi_access[O_WRONLY]))
460 return nfserr_share_denied;
461 }
462 return nfs_ok;
463}
464
998db52c 465static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
f9d7562f 466{
de18643d
TM
467 might_lock(&fp->fi_lock);
468
469 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) {
470 struct file *f1 = NULL;
471 struct file *f2 = NULL;
472
6d338b51 473 swap(f1, fp->fi_fds[oflag]);
0c7c3e67 474 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
6d338b51 475 swap(f2, fp->fi_fds[O_RDWR]);
de18643d
TM
476 spin_unlock(&fp->fi_lock);
477 if (f1)
478 fput(f1);
479 if (f2)
480 fput(f2);
f9d7562f
BF
481 }
482}
483
12659651 484static void nfs4_file_put_access(struct nfs4_file *fp, u32 access)
998db52c 485{
12659651
JL
486 WARN_ON_ONCE(access & ~NFS4_SHARE_ACCESS_BOTH);
487
488 if (access & NFS4_SHARE_ACCESS_WRITE)
998db52c 489 __nfs4_file_put_access(fp, O_WRONLY);
12659651
JL
490 if (access & NFS4_SHARE_ACCESS_READ)
491 __nfs4_file_put_access(fp, O_RDONLY);
998db52c
BF
492}
493
6011695d
TM
494static struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl,
495 struct kmem_cache *slab)
2a74aba7 496{
3abdb607 497 struct nfs4_stid *stid;
6136d2b4 498 int new_id;
2a74aba7 499
f8338834 500 stid = kmem_cache_zalloc(slab, GFP_KERNEL);
3abdb607
BF
501 if (!stid)
502 return NULL;
503
4770d722
JL
504 idr_preload(GFP_KERNEL);
505 spin_lock(&cl->cl_lock);
506 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 0, 0, GFP_NOWAIT);
507 spin_unlock(&cl->cl_lock);
508 idr_preload_end();
ebd6c707 509 if (new_id < 0)
3abdb607 510 goto out_free;
2a74aba7 511 stid->sc_client = cl;
3abdb607
BF
512 stid->sc_stateid.si_opaque.so_id = new_id;
513 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
2a74aba7 514 /* Will be incremented before return to client: */
72c0b0fb 515 atomic_set(&stid->sc_count, 1);
996e0938 516
996e0938 517 /*
3abdb607
BF
518 * It shouldn't be a problem to reuse an opaque stateid value.
519 * I don't think it is for 4.1. But with 4.0 I worry that, for
520 * example, a stray write retransmission could be accepted by
521 * the server when it should have been rejected. Therefore,
522 * adopt a trick from the sctp code to attempt to maximize the
523 * amount of time until an id is reused, by ensuring they always
524 * "increase" (mod INT_MAX):
996e0938 525 */
3abdb607
BF
526 return stid;
527out_free:
2c44a234 528 kmem_cache_free(slab, stid);
3abdb607 529 return NULL;
2a74aba7
BF
530}
531
b49e084d 532static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
4cdc951b 533{
6011695d
TM
534 struct nfs4_stid *stid;
535 struct nfs4_ol_stateid *stp;
536
537 stid = nfs4_alloc_stid(clp, stateid_slab);
538 if (!stid)
539 return NULL;
540
541 stp = openlockstateid(stid);
542 stp->st_stid.sc_free = nfs4_free_ol_stateid;
543 return stp;
544}
545
546static void nfs4_free_deleg(struct nfs4_stid *stid)
547{
6011695d
TM
548 kmem_cache_free(deleg_slab, stid);
549 atomic_long_dec(&num_delegations);
4cdc951b
BF
550}
551
6282cd56
N
552/*
553 * When we recall a delegation, we should be careful not to hand it
554 * out again straight away.
555 * To ensure this we keep a pair of bloom filters ('new' and 'old')
556 * in which the filehandles of recalled delegations are "stored".
557 * If a filehandle appear in either filter, a delegation is blocked.
558 * When a delegation is recalled, the filehandle is stored in the "new"
559 * filter.
560 * Every 30 seconds we swap the filters and clear the "new" one,
561 * unless both are empty of course.
562 *
563 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
564 * low 3 bytes as hash-table indices.
565 *
f54fe962 566 * 'blocked_delegations_lock', which is always taken in block_delegations(),
6282cd56
N
567 * is used to manage concurrent access. Testing does not need the lock
568 * except when swapping the two filters.
569 */
f54fe962 570static DEFINE_SPINLOCK(blocked_delegations_lock);
6282cd56
N
571static struct bloom_pair {
572 int entries, old_entries;
573 time_t swap_time;
574 int new; /* index into 'set' */
575 DECLARE_BITMAP(set[2], 256);
576} blocked_delegations;
577
578static int delegation_blocked(struct knfsd_fh *fh)
579{
580 u32 hash;
581 struct bloom_pair *bd = &blocked_delegations;
582
583 if (bd->entries == 0)
584 return 0;
585 if (seconds_since_boot() - bd->swap_time > 30) {
f54fe962 586 spin_lock(&blocked_delegations_lock);
6282cd56
N
587 if (seconds_since_boot() - bd->swap_time > 30) {
588 bd->entries -= bd->old_entries;
589 bd->old_entries = bd->entries;
590 memset(bd->set[bd->new], 0,
591 sizeof(bd->set[0]));
592 bd->new = 1-bd->new;
593 bd->swap_time = seconds_since_boot();
594 }
f54fe962 595 spin_unlock(&blocked_delegations_lock);
6282cd56
N
596 }
597 hash = arch_fast_hash(&fh->fh_base, fh->fh_size, 0);
598 if (test_bit(hash&255, bd->set[0]) &&
599 test_bit((hash>>8)&255, bd->set[0]) &&
600 test_bit((hash>>16)&255, bd->set[0]))
601 return 1;
602
603 if (test_bit(hash&255, bd->set[1]) &&
604 test_bit((hash>>8)&255, bd->set[1]) &&
605 test_bit((hash>>16)&255, bd->set[1]))
606 return 1;
607
608 return 0;
609}
610
611static void block_delegations(struct knfsd_fh *fh)
612{
613 u32 hash;
614 struct bloom_pair *bd = &blocked_delegations;
615
616 hash = arch_fast_hash(&fh->fh_base, fh->fh_size, 0);
617
f54fe962 618 spin_lock(&blocked_delegations_lock);
6282cd56
N
619 __set_bit(hash&255, bd->set[bd->new]);
620 __set_bit((hash>>8)&255, bd->set[bd->new]);
621 __set_bit((hash>>16)&255, bd->set[bd->new]);
622 if (bd->entries == 0)
623 bd->swap_time = seconds_since_boot();
624 bd->entries += 1;
f54fe962 625 spin_unlock(&blocked_delegations_lock);
6282cd56
N
626}
627
1da177e4 628static struct nfs4_delegation *
f9416e28 629alloc_init_deleg(struct nfs4_client *clp, struct svc_fh *current_fh)
1da177e4
LT
630{
631 struct nfs4_delegation *dp;
02a3508d 632 long n;
1da177e4
LT
633
634 dprintk("NFSD alloc_init_deleg\n");
02a3508d
TM
635 n = atomic_long_inc_return(&num_delegations);
636 if (n < 0 || n > max_delegations)
637 goto out_dec;
6282cd56 638 if (delegation_blocked(&current_fh->fh_handle))
02a3508d 639 goto out_dec;
996e0938 640 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab));
5b2d21c1 641 if (dp == NULL)
02a3508d 642 goto out_dec;
6011695d
TM
643
644 dp->dl_stid.sc_free = nfs4_free_deleg;
2a74aba7
BF
645 /*
646 * delegation seqid's are never incremented. The 4.1 special
6136d2b4
BF
647 * meaning of seqid 0 isn't meaningful, really, but let's avoid
648 * 0 anyway just for consistency and use 1:
2a74aba7
BF
649 */
650 dp->dl_stid.sc_stateid.si_generation = 1;
ea1da636
N
651 INIT_LIST_HEAD(&dp->dl_perfile);
652 INIT_LIST_HEAD(&dp->dl_perclnt);
1da177e4 653 INIT_LIST_HEAD(&dp->dl_recall_lru);
99c41515 654 dp->dl_type = NFS4_OPEN_DELEGATE_READ;
f0b5de1b
CH
655 dp->dl_retries = 1;
656 nfsd4_init_cb(&dp->dl_recall, dp->dl_stid.sc_client,
0162ac2b 657 &nfsd4_cb_recall_ops, NFSPROC4_CLNT_CB_RECALL);
1da177e4 658 return dp;
02a3508d
TM
659out_dec:
660 atomic_long_dec(&num_delegations);
661 return NULL;
1da177e4
LT
662}
663
664void
6011695d 665nfs4_put_stid(struct nfs4_stid *s)
1da177e4 666{
11b9164a 667 struct nfs4_file *fp = s->sc_file;
6011695d
TM
668 struct nfs4_client *clp = s->sc_client;
669
4770d722
JL
670 might_lock(&clp->cl_lock);
671
b401be22
JL
672 if (!atomic_dec_and_lock(&s->sc_count, &clp->cl_lock)) {
673 wake_up_all(&close_wq);
6011695d 674 return;
b401be22 675 }
6011695d 676 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
4770d722 677 spin_unlock(&clp->cl_lock);
6011695d 678 s->sc_free(s);
11b9164a
TM
679 if (fp)
680 put_nfs4_file(fp);
1da177e4
LT
681}
682
acfdf5c3 683static void nfs4_put_deleg_lease(struct nfs4_file *fp)
1da177e4 684{
6bcc034e 685 struct file *filp = NULL;
417c6629 686
6bcc034e 687 spin_lock(&fp->fi_lock);
0c637be8 688 if (fp->fi_deleg_file && atomic_dec_and_test(&fp->fi_delegees))
6bcc034e 689 swap(filp, fp->fi_deleg_file);
6bcc034e
JL
690 spin_unlock(&fp->fi_lock);
691
692 if (filp) {
e6f5c789 693 vfs_setlease(filp, F_UNLCK, NULL, NULL);
6bcc034e 694 fput(filp);
acfdf5c3 695 }
1da177e4
LT
696}
697
6136d2b4
BF
698static void unhash_stid(struct nfs4_stid *s)
699{
3abdb607 700 s->sc_type = 0;
6136d2b4
BF
701}
702
931ee56c
BH
703static void
704hash_delegation_locked(struct nfs4_delegation *dp, struct nfs4_file *fp)
705{
cdc97505 706 lockdep_assert_held(&state_lock);
417c6629 707 lockdep_assert_held(&fp->fi_lock);
931ee56c 708
67cb1279 709 atomic_inc(&dp->dl_stid.sc_count);
3fb87d13 710 dp->dl_stid.sc_type = NFS4_DELEG_STID;
931ee56c
BH
711 list_add(&dp->dl_perfile, &fp->fi_delegations);
712 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
713}
714
1da177e4 715static void
42690676 716unhash_delegation_locked(struct nfs4_delegation *dp)
1da177e4 717{
11b9164a 718 struct nfs4_file *fp = dp->dl_stid.sc_file;
02e1215f 719
42690676
JL
720 lockdep_assert_held(&state_lock);
721
b0fc29d6 722 dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID;
d55a166c
JL
723 /* Ensure that deleg break won't try to requeue it */
724 ++dp->dl_time;
417c6629 725 spin_lock(&fp->fi_lock);
931ee56c 726 list_del_init(&dp->dl_perclnt);
1da177e4 727 list_del_init(&dp->dl_recall_lru);
02e1215f
JL
728 list_del_init(&dp->dl_perfile);
729 spin_unlock(&fp->fi_lock);
3bd64a5b
BF
730}
731
3bd64a5b
BF
732static void destroy_delegation(struct nfs4_delegation *dp)
733{
42690676
JL
734 spin_lock(&state_lock);
735 unhash_delegation_locked(dp);
736 spin_unlock(&state_lock);
afbda402 737 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
6011695d 738 nfs4_put_stid(&dp->dl_stid);
3bd64a5b
BF
739}
740
741static void revoke_delegation(struct nfs4_delegation *dp)
742{
743 struct nfs4_client *clp = dp->dl_stid.sc_client;
744
2d4a532d
JL
745 WARN_ON(!list_empty(&dp->dl_recall_lru));
746
afbda402
JL
747 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
748
3bd64a5b 749 if (clp->cl_minorversion == 0)
6011695d 750 nfs4_put_stid(&dp->dl_stid);
3bd64a5b 751 else {
3bd64a5b 752 dp->dl_stid.sc_type = NFS4_REVOKED_DELEG_STID;
2d4a532d
JL
753 spin_lock(&clp->cl_lock);
754 list_add(&dp->dl_recall_lru, &clp->cl_revoked);
755 spin_unlock(&clp->cl_lock);
3bd64a5b
BF
756 }
757}
758
1da177e4
LT
759/*
760 * SETCLIENTID state
761 */
762
ddc04c41
BF
763static unsigned int clientid_hashval(u32 id)
764{
765 return id & CLIENT_HASH_MASK;
766}
767
768static unsigned int clientstr_hashval(const char *name)
769{
770 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
771}
772
f9d7562f
BF
773/*
774 * We store the NONE, READ, WRITE, and BOTH bits separately in the
775 * st_{access,deny}_bmap field of the stateid, in order to track not
776 * only what share bits are currently in force, but also what
777 * combinations of share bits previous opens have used. This allows us
778 * to enforce the recommendation of rfc 3530 14.2.19 that the server
779 * return an error if the client attempt to downgrade to a combination
780 * of share bits not explicable by closing some of its previous opens.
781 *
782 * XXX: This enforcement is actually incomplete, since we don't keep
783 * track of access/deny bit combinations; so, e.g., we allow:
784 *
785 * OPEN allow read, deny write
786 * OPEN allow both, deny none
787 * DOWNGRADE allow read, deny none
788 *
789 * which we should reject.
790 */
5ae037e5
JL
791static unsigned int
792bmap_to_share_mode(unsigned long bmap) {
f9d7562f 793 int i;
5ae037e5 794 unsigned int access = 0;
f9d7562f 795
f9d7562f
BF
796 for (i = 1; i < 4; i++) {
797 if (test_bit(i, &bmap))
5ae037e5 798 access |= i;
f9d7562f 799 }
5ae037e5 800 return access;
f9d7562f
BF
801}
802
82c5ff1b
JL
803/* set share access for a given stateid */
804static inline void
805set_access(u32 access, struct nfs4_ol_stateid *stp)
806{
c11c591f
JL
807 unsigned char mask = 1 << access;
808
809 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
810 stp->st_access_bmap |= mask;
82c5ff1b
JL
811}
812
813/* clear share access for a given stateid */
814static inline void
815clear_access(u32 access, struct nfs4_ol_stateid *stp)
816{
c11c591f
JL
817 unsigned char mask = 1 << access;
818
819 WARN_ON_ONCE(access > NFS4_SHARE_ACCESS_BOTH);
820 stp->st_access_bmap &= ~mask;
82c5ff1b
JL
821}
822
823/* test whether a given stateid has access */
824static inline bool
825test_access(u32 access, struct nfs4_ol_stateid *stp)
826{
c11c591f
JL
827 unsigned char mask = 1 << access;
828
829 return (bool)(stp->st_access_bmap & mask);
82c5ff1b
JL
830}
831
ce0fc43c
JL
832/* set share deny for a given stateid */
833static inline void
c11c591f 834set_deny(u32 deny, struct nfs4_ol_stateid *stp)
ce0fc43c 835{
c11c591f
JL
836 unsigned char mask = 1 << deny;
837
838 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
839 stp->st_deny_bmap |= mask;
ce0fc43c
JL
840}
841
842/* clear share deny for a given stateid */
843static inline void
c11c591f 844clear_deny(u32 deny, struct nfs4_ol_stateid *stp)
ce0fc43c 845{
c11c591f
JL
846 unsigned char mask = 1 << deny;
847
848 WARN_ON_ONCE(deny > NFS4_SHARE_DENY_BOTH);
849 stp->st_deny_bmap &= ~mask;
ce0fc43c
JL
850}
851
852/* test whether a given stateid is denying specific access */
853static inline bool
c11c591f 854test_deny(u32 deny, struct nfs4_ol_stateid *stp)
ce0fc43c 855{
c11c591f
JL
856 unsigned char mask = 1 << deny;
857
858 return (bool)(stp->st_deny_bmap & mask);
f9d7562f
BF
859}
860
861static int nfs4_access_to_omode(u32 access)
862{
8f34a430 863 switch (access & NFS4_SHARE_ACCESS_BOTH) {
f9d7562f
BF
864 case NFS4_SHARE_ACCESS_READ:
865 return O_RDONLY;
866 case NFS4_SHARE_ACCESS_WRITE:
867 return O_WRONLY;
868 case NFS4_SHARE_ACCESS_BOTH:
869 return O_RDWR;
870 }
063b0fb9
BF
871 WARN_ON_ONCE(1);
872 return O_RDONLY;
f9d7562f
BF
873}
874
baeb4ff0
JL
875/*
876 * A stateid that had a deny mode associated with it is being released
877 * or downgraded. Recalculate the deny mode on the file.
878 */
879static void
880recalculate_deny_mode(struct nfs4_file *fp)
881{
882 struct nfs4_ol_stateid *stp;
883
884 spin_lock(&fp->fi_lock);
885 fp->fi_share_deny = 0;
886 list_for_each_entry(stp, &fp->fi_stateids, st_perfile)
887 fp->fi_share_deny |= bmap_to_share_mode(stp->st_deny_bmap);
888 spin_unlock(&fp->fi_lock);
889}
890
891static void
892reset_union_bmap_deny(u32 deny, struct nfs4_ol_stateid *stp)
893{
894 int i;
895 bool change = false;
896
897 for (i = 1; i < 4; i++) {
898 if ((i & deny) != i) {
899 change = true;
900 clear_deny(i, stp);
901 }
902 }
903
904 /* Recalculate per-file deny mode if there was a change */
905 if (change)
11b9164a 906 recalculate_deny_mode(stp->st_stid.sc_file);
baeb4ff0
JL
907}
908
82c5ff1b
JL
909/* release all access and file references for a given stateid */
910static void
911release_all_access(struct nfs4_ol_stateid *stp)
912{
913 int i;
11b9164a 914 struct nfs4_file *fp = stp->st_stid.sc_file;
baeb4ff0
JL
915
916 if (fp && stp->st_deny_bmap != 0)
917 recalculate_deny_mode(fp);
82c5ff1b
JL
918
919 for (i = 1; i < 4; i++) {
920 if (test_access(i, stp))
11b9164a 921 nfs4_file_put_access(stp->st_stid.sc_file, i);
82c5ff1b
JL
922 clear_access(i, stp);
923 }
924}
925
6b180f0b
JL
926static void nfs4_put_stateowner(struct nfs4_stateowner *sop)
927{
a819ecc1
JL
928 struct nfs4_client *clp = sop->so_client;
929
930 might_lock(&clp->cl_lock);
931
932 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock))
6b180f0b 933 return;
8f4b54c5 934 sop->so_ops->so_unhash(sop);
a819ecc1 935 spin_unlock(&clp->cl_lock);
6b180f0b
JL
936 kfree(sop->so_owner.data);
937 sop->so_ops->so_free(sop);
938}
939
4ae098d3 940static void unhash_ol_stateid(struct nfs4_ol_stateid *stp)
529d7b2a 941{
11b9164a 942 struct nfs4_file *fp = stp->st_stid.sc_file;
1d31a253 943
1c755dc1
JL
944 lockdep_assert_held(&stp->st_stateowner->so_client->cl_lock);
945
1d31a253 946 spin_lock(&fp->fi_lock);
529d7b2a 947 list_del(&stp->st_perfile);
1d31a253 948 spin_unlock(&fp->fi_lock);
529d7b2a
BF
949 list_del(&stp->st_perstateowner);
950}
951
6011695d 952static void nfs4_free_ol_stateid(struct nfs4_stid *stid)
529d7b2a 953{
6011695d 954 struct nfs4_ol_stateid *stp = openlockstateid(stid);
4665e2ba 955
6011695d 956 release_all_access(stp);
d3134b10
JL
957 if (stp->st_stateowner)
958 nfs4_put_stateowner(stp->st_stateowner);
6011695d 959 kmem_cache_free(stateid_slab, stid);
529d7b2a
BF
960}
961
b49e084d 962static void nfs4_free_lock_stateid(struct nfs4_stid *stid)
529d7b2a 963{
b49e084d
JL
964 struct nfs4_ol_stateid *stp = openlockstateid(stid);
965 struct nfs4_lockowner *lo = lockowner(stp->st_stateowner);
529d7b2a
BF
966 struct file *file;
967
b49e084d
JL
968 file = find_any_file(stp->st_stid.sc_file);
969 if (file)
970 filp_close(file, (fl_owner_t)lo);
971 nfs4_free_ol_stateid(stid);
972}
973
2c41beb0
JL
974/*
975 * Put the persistent reference to an already unhashed generic stateid, while
976 * holding the cl_lock. If it's the last reference, then put it onto the
977 * reaplist for later destruction.
978 */
979static void put_ol_stateid_locked(struct nfs4_ol_stateid *stp,
980 struct list_head *reaplist)
981{
982 struct nfs4_stid *s = &stp->st_stid;
983 struct nfs4_client *clp = s->sc_client;
984
985 lockdep_assert_held(&clp->cl_lock);
986
987 WARN_ON_ONCE(!list_empty(&stp->st_locks));
988
989 if (!atomic_dec_and_test(&s->sc_count)) {
990 wake_up_all(&close_wq);
991 return;
992 }
993
994 idr_remove(&clp->cl_stateids, s->sc_stateid.si_opaque.so_id);
995 list_add(&stp->st_locks, reaplist);
996}
997
3c1c995c 998static void unhash_lock_stateid(struct nfs4_ol_stateid *stp)
b49e084d 999{
1c755dc1
JL
1000 struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner);
1001
3c1c995c
JL
1002 lockdep_assert_held(&oo->oo_owner.so_client->cl_lock);
1003
1004 list_del_init(&stp->st_locks);
4ae098d3 1005 unhash_ol_stateid(stp);
6136d2b4 1006 unhash_stid(&stp->st_stid);
3c1c995c
JL
1007}
1008
1009static void release_lock_stateid(struct nfs4_ol_stateid *stp)
1010{
1011 struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner);
1012
1013 spin_lock(&oo->oo_owner.so_client->cl_lock);
1014 unhash_lock_stateid(stp);
1c755dc1 1015 spin_unlock(&oo->oo_owner.so_client->cl_lock);
6011695d 1016 nfs4_put_stid(&stp->st_stid);
529d7b2a
BF
1017}
1018
c58c6610 1019static void unhash_lockowner_locked(struct nfs4_lockowner *lo)
8f4b54c5 1020{
d4f0489f 1021 struct nfs4_client *clp = lo->lo_owner.so_client;
c58c6610 1022
d4f0489f 1023 lockdep_assert_held(&clp->cl_lock);
c58c6610 1024
8f4b54c5
JL
1025 list_del_init(&lo->lo_owner.so_strhash);
1026}
1027
2c41beb0
JL
1028/*
1029 * Free a list of generic stateids that were collected earlier after being
1030 * fully unhashed.
1031 */
1032static void
1033free_ol_stateid_reaplist(struct list_head *reaplist)
1034{
1035 struct nfs4_ol_stateid *stp;
fb94d766 1036 struct nfs4_file *fp;
2c41beb0
JL
1037
1038 might_sleep();
1039
1040 while (!list_empty(reaplist)) {
1041 stp = list_first_entry(reaplist, struct nfs4_ol_stateid,
1042 st_locks);
1043 list_del(&stp->st_locks);
fb94d766 1044 fp = stp->st_stid.sc_file;
2c41beb0 1045 stp->st_stid.sc_free(&stp->st_stid);
fb94d766
KM
1046 if (fp)
1047 put_nfs4_file(fp);
2c41beb0
JL
1048 }
1049}
1050
3c1c995c 1051static void release_lockowner(struct nfs4_lockowner *lo)
529d7b2a 1052{
d4f0489f 1053 struct nfs4_client *clp = lo->lo_owner.so_client;
dcef0413 1054 struct nfs4_ol_stateid *stp;
3c1c995c 1055 struct list_head reaplist;
529d7b2a 1056
3c1c995c 1057 INIT_LIST_HEAD(&reaplist);
c58c6610 1058
3c1c995c
JL
1059 spin_lock(&clp->cl_lock);
1060 unhash_lockowner_locked(lo);
fe0750e5
BF
1061 while (!list_empty(&lo->lo_owner.so_stateids)) {
1062 stp = list_first_entry(&lo->lo_owner.so_stateids,
dcef0413 1063 struct nfs4_ol_stateid, st_perstateowner);
3c1c995c 1064 unhash_lock_stateid(stp);
2c41beb0 1065 put_ol_stateid_locked(stp, &reaplist);
529d7b2a 1066 }
d4f0489f 1067 spin_unlock(&clp->cl_lock);
2c41beb0 1068 free_ol_stateid_reaplist(&reaplist);
6b180f0b 1069 nfs4_put_stateowner(&lo->lo_owner);
529d7b2a
BF
1070}
1071
d83017f9
JL
1072static void release_open_stateid_locks(struct nfs4_ol_stateid *open_stp,
1073 struct list_head *reaplist)
3c87b9b7
TM
1074{
1075 struct nfs4_ol_stateid *stp;
1076
1077 while (!list_empty(&open_stp->st_locks)) {
1078 stp = list_entry(open_stp->st_locks.next,
1079 struct nfs4_ol_stateid, st_locks);
d83017f9
JL
1080 unhash_lock_stateid(stp);
1081 put_ol_stateid_locked(stp, reaplist);
529d7b2a
BF
1082 }
1083}
1084
d83017f9
JL
1085static void unhash_open_stateid(struct nfs4_ol_stateid *stp,
1086 struct list_head *reaplist)
2283963f 1087{
2c41beb0
JL
1088 lockdep_assert_held(&stp->st_stid.sc_client->cl_lock);
1089
4ae098d3 1090 unhash_ol_stateid(stp);
d83017f9 1091 release_open_stateid_locks(stp, reaplist);
38c387b5
BF
1092}
1093
1094static void release_open_stateid(struct nfs4_ol_stateid *stp)
1095{
2c41beb0
JL
1096 LIST_HEAD(reaplist);
1097
1098 spin_lock(&stp->st_stid.sc_client->cl_lock);
d83017f9 1099 unhash_open_stateid(stp, &reaplist);
2c41beb0
JL
1100 put_ol_stateid_locked(stp, &reaplist);
1101 spin_unlock(&stp->st_stid.sc_client->cl_lock);
1102 free_ol_stateid_reaplist(&reaplist);
2283963f
BF
1103}
1104
7ffb5880 1105static void unhash_openowner_locked(struct nfs4_openowner *oo)
f1d110ca 1106{
d4f0489f 1107 struct nfs4_client *clp = oo->oo_owner.so_client;
7ffb5880 1108
d4f0489f 1109 lockdep_assert_held(&clp->cl_lock);
7ffb5880 1110
8f4b54c5
JL
1111 list_del_init(&oo->oo_owner.so_strhash);
1112 list_del_init(&oo->oo_perclient);
f1d110ca
BF
1113}
1114
f7a4d872
BF
1115static void release_last_closed_stateid(struct nfs4_openowner *oo)
1116{
217526e7
JL
1117 struct nfsd_net *nn = net_generic(oo->oo_owner.so_client->net,
1118 nfsd_net_id);
1119 struct nfs4_ol_stateid *s;
f7a4d872 1120
217526e7
JL
1121 spin_lock(&nn->client_lock);
1122 s = oo->oo_last_closed_stid;
f7a4d872 1123 if (s) {
d3134b10 1124 list_del_init(&oo->oo_close_lru);
f7a4d872
BF
1125 oo->oo_last_closed_stid = NULL;
1126 }
217526e7
JL
1127 spin_unlock(&nn->client_lock);
1128 if (s)
1129 nfs4_put_stid(&s->st_stid);
f7a4d872
BF
1130}
1131
2c41beb0 1132static void release_openowner(struct nfs4_openowner *oo)
8f4b54c5
JL
1133{
1134 struct nfs4_ol_stateid *stp;
d4f0489f 1135 struct nfs4_client *clp = oo->oo_owner.so_client;
2c41beb0 1136 struct list_head reaplist;
7ffb5880 1137
2c41beb0 1138 INIT_LIST_HEAD(&reaplist);
8f4b54c5 1139
2c41beb0
JL
1140 spin_lock(&clp->cl_lock);
1141 unhash_openowner_locked(oo);
8f4b54c5
JL
1142 while (!list_empty(&oo->oo_owner.so_stateids)) {
1143 stp = list_first_entry(&oo->oo_owner.so_stateids,
1144 struct nfs4_ol_stateid, st_perstateowner);
d83017f9 1145 unhash_open_stateid(stp, &reaplist);
2c41beb0 1146 put_ol_stateid_locked(stp, &reaplist);
8f4b54c5 1147 }
d4f0489f 1148 spin_unlock(&clp->cl_lock);
2c41beb0 1149 free_ol_stateid_reaplist(&reaplist);
f7a4d872 1150 release_last_closed_stateid(oo);
6b180f0b 1151 nfs4_put_stateowner(&oo->oo_owner);
f1d110ca
BF
1152}
1153
5282fd72
ME
1154static inline int
1155hash_sessionid(struct nfs4_sessionid *sessionid)
1156{
1157 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
1158
1159 return sid->sequence % SESSION_HASH_SIZE;
1160}
1161
8f199b82 1162#ifdef NFSD_DEBUG
5282fd72
ME
1163static inline void
1164dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1165{
1166 u32 *ptr = (u32 *)(&sessionid->data[0]);
1167 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
1168}
8f199b82
TM
1169#else
1170static inline void
1171dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
1172{
1173}
1174#endif
1175
9411b1d4
BF
1176/*
1177 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1178 * won't be used for replay.
1179 */
1180void nfsd4_bump_seqid(struct nfsd4_compound_state *cstate, __be32 nfserr)
1181{
1182 struct nfs4_stateowner *so = cstate->replay_owner;
1183
1184 if (nfserr == nfserr_replay_me)
1185 return;
1186
1187 if (!seqid_mutating_err(ntohl(nfserr))) {
58fb12e6 1188 nfsd4_cstate_clear_replay(cstate);
9411b1d4
BF
1189 return;
1190 }
1191 if (!so)
1192 return;
1193 if (so->so_is_open_owner)
1194 release_last_closed_stateid(openowner(so));
1195 so->so_seqid++;
1196 return;
1197}
5282fd72 1198
ec6b5d7b
AA
1199static void
1200gen_sessionid(struct nfsd4_session *ses)
1201{
1202 struct nfs4_client *clp = ses->se_client;
1203 struct nfsd4_sessionid *sid;
1204
1205 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
1206 sid->clientid = clp->cl_clientid;
1207 sid->sequence = current_sessionid++;
1208 sid->reserved = 0;
1209}
1210
1211/*
a649637c
AA
1212 * The protocol defines ca_maxresponssize_cached to include the size of
1213 * the rpc header, but all we need to cache is the data starting after
1214 * the end of the initial SEQUENCE operation--the rest we regenerate
1215 * each time. Therefore we can advertise a ca_maxresponssize_cached
1216 * value that is the number of bytes in our cache plus a few additional
1217 * bytes. In order to stay on the safe side, and not promise more than
1218 * we can cache, those additional bytes must be the minimum possible: 24
1219 * bytes of rpc header (xid through accept state, with AUTH_NULL
1220 * verifier), 12 for the compound header (with zero-length tag), and 44
1221 * for the SEQUENCE op response:
1222 */
1223#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1224
557ce264
AA
1225static void
1226free_session_slots(struct nfsd4_session *ses)
1227{
1228 int i;
1229
1230 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
1231 kfree(ses->se_slots[i]);
1232}
1233
a649637c 1234/*
efe0cb6d
BF
1235 * We don't actually need to cache the rpc and session headers, so we
1236 * can allocate a little less for each slot:
1237 */
55c760cf 1238static inline u32 slot_bytes(struct nfsd4_channel_attrs *ca)
efe0cb6d 1239{
55c760cf 1240 u32 size;
efe0cb6d 1241
55c760cf
BF
1242 if (ca->maxresp_cached < NFSD_MIN_HDR_SEQ_SZ)
1243 size = 0;
1244 else
1245 size = ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
1246 return size + sizeof(struct nfsd4_slot);
5b6feee9 1247}
ec6b5d7b 1248
5b6feee9
BF
1249/*
1250 * XXX: If we run out of reserved DRC memory we could (up to a point)
a649637c 1251 * re-negotiate active sessions and reduce their slot usage to make
42b2aa86 1252 * room for new connections. For now we just fail the create session.
ec6b5d7b 1253 */
55c760cf 1254static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca)
ec6b5d7b 1255{
55c760cf
BF
1256 u32 slotsize = slot_bytes(ca);
1257 u32 num = ca->maxreqs;
5b6feee9 1258 int avail;
ec6b5d7b 1259
5b6feee9 1260 spin_lock(&nfsd_drc_lock);
697ce9be
ZY
1261 avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION,
1262 nfsd_drc_max_mem - nfsd_drc_mem_used);
5b6feee9
BF
1263 num = min_t(int, num, avail / slotsize);
1264 nfsd_drc_mem_used += num * slotsize;
1265 spin_unlock(&nfsd_drc_lock);
ec6b5d7b 1266
5b6feee9
BF
1267 return num;
1268}
ec6b5d7b 1269
55c760cf 1270static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs *ca)
5b6feee9 1271{
55c760cf
BF
1272 int slotsize = slot_bytes(ca);
1273
4bd9b0f4 1274 spin_lock(&nfsd_drc_lock);
55c760cf 1275 nfsd_drc_mem_used -= slotsize * ca->maxreqs;
4bd9b0f4 1276 spin_unlock(&nfsd_drc_lock);
5b6feee9 1277}
ec6b5d7b 1278
60810e54
KM
1279static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fattrs,
1280 struct nfsd4_channel_attrs *battrs)
5b6feee9 1281{
60810e54
KM
1282 int numslots = fattrs->maxreqs;
1283 int slotsize = slot_bytes(fattrs);
5b6feee9
BF
1284 struct nfsd4_session *new;
1285 int mem, i;
a649637c 1286
5b6feee9
BF
1287 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
1288 + sizeof(struct nfsd4_session) > PAGE_SIZE);
1289 mem = numslots * sizeof(struct nfsd4_slot *);
ec6b5d7b 1290
5b6feee9
BF
1291 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
1292 if (!new)
1293 return NULL;
557ce264 1294 /* allocate each struct nfsd4_slot and data cache in one piece */
5b6feee9 1295 for (i = 0; i < numslots; i++) {
55c760cf 1296 new->se_slots[i] = kzalloc(slotsize, GFP_KERNEL);
5b6feee9 1297 if (!new->se_slots[i])
557ce264 1298 goto out_free;
557ce264 1299 }
60810e54
KM
1300
1301 memcpy(&new->se_fchannel, fattrs, sizeof(struct nfsd4_channel_attrs));
1302 memcpy(&new->se_bchannel, battrs, sizeof(struct nfsd4_channel_attrs));
1303
5b6feee9
BF
1304 return new;
1305out_free:
1306 while (i--)
1307 kfree(new->se_slots[i]);
1308 kfree(new);
1309 return NULL;
ec6b5d7b
AA
1310}
1311
19cf5c02
BF
1312static void free_conn(struct nfsd4_conn *c)
1313{
1314 svc_xprt_put(c->cn_xprt);
1315 kfree(c);
1316}
ec6b5d7b 1317
19cf5c02
BF
1318static void nfsd4_conn_lost(struct svc_xpt_user *u)
1319{
1320 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
1321 struct nfs4_client *clp = c->cn_session->se_client;
ec6b5d7b 1322
19cf5c02
BF
1323 spin_lock(&clp->cl_lock);
1324 if (!list_empty(&c->cn_persession)) {
1325 list_del(&c->cn_persession);
1326 free_conn(c);
1327 }
eea49806 1328 nfsd4_probe_callback(clp);
2e4b7239 1329 spin_unlock(&clp->cl_lock);
19cf5c02 1330}
ec6b5d7b 1331
d29c374c 1332static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
c7662518 1333{
c7662518 1334 struct nfsd4_conn *conn;
ec6b5d7b 1335
c7662518
BF
1336 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
1337 if (!conn)
db90681d 1338 return NULL;
c7662518
BF
1339 svc_xprt_get(rqstp->rq_xprt);
1340 conn->cn_xprt = rqstp->rq_xprt;
d29c374c 1341 conn->cn_flags = flags;
db90681d
BF
1342 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
1343 return conn;
1344}
a649637c 1345
328ead28
BF
1346static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
1347{
1348 conn->cn_session = ses;
1349 list_add(&conn->cn_persession, &ses->se_conns);
ec6b5d7b
AA
1350}
1351
db90681d 1352static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
557ce264 1353{
db90681d 1354 struct nfs4_client *clp = ses->se_client;
557ce264 1355
c7662518 1356 spin_lock(&clp->cl_lock);
328ead28 1357 __nfsd4_hash_conn(conn, ses);
c7662518 1358 spin_unlock(&clp->cl_lock);
557ce264
AA
1359}
1360
21b75b01 1361static int nfsd4_register_conn(struct nfsd4_conn *conn)
efe0cb6d 1362{
19cf5c02 1363 conn->cn_xpt_user.callback = nfsd4_conn_lost;
21b75b01 1364 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
efe0cb6d
BF
1365}
1366
e1ff371f 1367static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
ec6b5d7b 1368{
21b75b01 1369 int ret;
ec6b5d7b 1370
db90681d 1371 nfsd4_hash_conn(conn, ses);
21b75b01
BF
1372 ret = nfsd4_register_conn(conn);
1373 if (ret)
1374 /* oops; xprt is already down: */
1375 nfsd4_conn_lost(&conn->cn_xpt_user);
57a37144
BF
1376 /* We may have gained or lost a callback channel: */
1377 nfsd4_probe_callback_sync(ses->se_client);
c7662518 1378}
ec6b5d7b 1379
e1ff371f 1380static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
1d1bc8f2
BF
1381{
1382 u32 dir = NFS4_CDFC4_FORE;
1383
e1ff371f 1384 if (cses->flags & SESSION4_BACK_CHAN)
1d1bc8f2 1385 dir |= NFS4_CDFC4_BACK;
e1ff371f 1386 return alloc_conn(rqstp, dir);
1d1bc8f2
BF
1387}
1388
1389/* must be called under client_lock */
19cf5c02 1390static void nfsd4_del_conns(struct nfsd4_session *s)
c7662518 1391{
19cf5c02
BF
1392 struct nfs4_client *clp = s->se_client;
1393 struct nfsd4_conn *c;
ec6b5d7b 1394
19cf5c02
BF
1395 spin_lock(&clp->cl_lock);
1396 while (!list_empty(&s->se_conns)) {
1397 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
1398 list_del_init(&c->cn_persession);
1399 spin_unlock(&clp->cl_lock);
557ce264 1400
19cf5c02
BF
1401 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
1402 free_conn(c);
ec6b5d7b 1403
19cf5c02
BF
1404 spin_lock(&clp->cl_lock);
1405 }
1406 spin_unlock(&clp->cl_lock);
c7662518 1407}
ec6b5d7b 1408
1377b69e
BF
1409static void __free_session(struct nfsd4_session *ses)
1410{
1377b69e
BF
1411 free_session_slots(ses);
1412 kfree(ses);
1413}
1414
66b2b9b2 1415static void free_session(struct nfsd4_session *ses)
c7662518 1416{
19cf5c02 1417 nfsd4_del_conns(ses);
55c760cf 1418 nfsd4_put_drc_mem(&ses->se_fchannel);
1377b69e 1419 __free_session(ses);
c7662518
BF
1420}
1421
135ae827 1422static void init_session(struct svc_rqst *rqstp, struct nfsd4_session *new, struct nfs4_client *clp, struct nfsd4_create_session *cses)
a827bcb2 1423{
a827bcb2 1424 int idx;
1872de0e 1425 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
a827bcb2 1426
ec6b5d7b
AA
1427 new->se_client = clp;
1428 gen_sessionid(new);
ec6b5d7b 1429
c7662518
BF
1430 INIT_LIST_HEAD(&new->se_conns);
1431
ac7c46f2 1432 new->se_cb_seq_nr = 1;
ec6b5d7b 1433 new->se_flags = cses->flags;
8b5ce5cd 1434 new->se_cb_prog = cses->callback_prog;
c6bb3ca2 1435 new->se_cb_sec = cses->cb_sec;
66b2b9b2 1436 atomic_set(&new->se_ref, 0);
5b6feee9 1437 idx = hash_sessionid(&new->se_sessionid);
1872de0e 1438 list_add(&new->se_hash, &nn->sessionid_hashtbl[idx]);
4c649378 1439 spin_lock(&clp->cl_lock);
ec6b5d7b 1440 list_add(&new->se_perclnt, &clp->cl_sessions);
4c649378 1441 spin_unlock(&clp->cl_lock);
60810e54 1442
dcbeaa68 1443 if (cses->flags & SESSION4_BACK_CHAN) {
edd76786 1444 struct sockaddr *sa = svc_addr(rqstp);
dcbeaa68
BF
1445 /*
1446 * This is a little silly; with sessions there's no real
1447 * use for the callback address. Use the peer address
1448 * as a reasonable default for now, but consider fixing
1449 * the rpc client not to require an address in the
1450 * future:
1451 */
edd76786
BF
1452 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
1453 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
edd76786 1454 }
ec6b5d7b
AA
1455}
1456
9089f1b4 1457/* caller must hold client_lock */
5282fd72 1458static struct nfsd4_session *
d4e19e70 1459__find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net)
5282fd72
ME
1460{
1461 struct nfsd4_session *elem;
1462 int idx;
1872de0e 1463 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
5282fd72 1464
0a880a28
TM
1465 lockdep_assert_held(&nn->client_lock);
1466
5282fd72
ME
1467 dump_sessionid(__func__, sessionid);
1468 idx = hash_sessionid(sessionid);
5282fd72 1469 /* Search in the appropriate list */
1872de0e 1470 list_for_each_entry(elem, &nn->sessionid_hashtbl[idx], se_hash) {
5282fd72
ME
1471 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1472 NFS4_MAX_SESSIONID_LEN)) {
1473 return elem;
1474 }
1475 }
1476
1477 dprintk("%s: session not found\n", __func__);
1478 return NULL;
1479}
1480
d4e19e70
TM
1481static struct nfsd4_session *
1482find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid, struct net *net,
1483 __be32 *ret)
1484{
1485 struct nfsd4_session *session;
1486 __be32 status = nfserr_badsession;
1487
1488 session = __find_in_sessionid_hashtbl(sessionid, net);
1489 if (!session)
1490 goto out;
1491 status = nfsd4_get_session_locked(session);
1492 if (status)
1493 session = NULL;
1494out:
1495 *ret = status;
1496 return session;
1497}
1498
9089f1b4 1499/* caller must hold client_lock */
7116ed6b 1500static void
5282fd72 1501unhash_session(struct nfsd4_session *ses)
7116ed6b 1502{
0a880a28
TM
1503 struct nfs4_client *clp = ses->se_client;
1504 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1505
1506 lockdep_assert_held(&nn->client_lock);
1507
7116ed6b 1508 list_del(&ses->se_hash);
4c649378 1509 spin_lock(&ses->se_client->cl_lock);
7116ed6b 1510 list_del(&ses->se_perclnt);
4c649378 1511 spin_unlock(&ses->se_client->cl_lock);
5282fd72
ME
1512}
1513
1da177e4
LT
1514/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1515static int
2c142baa 1516STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
1da177e4 1517{
2c142baa 1518 if (clid->cl_boot == nn->boot_time)
1da177e4 1519 return 0;
60adfc50 1520 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
2c142baa 1521 clid->cl_boot, clid->cl_id, nn->boot_time);
1da177e4
LT
1522 return 1;
1523}
1524
1525/*
1526 * XXX Should we use a slab cache ?
1527 * This type of memory management is somewhat inefficient, but we use it
1528 * anyway since SETCLIENTID is not a common operation.
1529 */
35bba9a3 1530static struct nfs4_client *alloc_client(struct xdr_netobj name)
1da177e4
LT
1531{
1532 struct nfs4_client *clp;
d4f0489f 1533 int i;
1da177e4 1534
35bba9a3
BF
1535 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1536 if (clp == NULL)
1537 return NULL;
67114fe6 1538 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
d4f0489f
TM
1539 if (clp->cl_name.data == NULL)
1540 goto err_no_name;
1541 clp->cl_ownerstr_hashtbl = kmalloc(sizeof(struct list_head) *
1542 OWNER_HASH_SIZE, GFP_KERNEL);
1543 if (!clp->cl_ownerstr_hashtbl)
1544 goto err_no_hashtbl;
1545 for (i = 0; i < OWNER_HASH_SIZE; i++)
1546 INIT_LIST_HEAD(&clp->cl_ownerstr_hashtbl[i]);
35bba9a3 1547 clp->cl_name.len = name.len;
5694c93e
TM
1548 INIT_LIST_HEAD(&clp->cl_sessions);
1549 idr_init(&clp->cl_stateids);
1550 atomic_set(&clp->cl_refcount, 0);
1551 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1552 INIT_LIST_HEAD(&clp->cl_idhash);
1553 INIT_LIST_HEAD(&clp->cl_openowners);
1554 INIT_LIST_HEAD(&clp->cl_delegations);
1555 INIT_LIST_HEAD(&clp->cl_lru);
1556 INIT_LIST_HEAD(&clp->cl_callbacks);
1557 INIT_LIST_HEAD(&clp->cl_revoked);
1558 spin_lock_init(&clp->cl_lock);
1559 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
1da177e4 1560 return clp;
d4f0489f
TM
1561err_no_hashtbl:
1562 kfree(clp->cl_name.data);
1563err_no_name:
1564 kfree(clp);
1565 return NULL;
1da177e4
LT
1566}
1567
4dd86e15 1568static void
1da177e4
LT
1569free_client(struct nfs4_client *clp)
1570{
792c95dd
BF
1571 while (!list_empty(&clp->cl_sessions)) {
1572 struct nfsd4_session *ses;
1573 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1574 se_perclnt);
1575 list_del(&ses->se_perclnt);
66b2b9b2
BF
1576 WARN_ON_ONCE(atomic_read(&ses->se_ref));
1577 free_session(ses);
792c95dd 1578 }
4cb57e30 1579 rpc_destroy_wait_queue(&clp->cl_cb_waitq);
03a4e1f6 1580 free_svc_cred(&clp->cl_cred);
d4f0489f 1581 kfree(clp->cl_ownerstr_hashtbl);
1da177e4 1582 kfree(clp->cl_name.data);
2d32b29a 1583 idr_destroy(&clp->cl_stateids);
1da177e4
LT
1584 kfree(clp);
1585}
1586
84d38ac9 1587/* must be called under the client_lock */
4beb345b 1588static void
84d38ac9
BH
1589unhash_client_locked(struct nfs4_client *clp)
1590{
4beb345b 1591 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
792c95dd
BF
1592 struct nfsd4_session *ses;
1593
0a880a28
TM
1594 lockdep_assert_held(&nn->client_lock);
1595
4beb345b
TM
1596 /* Mark the client as expired! */
1597 clp->cl_time = 0;
1598 /* Make it invisible */
1599 if (!list_empty(&clp->cl_idhash)) {
1600 list_del_init(&clp->cl_idhash);
1601 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
1602 rb_erase(&clp->cl_namenode, &nn->conf_name_tree);
1603 else
1604 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
1605 }
1606 list_del_init(&clp->cl_lru);
4c649378 1607 spin_lock(&clp->cl_lock);
792c95dd
BF
1608 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1609 list_del_init(&ses->se_hash);
4c649378 1610 spin_unlock(&clp->cl_lock);
84d38ac9
BH
1611}
1612
1da177e4 1613static void
4beb345b
TM
1614unhash_client(struct nfs4_client *clp)
1615{
1616 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1617
1618 spin_lock(&nn->client_lock);
1619 unhash_client_locked(clp);
1620 spin_unlock(&nn->client_lock);
1621}
1622
97403d95
JL
1623static __be32 mark_client_expired_locked(struct nfs4_client *clp)
1624{
1625 if (atomic_read(&clp->cl_refcount))
1626 return nfserr_jukebox;
1627 unhash_client_locked(clp);
1628 return nfs_ok;
1629}
1630
4beb345b
TM
1631static void
1632__destroy_client(struct nfs4_client *clp)
1da177e4 1633{
fe0750e5 1634 struct nfs4_openowner *oo;
1da177e4 1635 struct nfs4_delegation *dp;
1da177e4
LT
1636 struct list_head reaplist;
1637
1da177e4 1638 INIT_LIST_HEAD(&reaplist);
cdc97505 1639 spin_lock(&state_lock);
ea1da636
N
1640 while (!list_empty(&clp->cl_delegations)) {
1641 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
42690676
JL
1642 unhash_delegation_locked(dp);
1643 list_add(&dp->dl_recall_lru, &reaplist);
1da177e4 1644 }
cdc97505 1645 spin_unlock(&state_lock);
1da177e4
LT
1646 while (!list_empty(&reaplist)) {
1647 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
42690676 1648 list_del_init(&dp->dl_recall_lru);
afbda402 1649 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
6011695d 1650 nfs4_put_stid(&dp->dl_stid);
1da177e4 1651 }
2d4a532d 1652 while (!list_empty(&clp->cl_revoked)) {
956c4fee 1653 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
2d4a532d 1654 list_del_init(&dp->dl_recall_lru);
6011695d 1655 nfs4_put_stid(&dp->dl_stid);
956c4fee 1656 }
ea1da636 1657 while (!list_empty(&clp->cl_openowners)) {
fe0750e5 1658 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
b5971afa 1659 nfs4_get_stateowner(&oo->oo_owner);
fe0750e5 1660 release_openowner(oo);
1da177e4 1661 }
6ff8da08 1662 nfsd4_shutdown_callback(clp);
84d38ac9
BH
1663 if (clp->cl_cb_conn.cb_xprt)
1664 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
221a6876 1665 free_client(clp);
1da177e4
LT
1666}
1667
4beb345b
TM
1668static void
1669destroy_client(struct nfs4_client *clp)
1670{
1671 unhash_client(clp);
1672 __destroy_client(clp);
1673}
1674
0d22f68f
BF
1675static void expire_client(struct nfs4_client *clp)
1676{
4beb345b 1677 unhash_client(clp);
0d22f68f 1678 nfsd4_client_record_remove(clp);
4beb345b 1679 __destroy_client(clp);
0d22f68f
BF
1680}
1681
35bba9a3
BF
1682static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1683{
1684 memcpy(target->cl_verifier.data, source->data,
1685 sizeof(target->cl_verifier.data));
1da177e4
LT
1686}
1687
35bba9a3
BF
1688static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1689{
1da177e4
LT
1690 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1691 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1692}
1693
03a4e1f6 1694static int copy_cred(struct svc_cred *target, struct svc_cred *source)
35bba9a3 1695{
03a4e1f6
BF
1696 if (source->cr_principal) {
1697 target->cr_principal =
1698 kstrdup(source->cr_principal, GFP_KERNEL);
1699 if (target->cr_principal == NULL)
1700 return -ENOMEM;
1701 } else
1702 target->cr_principal = NULL;
d5497fc6 1703 target->cr_flavor = source->cr_flavor;
1da177e4
LT
1704 target->cr_uid = source->cr_uid;
1705 target->cr_gid = source->cr_gid;
1706 target->cr_group_info = source->cr_group_info;
1707 get_group_info(target->cr_group_info);
0dc1531a
BF
1708 target->cr_gss_mech = source->cr_gss_mech;
1709 if (source->cr_gss_mech)
1710 gss_mech_get(source->cr_gss_mech);
03a4e1f6 1711 return 0;
1da177e4
LT
1712}
1713
ac55fdc4
JL
1714static long long
1715compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
1716{
1717 long long res;
1718
1719 res = o1->len - o2->len;
1720 if (res)
1721 return res;
1722 return (long long)memcmp(o1->data, o2->data, o1->len);
1723}
1724
35bba9a3 1725static int same_name(const char *n1, const char *n2)
599e0a22 1726{
a55370a3 1727 return 0 == memcmp(n1, n2, HEXDIR_LEN);
1da177e4
LT
1728}
1729
1730static int
599e0a22
BF
1731same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1732{
1733 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
1da177e4
LT
1734}
1735
1736static int
599e0a22
BF
1737same_clid(clientid_t *cl1, clientid_t *cl2)
1738{
1739 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
1da177e4
LT
1740}
1741
8fbba96e
BF
1742static bool groups_equal(struct group_info *g1, struct group_info *g2)
1743{
1744 int i;
1745
1746 if (g1->ngroups != g2->ngroups)
1747 return false;
1748 for (i=0; i<g1->ngroups; i++)
6fab8779 1749 if (!gid_eq(GROUP_AT(g1, i), GROUP_AT(g2, i)))
8fbba96e
BF
1750 return false;
1751 return true;
1752}
1753
68eb3508
BF
1754/*
1755 * RFC 3530 language requires clid_inuse be returned when the
1756 * "principal" associated with a requests differs from that previously
1757 * used. We use uid, gid's, and gss principal string as our best
1758 * approximation. We also don't want to allow non-gss use of a client
1759 * established using gss: in theory cr_principal should catch that
1760 * change, but in practice cr_principal can be null even in the gss case
1761 * since gssd doesn't always pass down a principal string.
1762 */
1763static bool is_gss_cred(struct svc_cred *cr)
1764{
1765 /* Is cr_flavor one of the gss "pseudoflavors"?: */
1766 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
1767}
1768
1769
5559b50a 1770static bool
599e0a22
BF
1771same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1772{
68eb3508 1773 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
6fab8779
EB
1774 || (!uid_eq(cr1->cr_uid, cr2->cr_uid))
1775 || (!gid_eq(cr1->cr_gid, cr2->cr_gid))
8fbba96e
BF
1776 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
1777 return false;
1778 if (cr1->cr_principal == cr2->cr_principal)
1779 return true;
1780 if (!cr1->cr_principal || !cr2->cr_principal)
1781 return false;
5559b50a 1782 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
1da177e4
LT
1783}
1784
57266a6e
BF
1785static bool svc_rqst_integrity_protected(struct svc_rqst *rqstp)
1786{
1787 struct svc_cred *cr = &rqstp->rq_cred;
1788 u32 service;
1789
c4720591
BF
1790 if (!cr->cr_gss_mech)
1791 return false;
57266a6e
BF
1792 service = gss_pseudoflavor_to_service(cr->cr_gss_mech, cr->cr_flavor);
1793 return service == RPC_GSS_SVC_INTEGRITY ||
1794 service == RPC_GSS_SVC_PRIVACY;
1795}
1796
1797static bool mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp)
1798{
1799 struct svc_cred *cr = &rqstp->rq_cred;
1800
1801 if (!cl->cl_mach_cred)
1802 return true;
1803 if (cl->cl_cred.cr_gss_mech != cr->cr_gss_mech)
1804 return false;
1805 if (!svc_rqst_integrity_protected(rqstp))
1806 return false;
1807 if (!cr->cr_principal)
1808 return false;
1809 return 0 == strcmp(cl->cl_cred.cr_principal, cr->cr_principal);
1810}
1811
294ac32e 1812static void gen_confirm(struct nfs4_client *clp, struct nfsd_net *nn)
deda2faa 1813{
ab4684d1 1814 __be32 verf[2];
1da177e4 1815
f419992c
JL
1816 /*
1817 * This is opaque to client, so no need to byte-swap. Use
1818 * __force to keep sparse happy
1819 */
1820 verf[0] = (__force __be32)get_seconds();
294ac32e 1821 verf[1] = (__force __be32)nn->clientid_counter;
ab4684d1 1822 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
1da177e4
LT
1823}
1824
294ac32e
JL
1825static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
1826{
1827 clp->cl_clientid.cl_boot = nn->boot_time;
1828 clp->cl_clientid.cl_id = nn->clientid_counter++;
1829 gen_confirm(clp, nn);
1830}
1831
4770d722
JL
1832static struct nfs4_stid *
1833find_stateid_locked(struct nfs4_client *cl, stateid_t *t)
4581d140 1834{
3abdb607
BF
1835 struct nfs4_stid *ret;
1836
1837 ret = idr_find(&cl->cl_stateids, t->si_opaque.so_id);
1838 if (!ret || !ret->sc_type)
1839 return NULL;
1840 return ret;
4d71ab87
BF
1841}
1842
4770d722
JL
1843static struct nfs4_stid *
1844find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
f459e453
BF
1845{
1846 struct nfs4_stid *s;
4d71ab87 1847
4770d722
JL
1848 spin_lock(&cl->cl_lock);
1849 s = find_stateid_locked(cl, t);
2d3f9668
TM
1850 if (s != NULL) {
1851 if (typemask & s->sc_type)
1852 atomic_inc(&s->sc_count);
1853 else
1854 s = NULL;
1855 }
4770d722
JL
1856 spin_unlock(&cl->cl_lock);
1857 return s;
4581d140
BF
1858}
1859
2216d449 1860static struct nfs4_client *create_client(struct xdr_netobj name,
b09333c4
RL
1861 struct svc_rqst *rqstp, nfs4_verifier *verf)
1862{
1863 struct nfs4_client *clp;
1864 struct sockaddr *sa = svc_addr(rqstp);
03a4e1f6 1865 int ret;
c212cecf 1866 struct net *net = SVC_NET(rqstp);
b09333c4
RL
1867
1868 clp = alloc_client(name);
1869 if (clp == NULL)
1870 return NULL;
1871
03a4e1f6
BF
1872 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1873 if (ret) {
03a4e1f6 1874 free_client(clp);
03a4e1f6 1875 return NULL;
b09333c4 1876 }
0162ac2b 1877 nfsd4_init_cb(&clp->cl_cb_null, clp, NULL, NFSPROC4_CLNT_CB_NULL);
07cd4909 1878 clp->cl_time = get_seconds();
b09333c4 1879 clear_bit(0, &clp->cl_cb_slot_busy);
b09333c4
RL
1880 copy_verf(clp, verf);
1881 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
edd76786 1882 clp->cl_cb_session = NULL;
c212cecf 1883 clp->net = net;
b09333c4
RL
1884 return clp;
1885}
1886
fd39ca9a 1887static void
ac55fdc4
JL
1888add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
1889{
1890 struct rb_node **new = &(root->rb_node), *parent = NULL;
1891 struct nfs4_client *clp;
1892
1893 while (*new) {
1894 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
1895 parent = *new;
1896
1897 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
1898 new = &((*new)->rb_left);
1899 else
1900 new = &((*new)->rb_right);
1901 }
1902
1903 rb_link_node(&new_clp->cl_namenode, parent, new);
1904 rb_insert_color(&new_clp->cl_namenode, root);
1905}
1906
1907static struct nfs4_client *
1908find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
1909{
1910 long long cmp;
1911 struct rb_node *node = root->rb_node;
1912 struct nfs4_client *clp;
1913
1914 while (node) {
1915 clp = rb_entry(node, struct nfs4_client, cl_namenode);
1916 cmp = compare_blob(&clp->cl_name, name);
1917 if (cmp > 0)
1918 node = node->rb_left;
1919 else if (cmp < 0)
1920 node = node->rb_right;
1921 else
1922 return clp;
1923 }
1924 return NULL;
1925}
1926
1927static void
1928add_to_unconfirmed(struct nfs4_client *clp)
1da177e4
LT
1929{
1930 unsigned int idhashval;
0a7ec377 1931 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1da177e4 1932
0a880a28
TM
1933 lockdep_assert_held(&nn->client_lock);
1934
ac55fdc4 1935 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
a99454aa 1936 add_clp_to_name_tree(clp, &nn->unconf_name_tree);
1da177e4 1937 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
0a7ec377 1938 list_add(&clp->cl_idhash, &nn->unconf_id_hashtbl[idhashval]);
3dbacee6 1939 renew_client_locked(clp);
1da177e4
LT
1940}
1941
fd39ca9a 1942static void
1da177e4
LT
1943move_to_confirmed(struct nfs4_client *clp)
1944{
1945 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
8daae4dc 1946 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1da177e4 1947
0a880a28
TM
1948 lockdep_assert_held(&nn->client_lock);
1949
1da177e4 1950 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
8daae4dc 1951 list_move(&clp->cl_idhash, &nn->conf_id_hashtbl[idhashval]);
a99454aa 1952 rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
382a62e7 1953 add_clp_to_name_tree(clp, &nn->conf_name_tree);
ac55fdc4 1954 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
3dbacee6 1955 renew_client_locked(clp);
1da177e4
LT
1956}
1957
1958static struct nfs4_client *
bfa85e83 1959find_client_in_id_table(struct list_head *tbl, clientid_t *clid, bool sessions)
1da177e4
LT
1960{
1961 struct nfs4_client *clp;
1962 unsigned int idhashval = clientid_hashval(clid->cl_id);
1963
bfa85e83 1964 list_for_each_entry(clp, &tbl[idhashval], cl_idhash) {
a50d2ad1 1965 if (same_clid(&clp->cl_clientid, clid)) {
d15c077e
BF
1966 if ((bool)clp->cl_minorversion != sessions)
1967 return NULL;
3dbacee6 1968 renew_client_locked(clp);
1da177e4 1969 return clp;
a50d2ad1 1970 }
1da177e4
LT
1971 }
1972 return NULL;
1973}
1974
bfa85e83
BF
1975static struct nfs4_client *
1976find_confirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
1977{
1978 struct list_head *tbl = nn->conf_id_hashtbl;
1979
0a880a28 1980 lockdep_assert_held(&nn->client_lock);
bfa85e83
BF
1981 return find_client_in_id_table(tbl, clid, sessions);
1982}
1983
1da177e4 1984static struct nfs4_client *
0a7ec377 1985find_unconfirmed_client(clientid_t *clid, bool sessions, struct nfsd_net *nn)
1da177e4 1986{
bfa85e83 1987 struct list_head *tbl = nn->unconf_id_hashtbl;
1da177e4 1988
0a880a28 1989 lockdep_assert_held(&nn->client_lock);
bfa85e83 1990 return find_client_in_id_table(tbl, clid, sessions);
1da177e4
LT
1991}
1992
6e5f15c9 1993static bool clp_used_exchangeid(struct nfs4_client *clp)
a1bcecd2 1994{
6e5f15c9 1995 return clp->cl_exchange_flags != 0;
e203d506 1996}
a1bcecd2 1997
28ce6054 1998static struct nfs4_client *
382a62e7 1999find_confirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
28ce6054 2000{
0a880a28 2001 lockdep_assert_held(&nn->client_lock);
382a62e7 2002 return find_clp_in_name_tree(name, &nn->conf_name_tree);
28ce6054
N
2003}
2004
2005static struct nfs4_client *
a99454aa 2006find_unconfirmed_client_by_name(struct xdr_netobj *name, struct nfsd_net *nn)
28ce6054 2007{
0a880a28 2008 lockdep_assert_held(&nn->client_lock);
a99454aa 2009 return find_clp_in_name_tree(name, &nn->unconf_name_tree);
28ce6054
N
2010}
2011
fd39ca9a 2012static void
6f3d772f 2013gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
1da177e4 2014{
07263f1e 2015 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
6f3d772f
TU
2016 struct sockaddr *sa = svc_addr(rqstp);
2017 u32 scopeid = rpc_get_scope_id(sa);
7077ecba
JL
2018 unsigned short expected_family;
2019
2020 /* Currently, we only support tcp and tcp6 for the callback channel */
2021 if (se->se_callback_netid_len == 3 &&
2022 !memcmp(se->se_callback_netid_val, "tcp", 3))
2023 expected_family = AF_INET;
2024 else if (se->se_callback_netid_len == 4 &&
2025 !memcmp(se->se_callback_netid_val, "tcp6", 4))
2026 expected_family = AF_INET6;
2027 else
1da177e4
LT
2028 goto out_err;
2029
c212cecf 2030 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
aa9a4ec7 2031 se->se_callback_addr_len,
07263f1e
BF
2032 (struct sockaddr *)&conn->cb_addr,
2033 sizeof(conn->cb_addr));
aa9a4ec7 2034
07263f1e 2035 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
1da177e4 2036 goto out_err;
aa9a4ec7 2037
07263f1e
BF
2038 if (conn->cb_addr.ss_family == AF_INET6)
2039 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
fbf4665f 2040
07263f1e
BF
2041 conn->cb_prog = se->se_callback_prog;
2042 conn->cb_ident = se->se_callback_ident;
849a1cf1 2043 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
1da177e4
LT
2044 return;
2045out_err:
07263f1e
BF
2046 conn->cb_addr.ss_family = AF_UNSPEC;
2047 conn->cb_addrlen = 0;
849823c5 2048 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
1da177e4
LT
2049 "will not receive delegations\n",
2050 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
2051
1da177e4
LT
2052 return;
2053}
2054
074fe897 2055/*
067e1ace 2056 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
074fe897 2057 */
b607664e 2058static void
074fe897 2059nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
074fe897 2060{
f5236013 2061 struct xdr_buf *buf = resp->xdr.buf;
557ce264
AA
2062 struct nfsd4_slot *slot = resp->cstate.slot;
2063 unsigned int base;
074fe897 2064
557ce264 2065 dprintk("--> %s slot %p\n", __func__, slot);
074fe897 2066
557ce264
AA
2067 slot->sl_opcnt = resp->opcnt;
2068 slot->sl_status = resp->cstate.status;
074fe897 2069
bf5c43c8 2070 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
bf864a31 2071 if (nfsd4_not_cached(resp)) {
557ce264 2072 slot->sl_datalen = 0;
bf864a31 2073 return;
074fe897 2074 }
f5236013
BF
2075 base = resp->cstate.data_offset;
2076 slot->sl_datalen = buf->len - base;
2077 if (read_bytes_from_xdr_buf(buf, base, slot->sl_data, slot->sl_datalen))
557ce264
AA
2078 WARN("%s: sessions DRC could not cache compound\n", __func__);
2079 return;
074fe897
AA
2080}
2081
2082/*
abfabf8c
AA
2083 * Encode the replay sequence operation from the slot values.
2084 * If cachethis is FALSE encode the uncached rep error on the next
2085 * operation which sets resp->p and increments resp->opcnt for
2086 * nfs4svc_encode_compoundres.
074fe897 2087 *
074fe897 2088 */
abfabf8c
AA
2089static __be32
2090nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
2091 struct nfsd4_compoundres *resp)
074fe897 2092{
abfabf8c
AA
2093 struct nfsd4_op *op;
2094 struct nfsd4_slot *slot = resp->cstate.slot;
bf864a31 2095
abfabf8c
AA
2096 /* Encode the replayed sequence operation */
2097 op = &args->ops[resp->opcnt - 1];
2098 nfsd4_encode_operation(resp, op);
bf864a31 2099
abfabf8c 2100 /* Return nfserr_retry_uncached_rep in next operation. */
73e79482 2101 if (args->opcnt > 1 && !(slot->sl_flags & NFSD4_SLOT_CACHETHIS)) {
abfabf8c
AA
2102 op = &args->ops[resp->opcnt++];
2103 op->status = nfserr_retry_uncached_rep;
2104 nfsd4_encode_operation(resp, op);
074fe897 2105 }
abfabf8c 2106 return op->status;
074fe897
AA
2107}
2108
2109/*
557ce264
AA
2110 * The sequence operation is not cached because we can use the slot and
2111 * session values.
074fe897 2112 */
3ca2eb98 2113static __be32
bf864a31
AA
2114nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
2115 struct nfsd4_sequence *seq)
074fe897 2116{
557ce264 2117 struct nfsd4_slot *slot = resp->cstate.slot;
f5236013
BF
2118 struct xdr_stream *xdr = &resp->xdr;
2119 __be32 *p;
074fe897
AA
2120 __be32 status;
2121
557ce264 2122 dprintk("--> %s slot %p\n", __func__, slot);
074fe897 2123
abfabf8c 2124 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
0da7b19c 2125 if (status)
abfabf8c 2126 return status;
074fe897 2127
f5236013
BF
2128 p = xdr_reserve_space(xdr, slot->sl_datalen);
2129 if (!p) {
2130 WARN_ON_ONCE(1);
2131 return nfserr_serverfault;
2132 }
2133 xdr_encode_opaque_fixed(p, slot->sl_data, slot->sl_datalen);
2134 xdr_commit_encode(xdr);
074fe897 2135
557ce264 2136 resp->opcnt = slot->sl_opcnt;
f5236013 2137 return slot->sl_status;
074fe897
AA
2138}
2139
0733d213
AA
2140/*
2141 * Set the exchange_id flags returned by the server.
2142 */
2143static void
2144nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
2145{
2146 /* pNFS is not supported */
2147 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
2148
2149 /* Referrals are supported, Migration is not. */
2150 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
2151
2152 /* set the wire flags to return to client. */
2153 clid->flags = new->cl_exchange_flags;
2154}
2155
631fc9ea
BF
2156static bool client_has_state(struct nfs4_client *clp)
2157{
2158 /*
2159 * Note clp->cl_openowners check isn't quite right: there's no
2160 * need to count owners without stateid's.
2161 *
2162 * Also note we should probably be using this in 4.0 case too.
2163 */
6eccece9
BF
2164 return !list_empty(&clp->cl_openowners)
2165 || !list_empty(&clp->cl_delegations)
2166 || !list_empty(&clp->cl_sessions);
631fc9ea
BF
2167}
2168
069b6ad4
AA
2169__be32
2170nfsd4_exchange_id(struct svc_rqst *rqstp,
2171 struct nfsd4_compound_state *cstate,
2172 struct nfsd4_exchange_id *exid)
2173{
3dbacee6
TM
2174 struct nfs4_client *conf, *new;
2175 struct nfs4_client *unconf = NULL;
57b7b43b 2176 __be32 status;
363168b4 2177 char addr_str[INET6_ADDRSTRLEN];
0733d213 2178 nfs4_verifier verf = exid->verifier;
363168b4 2179 struct sockaddr *sa = svc_addr(rqstp);
83e08fd4 2180 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
c212cecf 2181 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
0733d213 2182
363168b4 2183 rpc_ntop(sa, addr_str, sizeof(addr_str));
0733d213 2184 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
363168b4 2185 "ip_addr=%s flags %x, spa_how %d\n",
0733d213 2186 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
363168b4 2187 addr_str, exid->flags, exid->spa_how);
0733d213 2188
a084daf5 2189 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
0733d213
AA
2190 return nfserr_inval;
2191
0733d213 2192 switch (exid->spa_how) {
57266a6e
BF
2193 case SP4_MACH_CRED:
2194 if (!svc_rqst_integrity_protected(rqstp))
2195 return nfserr_inval;
0733d213
AA
2196 case SP4_NONE:
2197 break;
063b0fb9
BF
2198 default: /* checked by xdr code */
2199 WARN_ON_ONCE(1);
0733d213 2200 case SP4_SSV:
dd30333c 2201 return nfserr_encr_alg_unsupp;
0733d213
AA
2202 }
2203
5cc40fd7
TM
2204 new = create_client(exid->clname, rqstp, &verf);
2205 if (new == NULL)
2206 return nfserr_jukebox;
2207
2dbb269d 2208 /* Cases below refer to rfc 5661 section 18.35.4: */
3dbacee6 2209 spin_lock(&nn->client_lock);
382a62e7 2210 conf = find_confirmed_client_by_name(&exid->clname, nn);
0733d213 2211 if (conf) {
83e08fd4
BF
2212 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
2213 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
2214
136e658d
BF
2215 if (update) {
2216 if (!clp_used_exchangeid(conf)) { /* buggy client */
2dbb269d 2217 status = nfserr_inval;
1a308118
BF
2218 goto out;
2219 }
57266a6e
BF
2220 if (!mach_creds_match(conf, rqstp)) {
2221 status = nfserr_wrong_cred;
2222 goto out;
2223 }
136e658d 2224 if (!creds_match) { /* case 9 */
ea236d07 2225 status = nfserr_perm;
136e658d
BF
2226 goto out;
2227 }
2228 if (!verfs_match) { /* case 8 */
0733d213
AA
2229 status = nfserr_not_same;
2230 goto out;
2231 }
136e658d
BF
2232 /* case 6 */
2233 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
136e658d 2234 goto out_copy;
0733d213 2235 }
136e658d 2236 if (!creds_match) { /* case 3 */
631fc9ea
BF
2237 if (client_has_state(conf)) {
2238 status = nfserr_clid_inuse;
0733d213
AA
2239 goto out;
2240 }
0733d213
AA
2241 goto out_new;
2242 }
136e658d 2243 if (verfs_match) { /* case 2 */
0f1ba0ef 2244 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
136e658d
BF
2245 goto out_copy;
2246 }
2247 /* case 5, client reboot */
3dbacee6 2248 conf = NULL;
136e658d 2249 goto out_new;
6ddbbbfe
MS
2250 }
2251
2dbb269d 2252 if (update) { /* case 7 */
6ddbbbfe
MS
2253 status = nfserr_noent;
2254 goto out;
0733d213
AA
2255 }
2256
a99454aa 2257 unconf = find_unconfirmed_client_by_name(&exid->clname, nn);
2dbb269d 2258 if (unconf) /* case 4, possible retry or client restart */
3dbacee6 2259 unhash_client_locked(unconf);
0733d213 2260
2dbb269d 2261 /* case 1 (normal case) */
0733d213 2262out_new:
fd699b8a
JL
2263 if (conf) {
2264 status = mark_client_expired_locked(conf);
2265 if (status)
2266 goto out;
2267 }
4f540e29 2268 new->cl_minorversion = cstate->minorversion;
57266a6e 2269 new->cl_mach_cred = (exid->spa_how == SP4_MACH_CRED);
0733d213 2270
c212cecf 2271 gen_clid(new, nn);
ac55fdc4 2272 add_to_unconfirmed(new);
3dbacee6 2273 swap(new, conf);
0733d213 2274out_copy:
5cc40fd7
TM
2275 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
2276 exid->clientid.cl_id = conf->cl_clientid.cl_id;
0733d213 2277
5cc40fd7
TM
2278 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
2279 nfsd4_set_ex_flags(conf, exid);
0733d213
AA
2280
2281 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
5cc40fd7 2282 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
0733d213
AA
2283 status = nfs_ok;
2284
2285out:
3dbacee6 2286 spin_unlock(&nn->client_lock);
5cc40fd7 2287 if (new)
3dbacee6
TM
2288 expire_client(new);
2289 if (unconf)
2290 expire_client(unconf);
0733d213 2291 return status;
069b6ad4
AA
2292}
2293
57b7b43b 2294static __be32
88e588d5 2295check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
b85d4c01 2296{
88e588d5
AA
2297 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
2298 slot_seqid);
b85d4c01
BH
2299
2300 /* The slot is in use, and no response has been sent. */
88e588d5
AA
2301 if (slot_inuse) {
2302 if (seqid == slot_seqid)
b85d4c01
BH
2303 return nfserr_jukebox;
2304 else
2305 return nfserr_seq_misordered;
2306 }
f6d82485 2307 /* Note unsigned 32-bit arithmetic handles wraparound: */
88e588d5 2308 if (likely(seqid == slot_seqid + 1))
b85d4c01 2309 return nfs_ok;
88e588d5 2310 if (seqid == slot_seqid)
b85d4c01 2311 return nfserr_replay_cache;
b85d4c01
BH
2312 return nfserr_seq_misordered;
2313}
2314
49557cc7
AA
2315/*
2316 * Cache the create session result into the create session single DRC
2317 * slot cache by saving the xdr structure. sl_seqid has been set.
2318 * Do this for solo or embedded create session operations.
2319 */
2320static void
2321nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
57b7b43b 2322 struct nfsd4_clid_slot *slot, __be32 nfserr)
49557cc7
AA
2323{
2324 slot->sl_status = nfserr;
2325 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
2326}
2327
2328static __be32
2329nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
2330 struct nfsd4_clid_slot *slot)
2331{
2332 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
2333 return slot->sl_status;
2334}
2335
1b74c25b
MJ
2336#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2337 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2338 1 + /* MIN tag is length with zero, only length */ \
2339 3 + /* version, opcount, opcode */ \
2340 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2341 /* seqid, slotID, slotID, cache */ \
2342 4 ) * sizeof(__be32))
2343
2344#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2345 2 + /* verifier: AUTH_NULL, length 0 */\
2346 1 + /* status */ \
2347 1 + /* MIN tag is length with zero, only length */ \
2348 3 + /* opcount, opcode, opstatus*/ \
2349 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2350 /* seqid, slotID, slotID, slotID, status */ \
2351 5 ) * sizeof(__be32))
2352
55c760cf 2353static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs *ca, struct nfsd_net *nn)
1b74c25b 2354{
55c760cf
BF
2355 u32 maxrpc = nn->nfsd_serv->sv_max_mesg;
2356
373cd409
BF
2357 if (ca->maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ)
2358 return nfserr_toosmall;
2359 if (ca->maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ)
2360 return nfserr_toosmall;
55c760cf
BF
2361 ca->headerpadsz = 0;
2362 ca->maxreq_sz = min_t(u32, ca->maxreq_sz, maxrpc);
2363 ca->maxresp_sz = min_t(u32, ca->maxresp_sz, maxrpc);
2364 ca->maxops = min_t(u32, ca->maxops, NFSD_MAX_OPS_PER_COMPOUND);
2365 ca->maxresp_cached = min_t(u32, ca->maxresp_cached,
2366 NFSD_SLOT_CACHE_SIZE + NFSD_MIN_HDR_SEQ_SZ);
2367 ca->maxreqs = min_t(u32, ca->maxreqs, NFSD_MAX_SLOTS_PER_SESSION);
2368 /*
2369 * Note decreasing slot size below client's request may make it
2370 * difficult for client to function correctly, whereas
2371 * decreasing the number of slots will (just?) affect
2372 * performance. When short on memory we therefore prefer to
2373 * decrease number of slots instead of their size. Clients that
2374 * request larger slots than they need will get poor results:
2375 */
2376 ca->maxreqs = nfsd4_get_drc_mem(ca);
2377 if (!ca->maxreqs)
2378 return nfserr_jukebox;
2379
373cd409 2380 return nfs_ok;
1b74c25b
MJ
2381}
2382
8a891633
KM
2383#define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
2384 RPC_MAX_HEADER_WITH_AUTH) * sizeof(__be32))
2385#define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
2386 RPC_MAX_REPHEADER_WITH_AUTH) * sizeof(__be32))
2387
06b332a5 2388static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
1b74c25b 2389{
06b332a5
BF
2390 ca->headerpadsz = 0;
2391
2392 /*
2393 * These RPC_MAX_HEADER macros are overkill, especially since we
2394 * don't even do gss on the backchannel yet. But this is still
2395 * less than 1k. Tighten up this estimate in the unlikely event
2396 * it turns out to be a problem for some client:
2397 */
8a891633 2398 if (ca->maxreq_sz < NFSD_CB_MAX_REQ_SZ)
06b332a5 2399 return nfserr_toosmall;
8a891633 2400 if (ca->maxresp_sz < NFSD_CB_MAX_RESP_SZ)
06b332a5
BF
2401 return nfserr_toosmall;
2402 ca->maxresp_cached = 0;
2403 if (ca->maxops < 2)
2404 return nfserr_toosmall;
2405
2406 return nfs_ok;
1b74c25b
MJ
2407}
2408
b78724b7
BF
2409static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
2410{
2411 switch (cbs->flavor) {
2412 case RPC_AUTH_NULL:
2413 case RPC_AUTH_UNIX:
2414 return nfs_ok;
2415 default:
2416 /*
2417 * GSS case: the spec doesn't allow us to return this
2418 * error. But it also doesn't allow us not to support
2419 * GSS.
2420 * I'd rather this fail hard than return some error the
2421 * client might think it can already handle:
2422 */
2423 return nfserr_encr_alg_unsupp;
2424 }
2425}
2426
069b6ad4
AA
2427__be32
2428nfsd4_create_session(struct svc_rqst *rqstp,
2429 struct nfsd4_compound_state *cstate,
2430 struct nfsd4_create_session *cr_ses)
2431{
363168b4 2432 struct sockaddr *sa = svc_addr(rqstp);
ec6b5d7b 2433 struct nfs4_client *conf, *unconf;
d20c11d8 2434 struct nfs4_client *old = NULL;
ac7c46f2 2435 struct nfsd4_session *new;
81f0b2a4 2436 struct nfsd4_conn *conn;
49557cc7 2437 struct nfsd4_clid_slot *cs_slot = NULL;
57b7b43b 2438 __be32 status = 0;
8daae4dc 2439 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
ec6b5d7b 2440
a62573dc
MJ
2441 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
2442 return nfserr_inval;
b78724b7
BF
2443 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
2444 if (status)
2445 return status;
55c760cf 2446 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
06b332a5
BF
2447 if (status)
2448 return status;
2449 status = check_backchannel_attrs(&cr_ses->back_channel);
373cd409 2450 if (status)
f403e450 2451 goto out_release_drc_mem;
81f0b2a4 2452 status = nfserr_jukebox;
60810e54 2453 new = alloc_session(&cr_ses->fore_channel, &cr_ses->back_channel);
55c760cf
BF
2454 if (!new)
2455 goto out_release_drc_mem;
81f0b2a4
BF
2456 conn = alloc_conn_from_crses(rqstp, cr_ses);
2457 if (!conn)
2458 goto out_free_session;
a62573dc 2459
d20c11d8 2460 spin_lock(&nn->client_lock);
0a7ec377 2461 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
8daae4dc 2462 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
78389046 2463 WARN_ON_ONCE(conf && unconf);
ec6b5d7b
AA
2464
2465 if (conf) {
57266a6e
BF
2466 status = nfserr_wrong_cred;
2467 if (!mach_creds_match(conf, rqstp))
2468 goto out_free_conn;
49557cc7
AA
2469 cs_slot = &conf->cl_cs_slot;
2470 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
38eb76a5 2471 if (status == nfserr_replay_cache) {
49557cc7 2472 status = nfsd4_replay_create_session(cr_ses, cs_slot);
81f0b2a4 2473 goto out_free_conn;
49557cc7 2474 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
ec6b5d7b 2475 status = nfserr_seq_misordered;
81f0b2a4 2476 goto out_free_conn;
ec6b5d7b 2477 }
ec6b5d7b
AA
2478 } else if (unconf) {
2479 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
363168b4 2480 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
ec6b5d7b 2481 status = nfserr_clid_inuse;
81f0b2a4 2482 goto out_free_conn;
ec6b5d7b 2483 }
57266a6e
BF
2484 status = nfserr_wrong_cred;
2485 if (!mach_creds_match(unconf, rqstp))
2486 goto out_free_conn;
49557cc7
AA
2487 cs_slot = &unconf->cl_cs_slot;
2488 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
38eb76a5
AA
2489 if (status) {
2490 /* an unconfirmed replay returns misordered */
ec6b5d7b 2491 status = nfserr_seq_misordered;
81f0b2a4 2492 goto out_free_conn;
ec6b5d7b 2493 }
382a62e7 2494 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
221a6876 2495 if (old) {
d20c11d8 2496 status = mark_client_expired_locked(old);
7abea1e8
JL
2497 if (status) {
2498 old = NULL;
221a6876 2499 goto out_free_conn;
7abea1e8 2500 }
221a6876 2501 }
8f9d3d3b 2502 move_to_confirmed(unconf);
ec6b5d7b
AA
2503 conf = unconf;
2504 } else {
2505 status = nfserr_stale_clientid;
81f0b2a4 2506 goto out_free_conn;
ec6b5d7b 2507 }
81f0b2a4 2508 status = nfs_ok;
408b79bc
BF
2509 /*
2510 * We do not support RDMA or persistent sessions
2511 */
2512 cr_ses->flags &= ~SESSION4_PERSIST;
2513 cr_ses->flags &= ~SESSION4_RDMA;
2514
81f0b2a4 2515 init_session(rqstp, new, conf, cr_ses);
d20c11d8 2516 nfsd4_get_session_locked(new);
81f0b2a4 2517
ac7c46f2 2518 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
ec6b5d7b 2519 NFS4_MAX_SESSIONID_LEN);
86c3e16c 2520 cs_slot->sl_seqid++;
49557cc7 2521 cr_ses->seqid = cs_slot->sl_seqid;
ec6b5d7b 2522
d20c11d8 2523 /* cache solo and embedded create sessions under the client_lock */
49557cc7 2524 nfsd4_cache_create_session(cr_ses, cs_slot, status);
d20c11d8
JL
2525 spin_unlock(&nn->client_lock);
2526 /* init connection and backchannel */
2527 nfsd4_init_conn(rqstp, conn, new);
2528 nfsd4_put_session(new);
d20c11d8
JL
2529 if (old)
2530 expire_client(old);
ec6b5d7b 2531 return status;
81f0b2a4 2532out_free_conn:
d20c11d8 2533 spin_unlock(&nn->client_lock);
81f0b2a4 2534 free_conn(conn);
d20c11d8
JL
2535 if (old)
2536 expire_client(old);
81f0b2a4
BF
2537out_free_session:
2538 __free_session(new);
55c760cf
BF
2539out_release_drc_mem:
2540 nfsd4_put_drc_mem(&cr_ses->fore_channel);
1ca50792 2541 return status;
069b6ad4
AA
2542}
2543
1d1bc8f2
BF
2544static __be32 nfsd4_map_bcts_dir(u32 *dir)
2545{
2546 switch (*dir) {
2547 case NFS4_CDFC4_FORE:
2548 case NFS4_CDFC4_BACK:
2549 return nfs_ok;
2550 case NFS4_CDFC4_FORE_OR_BOTH:
2551 case NFS4_CDFC4_BACK_OR_BOTH:
2552 *dir = NFS4_CDFC4_BOTH;
2553 return nfs_ok;
2554 };
2555 return nfserr_inval;
2556}
2557
cb73a9f4
BF
2558__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc)
2559{
2560 struct nfsd4_session *session = cstate->session;
c9a49628 2561 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
b78724b7 2562 __be32 status;
cb73a9f4 2563
b78724b7
BF
2564 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
2565 if (status)
2566 return status;
c9a49628 2567 spin_lock(&nn->client_lock);
cb73a9f4
BF
2568 session->se_cb_prog = bc->bc_cb_program;
2569 session->se_cb_sec = bc->bc_cb_sec;
c9a49628 2570 spin_unlock(&nn->client_lock);
cb73a9f4
BF
2571
2572 nfsd4_probe_callback(session->se_client);
2573
2574 return nfs_ok;
2575}
2576
1d1bc8f2
BF
2577__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
2578 struct nfsd4_compound_state *cstate,
2579 struct nfsd4_bind_conn_to_session *bcts)
2580{
2581 __be32 status;
3ba63671 2582 struct nfsd4_conn *conn;
4f6e6c17 2583 struct nfsd4_session *session;
d4e19e70
TM
2584 struct net *net = SVC_NET(rqstp);
2585 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1d1bc8f2
BF
2586
2587 if (!nfsd4_last_compound_op(rqstp))
2588 return nfserr_not_only_op;
c9a49628 2589 spin_lock(&nn->client_lock);
d4e19e70 2590 session = find_in_sessionid_hashtbl(&bcts->sessionid, net, &status);
c9a49628 2591 spin_unlock(&nn->client_lock);
4f6e6c17 2592 if (!session)
d4e19e70 2593 goto out_no_session;
57266a6e
BF
2594 status = nfserr_wrong_cred;
2595 if (!mach_creds_match(session->se_client, rqstp))
2596 goto out;
1d1bc8f2 2597 status = nfsd4_map_bcts_dir(&bcts->dir);
3ba63671 2598 if (status)
4f6e6c17 2599 goto out;
3ba63671 2600 conn = alloc_conn(rqstp, bcts->dir);
4f6e6c17 2601 status = nfserr_jukebox;
3ba63671 2602 if (!conn)
4f6e6c17
BF
2603 goto out;
2604 nfsd4_init_conn(rqstp, conn, session);
2605 status = nfs_ok;
2606out:
d4e19e70
TM
2607 nfsd4_put_session(session);
2608out_no_session:
4f6e6c17 2609 return status;
1d1bc8f2
BF
2610}
2611
5d4cec2f
BF
2612static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
2613{
2614 if (!session)
2615 return 0;
2616 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
2617}
2618
069b6ad4
AA
2619__be32
2620nfsd4_destroy_session(struct svc_rqst *r,
2621 struct nfsd4_compound_state *cstate,
2622 struct nfsd4_destroy_session *sessionid)
2623{
e10e0cfc 2624 struct nfsd4_session *ses;
abcdff09 2625 __be32 status;
f0f51f5c 2626 int ref_held_by_me = 0;
d4e19e70
TM
2627 struct net *net = SVC_NET(r);
2628 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
e10e0cfc 2629
abcdff09 2630 status = nfserr_not_only_op;
5d4cec2f 2631 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
57716355 2632 if (!nfsd4_last_compound_op(r))
abcdff09 2633 goto out;
f0f51f5c 2634 ref_held_by_me++;
57716355 2635 }
e10e0cfc 2636 dump_sessionid(__func__, &sessionid->sessionid);
c9a49628 2637 spin_lock(&nn->client_lock);
d4e19e70 2638 ses = find_in_sessionid_hashtbl(&sessionid->sessionid, net, &status);
abcdff09
BF
2639 if (!ses)
2640 goto out_client_lock;
57266a6e
BF
2641 status = nfserr_wrong_cred;
2642 if (!mach_creds_match(ses->se_client, r))
d4e19e70 2643 goto out_put_session;
f0f51f5c 2644 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
66b2b9b2 2645 if (status)
f0f51f5c 2646 goto out_put_session;
e10e0cfc 2647 unhash_session(ses);
c9a49628 2648 spin_unlock(&nn->client_lock);
e10e0cfc 2649
84f5f7cc 2650 nfsd4_probe_callback_sync(ses->se_client);
19cf5c02 2651
c9a49628 2652 spin_lock(&nn->client_lock);
e10e0cfc 2653 status = nfs_ok;
f0f51f5c 2654out_put_session:
d4e19e70 2655 nfsd4_put_session_locked(ses);
abcdff09
BF
2656out_client_lock:
2657 spin_unlock(&nn->client_lock);
e10e0cfc 2658out:
e10e0cfc 2659 return status;
069b6ad4
AA
2660}
2661
a663bdd8 2662static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
328ead28
BF
2663{
2664 struct nfsd4_conn *c;
2665
2666 list_for_each_entry(c, &s->se_conns, cn_persession) {
a663bdd8 2667 if (c->cn_xprt == xpt) {
328ead28
BF
2668 return c;
2669 }
2670 }
2671 return NULL;
2672}
2673
57266a6e 2674static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
328ead28
BF
2675{
2676 struct nfs4_client *clp = ses->se_client;
a663bdd8 2677 struct nfsd4_conn *c;
57266a6e 2678 __be32 status = nfs_ok;
21b75b01 2679 int ret;
328ead28
BF
2680
2681 spin_lock(&clp->cl_lock);
a663bdd8 2682 c = __nfsd4_find_conn(new->cn_xprt, ses);
57266a6e
BF
2683 if (c)
2684 goto out_free;
2685 status = nfserr_conn_not_bound_to_session;
2686 if (clp->cl_mach_cred)
2687 goto out_free;
328ead28
BF
2688 __nfsd4_hash_conn(new, ses);
2689 spin_unlock(&clp->cl_lock);
21b75b01
BF
2690 ret = nfsd4_register_conn(new);
2691 if (ret)
2692 /* oops; xprt is already down: */
2693 nfsd4_conn_lost(&new->cn_xpt_user);
57266a6e
BF
2694 return nfs_ok;
2695out_free:
2696 spin_unlock(&clp->cl_lock);
2697 free_conn(new);
2698 return status;
328ead28
BF
2699}
2700
868b89c3
MJ
2701static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
2702{
2703 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2704
2705 return args->opcnt > session->se_fchannel.maxops;
2706}
2707
ae82a8d0
MJ
2708static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
2709 struct nfsd4_session *session)
2710{
2711 struct xdr_buf *xb = &rqstp->rq_arg;
2712
2713 return xb->len > session->se_fchannel.maxreq_sz;
2714}
2715
069b6ad4 2716__be32
b85d4c01 2717nfsd4_sequence(struct svc_rqst *rqstp,
069b6ad4
AA
2718 struct nfsd4_compound_state *cstate,
2719 struct nfsd4_sequence *seq)
2720{
f9bb94c4 2721 struct nfsd4_compoundres *resp = rqstp->rq_resp;
47ee5298 2722 struct xdr_stream *xdr = &resp->xdr;
b85d4c01 2723 struct nfsd4_session *session;
221a6876 2724 struct nfs4_client *clp;
b85d4c01 2725 struct nfsd4_slot *slot;
a663bdd8 2726 struct nfsd4_conn *conn;
57b7b43b 2727 __be32 status;
47ee5298 2728 int buflen;
d4e19e70
TM
2729 struct net *net = SVC_NET(rqstp);
2730 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
b85d4c01 2731
f9bb94c4
AA
2732 if (resp->opcnt != 1)
2733 return nfserr_sequence_pos;
2734
a663bdd8
BF
2735 /*
2736 * Will be either used or freed by nfsd4_sequence_check_conn
2737 * below.
2738 */
2739 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
2740 if (!conn)
2741 return nfserr_jukebox;
2742
c9a49628 2743 spin_lock(&nn->client_lock);
d4e19e70 2744 session = find_in_sessionid_hashtbl(&seq->sessionid, net, &status);
b85d4c01 2745 if (!session)
221a6876
BF
2746 goto out_no_session;
2747 clp = session->se_client;
b85d4c01 2748
868b89c3
MJ
2749 status = nfserr_too_many_ops;
2750 if (nfsd4_session_too_many_ops(rqstp, session))
66b2b9b2 2751 goto out_put_session;
868b89c3 2752
ae82a8d0
MJ
2753 status = nfserr_req_too_big;
2754 if (nfsd4_request_too_big(rqstp, session))
66b2b9b2 2755 goto out_put_session;
ae82a8d0 2756
b85d4c01 2757 status = nfserr_badslot;
6c18ba9f 2758 if (seq->slotid >= session->se_fchannel.maxreqs)
66b2b9b2 2759 goto out_put_session;
b85d4c01 2760
557ce264 2761 slot = session->se_slots[seq->slotid];
b85d4c01
BH
2762 dprintk("%s: slotid %d\n", __func__, seq->slotid);
2763
a8dfdaeb
AA
2764 /* We do not negotiate the number of slots yet, so set the
2765 * maxslots to the session maxreqs which is used to encode
2766 * sr_highest_slotid and the sr_target_slot id to maxslots */
2767 seq->maxslots = session->se_fchannel.maxreqs;
2768
73e79482
BF
2769 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
2770 slot->sl_flags & NFSD4_SLOT_INUSE);
b85d4c01 2771 if (status == nfserr_replay_cache) {
bf5c43c8
BF
2772 status = nfserr_seq_misordered;
2773 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
66b2b9b2 2774 goto out_put_session;
b85d4c01
BH
2775 cstate->slot = slot;
2776 cstate->session = session;
4b24ca7d 2777 cstate->clp = clp;
da3846a2 2778 /* Return the cached reply status and set cstate->status
557ce264 2779 * for nfsd4_proc_compound processing */
bf864a31 2780 status = nfsd4_replay_cache_entry(resp, seq);
da3846a2 2781 cstate->status = nfserr_replay_cache;
aaf84eb9 2782 goto out;
b85d4c01
BH
2783 }
2784 if (status)
66b2b9b2 2785 goto out_put_session;
b85d4c01 2786
57266a6e 2787 status = nfsd4_sequence_check_conn(conn, session);
a663bdd8 2788 conn = NULL;
57266a6e
BF
2789 if (status)
2790 goto out_put_session;
328ead28 2791
47ee5298
BF
2792 buflen = (seq->cachethis) ?
2793 session->se_fchannel.maxresp_cached :
2794 session->se_fchannel.maxresp_sz;
2795 status = (seq->cachethis) ? nfserr_rep_too_big_to_cache :
2796 nfserr_rep_too_big;
a5cddc88 2797 if (xdr_restrict_buflen(xdr, buflen - rqstp->rq_auth_slack))
47ee5298 2798 goto out_put_session;
32aaa62e 2799 svc_reserve(rqstp, buflen);
47ee5298
BF
2800
2801 status = nfs_ok;
b85d4c01 2802 /* Success! bump slot seqid */
b85d4c01 2803 slot->sl_seqid = seq->seqid;
bf5c43c8 2804 slot->sl_flags |= NFSD4_SLOT_INUSE;
73e79482
BF
2805 if (seq->cachethis)
2806 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
bf5c43c8
BF
2807 else
2808 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
b85d4c01
BH
2809
2810 cstate->slot = slot;
2811 cstate->session = session;
4b24ca7d 2812 cstate->clp = clp;
b85d4c01 2813
b85d4c01 2814out:
221a6876
BF
2815 switch (clp->cl_cb_state) {
2816 case NFSD4_CB_DOWN:
2817 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
2818 break;
2819 case NFSD4_CB_FAULT:
2820 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
2821 break;
2822 default:
2823 seq->status_flags = 0;
aaf84eb9 2824 }
3bd64a5b
BF
2825 if (!list_empty(&clp->cl_revoked))
2826 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
221a6876 2827out_no_session:
3f42d2c4
KM
2828 if (conn)
2829 free_conn(conn);
c9a49628 2830 spin_unlock(&nn->client_lock);
b85d4c01 2831 return status;
66b2b9b2 2832out_put_session:
d4e19e70 2833 nfsd4_put_session_locked(session);
221a6876 2834 goto out_no_session;
069b6ad4
AA
2835}
2836
b607664e
TM
2837void
2838nfsd4_sequence_done(struct nfsd4_compoundres *resp)
2839{
2840 struct nfsd4_compound_state *cs = &resp->cstate;
2841
2842 if (nfsd4_has_session(cs)) {
b607664e
TM
2843 if (cs->status != nfserr_replay_cache) {
2844 nfsd4_store_cache_entry(resp);
2845 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
2846 }
d4e19e70 2847 /* Drop session reference that was taken in nfsd4_sequence() */
b607664e 2848 nfsd4_put_session(cs->session);
4b24ca7d
JL
2849 } else if (cs->clp)
2850 put_client_renew(cs->clp);
b607664e
TM
2851}
2852
345c2842
MJ
2853__be32
2854nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
2855{
6b10ad19
TM
2856 struct nfs4_client *conf, *unconf;
2857 struct nfs4_client *clp = NULL;
57b7b43b 2858 __be32 status = 0;
8daae4dc 2859 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
345c2842 2860
6b10ad19 2861 spin_lock(&nn->client_lock);
0a7ec377 2862 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
8daae4dc 2863 conf = find_confirmed_client(&dc->clientid, true, nn);
78389046 2864 WARN_ON_ONCE(conf && unconf);
345c2842
MJ
2865
2866 if (conf) {
c0293b01 2867 if (client_has_state(conf)) {
345c2842
MJ
2868 status = nfserr_clientid_busy;
2869 goto out;
2870 }
fd699b8a
JL
2871 status = mark_client_expired_locked(conf);
2872 if (status)
2873 goto out;
6b10ad19 2874 clp = conf;
345c2842
MJ
2875 } else if (unconf)
2876 clp = unconf;
2877 else {
2878 status = nfserr_stale_clientid;
2879 goto out;
2880 }
57266a6e 2881 if (!mach_creds_match(clp, rqstp)) {
6b10ad19 2882 clp = NULL;
57266a6e
BF
2883 status = nfserr_wrong_cred;
2884 goto out;
2885 }
6b10ad19 2886 unhash_client_locked(clp);
345c2842 2887out:
6b10ad19 2888 spin_unlock(&nn->client_lock);
6b10ad19
TM
2889 if (clp)
2890 expire_client(clp);
345c2842
MJ
2891 return status;
2892}
2893
4dc6ec00
BF
2894__be32
2895nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
2896{
57b7b43b 2897 __be32 status = 0;
bcecf1cc 2898
4dc6ec00
BF
2899 if (rc->rca_one_fs) {
2900 if (!cstate->current_fh.fh_dentry)
2901 return nfserr_nofilehandle;
2902 /*
2903 * We don't take advantage of the rca_one_fs case.
2904 * That's OK, it's optional, we can safely ignore it.
2905 */
2906 return nfs_ok;
2907 }
bcecf1cc 2908
bcecf1cc 2909 status = nfserr_complete_already;
a52d726b
JL
2910 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
2911 &cstate->session->se_client->cl_flags))
bcecf1cc
MJ
2912 goto out;
2913
2914 status = nfserr_stale_clientid;
2915 if (is_client_expired(cstate->session->se_client))
4dc6ec00
BF
2916 /*
2917 * The following error isn't really legal.
2918 * But we only get here if the client just explicitly
2919 * destroyed the client. Surely it no longer cares what
2920 * error it gets back on an operation for the dead
2921 * client.
2922 */
bcecf1cc
MJ
2923 goto out;
2924
2925 status = nfs_ok;
2a4317c5 2926 nfsd4_client_record_create(cstate->session->se_client);
bcecf1cc 2927out:
bcecf1cc 2928 return status;
4dc6ec00
BF
2929}
2930
b37ad28b 2931__be32
b591480b
BF
2932nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2933 struct nfsd4_setclientid *setclid)
1da177e4 2934{
a084daf5 2935 struct xdr_netobj clname = setclid->se_name;
1da177e4 2936 nfs4_verifier clverifier = setclid->se_verf;
3dbacee6
TM
2937 struct nfs4_client *conf, *new;
2938 struct nfs4_client *unconf = NULL;
b37ad28b 2939 __be32 status;
c212cecf
SK
2940 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2941
5cc40fd7
TM
2942 new = create_client(clname, rqstp, &clverifier);
2943 if (new == NULL)
2944 return nfserr_jukebox;
63db4632 2945 /* Cases below refer to rfc 3530 section 14.2.33: */
3dbacee6 2946 spin_lock(&nn->client_lock);
382a62e7 2947 conf = find_confirmed_client_by_name(&clname, nn);
28ce6054 2948 if (conf) {
63db4632 2949 /* case 0: */
1da177e4 2950 status = nfserr_clid_inuse;
e203d506
BF
2951 if (clp_used_exchangeid(conf))
2952 goto out;
026722c2 2953 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
363168b4
JL
2954 char addr_str[INET6_ADDRSTRLEN];
2955 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2956 sizeof(addr_str));
2957 dprintk("NFSD: setclientid: string in use by client "
2958 "at %s\n", addr_str);
1da177e4
LT
2959 goto out;
2960 }
1da177e4 2961 }
a99454aa 2962 unconf = find_unconfirmed_client_by_name(&clname, nn);
8f930711 2963 if (unconf)
3dbacee6 2964 unhash_client_locked(unconf);
34b232bb 2965 if (conf && same_verf(&conf->cl_verifier, &clverifier))
63db4632 2966 /* case 1: probable callback update */
1da177e4 2967 copy_clid(new, conf);
34b232bb 2968 else /* case 4 (new client) or cases 2, 3 (client reboot): */
c212cecf 2969 gen_clid(new, nn);
8323c3b2 2970 new->cl_minorversion = 0;
6f3d772f 2971 gen_callback(new, setclid, rqstp);
ac55fdc4 2972 add_to_unconfirmed(new);
1da177e4
LT
2973 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2974 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2975 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
5cc40fd7 2976 new = NULL;
1da177e4
LT
2977 status = nfs_ok;
2978out:
3dbacee6 2979 spin_unlock(&nn->client_lock);
5cc40fd7
TM
2980 if (new)
2981 free_client(new);
3dbacee6
TM
2982 if (unconf)
2983 expire_client(unconf);
1da177e4
LT
2984 return status;
2985}
2986
2987
b37ad28b 2988__be32
b591480b
BF
2989nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2990 struct nfsd4_compound_state *cstate,
2991 struct nfsd4_setclientid_confirm *setclientid_confirm)
1da177e4 2992{
21ab45a4 2993 struct nfs4_client *conf, *unconf;
d20c11d8 2994 struct nfs4_client *old = NULL;
1da177e4
LT
2995 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2996 clientid_t * clid = &setclientid_confirm->sc_clientid;
b37ad28b 2997 __be32 status;
7f2210fa 2998 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 2999
2c142baa 3000 if (STALE_CLIENTID(clid, nn))
1da177e4 3001 return nfserr_stale_clientid;
21ab45a4 3002
d20c11d8 3003 spin_lock(&nn->client_lock);
8daae4dc 3004 conf = find_confirmed_client(clid, false, nn);
0a7ec377 3005 unconf = find_unconfirmed_client(clid, false, nn);
a186e767 3006 /*
8695b90a
BF
3007 * We try hard to give out unique clientid's, so if we get an
3008 * attempt to confirm the same clientid with a different cred,
3009 * there's a bug somewhere. Let's charitably assume it's our
3010 * bug.
a186e767 3011 */
8695b90a
BF
3012 status = nfserr_serverfault;
3013 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
3014 goto out;
3015 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
3016 goto out;
63db4632 3017 /* cases below refer to rfc 3530 section 14.2.34: */
90d700b7
BF
3018 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
3019 if (conf && !unconf) /* case 2: probable retransmit */
1da177e4 3020 status = nfs_ok;
90d700b7
BF
3021 else /* case 4: client hasn't noticed we rebooted yet? */
3022 status = nfserr_stale_clientid;
3023 goto out;
3024 }
3025 status = nfs_ok;
3026 if (conf) { /* case 1: callback update */
d20c11d8
JL
3027 old = unconf;
3028 unhash_client_locked(old);
8695b90a 3029 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
90d700b7 3030 } else { /* case 3: normal case; new or rebooted client */
d20c11d8
JL
3031 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
3032 if (old) {
3033 status = mark_client_expired_locked(old);
7abea1e8
JL
3034 if (status) {
3035 old = NULL;
221a6876 3036 goto out;
7abea1e8 3037 }
221a6876 3038 }
8695b90a 3039 move_to_confirmed(unconf);
d20c11d8 3040 conf = unconf;
08e8987c 3041 }
d20c11d8
JL
3042 get_client_locked(conf);
3043 spin_unlock(&nn->client_lock);
3044 nfsd4_probe_callback(conf);
3045 spin_lock(&nn->client_lock);
3046 put_client_renew_locked(conf);
1da177e4 3047out:
d20c11d8
JL
3048 spin_unlock(&nn->client_lock);
3049 if (old)
3050 expire_client(old);
1da177e4
LT
3051 return status;
3052}
3053
32513b40
BF
3054static struct nfs4_file *nfsd4_alloc_file(void)
3055{
3056 return kmem_cache_alloc(file_slab, GFP_KERNEL);
3057}
3058
1da177e4 3059/* OPEN Share state helper functions */
f9c00c3a 3060static void nfsd4_init_file(struct nfs4_file *fp, struct knfsd_fh *fh)
1da177e4 3061{
ca943217 3062 unsigned int hashval = file_hashval(fh);
1da177e4 3063
950e0118
TM
3064 lockdep_assert_held(&state_lock);
3065
32513b40 3066 atomic_set(&fp->fi_ref, 1);
1d31a253 3067 spin_lock_init(&fp->fi_lock);
32513b40
BF
3068 INIT_LIST_HEAD(&fp->fi_stateids);
3069 INIT_LIST_HEAD(&fp->fi_delegations);
e2cf80d7 3070 fh_copy_shallow(&fp->fi_fhandle, fh);
0c637be8 3071 fp->fi_deleg_file = NULL;
32513b40 3072 fp->fi_had_conflict = false;
baeb4ff0 3073 fp->fi_share_deny = 0;
32513b40
BF
3074 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
3075 memset(fp->fi_access, 0, sizeof(fp->fi_access));
89876f8c 3076 hlist_add_head(&fp->fi_hash, &file_hashtbl[hashval]);
1da177e4
LT
3077}
3078
e8ff2a84 3079void
1da177e4
LT
3080nfsd4_free_slabs(void)
3081{
abf1135b
CH
3082 kmem_cache_destroy(openowner_slab);
3083 kmem_cache_destroy(lockowner_slab);
3084 kmem_cache_destroy(file_slab);
3085 kmem_cache_destroy(stateid_slab);
3086 kmem_cache_destroy(deleg_slab);
e60d4398 3087}
1da177e4 3088
72083396 3089int
e60d4398
N
3090nfsd4_init_slabs(void)
3091{
fe0750e5
BF
3092 openowner_slab = kmem_cache_create("nfsd4_openowners",
3093 sizeof(struct nfs4_openowner), 0, 0, NULL);
3094 if (openowner_slab == NULL)
abf1135b 3095 goto out;
fe0750e5 3096 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
3c40794b 3097 sizeof(struct nfs4_lockowner), 0, 0, NULL);
fe0750e5 3098 if (lockowner_slab == NULL)
abf1135b 3099 goto out_free_openowner_slab;
e60d4398 3100 file_slab = kmem_cache_create("nfsd4_files",
20c2df83 3101 sizeof(struct nfs4_file), 0, 0, NULL);
e60d4398 3102 if (file_slab == NULL)
abf1135b 3103 goto out_free_lockowner_slab;
5ac049ac 3104 stateid_slab = kmem_cache_create("nfsd4_stateids",
dcef0413 3105 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
5ac049ac 3106 if (stateid_slab == NULL)
abf1135b 3107 goto out_free_file_slab;
5b2d21c1 3108 deleg_slab = kmem_cache_create("nfsd4_delegations",
20c2df83 3109 sizeof(struct nfs4_delegation), 0, 0, NULL);
5b2d21c1 3110 if (deleg_slab == NULL)
abf1135b 3111 goto out_free_stateid_slab;
e60d4398 3112 return 0;
abf1135b
CH
3113
3114out_free_stateid_slab:
3115 kmem_cache_destroy(stateid_slab);
3116out_free_file_slab:
3117 kmem_cache_destroy(file_slab);
3118out_free_lockowner_slab:
3119 kmem_cache_destroy(lockowner_slab);
3120out_free_openowner_slab:
3121 kmem_cache_destroy(openowner_slab);
3122out:
e60d4398
N
3123 dprintk("nfsd4: out of memory while initializing nfsv4\n");
3124 return -ENOMEM;
1da177e4
LT
3125}
3126
ff194bd9 3127static void init_nfs4_replay(struct nfs4_replay *rp)
1da177e4 3128{
ff194bd9
BF
3129 rp->rp_status = nfserr_serverfault;
3130 rp->rp_buflen = 0;
3131 rp->rp_buf = rp->rp_ibuf;
58fb12e6
JL
3132 mutex_init(&rp->rp_mutex);
3133}
3134
3135static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state *cstate,
3136 struct nfs4_stateowner *so)
3137{
3138 if (!nfsd4_has_session(cstate)) {
3139 mutex_lock(&so->so_replay.rp_mutex);
b5971afa 3140 cstate->replay_owner = nfs4_get_stateowner(so);
58fb12e6
JL
3141 }
3142}
3143
3144void nfsd4_cstate_clear_replay(struct nfsd4_compound_state *cstate)
3145{
3146 struct nfs4_stateowner *so = cstate->replay_owner;
3147
3148 if (so != NULL) {
3149 cstate->replay_owner = NULL;
3150 mutex_unlock(&so->so_replay.rp_mutex);
3151 nfs4_put_stateowner(so);
3152 }
1da177e4
LT
3153}
3154
fe0750e5 3155static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
ff194bd9 3156{
1da177e4 3157 struct nfs4_stateowner *sop;
1da177e4 3158
fe0750e5 3159 sop = kmem_cache_alloc(slab, GFP_KERNEL);
ff194bd9
BF
3160 if (!sop)
3161 return NULL;
3162
3163 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
3164 if (!sop->so_owner.data) {
fe0750e5 3165 kmem_cache_free(slab, sop);
1da177e4 3166 return NULL;
ff194bd9
BF
3167 }
3168 sop->so_owner.len = owner->len;
3169
ea1da636 3170 INIT_LIST_HEAD(&sop->so_stateids);
ff194bd9
BF
3171 sop->so_client = clp;
3172 init_nfs4_replay(&sop->so_replay);
6b180f0b 3173 atomic_set(&sop->so_count, 1);
ff194bd9
BF
3174 return sop;
3175}
3176
fe0750e5 3177static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
ff194bd9 3178{
d4f0489f 3179 lockdep_assert_held(&clp->cl_lock);
9b531137 3180
d4f0489f
TM
3181 list_add(&oo->oo_owner.so_strhash,
3182 &clp->cl_ownerstr_hashtbl[strhashval]);
fe0750e5 3183 list_add(&oo->oo_perclient, &clp->cl_openowners);
ff194bd9
BF
3184}
3185
8f4b54c5
JL
3186static void nfs4_unhash_openowner(struct nfs4_stateowner *so)
3187{
d4f0489f 3188 unhash_openowner_locked(openowner(so));
8f4b54c5
JL
3189}
3190
6b180f0b
JL
3191static void nfs4_free_openowner(struct nfs4_stateowner *so)
3192{
3193 struct nfs4_openowner *oo = openowner(so);
3194
3195 kmem_cache_free(openowner_slab, oo);
3196}
3197
3198static const struct nfs4_stateowner_operations openowner_ops = {
8f4b54c5
JL
3199 .so_unhash = nfs4_unhash_openowner,
3200 .so_free = nfs4_free_openowner,
6b180f0b
JL
3201};
3202
fe0750e5 3203static struct nfs4_openowner *
13d6f66b 3204alloc_init_open_stateowner(unsigned int strhashval, struct nfsd4_open *open,
db24b3b4
JL
3205 struct nfsd4_compound_state *cstate)
3206{
13d6f66b 3207 struct nfs4_client *clp = cstate->clp;
7ffb5880 3208 struct nfs4_openowner *oo, *ret;
ff194bd9 3209
fe0750e5
BF
3210 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
3211 if (!oo)
ff194bd9 3212 return NULL;
6b180f0b 3213 oo->oo_owner.so_ops = &openowner_ops;
fe0750e5
BF
3214 oo->oo_owner.so_is_open_owner = 1;
3215 oo->oo_owner.so_seqid = open->op_seqid;
d3134b10 3216 oo->oo_flags = 0;
db24b3b4
JL
3217 if (nfsd4_has_session(cstate))
3218 oo->oo_flags |= NFS4_OO_CONFIRMED;
fe0750e5 3219 oo->oo_time = 0;
38c387b5 3220 oo->oo_last_closed_stid = NULL;
fe0750e5 3221 INIT_LIST_HEAD(&oo->oo_close_lru);
d4f0489f
TM
3222 spin_lock(&clp->cl_lock);
3223 ret = find_openstateowner_str_locked(strhashval, open, clp);
7ffb5880
TM
3224 if (ret == NULL) {
3225 hash_openowner(oo, clp, strhashval);
3226 ret = oo;
3227 } else
3228 nfs4_free_openowner(&oo->oo_owner);
d4f0489f 3229 spin_unlock(&clp->cl_lock);
fe0750e5 3230 return oo;
1da177e4
LT
3231}
3232
996e0938 3233static void init_open_stateid(struct nfs4_ol_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
fe0750e5 3234 struct nfs4_openowner *oo = open->op_openowner;
1da177e4 3235
d6f2bc5d 3236 atomic_inc(&stp->st_stid.sc_count);
3abdb607 3237 stp->st_stid.sc_type = NFS4_OPEN_STID;
3c87b9b7 3238 INIT_LIST_HEAD(&stp->st_locks);
b5971afa 3239 stp->st_stateowner = nfs4_get_stateowner(&oo->oo_owner);
13cd2184 3240 get_nfs4_file(fp);
11b9164a 3241 stp->st_stid.sc_file = fp;
1da177e4
LT
3242 stp->st_access_bmap = 0;
3243 stp->st_deny_bmap = 0;
4c4cd222 3244 stp->st_openstp = NULL;
1c755dc1
JL
3245 spin_lock(&oo->oo_owner.so_client->cl_lock);
3246 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
1d31a253
TM
3247 spin_lock(&fp->fi_lock);
3248 list_add(&stp->st_perfile, &fp->fi_stateids);
3249 spin_unlock(&fp->fi_lock);
1c755dc1 3250 spin_unlock(&oo->oo_owner.so_client->cl_lock);
1da177e4
LT
3251}
3252
d3134b10
JL
3253/*
3254 * In the 4.0 case we need to keep the owners around a little while to handle
3255 * CLOSE replay. We still do need to release any file access that is held by
3256 * them before returning however.
3257 */
fd39ca9a 3258static void
d3134b10 3259move_to_close_lru(struct nfs4_ol_stateid *s, struct net *net)
1da177e4 3260{
217526e7 3261 struct nfs4_ol_stateid *last;
d3134b10
JL
3262 struct nfs4_openowner *oo = openowner(s->st_stateowner);
3263 struct nfsd_net *nn = net_generic(s->st_stid.sc_client->net,
3264 nfsd_net_id);
73758fed 3265
fe0750e5 3266 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
1da177e4 3267
b401be22
JL
3268 /*
3269 * We know that we hold one reference via nfsd4_close, and another
3270 * "persistent" reference for the client. If the refcount is higher
3271 * than 2, then there are still calls in progress that are using this
3272 * stateid. We can't put the sc_file reference until they are finished.
3273 * Wait for the refcount to drop to 2. Since it has been unhashed,
3274 * there should be no danger of the refcount going back up again at
3275 * this point.
3276 */
3277 wait_event(close_wq, atomic_read(&s->st_stid.sc_count) == 2);
3278
d3134b10
JL
3279 release_all_access(s);
3280 if (s->st_stid.sc_file) {
3281 put_nfs4_file(s->st_stid.sc_file);
3282 s->st_stid.sc_file = NULL;
3283 }
217526e7
JL
3284
3285 spin_lock(&nn->client_lock);
3286 last = oo->oo_last_closed_stid;
d3134b10 3287 oo->oo_last_closed_stid = s;
73758fed 3288 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
fe0750e5 3289 oo->oo_time = get_seconds();
217526e7
JL
3290 spin_unlock(&nn->client_lock);
3291 if (last)
3292 nfs4_put_stid(&last->st_stid);
1da177e4
LT
3293}
3294
1da177e4
LT
3295/* search file_hashtbl[] for file */
3296static struct nfs4_file *
ca943217 3297find_file_locked(struct knfsd_fh *fh)
1da177e4 3298{
ca943217 3299 unsigned int hashval = file_hashval(fh);
1da177e4
LT
3300 struct nfs4_file *fp;
3301
950e0118
TM
3302 lockdep_assert_held(&state_lock);
3303
89876f8c 3304 hlist_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
ca943217 3305 if (nfsd_fh_match(&fp->fi_fhandle, fh)) {
13cd2184 3306 get_nfs4_file(fp);
1da177e4 3307 return fp;
13cd2184 3308 }
1da177e4
LT
3309 }
3310 return NULL;
3311}
3312
950e0118 3313static struct nfs4_file *
ca943217 3314find_file(struct knfsd_fh *fh)
950e0118
TM
3315{
3316 struct nfs4_file *fp;
3317
3318 spin_lock(&state_lock);
ca943217 3319 fp = find_file_locked(fh);
950e0118
TM
3320 spin_unlock(&state_lock);
3321 return fp;
3322}
3323
3324static struct nfs4_file *
f9c00c3a 3325find_or_add_file(struct nfs4_file *new, struct knfsd_fh *fh)
950e0118
TM
3326{
3327 struct nfs4_file *fp;
3328
3329 spin_lock(&state_lock);
ca943217 3330 fp = find_file_locked(fh);
950e0118 3331 if (fp == NULL) {
f9c00c3a 3332 nfsd4_init_file(new, fh);
950e0118
TM
3333 fp = new;
3334 }
3335 spin_unlock(&state_lock);
3336
3337 return fp;
3338}
3339
1da177e4
LT
3340/*
3341 * Called to check deny when READ with all zero stateid or
3342 * WRITE with all zero or all one stateid
3343 */
b37ad28b 3344static __be32
1da177e4
LT
3345nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
3346{
1da177e4 3347 struct nfs4_file *fp;
baeb4ff0 3348 __be32 ret = nfs_ok;
1da177e4 3349
ca943217 3350 fp = find_file(&current_fh->fh_handle);
13cd2184 3351 if (!fp)
baeb4ff0
JL
3352 return ret;
3353 /* Check for conflicting share reservations */
1d31a253 3354 spin_lock(&fp->fi_lock);
baeb4ff0
JL
3355 if (fp->fi_share_deny & deny_type)
3356 ret = nfserr_locked;
1d31a253 3357 spin_unlock(&fp->fi_lock);
13cd2184
N
3358 put_nfs4_file(fp);
3359 return ret;
1da177e4
LT
3360}
3361
0162ac2b 3362static void nfsd4_cb_recall_prepare(struct nfsd4_callback *cb)
1da177e4 3363{
0162ac2b 3364 struct nfs4_delegation *dp = cb_to_delegation(cb);
11b9164a
TM
3365 struct nfsd_net *nn = net_generic(dp->dl_stid.sc_client->net,
3366 nfsd_net_id);
e8c69d17 3367
11b9164a 3368 block_delegations(&dp->dl_stid.sc_file->fi_fhandle);
f54fe962 3369
dff1399f 3370 /*
f54fe962
JL
3371 * We can't do this in nfsd_break_deleg_cb because it is
3372 * already holding inode->i_lock.
3373 *
dff1399f
JL
3374 * If the dl_time != 0, then we know that it has already been
3375 * queued for a lease break. Don't queue it again.
3376 */
f54fe962 3377 spin_lock(&state_lock);
dff1399f 3378 if (dp->dl_time == 0) {
dff1399f 3379 dp->dl_time = get_seconds();
02e1215f 3380 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
dff1399f 3381 }
02e1215f
JL
3382 spin_unlock(&state_lock);
3383}
1da177e4 3384
0162ac2b
CH
3385static int nfsd4_cb_recall_done(struct nfsd4_callback *cb,
3386 struct rpc_task *task)
3387{
3388 struct nfs4_delegation *dp = cb_to_delegation(cb);
3389
3390 switch (task->tk_status) {
3391 case 0:
3392 return 1;
3393 case -EBADHANDLE:
3394 case -NFS4ERR_BAD_STATEID:
3395 /*
3396 * Race: client probably got cb_recall before open reply
3397 * granting delegation.
3398 */
3399 if (dp->dl_retries--) {
3400 rpc_delay(task, 2 * HZ);
3401 return 0;
3402 }
3403 /*FALLTHRU*/
3404 default:
3405 return -1;
3406 }
3407}
3408
3409static void nfsd4_cb_recall_release(struct nfsd4_callback *cb)
3410{
3411 struct nfs4_delegation *dp = cb_to_delegation(cb);
3412
3413 nfs4_put_stid(&dp->dl_stid);
3414}
3415
3416static struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
3417 .prepare = nfsd4_cb_recall_prepare,
3418 .done = nfsd4_cb_recall_done,
3419 .release = nfsd4_cb_recall_release,
3420};
3421
02e1215f
JL
3422static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
3423{
3424 /*
3425 * We're assuming the state code never drops its reference
3426 * without first removing the lease. Since we're in this lease
3427 * callback (and since the lease code is serialized by the kernel
3428 * lock) we know the server hasn't removed the lease yet, we know
3429 * it's safe to take a reference.
3430 */
72c0b0fb 3431 atomic_inc(&dp->dl_stid.sc_count);
f0b5de1b 3432 nfsd4_run_cb(&dp->dl_recall);
6b57d9c8
BF
3433}
3434
1c8c601a 3435/* Called from break_lease() with i_lock held. */
4d01b7f5
JL
3436static bool
3437nfsd_break_deleg_cb(struct file_lock *fl)
6b57d9c8 3438{
4d01b7f5 3439 bool ret = false;
acfdf5c3
BF
3440 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
3441 struct nfs4_delegation *dp;
6b57d9c8 3442
7fa10cd1
BF
3443 if (!fp) {
3444 WARN(1, "(%p)->fl_owner NULL\n", fl);
4d01b7f5 3445 return ret;
7fa10cd1
BF
3446 }
3447 if (fp->fi_had_conflict) {
3448 WARN(1, "duplicate break on %p\n", fp);
4d01b7f5 3449 return ret;
7fa10cd1 3450 }
0272e1fd
BF
3451 /*
3452 * We don't want the locks code to timeout the lease for us;
acfdf5c3 3453 * we'll remove it ourself if a delegation isn't returned
6b57d9c8 3454 * in time:
0272e1fd
BF
3455 */
3456 fl->fl_break_time = 0;
1da177e4 3457
02e1215f 3458 spin_lock(&fp->fi_lock);
417c6629
JL
3459 fp->fi_had_conflict = true;
3460 /*
4d01b7f5
JL
3461 * If there are no delegations on the list, then return true
3462 * so that the lease code will go ahead and delete it.
417c6629
JL
3463 */
3464 if (list_empty(&fp->fi_delegations))
4d01b7f5 3465 ret = true;
417c6629
JL
3466 else
3467 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
3468 nfsd_break_one_deleg(dp);
02e1215f 3469 spin_unlock(&fp->fi_lock);
4d01b7f5 3470 return ret;
1da177e4
LT
3471}
3472
c45198ed
JL
3473static int
3474nfsd_change_deleg_cb(struct file_lock **onlist, int arg, struct list_head *dispose)
1da177e4
LT
3475{
3476 if (arg & F_UNLCK)
c45198ed 3477 return lease_modify(onlist, arg, dispose);
1da177e4
LT
3478 else
3479 return -EAGAIN;
3480}
3481
7b021967 3482static const struct lock_manager_operations nfsd_lease_mng_ops = {
8fb47a4f
BF
3483 .lm_break = nfsd_break_deleg_cb,
3484 .lm_change = nfsd_change_deleg_cb,
1da177e4
LT
3485};
3486
7a8711c9
BF
3487static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
3488{
3489 if (nfsd4_has_session(cstate))
3490 return nfs_ok;
3491 if (seqid == so->so_seqid - 1)
3492 return nfserr_replay_me;
3493 if (seqid == so->so_seqid)
3494 return nfs_ok;
3495 return nfserr_bad_seqid;
3496}
1da177e4 3497
4b24ca7d
JL
3498static __be32 lookup_clientid(clientid_t *clid,
3499 struct nfsd4_compound_state *cstate,
3500 struct nfsd_net *nn)
3501{
3502 struct nfs4_client *found;
3503
3504 if (cstate->clp) {
3505 found = cstate->clp;
3506 if (!same_clid(&found->cl_clientid, clid))
3507 return nfserr_stale_clientid;
3508 return nfs_ok;
3509 }
3510
3511 if (STALE_CLIENTID(clid, nn))
3512 return nfserr_stale_clientid;
3513
3514 /*
3515 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
3516 * cached already then we know this is for is for v4.0 and "sessions"
3517 * will be false.
3518 */
3519 WARN_ON_ONCE(cstate->session);
3e339f96 3520 spin_lock(&nn->client_lock);
4b24ca7d 3521 found = find_confirmed_client(clid, false, nn);
3e339f96
TM
3522 if (!found) {
3523 spin_unlock(&nn->client_lock);
4b24ca7d 3524 return nfserr_expired;
3e339f96
TM
3525 }
3526 atomic_inc(&found->cl_refcount);
3527 spin_unlock(&nn->client_lock);
4b24ca7d
JL
3528
3529 /* Cache the nfs4_client in cstate! */
3530 cstate->clp = found;
4b24ca7d
JL
3531 return nfs_ok;
3532}
3533
b37ad28b 3534__be32
6668958f 3535nfsd4_process_open1(struct nfsd4_compound_state *cstate,
3320fef1 3536 struct nfsd4_open *open, struct nfsd_net *nn)
1da177e4 3537{
1da177e4
LT
3538 clientid_t *clientid = &open->op_clientid;
3539 struct nfs4_client *clp = NULL;
3540 unsigned int strhashval;
fe0750e5 3541 struct nfs4_openowner *oo = NULL;
4cdc951b 3542 __be32 status;
1da177e4 3543
2c142baa 3544 if (STALE_CLIENTID(&open->op_clientid, nn))
1da177e4 3545 return nfserr_stale_clientid;
32513b40
BF
3546 /*
3547 * In case we need it later, after we've already created the
3548 * file and don't want to risk a further failure:
3549 */
3550 open->op_file = nfsd4_alloc_file();
3551 if (open->op_file == NULL)
3552 return nfserr_jukebox;
1da177e4 3553
2d91e895
TM
3554 status = lookup_clientid(clientid, cstate, nn);
3555 if (status)
3556 return status;
3557 clp = cstate->clp;
3558
d4f0489f
TM
3559 strhashval = ownerstr_hashval(&open->op_owner);
3560 oo = find_openstateowner_str(strhashval, open, clp);
fe0750e5
BF
3561 open->op_openowner = oo;
3562 if (!oo) {
bcf130f9 3563 goto new_owner;
1da177e4 3564 }
dad1c067 3565 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
0f442aa2 3566 /* Replace unconfirmed owners without checking for replay. */
fe0750e5
BF
3567 release_openowner(oo);
3568 open->op_openowner = NULL;
bcf130f9 3569 goto new_owner;
0f442aa2 3570 }
4cdc951b
BF
3571 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
3572 if (status)
3573 return status;
4cdc951b 3574 goto alloc_stateid;
bcf130f9 3575new_owner:
13d6f66b 3576 oo = alloc_init_open_stateowner(strhashval, open, cstate);
bcf130f9
BF
3577 if (oo == NULL)
3578 return nfserr_jukebox;
3579 open->op_openowner = oo;
4cdc951b 3580alloc_stateid:
b49e084d 3581 open->op_stp = nfs4_alloc_open_stateid(clp);
4cdc951b
BF
3582 if (!open->op_stp)
3583 return nfserr_jukebox;
0f442aa2 3584 return nfs_ok;
1da177e4
LT
3585}
3586
b37ad28b 3587static inline __be32
4a6e43e6
N
3588nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
3589{
3590 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
3591 return nfserr_openmode;
3592 else
3593 return nfs_ok;
3594}
3595
f459e453 3596static int share_access_to_flags(u32 share_access)
52f4fb43 3597{
f459e453 3598 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
52f4fb43
N
3599}
3600
38c2f4b1 3601static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
24a0111e 3602{
f459e453 3603 struct nfs4_stid *ret;
24a0111e 3604
38c2f4b1 3605 ret = find_stateid_by_type(cl, s, NFS4_DELEG_STID);
f459e453
BF
3606 if (!ret)
3607 return NULL;
3608 return delegstateid(ret);
24a0111e
BF
3609}
3610
8b289b2c
BF
3611static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
3612{
3613 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
3614 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
3615}
3616
b37ad28b 3617static __be32
41d22663 3618nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
567d9829
N
3619 struct nfs4_delegation **dp)
3620{
3621 int flags;
b37ad28b 3622 __be32 status = nfserr_bad_stateid;
dcd94cc2 3623 struct nfs4_delegation *deleg;
567d9829 3624
dcd94cc2
TM
3625 deleg = find_deleg_stateid(cl, &open->op_delegate_stateid);
3626 if (deleg == NULL)
c44c5eeb 3627 goto out;
24a0111e 3628 flags = share_access_to_flags(open->op_share_access);
dcd94cc2
TM
3629 status = nfs4_check_delegmode(deleg, flags);
3630 if (status) {
3631 nfs4_put_stid(&deleg->dl_stid);
3632 goto out;
3633 }
3634 *dp = deleg;
c44c5eeb 3635out:
8b289b2c 3636 if (!nfsd4_is_deleg_cur(open))
c44c5eeb
N
3637 return nfs_ok;
3638 if (status)
3639 return status;
dad1c067 3640 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
c44c5eeb 3641 return nfs_ok;
567d9829
N
3642}
3643
a46cb7f2
JL
3644static struct nfs4_ol_stateid *
3645nfsd4_find_existing_open(struct nfs4_file *fp, struct nfsd4_open *open)
1da177e4 3646{
a46cb7f2 3647 struct nfs4_ol_stateid *local, *ret = NULL;
fe0750e5 3648 struct nfs4_openowner *oo = open->op_openowner;
1da177e4 3649
1d31a253 3650 spin_lock(&fp->fi_lock);
8beefa24 3651 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
1da177e4
LT
3652 /* ignore lock owners */
3653 if (local->st_stateowner->so_is_open_owner == 0)
3654 continue;
baeb4ff0 3655 if (local->st_stateowner == &oo->oo_owner) {
a46cb7f2 3656 ret = local;
d6f2bc5d 3657 atomic_inc(&ret->st_stid.sc_count);
baeb4ff0 3658 break;
1d31a253 3659 }
1da177e4 3660 }
1d31a253 3661 spin_unlock(&fp->fi_lock);
a46cb7f2 3662 return ret;
1da177e4
LT
3663}
3664
21fb4016
BF
3665static inline int nfs4_access_to_access(u32 nfs4_access)
3666{
3667 int flags = 0;
3668
3669 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
3670 flags |= NFSD_MAY_READ;
3671 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
3672 flags |= NFSD_MAY_WRITE;
3673 return flags;
3674}
3675
7e6a72e5
CH
3676static inline __be32
3677nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
3678 struct nfsd4_open *open)
3679{
3680 struct iattr iattr = {
3681 .ia_valid = ATTR_SIZE,
3682 .ia_size = 0,
3683 };
3684 if (!open->op_truncate)
3685 return 0;
3686 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
3687 return nfserr_inval;
3688 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
3689}
3690
0c12eaff 3691static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
6eb3a1d0
JL
3692 struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp,
3693 struct nfsd4_open *open)
f9d7562f 3694{
de18643d 3695 struct file *filp = NULL;
f9d7562f 3696 __be32 status;
0c12eaff
CB
3697 int oflag = nfs4_access_to_omode(open->op_share_access);
3698 int access = nfs4_access_to_access(open->op_share_access);
baeb4ff0 3699 unsigned char old_access_bmap, old_deny_bmap;
0c12eaff 3700
de18643d 3701 spin_lock(&fp->fi_lock);
baeb4ff0
JL
3702
3703 /*
3704 * Are we trying to set a deny mode that would conflict with
3705 * current access?
3706 */
3707 status = nfs4_file_check_deny(fp, open->op_share_deny);
3708 if (status != nfs_ok) {
3709 spin_unlock(&fp->fi_lock);
3710 goto out;
3711 }
3712
3713 /* set access to the file */
3714 status = nfs4_file_get_access(fp, open->op_share_access);
3715 if (status != nfs_ok) {
3716 spin_unlock(&fp->fi_lock);
3717 goto out;
3718 }
3719
3720 /* Set access bits in stateid */
3721 old_access_bmap = stp->st_access_bmap;
3722 set_access(open->op_share_access, stp);
3723
3724 /* Set new deny mask */
3725 old_deny_bmap = stp->st_deny_bmap;
3726 set_deny(open->op_share_deny, stp);
3727 fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
3728
f9d7562f 3729 if (!fp->fi_fds[oflag]) {
de18643d
TM
3730 spin_unlock(&fp->fi_lock);
3731 status = nfsd_open(rqstp, cur_fh, S_IFREG, access, &filp);
f9d7562f 3732 if (status)
baeb4ff0 3733 goto out_put_access;
de18643d
TM
3734 spin_lock(&fp->fi_lock);
3735 if (!fp->fi_fds[oflag]) {
3736 fp->fi_fds[oflag] = filp;
3737 filp = NULL;
3738 }
f9d7562f 3739 }
de18643d
TM
3740 spin_unlock(&fp->fi_lock);
3741 if (filp)
3742 fput(filp);
f9d7562f 3743
7e6a72e5
CH
3744 status = nfsd4_truncate(rqstp, cur_fh, open);
3745 if (status)
3746 goto out_put_access;
7e6a72e5
CH
3747out:
3748 return status;
baeb4ff0
JL
3749out_put_access:
3750 stp->st_access_bmap = old_access_bmap;
3751 nfs4_file_put_access(fp, open->op_share_access);
3752 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap), stp);
3753 goto out;
1da177e4
LT
3754}
3755
b37ad28b 3756static __be32
dcef0413 3757nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp, struct nfsd4_open *open)
1da177e4 3758{
b37ad28b 3759 __be32 status;
baeb4ff0 3760 unsigned char old_deny_bmap;
1da177e4 3761
6eb3a1d0 3762 if (!test_access(open->op_share_access, stp))
baeb4ff0 3763 return nfs4_get_vfs_file(rqstp, fp, cur_fh, stp, open);
7e6a72e5 3764
baeb4ff0
JL
3765 /* test and set deny mode */
3766 spin_lock(&fp->fi_lock);
3767 status = nfs4_file_check_deny(fp, open->op_share_deny);
3768 if (status == nfs_ok) {
3769 old_deny_bmap = stp->st_deny_bmap;
3770 set_deny(open->op_share_deny, stp);
3771 fp->fi_share_deny |=
3772 (open->op_share_deny & NFS4_SHARE_DENY_BOTH);
3773 }
3774 spin_unlock(&fp->fi_lock);
3775
3776 if (status != nfs_ok)
1da177e4 3777 return status;
1da177e4 3778
baeb4ff0
JL
3779 status = nfsd4_truncate(rqstp, cur_fh, open);
3780 if (status != nfs_ok)
3781 reset_union_bmap_deny(old_deny_bmap, stp);
3782 return status;
3783}
1da177e4 3784
1da177e4 3785static void
1255a8f3 3786nfs4_set_claim_prev(struct nfsd4_open *open, bool has_session)
1da177e4 3787{
dad1c067 3788 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
1da177e4
LT
3789}
3790
14a24e99
BF
3791/* Should we give out recallable state?: */
3792static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
3793{
3794 if (clp->cl_cb_state == NFSD4_CB_UP)
3795 return true;
3796 /*
3797 * In the sessions case, since we don't have to establish a
3798 * separate connection for callbacks, we assume it's OK
3799 * until we hear otherwise:
3800 */
3801 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
3802}
3803
d564fbec 3804static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag)
22d38c4c
BF
3805{
3806 struct file_lock *fl;
3807
3808 fl = locks_alloc_lock();
3809 if (!fl)
3810 return NULL;
22d38c4c 3811 fl->fl_lmops = &nfsd_lease_mng_ops;
617588d5 3812 fl->fl_flags = FL_DELEG;
22d38c4c
BF
3813 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
3814 fl->fl_end = OFFSET_MAX;
d564fbec 3815 fl->fl_owner = (fl_owner_t)fp;
22d38c4c 3816 fl->fl_pid = current->tgid;
22d38c4c
BF
3817 return fl;
3818}
3819
99c41515 3820static int nfs4_setlease(struct nfs4_delegation *dp)
edab9782 3821{
11b9164a 3822 struct nfs4_file *fp = dp->dl_stid.sc_file;
415b96c5 3823 struct file_lock *fl, *ret;
417c6629
JL
3824 struct file *filp;
3825 int status = 0;
edab9782 3826
d564fbec 3827 fl = nfs4_alloc_init_lease(fp, NFS4_OPEN_DELEGATE_READ);
edab9782
BF
3828 if (!fl)
3829 return -ENOMEM;
417c6629
JL
3830 filp = find_readable_file(fp);
3831 if (!filp) {
3832 /* We should always have a readable file here */
3833 WARN_ON_ONCE(1);
3834 return -EBADF;
3835 }
3836 fl->fl_file = filp;
415b96c5 3837 ret = fl;
e6f5c789 3838 status = vfs_setlease(filp, fl->fl_type, &fl, NULL);
1c7dd2ff 3839 if (fl)
417c6629 3840 locks_free_lock(fl);
1c7dd2ff 3841 if (status)
417c6629 3842 goto out_fput;
417c6629
JL
3843 spin_lock(&state_lock);
3844 spin_lock(&fp->fi_lock);
3845 /* Did the lease get broken before we took the lock? */
3846 status = -EAGAIN;
3847 if (fp->fi_had_conflict)
3848 goto out_unlock;
3849 /* Race breaker */
0c637be8 3850 if (fp->fi_deleg_file) {
417c6629
JL
3851 status = 0;
3852 atomic_inc(&fp->fi_delegees);
3853 hash_delegation_locked(dp, fp);
3854 goto out_unlock;
3855 }
417c6629 3856 fp->fi_deleg_file = filp;
acfdf5c3 3857 atomic_set(&fp->fi_delegees, 1);
931ee56c 3858 hash_delegation_locked(dp, fp);
417c6629 3859 spin_unlock(&fp->fi_lock);
cdc97505 3860 spin_unlock(&state_lock);
acfdf5c3 3861 return 0;
417c6629
JL
3862out_unlock:
3863 spin_unlock(&fp->fi_lock);
3864 spin_unlock(&state_lock);
3865out_fput:
3866 fput(filp);
e873088f 3867 return status;
acfdf5c3
BF
3868}
3869
0b26693c
JL
3870static struct nfs4_delegation *
3871nfs4_set_delegation(struct nfs4_client *clp, struct svc_fh *fh,
3872 struct nfs4_file *fp)
acfdf5c3 3873{
0b26693c
JL
3874 int status;
3875 struct nfs4_delegation *dp;
417c6629 3876
bf7bd3e9 3877 if (fp->fi_had_conflict)
0b26693c
JL
3878 return ERR_PTR(-EAGAIN);
3879
3880 dp = alloc_init_deleg(clp, fh);
3881 if (!dp)
3882 return ERR_PTR(-ENOMEM);
3883
bf7bd3e9 3884 get_nfs4_file(fp);
417c6629
JL
3885 spin_lock(&state_lock);
3886 spin_lock(&fp->fi_lock);
11b9164a 3887 dp->dl_stid.sc_file = fp;
0c637be8 3888 if (!fp->fi_deleg_file) {
417c6629
JL
3889 spin_unlock(&fp->fi_lock);
3890 spin_unlock(&state_lock);
0b26693c
JL
3891 status = nfs4_setlease(dp);
3892 goto out;
417c6629 3893 }
cbf7a75b 3894 atomic_inc(&fp->fi_delegees);
acfdf5c3 3895 if (fp->fi_had_conflict) {
417c6629
JL
3896 status = -EAGAIN;
3897 goto out_unlock;
acfdf5c3 3898 }
931ee56c 3899 hash_delegation_locked(dp, fp);
0b26693c 3900 status = 0;
417c6629
JL
3901out_unlock:
3902 spin_unlock(&fp->fi_lock);
cdc97505 3903 spin_unlock(&state_lock);
0b26693c
JL
3904out:
3905 if (status) {
6011695d 3906 nfs4_put_stid(&dp->dl_stid);
0b26693c
JL
3907 return ERR_PTR(status);
3908 }
3909 return dp;
edab9782
BF
3910}
3911
4aa8913c
BH
3912static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
3913{
3914 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3915 if (status == -EAGAIN)
3916 open->op_why_no_deleg = WND4_CONTENTION;
3917 else {
3918 open->op_why_no_deleg = WND4_RESOURCE;
3919 switch (open->op_deleg_want) {
3920 case NFS4_SHARE_WANT_READ_DELEG:
3921 case NFS4_SHARE_WANT_WRITE_DELEG:
3922 case NFS4_SHARE_WANT_ANY_DELEG:
3923 break;
3924 case NFS4_SHARE_WANT_CANCEL:
3925 open->op_why_no_deleg = WND4_CANCELLED;
3926 break;
3927 case NFS4_SHARE_WANT_NO_DELEG:
063b0fb9 3928 WARN_ON_ONCE(1);
4aa8913c
BH
3929 }
3930 }
3931}
3932
1da177e4
LT
3933/*
3934 * Attempt to hand out a delegation.
99c41515
BF
3935 *
3936 * Note we don't support write delegations, and won't until the vfs has
3937 * proper support for them.
1da177e4
LT
3938 */
3939static void
4cf59221
JL
3940nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open,
3941 struct nfs4_ol_stateid *stp)
1da177e4
LT
3942{
3943 struct nfs4_delegation *dp;
4cf59221
JL
3944 struct nfs4_openowner *oo = openowner(stp->st_stateowner);
3945 struct nfs4_client *clp = stp->st_stid.sc_client;
14a24e99 3946 int cb_up;
99c41515 3947 int status = 0;
1da177e4 3948
fe0750e5 3949 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
7b190fec
N
3950 open->op_recall = 0;
3951 switch (open->op_claim_type) {
3952 case NFS4_OPEN_CLAIM_PREVIOUS:
2bf23875 3953 if (!cb_up)
7b190fec 3954 open->op_recall = 1;
99c41515
BF
3955 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
3956 goto out_no_deleg;
7b190fec
N
3957 break;
3958 case NFS4_OPEN_CLAIM_NULL:
ed47b062 3959 case NFS4_OPEN_CLAIM_FH:
99c41515
BF
3960 /*
3961 * Let's not give out any delegations till everyone's
3962 * had the chance to reclaim theirs....
3963 */
4cf59221 3964 if (locks_in_grace(clp->net))
99c41515 3965 goto out_no_deleg;
dad1c067 3966 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
99c41515 3967 goto out_no_deleg;
9a0590ae
SD
3968 /*
3969 * Also, if the file was opened for write or
3970 * create, there's a good chance the client's
3971 * about to write to it, resulting in an
3972 * immediate recall (since we don't support
3973 * write delegations):
3974 */
7b190fec 3975 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
99c41515
BF
3976 goto out_no_deleg;
3977 if (open->op_create == NFS4_OPEN_CREATE)
3978 goto out_no_deleg;
7b190fec
N
3979 break;
3980 default:
99c41515 3981 goto out_no_deleg;
7b190fec 3982 }
11b9164a 3983 dp = nfs4_set_delegation(clp, fh, stp->st_stid.sc_file);
0b26693c 3984 if (IS_ERR(dp))
dd239cc0 3985 goto out_no_deleg;
1da177e4 3986
d5477a8d 3987 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
1da177e4 3988
8c10cbdb 3989 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
d5477a8d 3990 STATEID_VAL(&dp->dl_stid.sc_stateid));
99c41515 3991 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
67cb1279 3992 nfs4_put_stid(&dp->dl_stid);
dd239cc0 3993 return;
dd239cc0 3994out_no_deleg:
99c41515
BF
3995 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
3996 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
d08d32e6 3997 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
99c41515 3998 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
d08d32e6
BF
3999 open->op_recall = 1;
4000 }
99c41515
BF
4001
4002 /* 4.1 client asking for a delegation? */
4003 if (open->op_deleg_want)
4004 nfsd4_open_deleg_none_ext(open, status);
4005 return;
1da177e4
LT
4006}
4007
e27f49c3
BH
4008static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
4009 struct nfs4_delegation *dp)
4010{
4011 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
4012 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4013 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4014 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
4015 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
4016 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
4017 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4018 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
4019 }
4020 /* Otherwise the client must be confused wanting a delegation
4021 * it already has, therefore we don't return
4022 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
4023 */
4024}
4025
b37ad28b 4026__be32
1da177e4
LT
4027nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
4028{
6668958f 4029 struct nfsd4_compoundres *resp = rqstp->rq_resp;
38c2f4b1 4030 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
1da177e4 4031 struct nfs4_file *fp = NULL;
dcef0413 4032 struct nfs4_ol_stateid *stp = NULL;
567d9829 4033 struct nfs4_delegation *dp = NULL;
b37ad28b 4034 __be32 status;
1da177e4 4035
1da177e4
LT
4036 /*
4037 * Lookup file; if found, lookup stateid and check open request,
4038 * and check for delegations in the process of being recalled.
4039 * If not found, create the nfs4_file struct
4040 */
f9c00c3a 4041 fp = find_or_add_file(open->op_file, &current_fh->fh_handle);
950e0118 4042 if (fp != open->op_file) {
41d22663 4043 status = nfs4_check_deleg(cl, open, &dp);
c44c5eeb
N
4044 if (status)
4045 goto out;
a46cb7f2 4046 stp = nfsd4_find_existing_open(fp, open);
1da177e4 4047 } else {
950e0118 4048 open->op_file = NULL;
c44c5eeb 4049 status = nfserr_bad_stateid;
8b289b2c 4050 if (nfsd4_is_deleg_cur(open))
c44c5eeb 4051 goto out;
3e772463 4052 status = nfserr_jukebox;
1da177e4
LT
4053 }
4054
4055 /*
4056 * OPEN the file, or upgrade an existing OPEN.
4057 * If truncate fails, the OPEN fails.
4058 */
4059 if (stp) {
4060 /* Stateid was found, this is an OPEN upgrade */
f9d7562f 4061 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
1da177e4
LT
4062 if (status)
4063 goto out;
4064 } else {
4cdc951b
BF
4065 stp = open->op_stp;
4066 open->op_stp = NULL;
996e0938 4067 init_open_stateid(stp, fp, open);
6eb3a1d0
JL
4068 status = nfs4_get_vfs_file(rqstp, fp, current_fh, stp, open);
4069 if (status) {
4070 release_open_stateid(stp);
4071 goto out;
4072 }
1da177e4 4073 }
dcef0413
BF
4074 update_stateid(&stp->st_stid.sc_stateid);
4075 memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4 4076
d24433cd 4077 if (nfsd4_has_session(&resp->cstate)) {
d24433cd
BH
4078 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
4079 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
4080 open->op_why_no_deleg = WND4_NOT_WANTED;
4081 goto nodeleg;
4082 }
4083 }
4084
1da177e4
LT
4085 /*
4086 * Attempt to hand out a delegation. No error return, because the
4087 * OPEN succeeds even if we fail.
4088 */
4cf59221 4089 nfs4_open_delegation(current_fh, open, stp);
d24433cd 4090nodeleg:
1da177e4
LT
4091 status = nfs_ok;
4092
8c10cbdb 4093 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
dcef0413 4094 STATEID_VAL(&stp->st_stid.sc_stateid));
1da177e4 4095out:
d24433cd
BH
4096 /* 4.1 client trying to upgrade/downgrade delegation? */
4097 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
e27f49c3
BH
4098 open->op_deleg_want)
4099 nfsd4_deleg_xgrade_none_ext(open, dp);
d24433cd 4100
13cd2184
N
4101 if (fp)
4102 put_nfs4_file(fp);
37515177 4103 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1255a8f3 4104 nfs4_set_claim_prev(open, nfsd4_has_session(&resp->cstate));
1da177e4
LT
4105 /*
4106 * To finish the open response, we just need to set the rflags.
4107 */
4108 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
dad1c067 4109 if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED) &&
6668958f 4110 !nfsd4_has_session(&resp->cstate))
1da177e4 4111 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
dcd94cc2
TM
4112 if (dp)
4113 nfs4_put_stid(&dp->dl_stid);
d6f2bc5d
TM
4114 if (stp)
4115 nfs4_put_stid(&stp->st_stid);
1da177e4
LT
4116
4117 return status;
4118}
4119
58fb12e6
JL
4120void nfsd4_cleanup_open_state(struct nfsd4_compound_state *cstate,
4121 struct nfsd4_open *open, __be32 status)
d29b20cd
BF
4122{
4123 if (open->op_openowner) {
d3134b10
JL
4124 struct nfs4_stateowner *so = &open->op_openowner->oo_owner;
4125
4126 nfsd4_cstate_assign_replay(cstate, so);
4127 nfs4_put_stateowner(so);
d29b20cd 4128 }
32513b40
BF
4129 if (open->op_file)
4130 nfsd4_free_file(open->op_file);
4cdc951b 4131 if (open->op_stp)
6011695d 4132 nfs4_put_stid(&open->op_stp->st_stid);
d29b20cd
BF
4133}
4134
b37ad28b 4135__be32
b591480b
BF
4136nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4137 clientid_t *clid)
1da177e4
LT
4138{
4139 struct nfs4_client *clp;
b37ad28b 4140 __be32 status;
7f2210fa 4141 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 4142
1da177e4
LT
4143 dprintk("process_renew(%08x/%08x): starting\n",
4144 clid->cl_boot, clid->cl_id);
4b24ca7d 4145 status = lookup_clientid(clid, cstate, nn);
9b2ef62b 4146 if (status)
1da177e4 4147 goto out;
4b24ca7d 4148 clp = cstate->clp;
1da177e4 4149 status = nfserr_cb_path_down;
ea1da636 4150 if (!list_empty(&clp->cl_delegations)
77a3569d 4151 && clp->cl_cb_state != NFSD4_CB_UP)
1da177e4
LT
4152 goto out;
4153 status = nfs_ok;
4154out:
1da177e4
LT
4155 return status;
4156}
4157
7f5ef2e9 4158void
12760c66 4159nfsd4_end_grace(struct nfsd_net *nn)
a76b4319 4160{
33dcc481 4161 /* do nothing if grace period already ended */
a51c84ed 4162 if (nn->grace_ended)
33dcc481
JL
4163 return;
4164
a76b4319 4165 dprintk("NFSD: end of grace period\n");
a51c84ed 4166 nn->grace_ended = true;
70b28235
BF
4167 /*
4168 * If the server goes down again right now, an NFSv4
4169 * client will still be allowed to reclaim after it comes back up,
4170 * even if it hasn't yet had a chance to reclaim state this time.
4171 *
4172 */
919b8049 4173 nfsd4_record_grace_done(nn);
70b28235
BF
4174 /*
4175 * At this point, NFSv4 clients can still reclaim. But if the
4176 * server crashes, any that have not yet reclaimed will be out
4177 * of luck on the next boot.
4178 *
4179 * (NFSv4.1+ clients are considered to have reclaimed once they
4180 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
4181 * have reclaimed after their first OPEN.)
4182 */
5e1533c7 4183 locks_end_grace(&nn->nfsd4_manager);
70b28235
BF
4184 /*
4185 * At this point, and once lockd and/or any other containers
4186 * exit their grace period, further reclaims will fail and
4187 * regular locking can resume.
4188 */
a76b4319
N
4189}
4190
fd39ca9a 4191static time_t
09121281 4192nfs4_laundromat(struct nfsd_net *nn)
1da177e4
LT
4193{
4194 struct nfs4_client *clp;
fe0750e5 4195 struct nfs4_openowner *oo;
1da177e4 4196 struct nfs4_delegation *dp;
217526e7 4197 struct nfs4_ol_stateid *stp;
1da177e4 4198 struct list_head *pos, *next, reaplist;
3d733711 4199 time_t cutoff = get_seconds() - nn->nfsd4_lease;
a832e7ae 4200 time_t t, new_timeo = nn->nfsd4_lease;
1da177e4 4201
1da177e4 4202 dprintk("NFSD: laundromat service - starting\n");
12760c66 4203 nfsd4_end_grace(nn);
36acb66b 4204 INIT_LIST_HEAD(&reaplist);
c9a49628 4205 spin_lock(&nn->client_lock);
5ed58bb2 4206 list_for_each_safe(pos, next, &nn->client_lru) {
1da177e4
LT
4207 clp = list_entry(pos, struct nfs4_client, cl_lru);
4208 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
4209 t = clp->cl_time - cutoff;
a832e7ae 4210 new_timeo = min(new_timeo, t);
1da177e4
LT
4211 break;
4212 }
221a6876 4213 if (mark_client_expired_locked(clp)) {
d7682988
BH
4214 dprintk("NFSD: client in use (clientid %08x)\n",
4215 clp->cl_clientid.cl_id);
4216 continue;
4217 }
4864af97 4218 list_add(&clp->cl_lru, &reaplist);
36acb66b 4219 }
c9a49628 4220 spin_unlock(&nn->client_lock);
36acb66b
BH
4221 list_for_each_safe(pos, next, &reaplist) {
4222 clp = list_entry(pos, struct nfs4_client, cl_lru);
1da177e4
LT
4223 dprintk("NFSD: purging unused client (clientid %08x)\n",
4224 clp->cl_clientid.cl_id);
4864af97 4225 list_del_init(&clp->cl_lru);
1da177e4
LT
4226 expire_client(clp);
4227 }
cdc97505 4228 spin_lock(&state_lock);
e8c69d17 4229 list_for_each_safe(pos, next, &nn->del_recall_lru) {
1da177e4 4230 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4e37a7c2
SK
4231 if (net_generic(dp->dl_stid.sc_client->net, nfsd_net_id) != nn)
4232 continue;
1da177e4 4233 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
a832e7ae
JL
4234 t = dp->dl_time - cutoff;
4235 new_timeo = min(new_timeo, t);
1da177e4
LT
4236 break;
4237 }
42690676
JL
4238 unhash_delegation_locked(dp);
4239 list_add(&dp->dl_recall_lru, &reaplist);
1da177e4 4240 }
cdc97505 4241 spin_unlock(&state_lock);
2d4a532d
JL
4242 while (!list_empty(&reaplist)) {
4243 dp = list_first_entry(&reaplist, struct nfs4_delegation,
4244 dl_recall_lru);
4245 list_del_init(&dp->dl_recall_lru);
3bd64a5b 4246 revoke_delegation(dp);
1da177e4 4247 }
217526e7
JL
4248
4249 spin_lock(&nn->client_lock);
4250 while (!list_empty(&nn->close_lru)) {
4251 oo = list_first_entry(&nn->close_lru, struct nfs4_openowner,
4252 oo_close_lru);
4253 if (time_after((unsigned long)oo->oo_time,
4254 (unsigned long)cutoff)) {
a832e7ae
JL
4255 t = oo->oo_time - cutoff;
4256 new_timeo = min(new_timeo, t);
1da177e4
LT
4257 break;
4258 }
217526e7
JL
4259 list_del_init(&oo->oo_close_lru);
4260 stp = oo->oo_last_closed_stid;
4261 oo->oo_last_closed_stid = NULL;
4262 spin_unlock(&nn->client_lock);
4263 nfs4_put_stid(&stp->st_stid);
4264 spin_lock(&nn->client_lock);
1da177e4 4265 }
217526e7
JL
4266 spin_unlock(&nn->client_lock);
4267
a832e7ae 4268 new_timeo = max_t(time_t, new_timeo, NFSD_LAUNDROMAT_MINTIMEOUT);
a832e7ae 4269 return new_timeo;
1da177e4
LT
4270}
4271
a254b246
HH
4272static struct workqueue_struct *laundry_wq;
4273static void laundromat_main(struct work_struct *);
a254b246
HH
4274
4275static void
09121281 4276laundromat_main(struct work_struct *laundry)
1da177e4
LT
4277{
4278 time_t t;
09121281
SK
4279 struct delayed_work *dwork = container_of(laundry, struct delayed_work,
4280 work);
4281 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
4282 laundromat_work);
1da177e4 4283
09121281 4284 t = nfs4_laundromat(nn);
1da177e4 4285 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
09121281 4286 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
1da177e4
LT
4287}
4288
f7a4d872 4289static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
1da177e4 4290{
11b9164a 4291 if (!nfsd_fh_match(&fhp->fh_handle, &stp->st_stid.sc_file->fi_fhandle))
f7a4d872
BF
4292 return nfserr_bad_stateid;
4293 return nfs_ok;
1da177e4
LT
4294}
4295
1da177e4 4296static inline int
82c5ff1b 4297access_permit_read(struct nfs4_ol_stateid *stp)
1da177e4 4298{
82c5ff1b
JL
4299 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
4300 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
4301 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
1da177e4
LT
4302}
4303
4304static inline int
82c5ff1b 4305access_permit_write(struct nfs4_ol_stateid *stp)
1da177e4 4306{
82c5ff1b
JL
4307 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
4308 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
1da177e4
LT
4309}
4310
4311static
dcef0413 4312__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
1da177e4 4313{
b37ad28b 4314 __be32 status = nfserr_openmode;
1da177e4 4315
02921914
BF
4316 /* For lock stateid's, we test the parent open, not the lock: */
4317 if (stp->st_openstp)
4318 stp = stp->st_openstp;
82c5ff1b 4319 if ((flags & WR_STATE) && !access_permit_write(stp))
1da177e4 4320 goto out;
82c5ff1b 4321 if ((flags & RD_STATE) && !access_permit_read(stp))
1da177e4
LT
4322 goto out;
4323 status = nfs_ok;
4324out:
4325 return status;
4326}
4327
b37ad28b 4328static inline __be32
5ccb0066 4329check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
1da177e4 4330{
203a8c8e 4331 if (ONE_STATEID(stateid) && (flags & RD_STATE))
1da177e4 4332 return nfs_ok;
5ccb0066 4333 else if (locks_in_grace(net)) {
25985edc 4334 /* Answer in remaining cases depends on existence of
1da177e4
LT
4335 * conflicting state; so we must wait out the grace period. */
4336 return nfserr_grace;
4337 } else if (flags & WR_STATE)
4338 return nfs4_share_conflict(current_fh,
4339 NFS4_SHARE_DENY_WRITE);
4340 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4341 return nfs4_share_conflict(current_fh,
4342 NFS4_SHARE_DENY_READ);
4343}
4344
4345/*
4346 * Allow READ/WRITE during grace period on recovered state only for files
4347 * that are not able to provide mandatory locking.
4348 */
4349static inline int
5ccb0066 4350grace_disallows_io(struct net *net, struct inode *inode)
1da177e4 4351{
5ccb0066 4352 return locks_in_grace(net) && mandatory_lock(inode);
1da177e4
LT
4353}
4354
81b82965
BF
4355/* Returns true iff a is later than b: */
4356static bool stateid_generation_after(stateid_t *a, stateid_t *b)
4357{
1a9357f4 4358 return (s32)(a->si_generation - b->si_generation) > 0;
81b82965
BF
4359}
4360
57b7b43b 4361static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
0836f587 4362{
6668958f
AA
4363 /*
4364 * When sessions are used the stateid generation number is ignored
4365 * when it is zero.
4366 */
28dde241 4367 if (has_session && in->si_generation == 0)
81b82965
BF
4368 return nfs_ok;
4369
4370 if (in->si_generation == ref->si_generation)
4371 return nfs_ok;
6668958f 4372
0836f587 4373 /* If the client sends us a stateid from the future, it's buggy: */
81b82965 4374 if (stateid_generation_after(in, ref))
0836f587
BF
4375 return nfserr_bad_stateid;
4376 /*
81b82965
BF
4377 * However, we could see a stateid from the past, even from a
4378 * non-buggy client. For example, if the client sends a lock
4379 * while some IO is outstanding, the lock may bump si_generation
4380 * while the IO is still in flight. The client could avoid that
4381 * situation by waiting for responses on all the IO requests,
4382 * but better performance may result in retrying IO that
4383 * receives an old_stateid error if requests are rarely
4384 * reordered in flight:
0836f587 4385 */
81b82965 4386 return nfserr_old_stateid;
0836f587
BF
4387}
4388
7df302f7 4389static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
17456804 4390{
97b7e3b6
BF
4391 struct nfs4_stid *s;
4392 struct nfs4_ol_stateid *ols;
1af71cc8 4393 __be32 status = nfserr_bad_stateid;
17456804 4394
7df302f7 4395 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
1af71cc8 4396 return status;
7df302f7
CL
4397 /* Client debugging aid. */
4398 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
4399 char addr_str[INET6_ADDRSTRLEN];
4400 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
4401 sizeof(addr_str));
4402 pr_warn_ratelimited("NFSD: client %s testing state ID "
4403 "with incorrect client ID\n", addr_str);
1af71cc8 4404 return status;
7df302f7 4405 }
1af71cc8
JL
4406 spin_lock(&cl->cl_lock);
4407 s = find_stateid_locked(cl, stateid);
97b7e3b6 4408 if (!s)
1af71cc8 4409 goto out_unlock;
36279ac1 4410 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
17456804 4411 if (status)
1af71cc8 4412 goto out_unlock;
23340032
BF
4413 switch (s->sc_type) {
4414 case NFS4_DELEG_STID:
1af71cc8
JL
4415 status = nfs_ok;
4416 break;
3bd64a5b 4417 case NFS4_REVOKED_DELEG_STID:
1af71cc8
JL
4418 status = nfserr_deleg_revoked;
4419 break;
23340032
BF
4420 case NFS4_OPEN_STID:
4421 case NFS4_LOCK_STID:
4422 ols = openlockstateid(s);
4423 if (ols->st_stateowner->so_is_open_owner
4424 && !(openowner(ols->st_stateowner)->oo_flags
4425 & NFS4_OO_CONFIRMED))
1af71cc8
JL
4426 status = nfserr_bad_stateid;
4427 else
4428 status = nfs_ok;
4429 break;
23340032
BF
4430 default:
4431 printk("unknown stateid type %x\n", s->sc_type);
b0fc29d6 4432 /* Fallthrough */
23340032 4433 case NFS4_CLOSED_STID:
b0fc29d6 4434 case NFS4_CLOSED_DELEG_STID:
1af71cc8 4435 status = nfserr_bad_stateid;
23340032 4436 }
1af71cc8
JL
4437out_unlock:
4438 spin_unlock(&cl->cl_lock);
4439 return status;
17456804
BS
4440}
4441
2dd6e458
TM
4442static __be32
4443nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
4444 stateid_t *stateid, unsigned char typemask,
4445 struct nfs4_stid **s, struct nfsd_net *nn)
38c2f4b1 4446{
0eb6f20a 4447 __be32 status;
38c2f4b1
BF
4448
4449 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
4450 return nfserr_bad_stateid;
4b24ca7d 4451 status = lookup_clientid(&stateid->si_opaque.so_clid, cstate, nn);
a8a7c677 4452 if (status == nfserr_stale_clientid) {
4b24ca7d 4453 if (cstate->session)
a8a7c677 4454 return nfserr_bad_stateid;
38c2f4b1 4455 return nfserr_stale_stateid;
a8a7c677 4456 }
0eb6f20a
BF
4457 if (status)
4458 return status;
4b24ca7d 4459 *s = find_stateid_by_type(cstate->clp, stateid, typemask);
38c2f4b1
BF
4460 if (!*s)
4461 return nfserr_bad_stateid;
4462 return nfs_ok;
38c2f4b1
BF
4463}
4464
1da177e4
LT
4465/*
4466* Checks for stateid operations
4467*/
b37ad28b 4468__be32
5ccb0066 4469nfs4_preprocess_stateid_op(struct net *net, struct nfsd4_compound_state *cstate,
dd453dfd 4470 stateid_t *stateid, int flags, struct file **filpp)
1da177e4 4471{
69064a27 4472 struct nfs4_stid *s;
dcef0413 4473 struct nfs4_ol_stateid *stp = NULL;
1da177e4 4474 struct nfs4_delegation *dp = NULL;
dd453dfd 4475 struct svc_fh *current_fh = &cstate->current_fh;
1da177e4 4476 struct inode *ino = current_fh->fh_dentry->d_inode;
3320fef1 4477 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
14bcab1a 4478 struct file *file = NULL;
b37ad28b 4479 __be32 status;
1da177e4 4480
1da177e4
LT
4481 if (filpp)
4482 *filpp = NULL;
4483
5ccb0066 4484 if (grace_disallows_io(net, ino))
1da177e4
LT
4485 return nfserr_grace;
4486
4487 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
5ccb0066 4488 return check_special_stateids(net, current_fh, stateid, flags);
1da177e4 4489
2dd6e458 4490 status = nfsd4_lookup_stateid(cstate, stateid,
db24b3b4 4491 NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
2dd6e458 4492 &s, nn);
38c2f4b1 4493 if (status)
c2d1d6a8 4494 return status;
69064a27
BF
4495 status = check_stateid_generation(stateid, &s->sc_stateid, nfsd4_has_session(cstate));
4496 if (status)
4497 goto out;
f7a4d872
BF
4498 switch (s->sc_type) {
4499 case NFS4_DELEG_STID:
69064a27 4500 dp = delegstateid(s);
dc9bf700
BF
4501 status = nfs4_check_delegmode(dp, flags);
4502 if (status)
4503 goto out;
43b0178e 4504 if (filpp) {
11b9164a 4505 file = dp->dl_stid.sc_file->fi_deleg_file;
14bcab1a 4506 if (!file) {
063b0fb9
BF
4507 WARN_ON_ONCE(1);
4508 status = nfserr_serverfault;
4509 goto out;
4510 }
de18643d 4511 get_file(file);
43b0178e 4512 }
f7a4d872
BF
4513 break;
4514 case NFS4_OPEN_STID:
4515 case NFS4_LOCK_STID:
69064a27 4516 stp = openlockstateid(s);
f7a4d872
BF
4517 status = nfs4_check_fh(current_fh, stp);
4518 if (status)
1da177e4 4519 goto out;
fe0750e5 4520 if (stp->st_stateowner->so_is_open_owner
dad1c067 4521 && !(openowner(stp->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
1da177e4 4522 goto out;
a4455be0
BF
4523 status = nfs4_check_openmode(stp, flags);
4524 if (status)
1da177e4 4525 goto out;
f9d7562f 4526 if (filpp) {
11b9164a
TM
4527 struct nfs4_file *fp = stp->st_stid.sc_file;
4528
f9d7562f 4529 if (flags & RD_STATE)
11b9164a 4530 file = find_readable_file(fp);
f9d7562f 4531 else
11b9164a 4532 file = find_writeable_file(fp);
f9d7562f 4533 }
f7a4d872
BF
4534 break;
4535 default:
14bcab1a
TM
4536 status = nfserr_bad_stateid;
4537 goto out;
1da177e4
LT
4538 }
4539 status = nfs_ok;
14bcab1a 4540 if (file)
de18643d 4541 *filpp = file;
1da177e4 4542out:
fd911011 4543 nfs4_put_stid(s);
1da177e4
LT
4544 return status;
4545}
4546
17456804
BS
4547/*
4548 * Test if the stateid is valid
4549 */
4550__be32
4551nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4552 struct nfsd4_test_stateid *test_stateid)
4553{
03cfb420
BS
4554 struct nfsd4_test_stateid_id *stateid;
4555 struct nfs4_client *cl = cstate->session->se_client;
4556
03cfb420 4557 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
7df302f7
CL
4558 stateid->ts_id_status =
4559 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
03cfb420 4560
17456804
BS
4561 return nfs_ok;
4562}
4563
e1ca12df
BS
4564__be32
4565nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4566 struct nfsd4_free_stateid *free_stateid)
4567{
4568 stateid_t *stateid = &free_stateid->fr_stateid;
2da1cec7 4569 struct nfs4_stid *s;
3bd64a5b 4570 struct nfs4_delegation *dp;
fc5a96c3 4571 struct nfs4_ol_stateid *stp;
38c2f4b1 4572 struct nfs4_client *cl = cstate->session->se_client;
2da1cec7 4573 __be32 ret = nfserr_bad_stateid;
e1ca12df 4574
1af71cc8
JL
4575 spin_lock(&cl->cl_lock);
4576 s = find_stateid_locked(cl, stateid);
2da1cec7 4577 if (!s)
1af71cc8 4578 goto out_unlock;
2da1cec7
BF
4579 switch (s->sc_type) {
4580 case NFS4_DELEG_STID:
e1ca12df 4581 ret = nfserr_locks_held;
1af71cc8 4582 break;
2da1cec7 4583 case NFS4_OPEN_STID:
2da1cec7
BF
4584 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
4585 if (ret)
1af71cc8
JL
4586 break;
4587 ret = nfserr_locks_held;
f7a4d872 4588 break;
1af71cc8
JL
4589 case NFS4_LOCK_STID:
4590 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
4591 if (ret)
4592 break;
fc5a96c3
JL
4593 stp = openlockstateid(s);
4594 ret = nfserr_locks_held;
4595 if (check_for_locks(stp->st_stid.sc_file,
4596 lockowner(stp->st_stateowner)))
4597 break;
4598 unhash_lock_stateid(stp);
1af71cc8 4599 spin_unlock(&cl->cl_lock);
fc5a96c3
JL
4600 nfs4_put_stid(s);
4601 ret = nfs_ok;
1af71cc8 4602 goto out;
3bd64a5b
BF
4603 case NFS4_REVOKED_DELEG_STID:
4604 dp = delegstateid(s);
2d4a532d
JL
4605 list_del_init(&dp->dl_recall_lru);
4606 spin_unlock(&cl->cl_lock);
6011695d 4607 nfs4_put_stid(s);
3bd64a5b 4608 ret = nfs_ok;
1af71cc8
JL
4609 goto out;
4610 /* Default falls through and returns nfserr_bad_stateid */
e1ca12df 4611 }
1af71cc8
JL
4612out_unlock:
4613 spin_unlock(&cl->cl_lock);
e1ca12df 4614out:
e1ca12df
BS
4615 return ret;
4616}
4617
4c4cd222
N
4618static inline int
4619setlkflg (int type)
4620{
4621 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
4622 RD_STATE : WR_STATE;
4623}
1da177e4 4624
dcef0413 4625static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
c0a5d93e
BF
4626{
4627 struct svc_fh *current_fh = &cstate->current_fh;
4628 struct nfs4_stateowner *sop = stp->st_stateowner;
4629 __be32 status;
4630
c0a5d93e
BF
4631 status = nfsd4_check_seqid(cstate, sop, seqid);
4632 if (status)
4633 return status;
3bd64a5b
BF
4634 if (stp->st_stid.sc_type == NFS4_CLOSED_STID
4635 || stp->st_stid.sc_type == NFS4_REVOKED_DELEG_STID)
f7a4d872
BF
4636 /*
4637 * "Closed" stateid's exist *only* to return
3bd64a5b
BF
4638 * nfserr_replay_me from the previous step, and
4639 * revoked delegations are kept only for free_stateid.
f7a4d872
BF
4640 */
4641 return nfserr_bad_stateid;
4642 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
4643 if (status)
4644 return status;
4645 return nfs4_check_fh(current_fh, stp);
c0a5d93e
BF
4646}
4647
1da177e4
LT
4648/*
4649 * Checks for sequence id mutating operations.
4650 */
b37ad28b 4651static __be32
dd453dfd 4652nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
2288d0e3 4653 stateid_t *stateid, char typemask,
3320fef1
SK
4654 struct nfs4_ol_stateid **stpp,
4655 struct nfsd_net *nn)
1da177e4 4656{
0836f587 4657 __be32 status;
38c2f4b1 4658 struct nfs4_stid *s;
e17f99b7 4659 struct nfs4_ol_stateid *stp = NULL;
1da177e4 4660
8c10cbdb
BH
4661 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
4662 seqid, STATEID_VAL(stateid));
3a4f98bb 4663
1da177e4 4664 *stpp = NULL;
2dd6e458 4665 status = nfsd4_lookup_stateid(cstate, stateid, typemask, &s, nn);
c0a5d93e
BF
4666 if (status)
4667 return status;
e17f99b7 4668 stp = openlockstateid(s);
58fb12e6 4669 nfsd4_cstate_assign_replay(cstate, stp->st_stateowner);
1da177e4 4670
e17f99b7 4671 status = nfs4_seqid_op_checks(cstate, stateid, seqid, stp);
fd911011 4672 if (!status)
e17f99b7 4673 *stpp = stp;
fd911011
TM
4674 else
4675 nfs4_put_stid(&stp->st_stid);
e17f99b7 4676 return status;
c0a5d93e 4677}
39325bd0 4678
3320fef1
SK
4679static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
4680 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
c0a5d93e
BF
4681{
4682 __be32 status;
4683 struct nfs4_openowner *oo;
4cbfc9f7 4684 struct nfs4_ol_stateid *stp;
1da177e4 4685
c0a5d93e 4686 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
4cbfc9f7 4687 NFS4_OPEN_STID, &stp, nn);
7a8711c9
BF
4688 if (status)
4689 return status;
4cbfc9f7
TM
4690 oo = openowner(stp->st_stateowner);
4691 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
4692 nfs4_put_stid(&stp->st_stid);
3a4f98bb 4693 return nfserr_bad_stateid;
4cbfc9f7
TM
4694 }
4695 *stpp = stp;
3a4f98bb 4696 return nfs_ok;
1da177e4
LT
4697}
4698
b37ad28b 4699__be32
ca364317 4700nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 4701 struct nfsd4_open_confirm *oc)
1da177e4 4702{
b37ad28b 4703 __be32 status;
fe0750e5 4704 struct nfs4_openowner *oo;
dcef0413 4705 struct nfs4_ol_stateid *stp;
3320fef1 4706 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 4707
a6a9f18f
AV
4708 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
4709 cstate->current_fh.fh_dentry);
1da177e4 4710
ca364317 4711 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
a8cddc5d
BF
4712 if (status)
4713 return status;
1da177e4 4714
9072d5c6 4715 status = nfs4_preprocess_seqid_op(cstate,
ca364317 4716 oc->oc_seqid, &oc->oc_req_stateid,
3320fef1 4717 NFS4_OPEN_STID, &stp, nn);
9072d5c6 4718 if (status)
68b66e82 4719 goto out;
fe0750e5 4720 oo = openowner(stp->st_stateowner);
68b66e82 4721 status = nfserr_bad_stateid;
dad1c067 4722 if (oo->oo_flags & NFS4_OO_CONFIRMED)
2585fc79 4723 goto put_stateid;
dad1c067 4724 oo->oo_flags |= NFS4_OO_CONFIRMED;
dcef0413
BF
4725 update_stateid(&stp->st_stid.sc_stateid);
4726 memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
8c10cbdb 4727 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
dcef0413 4728 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
c7b9a459 4729
2a4317c5 4730 nfsd4_client_record_create(oo->oo_owner.so_client);
68b66e82 4731 status = nfs_ok;
2585fc79
TM
4732put_stateid:
4733 nfs4_put_stid(&stp->st_stid);
1da177e4 4734out:
9411b1d4 4735 nfsd4_bump_seqid(cstate, status);
1da177e4
LT
4736 return status;
4737}
4738
6409a5a6 4739static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
1da177e4 4740{
82c5ff1b 4741 if (!test_access(access, stp))
6409a5a6 4742 return;
11b9164a 4743 nfs4_file_put_access(stp->st_stid.sc_file, access);
82c5ff1b 4744 clear_access(access, stp);
6409a5a6 4745}
f197c271 4746
6409a5a6
BF
4747static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
4748{
4749 switch (to_access) {
4750 case NFS4_SHARE_ACCESS_READ:
4751 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
4752 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
4753 break;
4754 case NFS4_SHARE_ACCESS_WRITE:
4755 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
4756 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
4757 break;
4758 case NFS4_SHARE_ACCESS_BOTH:
4759 break;
4760 default:
063b0fb9 4761 WARN_ON_ONCE(1);
1da177e4
LT
4762 }
4763}
4764
b37ad28b 4765__be32
ca364317
BF
4766nfsd4_open_downgrade(struct svc_rqst *rqstp,
4767 struct nfsd4_compound_state *cstate,
a4f1706a 4768 struct nfsd4_open_downgrade *od)
1da177e4 4769{
b37ad28b 4770 __be32 status;
dcef0413 4771 struct nfs4_ol_stateid *stp;
3320fef1 4772 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 4773
a6a9f18f
AV
4774 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
4775 cstate->current_fh.fh_dentry);
1da177e4 4776
c30e92df 4777 /* We don't yet support WANT bits: */
2c8bd7e0
BH
4778 if (od->od_deleg_want)
4779 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
4780 od->od_deleg_want);
1da177e4 4781
c0a5d93e 4782 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
3320fef1 4783 &od->od_stateid, &stp, nn);
9072d5c6 4784 if (status)
1da177e4 4785 goto out;
1da177e4 4786 status = nfserr_inval;
82c5ff1b 4787 if (!test_access(od->od_share_access, stp)) {
c11c591f 4788 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
1da177e4 4789 stp->st_access_bmap, od->od_share_access);
0667b1e9 4790 goto put_stateid;
1da177e4 4791 }
ce0fc43c 4792 if (!test_deny(od->od_share_deny, stp)) {
c11c591f 4793 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
1da177e4 4794 stp->st_deny_bmap, od->od_share_deny);
0667b1e9 4795 goto put_stateid;
1da177e4 4796 }
6409a5a6 4797 nfs4_stateid_downgrade(stp, od->od_share_access);
1da177e4 4798
ce0fc43c 4799 reset_union_bmap_deny(od->od_share_deny, stp);
1da177e4 4800
dcef0413
BF
4801 update_stateid(&stp->st_stid.sc_stateid);
4802 memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4 4803 status = nfs_ok;
0667b1e9
TM
4804put_stateid:
4805 nfs4_put_stid(&stp->st_stid);
1da177e4 4806out:
9411b1d4 4807 nfsd4_bump_seqid(cstate, status);
1da177e4
LT
4808 return status;
4809}
4810
f7a4d872
BF
4811static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
4812{
acf9295b 4813 struct nfs4_client *clp = s->st_stid.sc_client;
d83017f9 4814 LIST_HEAD(reaplist);
acf9295b 4815
f7a4d872 4816 s->st_stid.sc_type = NFS4_CLOSED_STID;
2c41beb0 4817 spin_lock(&clp->cl_lock);
d83017f9 4818 unhash_open_stateid(s, &reaplist);
acf9295b 4819
d83017f9
JL
4820 if (clp->cl_minorversion) {
4821 put_ol_stateid_locked(s, &reaplist);
4822 spin_unlock(&clp->cl_lock);
4823 free_ol_stateid_reaplist(&reaplist);
4824 } else {
4825 spin_unlock(&clp->cl_lock);
4826 free_ol_stateid_reaplist(&reaplist);
d3134b10 4827 move_to_close_lru(s, clp->net);
d83017f9 4828 }
38c387b5
BF
4829}
4830
1da177e4
LT
4831/*
4832 * nfs4_unlock_state() called after encode
4833 */
b37ad28b 4834__be32
ca364317 4835nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 4836 struct nfsd4_close *close)
1da177e4 4837{
b37ad28b 4838 __be32 status;
dcef0413 4839 struct nfs4_ol_stateid *stp;
3320fef1
SK
4840 struct net *net = SVC_NET(rqstp);
4841 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1da177e4 4842
a6a9f18f
AV
4843 dprintk("NFSD: nfsd4_close on file %pd\n",
4844 cstate->current_fh.fh_dentry);
1da177e4 4845
f7a4d872
BF
4846 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
4847 &close->cl_stateid,
4848 NFS4_OPEN_STID|NFS4_CLOSED_STID,
3320fef1 4849 &stp, nn);
9411b1d4 4850 nfsd4_bump_seqid(cstate, status);
9072d5c6 4851 if (status)
1da177e4 4852 goto out;
dcef0413
BF
4853 update_stateid(&stp->st_stid.sc_stateid);
4854 memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4 4855
f7a4d872 4856 nfsd4_close_open_stateid(stp);
8a0b589d
TM
4857
4858 /* put reference from nfs4_preprocess_seqid_op */
4859 nfs4_put_stid(&stp->st_stid);
1da177e4 4860out:
1da177e4
LT
4861 return status;
4862}
4863
b37ad28b 4864__be32
ca364317
BF
4865nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4866 struct nfsd4_delegreturn *dr)
1da177e4 4867{
203a8c8e
BF
4868 struct nfs4_delegation *dp;
4869 stateid_t *stateid = &dr->dr_stateid;
38c2f4b1 4870 struct nfs4_stid *s;
b37ad28b 4871 __be32 status;
3320fef1 4872 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 4873
ca364317 4874 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
203a8c8e 4875 return status;
1da177e4 4876
2dd6e458 4877 status = nfsd4_lookup_stateid(cstate, stateid, NFS4_DELEG_STID, &s, nn);
38c2f4b1 4878 if (status)
203a8c8e 4879 goto out;
38c2f4b1 4880 dp = delegstateid(s);
d5477a8d 4881 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
203a8c8e 4882 if (status)
fd911011 4883 goto put_stateid;
203a8c8e 4884
3bd64a5b 4885 destroy_delegation(dp);
fd911011
TM
4886put_stateid:
4887 nfs4_put_stid(&dp->dl_stid);
1da177e4
LT
4888out:
4889 return status;
4890}
4891
4892
1da177e4 4893#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
1da177e4 4894
87df4de8
BH
4895static inline u64
4896end_offset(u64 start, u64 len)
4897{
4898 u64 end;
4899
4900 end = start + len;
4901 return end >= start ? end: NFS4_MAX_UINT64;
4902}
4903
4904/* last octet in a range */
4905static inline u64
4906last_byte_offset(u64 start, u64 len)
4907{
4908 u64 end;
4909
063b0fb9 4910 WARN_ON_ONCE(!len);
87df4de8
BH
4911 end = start + len;
4912 return end > start ? end - 1: NFS4_MAX_UINT64;
4913}
4914
1da177e4
LT
4915/*
4916 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
4917 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
4918 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
4919 * locking, this prevents us from being completely protocol-compliant. The
4920 * real solution to this problem is to start using unsigned file offsets in
4921 * the VFS, but this is a very deep change!
4922 */
4923static inline void
4924nfs4_transform_lock_offset(struct file_lock *lock)
4925{
4926 if (lock->fl_start < 0)
4927 lock->fl_start = OFFSET_MAX;
4928 if (lock->fl_end < 0)
4929 lock->fl_end = OFFSET_MAX;
4930}
4931
aef9583b
KM
4932static void nfsd4_fl_get_owner(struct file_lock *dst, struct file_lock *src)
4933{
4934 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)src->fl_owner;
4935 dst->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lo->lo_owner));
4936}
4937
4938static void nfsd4_fl_put_owner(struct file_lock *fl)
4939{
4940 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)fl->fl_owner;
4941
4942 if (lo) {
4943 nfs4_put_stateowner(&lo->lo_owner);
4944 fl->fl_owner = NULL;
4945 }
4946}
4947
7b021967 4948static const struct lock_manager_operations nfsd_posix_mng_ops = {
aef9583b
KM
4949 .lm_get_owner = nfsd4_fl_get_owner,
4950 .lm_put_owner = nfsd4_fl_put_owner,
d5b9026a 4951};
1da177e4
LT
4952
4953static inline void
4954nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
4955{
fe0750e5 4956 struct nfs4_lockowner *lo;
1da177e4 4957
d5b9026a 4958 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
fe0750e5
BF
4959 lo = (struct nfs4_lockowner *) fl->fl_owner;
4960 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
4961 lo->lo_owner.so_owner.len, GFP_KERNEL);
7c13f344
BF
4962 if (!deny->ld_owner.data)
4963 /* We just don't care that much */
4964 goto nevermind;
fe0750e5
BF
4965 deny->ld_owner.len = lo->lo_owner.so_owner.len;
4966 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
d5b9026a 4967 } else {
7c13f344
BF
4968nevermind:
4969 deny->ld_owner.len = 0;
4970 deny->ld_owner.data = NULL;
d5b9026a
N
4971 deny->ld_clientid.cl_boot = 0;
4972 deny->ld_clientid.cl_id = 0;
1da177e4
LT
4973 }
4974 deny->ld_start = fl->fl_start;
87df4de8
BH
4975 deny->ld_length = NFS4_MAX_UINT64;
4976 if (fl->fl_end != NFS4_MAX_UINT64)
1da177e4
LT
4977 deny->ld_length = fl->fl_end - fl->fl_start + 1;
4978 deny->ld_type = NFS4_READ_LT;
4979 if (fl->fl_type != F_RDLCK)
4980 deny->ld_type = NFS4_WRITE_LT;
4981}
4982
fe0750e5 4983static struct nfs4_lockowner *
c58c6610 4984find_lockowner_str_locked(clientid_t *clid, struct xdr_netobj *owner,
d4f0489f 4985 struct nfs4_client *clp)
1da177e4 4986{
d4f0489f 4987 unsigned int strhashval = ownerstr_hashval(owner);
b3c32bcd 4988 struct nfs4_stateowner *so;
1da177e4 4989
0a880a28
TM
4990 lockdep_assert_held(&clp->cl_lock);
4991
d4f0489f
TM
4992 list_for_each_entry(so, &clp->cl_ownerstr_hashtbl[strhashval],
4993 so_strhash) {
b3c32bcd
TM
4994 if (so->so_is_open_owner)
4995 continue;
b5971afa
KM
4996 if (same_owner_str(so, owner))
4997 return lockowner(nfs4_get_stateowner(so));
1da177e4
LT
4998 }
4999 return NULL;
5000}
5001
c58c6610
TM
5002static struct nfs4_lockowner *
5003find_lockowner_str(clientid_t *clid, struct xdr_netobj *owner,
d4f0489f 5004 struct nfs4_client *clp)
c58c6610
TM
5005{
5006 struct nfs4_lockowner *lo;
5007
d4f0489f
TM
5008 spin_lock(&clp->cl_lock);
5009 lo = find_lockowner_str_locked(clid, owner, clp);
5010 spin_unlock(&clp->cl_lock);
c58c6610
TM
5011 return lo;
5012}
5013
8f4b54c5
JL
5014static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop)
5015{
c58c6610 5016 unhash_lockowner_locked(lockowner(sop));
8f4b54c5
JL
5017}
5018
6b180f0b
JL
5019static void nfs4_free_lockowner(struct nfs4_stateowner *sop)
5020{
5021 struct nfs4_lockowner *lo = lockowner(sop);
5022
5023 kmem_cache_free(lockowner_slab, lo);
5024}
5025
5026static const struct nfs4_stateowner_operations lockowner_ops = {
8f4b54c5
JL
5027 .so_unhash = nfs4_unhash_lockowner,
5028 .so_free = nfs4_free_lockowner,
6b180f0b
JL
5029};
5030
1da177e4
LT
5031/*
5032 * Alloc a lock owner structure.
5033 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
25985edc 5034 * occurred.
1da177e4 5035 *
16bfdaaf 5036 * strhashval = ownerstr_hashval
1da177e4 5037 */
fe0750e5 5038static struct nfs4_lockowner *
c58c6610
TM
5039alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp,
5040 struct nfs4_ol_stateid *open_stp,
5041 struct nfsd4_lock *lock)
5042{
c58c6610 5043 struct nfs4_lockowner *lo, *ret;
1da177e4 5044
fe0750e5
BF
5045 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
5046 if (!lo)
1da177e4 5047 return NULL;
fe0750e5
BF
5048 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
5049 lo->lo_owner.so_is_open_owner = 0;
5db1c03f 5050 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
6b180f0b 5051 lo->lo_owner.so_ops = &lockowner_ops;
d4f0489f 5052 spin_lock(&clp->cl_lock);
c58c6610 5053 ret = find_lockowner_str_locked(&clp->cl_clientid,
d4f0489f 5054 &lock->lk_new_owner, clp);
c58c6610
TM
5055 if (ret == NULL) {
5056 list_add(&lo->lo_owner.so_strhash,
d4f0489f 5057 &clp->cl_ownerstr_hashtbl[strhashval]);
c58c6610
TM
5058 ret = lo;
5059 } else
5060 nfs4_free_lockowner(&lo->lo_owner);
d4f0489f 5061 spin_unlock(&clp->cl_lock);
fe0750e5 5062 return lo;
1da177e4
LT
5063}
5064
356a95ec
JL
5065static void
5066init_lock_stateid(struct nfs4_ol_stateid *stp, struct nfs4_lockowner *lo,
5067 struct nfs4_file *fp, struct inode *inode,
5068 struct nfs4_ol_stateid *open_stp)
1da177e4 5069{
d3b313a4 5070 struct nfs4_client *clp = lo->lo_owner.so_client;
1da177e4 5071
356a95ec
JL
5072 lockdep_assert_held(&clp->cl_lock);
5073
3d0fabd5 5074 atomic_inc(&stp->st_stid.sc_count);
3abdb607 5075 stp->st_stid.sc_type = NFS4_LOCK_STID;
b5971afa 5076 stp->st_stateowner = nfs4_get_stateowner(&lo->lo_owner);
13cd2184 5077 get_nfs4_file(fp);
11b9164a 5078 stp->st_stid.sc_file = fp;
b49e084d 5079 stp->st_stid.sc_free = nfs4_free_lock_stateid;
0997b173 5080 stp->st_access_bmap = 0;
1da177e4 5081 stp->st_deny_bmap = open_stp->st_deny_bmap;
4c4cd222 5082 stp->st_openstp = open_stp;
3c87b9b7 5083 list_add(&stp->st_locks, &open_stp->st_locks);
1c755dc1 5084 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
1d31a253
TM
5085 spin_lock(&fp->fi_lock);
5086 list_add(&stp->st_perfile, &fp->fi_stateids);
5087 spin_unlock(&fp->fi_lock);
1da177e4
LT
5088}
5089
c53530da
JL
5090static struct nfs4_ol_stateid *
5091find_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp)
5092{
5093 struct nfs4_ol_stateid *lst;
356a95ec
JL
5094 struct nfs4_client *clp = lo->lo_owner.so_client;
5095
5096 lockdep_assert_held(&clp->cl_lock);
c53530da
JL
5097
5098 list_for_each_entry(lst, &lo->lo_owner.so_stateids, st_perstateowner) {
3d0fabd5
TM
5099 if (lst->st_stid.sc_file == fp) {
5100 atomic_inc(&lst->st_stid.sc_count);
c53530da 5101 return lst;
3d0fabd5 5102 }
c53530da
JL
5103 }
5104 return NULL;
5105}
5106
356a95ec
JL
5107static struct nfs4_ol_stateid *
5108find_or_create_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fi,
5109 struct inode *inode, struct nfs4_ol_stateid *ost,
5110 bool *new)
5111{
5112 struct nfs4_stid *ns = NULL;
5113 struct nfs4_ol_stateid *lst;
5114 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
5115 struct nfs4_client *clp = oo->oo_owner.so_client;
5116
5117 spin_lock(&clp->cl_lock);
5118 lst = find_lock_stateid(lo, fi);
5119 if (lst == NULL) {
5120 spin_unlock(&clp->cl_lock);
5121 ns = nfs4_alloc_stid(clp, stateid_slab);
5122 if (ns == NULL)
5123 return NULL;
5124
5125 spin_lock(&clp->cl_lock);
5126 lst = find_lock_stateid(lo, fi);
5127 if (likely(!lst)) {
5128 lst = openlockstateid(ns);
5129 init_lock_stateid(lst, lo, fi, inode, ost);
5130 ns = NULL;
5131 *new = true;
5132 }
5133 }
5134 spin_unlock(&clp->cl_lock);
5135 if (ns)
5136 nfs4_put_stid(ns);
5137 return lst;
5138}
c53530da 5139
fd39ca9a 5140static int
1da177e4
LT
5141check_lock_length(u64 offset, u64 length)
5142{
87df4de8 5143 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
1da177e4
LT
5144 LOFF_OVERFLOW(offset, length)));
5145}
5146
dcef0413 5147static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
0997b173 5148{
11b9164a 5149 struct nfs4_file *fp = lock_stp->st_stid.sc_file;
0997b173 5150
7214e860
JL
5151 lockdep_assert_held(&fp->fi_lock);
5152
82c5ff1b 5153 if (test_access(access, lock_stp))
0997b173 5154 return;
12659651 5155 __nfs4_file_get_access(fp, access);
82c5ff1b 5156 set_access(access, lock_stp);
0997b173
BF
5157}
5158
356a95ec
JL
5159static __be32
5160lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
5161 struct nfs4_ol_stateid *ost,
5162 struct nfsd4_lock *lock,
5163 struct nfs4_ol_stateid **lst, bool *new)
64a284d0 5164{
5db1c03f 5165 __be32 status;
11b9164a 5166 struct nfs4_file *fi = ost->st_stid.sc_file;
64a284d0
BF
5167 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
5168 struct nfs4_client *cl = oo->oo_owner.so_client;
f9c00c3a 5169 struct inode *inode = cstate->current_fh.fh_dentry->d_inode;
64a284d0
BF
5170 struct nfs4_lockowner *lo;
5171 unsigned int strhashval;
5172
d4f0489f 5173 lo = find_lockowner_str(&cl->cl_clientid, &lock->v.new.owner, cl);
c53530da 5174 if (!lo) {
d4f0489f 5175 strhashval = ownerstr_hashval(&lock->v.new.owner);
c53530da
JL
5176 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
5177 if (lo == NULL)
5178 return nfserr_jukebox;
5179 } else {
5180 /* with an existing lockowner, seqids must be the same */
5db1c03f 5181 status = nfserr_bad_seqid;
c53530da
JL
5182 if (!cstate->minorversion &&
5183 lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
5db1c03f 5184 goto out;
64a284d0 5185 }
c53530da 5186
356a95ec 5187 *lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
64a284d0 5188 if (*lst == NULL) {
5db1c03f
JL
5189 status = nfserr_jukebox;
5190 goto out;
64a284d0 5191 }
5db1c03f
JL
5192 status = nfs_ok;
5193out:
5194 nfs4_put_stateowner(&lo->lo_owner);
5195 return status;
64a284d0
BF
5196}
5197
1da177e4
LT
5198/*
5199 * LOCK operation
5200 */
b37ad28b 5201__be32
ca364317 5202nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 5203 struct nfsd4_lock *lock)
1da177e4 5204{
fe0750e5
BF
5205 struct nfs4_openowner *open_sop = NULL;
5206 struct nfs4_lockowner *lock_sop = NULL;
3d0fabd5 5207 struct nfs4_ol_stateid *lock_stp = NULL;
0667b1e9 5208 struct nfs4_ol_stateid *open_stp = NULL;
7214e860 5209 struct nfs4_file *fp;
7d947842 5210 struct file *filp = NULL;
21179d81
JL
5211 struct file_lock *file_lock = NULL;
5212 struct file_lock *conflock = NULL;
b37ad28b 5213 __be32 status = 0;
b34f27aa 5214 int lkflg;
b8dd7b9a 5215 int err;
5db1c03f 5216 bool new = false;
3320fef1
SK
5217 struct net *net = SVC_NET(rqstp);
5218 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1da177e4
LT
5219
5220 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
5221 (long long) lock->lk_offset,
5222 (long long) lock->lk_length);
5223
1da177e4
LT
5224 if (check_lock_length(lock->lk_offset, lock->lk_length))
5225 return nfserr_inval;
5226
ca364317 5227 if ((status = fh_verify(rqstp, &cstate->current_fh,
8837abca 5228 S_IFREG, NFSD_MAY_LOCK))) {
a6f6ef2f
AA
5229 dprintk("NFSD: nfsd4_lock: permission denied!\n");
5230 return status;
5231 }
5232
1da177e4 5233 if (lock->lk_is_new) {
684e5638
BF
5234 if (nfsd4_has_session(cstate))
5235 /* See rfc 5661 18.10.3: given clientid is ignored: */
5236 memcpy(&lock->v.new.clientid,
5237 &cstate->session->se_client->cl_clientid,
5238 sizeof(clientid_t));
5239
1da177e4 5240 status = nfserr_stale_clientid;
2c142baa 5241 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
1da177e4 5242 goto out;
1da177e4 5243
1da177e4 5244 /* validate and update open stateid and open seqid */
c0a5d93e 5245 status = nfs4_preprocess_confirmed_seqid_op(cstate,
1da177e4
LT
5246 lock->lk_new_open_seqid,
5247 &lock->lk_new_open_stateid,
3320fef1 5248 &open_stp, nn);
37515177 5249 if (status)
1da177e4 5250 goto out;
fe0750e5 5251 open_sop = openowner(open_stp->st_stateowner);
b34f27aa 5252 status = nfserr_bad_stateid;
684e5638 5253 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
b34f27aa
BF
5254 &lock->v.new.clientid))
5255 goto out;
64a284d0 5256 status = lookup_or_create_lock_state(cstate, open_stp, lock,
5db1c03f 5257 &lock_stp, &new);
3d0fabd5 5258 } else {
dd453dfd 5259 status = nfs4_preprocess_seqid_op(cstate,
fe0750e5
BF
5260 lock->lk_old_lock_seqid,
5261 &lock->lk_old_lock_stateid,
3320fef1 5262 NFS4_LOCK_STID, &lock_stp, nn);
3d0fabd5 5263 }
e1aaa891
BF
5264 if (status)
5265 goto out;
64a284d0 5266 lock_sop = lockowner(lock_stp->st_stateowner);
1da177e4 5267
b34f27aa
BF
5268 lkflg = setlkflg(lock->lk_type);
5269 status = nfs4_check_openmode(lock_stp, lkflg);
5270 if (status)
5271 goto out;
5272
0dd395dc 5273 status = nfserr_grace;
3320fef1 5274 if (locks_in_grace(net) && !lock->lk_reclaim)
0dd395dc
N
5275 goto out;
5276 status = nfserr_no_grace;
3320fef1 5277 if (!locks_in_grace(net) && lock->lk_reclaim)
0dd395dc
N
5278 goto out;
5279
21179d81
JL
5280 file_lock = locks_alloc_lock();
5281 if (!file_lock) {
5282 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5283 status = nfserr_jukebox;
5284 goto out;
5285 }
5286
11b9164a 5287 fp = lock_stp->st_stid.sc_file;
1da177e4
LT
5288 switch (lock->lk_type) {
5289 case NFS4_READ_LT:
5290 case NFS4_READW_LT:
7214e860
JL
5291 spin_lock(&fp->fi_lock);
5292 filp = find_readable_file_locked(fp);
0997b173
BF
5293 if (filp)
5294 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
7214e860 5295 spin_unlock(&fp->fi_lock);
21179d81 5296 file_lock->fl_type = F_RDLCK;
529d7b2a 5297 break;
1da177e4
LT
5298 case NFS4_WRITE_LT:
5299 case NFS4_WRITEW_LT:
7214e860
JL
5300 spin_lock(&fp->fi_lock);
5301 filp = find_writeable_file_locked(fp);
0997b173
BF
5302 if (filp)
5303 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
7214e860 5304 spin_unlock(&fp->fi_lock);
21179d81 5305 file_lock->fl_type = F_WRLCK;
529d7b2a 5306 break;
1da177e4
LT
5307 default:
5308 status = nfserr_inval;
5309 goto out;
5310 }
f9d7562f
BF
5311 if (!filp) {
5312 status = nfserr_openmode;
5313 goto out;
5314 }
aef9583b
KM
5315
5316 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(&lock_sop->lo_owner));
21179d81
JL
5317 file_lock->fl_pid = current->tgid;
5318 file_lock->fl_file = filp;
5319 file_lock->fl_flags = FL_POSIX;
5320 file_lock->fl_lmops = &nfsd_posix_mng_ops;
5321 file_lock->fl_start = lock->lk_offset;
5322 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
5323 nfs4_transform_lock_offset(file_lock);
5324
5325 conflock = locks_alloc_lock();
5326 if (!conflock) {
5327 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5328 status = nfserr_jukebox;
5329 goto out;
5330 }
1da177e4 5331
21179d81 5332 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
b8dd7b9a 5333 switch (-err) {
1da177e4 5334 case 0: /* success! */
dcef0413
BF
5335 update_stateid(&lock_stp->st_stid.sc_stateid);
5336 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid,
1da177e4 5337 sizeof(stateid_t));
b8dd7b9a 5338 status = 0;
eb76b3fd
AA
5339 break;
5340 case (EAGAIN): /* conflock holds conflicting lock */
5341 status = nfserr_denied;
5342 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
21179d81 5343 nfs4_set_lock_denied(conflock, &lock->lk_denied);
eb76b3fd 5344 break;
1da177e4
LT
5345 case (EDEADLK):
5346 status = nfserr_deadlock;
eb76b3fd 5347 break;
3e772463 5348 default:
fd85b817 5349 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
3e772463 5350 status = nfserrno(err);
eb76b3fd 5351 break;
1da177e4 5352 }
1da177e4 5353out:
de18643d
TM
5354 if (filp)
5355 fput(filp);
5db1c03f
JL
5356 if (lock_stp) {
5357 /* Bump seqid manually if the 4.0 replay owner is openowner */
5358 if (cstate->replay_owner &&
5359 cstate->replay_owner != &lock_sop->lo_owner &&
5360 seqid_mutating_err(ntohl(status)))
5361 lock_sop->lo_owner.so_seqid++;
5362
5363 /*
5364 * If this is a new, never-before-used stateid, and we are
5365 * returning an error, then just go ahead and release it.
5366 */
5367 if (status && new)
5368 release_lock_stateid(lock_stp);
5369
3d0fabd5 5370 nfs4_put_stid(&lock_stp->st_stid);
5db1c03f 5371 }
0667b1e9
TM
5372 if (open_stp)
5373 nfs4_put_stid(&open_stp->st_stid);
9411b1d4 5374 nfsd4_bump_seqid(cstate, status);
21179d81
JL
5375 if (file_lock)
5376 locks_free_lock(file_lock);
5377 if (conflock)
5378 locks_free_lock(conflock);
1da177e4
LT
5379 return status;
5380}
5381
55ef1274
BF
5382/*
5383 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
5384 * so we do a temporary open here just to get an open file to pass to
5385 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
5386 * inode operation.)
5387 */
04da6e9d 5388static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
55ef1274
BF
5389{
5390 struct file *file;
04da6e9d
AV
5391 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
5392 if (!err) {
5393 err = nfserrno(vfs_test_lock(file, lock));
5394 nfsd_close(file);
5395 }
55ef1274
BF
5396 return err;
5397}
5398
1da177e4
LT
5399/*
5400 * LOCKT operation
5401 */
b37ad28b 5402__be32
ca364317
BF
5403nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
5404 struct nfsd4_lockt *lockt)
1da177e4 5405{
21179d81 5406 struct file_lock *file_lock = NULL;
5db1c03f 5407 struct nfs4_lockowner *lo = NULL;
b37ad28b 5408 __be32 status;
7f2210fa 5409 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 5410
5ccb0066 5411 if (locks_in_grace(SVC_NET(rqstp)))
1da177e4
LT
5412 return nfserr_grace;
5413
5414 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
5415 return nfserr_inval;
5416
9b2ef62b 5417 if (!nfsd4_has_session(cstate)) {
4b24ca7d 5418 status = lookup_clientid(&lockt->lt_clientid, cstate, nn);
9b2ef62b
BF
5419 if (status)
5420 goto out;
5421 }
1da177e4 5422
75c096f7 5423 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
1da177e4 5424 goto out;
1da177e4 5425
21179d81
JL
5426 file_lock = locks_alloc_lock();
5427 if (!file_lock) {
5428 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5429 status = nfserr_jukebox;
5430 goto out;
5431 }
6cd90662 5432
1da177e4
LT
5433 switch (lockt->lt_type) {
5434 case NFS4_READ_LT:
5435 case NFS4_READW_LT:
21179d81 5436 file_lock->fl_type = F_RDLCK;
1da177e4
LT
5437 break;
5438 case NFS4_WRITE_LT:
5439 case NFS4_WRITEW_LT:
21179d81 5440 file_lock->fl_type = F_WRLCK;
1da177e4
LT
5441 break;
5442 default:
2fdada03 5443 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
1da177e4
LT
5444 status = nfserr_inval;
5445 goto out;
5446 }
5447
d4f0489f
TM
5448 lo = find_lockowner_str(&lockt->lt_clientid, &lockt->lt_owner,
5449 cstate->clp);
fe0750e5 5450 if (lo)
21179d81
JL
5451 file_lock->fl_owner = (fl_owner_t)lo;
5452 file_lock->fl_pid = current->tgid;
5453 file_lock->fl_flags = FL_POSIX;
1da177e4 5454
21179d81
JL
5455 file_lock->fl_start = lockt->lt_offset;
5456 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
1da177e4 5457
21179d81 5458 nfs4_transform_lock_offset(file_lock);
1da177e4 5459
21179d81 5460 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
04da6e9d 5461 if (status)
fd85b817 5462 goto out;
04da6e9d 5463
21179d81 5464 if (file_lock->fl_type != F_UNLCK) {
1da177e4 5465 status = nfserr_denied;
21179d81 5466 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
1da177e4
LT
5467 }
5468out:
5db1c03f
JL
5469 if (lo)
5470 nfs4_put_stateowner(&lo->lo_owner);
21179d81
JL
5471 if (file_lock)
5472 locks_free_lock(file_lock);
1da177e4
LT
5473 return status;
5474}
5475
b37ad28b 5476__be32
ca364317 5477nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 5478 struct nfsd4_locku *locku)
1da177e4 5479{
dcef0413 5480 struct nfs4_ol_stateid *stp;
1da177e4 5481 struct file *filp = NULL;
21179d81 5482 struct file_lock *file_lock = NULL;
b37ad28b 5483 __be32 status;
b8dd7b9a 5484 int err;
3320fef1
SK
5485 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
5486
1da177e4
LT
5487 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
5488 (long long) locku->lu_offset,
5489 (long long) locku->lu_length);
5490
5491 if (check_lock_length(locku->lu_offset, locku->lu_length))
5492 return nfserr_inval;
5493
9072d5c6 5494 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
3320fef1
SK
5495 &locku->lu_stateid, NFS4_LOCK_STID,
5496 &stp, nn);
9072d5c6 5497 if (status)
1da177e4 5498 goto out;
11b9164a 5499 filp = find_any_file(stp->st_stid.sc_file);
f9d7562f
BF
5500 if (!filp) {
5501 status = nfserr_lock_range;
858cc573 5502 goto put_stateid;
f9d7562f 5503 }
21179d81
JL
5504 file_lock = locks_alloc_lock();
5505 if (!file_lock) {
5506 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
5507 status = nfserr_jukebox;
de18643d 5508 goto fput;
21179d81 5509 }
6cd90662 5510
21179d81 5511 file_lock->fl_type = F_UNLCK;
aef9583b 5512 file_lock->fl_owner = (fl_owner_t)lockowner(nfs4_get_stateowner(stp->st_stateowner));
21179d81
JL
5513 file_lock->fl_pid = current->tgid;
5514 file_lock->fl_file = filp;
5515 file_lock->fl_flags = FL_POSIX;
5516 file_lock->fl_lmops = &nfsd_posix_mng_ops;
5517 file_lock->fl_start = locku->lu_offset;
5518
5519 file_lock->fl_end = last_byte_offset(locku->lu_offset,
5520 locku->lu_length);
5521 nfs4_transform_lock_offset(file_lock);
1da177e4 5522
21179d81 5523 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
b8dd7b9a 5524 if (err) {
fd85b817 5525 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
1da177e4
LT
5526 goto out_nfserr;
5527 }
dcef0413
BF
5528 update_stateid(&stp->st_stid.sc_stateid);
5529 memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
de18643d
TM
5530fput:
5531 fput(filp);
858cc573
TM
5532put_stateid:
5533 nfs4_put_stid(&stp->st_stid);
1da177e4 5534out:
9411b1d4 5535 nfsd4_bump_seqid(cstate, status);
21179d81
JL
5536 if (file_lock)
5537 locks_free_lock(file_lock);
1da177e4
LT
5538 return status;
5539
5540out_nfserr:
b8dd7b9a 5541 status = nfserrno(err);
de18643d 5542 goto fput;
1da177e4
LT
5543}
5544
5545/*
5546 * returns
f9c00c3a
JL
5547 * true: locks held by lockowner
5548 * false: no locks held by lockowner
1da177e4 5549 */
f9c00c3a
JL
5550static bool
5551check_for_locks(struct nfs4_file *fp, struct nfs4_lockowner *lowner)
1da177e4
LT
5552{
5553 struct file_lock **flpp;
f9c00c3a
JL
5554 int status = false;
5555 struct file *filp = find_any_file(fp);
5556 struct inode *inode;
5557
5558 if (!filp) {
5559 /* Any valid lock stateid should have some sort of access */
5560 WARN_ON_ONCE(1);
5561 return status;
5562 }
5563
5564 inode = file_inode(filp);
1da177e4 5565
1c8c601a 5566 spin_lock(&inode->i_lock);
1da177e4 5567 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
796dadfd 5568 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
f9c00c3a
JL
5569 status = true;
5570 break;
796dadfd 5571 }
1da177e4 5572 }
1c8c601a 5573 spin_unlock(&inode->i_lock);
f9c00c3a 5574 fput(filp);
1da177e4
LT
5575 return status;
5576}
5577
b37ad28b 5578__be32
b591480b
BF
5579nfsd4_release_lockowner(struct svc_rqst *rqstp,
5580 struct nfsd4_compound_state *cstate,
5581 struct nfsd4_release_lockowner *rlockowner)
1da177e4
LT
5582{
5583 clientid_t *clid = &rlockowner->rl_clientid;
882e9d25
JL
5584 struct nfs4_stateowner *sop;
5585 struct nfs4_lockowner *lo = NULL;
dcef0413 5586 struct nfs4_ol_stateid *stp;
1da177e4 5587 struct xdr_netobj *owner = &rlockowner->rl_owner;
d4f0489f 5588 unsigned int hashval = ownerstr_hashval(owner);
b37ad28b 5589 __be32 status;
7f2210fa 5590 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
c58c6610 5591 struct nfs4_client *clp;
1da177e4
LT
5592
5593 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
5594 clid->cl_boot, clid->cl_id);
5595
4b24ca7d 5596 status = lookup_clientid(clid, cstate, nn);
9b2ef62b 5597 if (status)
51f5e783 5598 return status;
9b2ef62b 5599
d4f0489f 5600 clp = cstate->clp;
fd44907c 5601 /* Find the matching lock stateowner */
d4f0489f 5602 spin_lock(&clp->cl_lock);
882e9d25 5603 list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval],
d4f0489f 5604 so_strhash) {
fd44907c 5605
882e9d25
JL
5606 if (sop->so_is_open_owner || !same_owner_str(sop, owner))
5607 continue;
fd44907c 5608
882e9d25
JL
5609 /* see if there are still any locks associated with it */
5610 lo = lockowner(sop);
5611 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
5612 if (check_for_locks(stp->st_stid.sc_file, lo)) {
5613 status = nfserr_locks_held;
5614 spin_unlock(&clp->cl_lock);
51f5e783 5615 return status;
882e9d25 5616 }
5adfd885 5617 }
882e9d25 5618
b5971afa 5619 nfs4_get_stateowner(sop);
882e9d25 5620 break;
1da177e4 5621 }
c58c6610 5622 spin_unlock(&clp->cl_lock);
882e9d25
JL
5623 if (lo)
5624 release_lockowner(lo);
1da177e4
LT
5625 return status;
5626}
5627
5628static inline struct nfs4_client_reclaim *
a55370a3 5629alloc_reclaim(void)
1da177e4 5630{
a55370a3 5631 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
1da177e4
LT
5632}
5633
0ce0c2b5 5634bool
52e19c09 5635nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn)
c7b9a459 5636{
0ce0c2b5 5637 struct nfs4_client_reclaim *crp;
c7b9a459 5638
52e19c09 5639 crp = nfsd4_find_reclaim_client(name, nn);
0ce0c2b5 5640 return (crp && crp->cr_clp);
c7b9a459
N
5641}
5642
1da177e4
LT
5643/*
5644 * failure => all reset bets are off, nfserr_no_grace...
5645 */
772a9bbb 5646struct nfs4_client_reclaim *
52e19c09 5647nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn)
1da177e4
LT
5648{
5649 unsigned int strhashval;
772a9bbb 5650 struct nfs4_client_reclaim *crp;
1da177e4 5651
a55370a3
N
5652 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
5653 crp = alloc_reclaim();
772a9bbb
JL
5654 if (crp) {
5655 strhashval = clientstr_hashval(name);
5656 INIT_LIST_HEAD(&crp->cr_strhash);
52e19c09 5657 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
772a9bbb 5658 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
0ce0c2b5 5659 crp->cr_clp = NULL;
52e19c09 5660 nn->reclaim_str_hashtbl_size++;
772a9bbb
JL
5661 }
5662 return crp;
1da177e4
LT
5663}
5664
ce30e539 5665void
52e19c09 5666nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
ce30e539
JL
5667{
5668 list_del(&crp->cr_strhash);
5669 kfree(crp);
52e19c09 5670 nn->reclaim_str_hashtbl_size--;
ce30e539
JL
5671}
5672
2a4317c5 5673void
52e19c09 5674nfs4_release_reclaim(struct nfsd_net *nn)
1da177e4
LT
5675{
5676 struct nfs4_client_reclaim *crp = NULL;
5677 int i;
5678
1da177e4 5679 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
52e19c09
SK
5680 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
5681 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
1da177e4 5682 struct nfs4_client_reclaim, cr_strhash);
52e19c09 5683 nfs4_remove_reclaim_record(crp, nn);
1da177e4
LT
5684 }
5685 }
063b0fb9 5686 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
1da177e4
LT
5687}
5688
5689/*
5690 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
2a4317c5 5691struct nfs4_client_reclaim *
52e19c09 5692nfsd4_find_reclaim_client(const char *recdir, struct nfsd_net *nn)
1da177e4
LT
5693{
5694 unsigned int strhashval;
1da177e4
LT
5695 struct nfs4_client_reclaim *crp = NULL;
5696
278c931c 5697 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
1da177e4 5698
278c931c 5699 strhashval = clientstr_hashval(recdir);
52e19c09 5700 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
278c931c 5701 if (same_name(crp->cr_recdir, recdir)) {
1da177e4
LT
5702 return crp;
5703 }
5704 }
5705 return NULL;
5706}
5707
5708/*
5709* Called from OPEN. Look for clientid in reclaim list.
5710*/
b37ad28b 5711__be32
0fe492db
TM
5712nfs4_check_open_reclaim(clientid_t *clid,
5713 struct nfsd4_compound_state *cstate,
5714 struct nfsd_net *nn)
1da177e4 5715{
0fe492db 5716 __be32 status;
a52d726b
JL
5717
5718 /* find clientid in conf_id_hashtbl */
0fe492db
TM
5719 status = lookup_clientid(clid, cstate, nn);
5720 if (status)
a52d726b
JL
5721 return nfserr_reclaim_bad;
5722
3b3e7b72
JL
5723 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags))
5724 return nfserr_no_grace;
5725
0fe492db
TM
5726 if (nfsd4_client_record_check(cstate->clp))
5727 return nfserr_reclaim_bad;
5728
5729 return nfs_ok;
1da177e4
LT
5730}
5731
65178db4 5732#ifdef CONFIG_NFSD_FAULT_INJECTION
016200c3
JL
5733static inline void
5734put_client(struct nfs4_client *clp)
5735{
5736 atomic_dec(&clp->cl_refcount);
5737}
5738
285abdee
JL
5739static struct nfs4_client *
5740nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
5741{
5742 struct nfs4_client *clp;
5743 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5744 nfsd_net_id);
5745
5746 if (!nfsd_netns_ready(nn))
5747 return NULL;
5748
5749 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
5750 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
5751 return clp;
5752 }
5753 return NULL;
5754}
5755
7ec0e36f 5756u64
285abdee 5757nfsd_inject_print_clients(void)
7ec0e36f
JL
5758{
5759 struct nfs4_client *clp;
5760 u64 count = 0;
5761 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5762 nfsd_net_id);
5763 char buf[INET6_ADDRSTRLEN];
5764
5765 if (!nfsd_netns_ready(nn))
5766 return 0;
5767
5768 spin_lock(&nn->client_lock);
5769 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
5770 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
5771 pr_info("NFS Client: %s\n", buf);
5772 ++count;
5773 }
5774 spin_unlock(&nn->client_lock);
5775
5776 return count;
5777}
65178db4 5778
a0926d15 5779u64
285abdee 5780nfsd_inject_forget_client(struct sockaddr_storage *addr, size_t addr_size)
a0926d15
JL
5781{
5782 u64 count = 0;
5783 struct nfs4_client *clp;
5784 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5785 nfsd_net_id);
5786
5787 if (!nfsd_netns_ready(nn))
5788 return count;
5789
5790 spin_lock(&nn->client_lock);
5791 clp = nfsd_find_client(addr, addr_size);
5792 if (clp) {
5793 if (mark_client_expired_locked(clp) == nfs_ok)
5794 ++count;
5795 else
5796 clp = NULL;
5797 }
5798 spin_unlock(&nn->client_lock);
5799
5800 if (clp)
5801 expire_client(clp);
5802
5803 return count;
5804}
5805
69fc9edf 5806u64
285abdee 5807nfsd_inject_forget_clients(u64 max)
69fc9edf
JL
5808{
5809 u64 count = 0;
5810 struct nfs4_client *clp, *next;
5811 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5812 nfsd_net_id);
5813 LIST_HEAD(reaplist);
5814
5815 if (!nfsd_netns_ready(nn))
5816 return count;
5817
5818 spin_lock(&nn->client_lock);
5819 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
5820 if (mark_client_expired_locked(clp) == nfs_ok) {
5821 list_add(&clp->cl_lru, &reaplist);
5822 if (max != 0 && ++count >= max)
5823 break;
5824 }
5825 }
5826 spin_unlock(&nn->client_lock);
5827
5828 list_for_each_entry_safe(clp, next, &reaplist, cl_lru)
5829 expire_client(clp);
5830
5831 return count;
5832}
5833
184c1847
BS
5834static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
5835 const char *type)
5836{
5837 char buf[INET6_ADDRSTRLEN];
0a5c33e2 5838 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
184c1847
BS
5839 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
5840}
5841
016200c3
JL
5842static void
5843nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid *lst,
5844 struct list_head *collect)
5845{
5846 struct nfs4_client *clp = lst->st_stid.sc_client;
5847 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5848 nfsd_net_id);
5849
5850 if (!collect)
5851 return;
5852
5853 lockdep_assert_held(&nn->client_lock);
5854 atomic_inc(&clp->cl_refcount);
5855 list_add(&lst->st_locks, collect);
5856}
5857
3c87b9b7 5858static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max,
3738d50e 5859 struct list_head *collect,
3c87b9b7 5860 void (*func)(struct nfs4_ol_stateid *))
fc29171f
BS
5861{
5862 struct nfs4_openowner *oop;
fc29171f 5863 struct nfs4_ol_stateid *stp, *st_next;
3c87b9b7 5864 struct nfs4_ol_stateid *lst, *lst_next;
fc29171f
BS
5865 u64 count = 0;
5866
016200c3 5867 spin_lock(&clp->cl_lock);
fc29171f 5868 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
3c87b9b7
TM
5869 list_for_each_entry_safe(stp, st_next,
5870 &oop->oo_owner.so_stateids, st_perstateowner) {
5871 list_for_each_entry_safe(lst, lst_next,
5872 &stp->st_locks, st_locks) {
3738d50e 5873 if (func) {
3c87b9b7 5874 func(lst);
016200c3
JL
5875 nfsd_inject_add_lock_to_list(lst,
5876 collect);
3738d50e 5877 }
016200c3
JL
5878 ++count;
5879 /*
5880 * Despite the fact that these functions deal
5881 * with 64-bit integers for "count", we must
5882 * ensure that it doesn't blow up the
5883 * clp->cl_refcount. Throw a warning if we
5884 * start to approach INT_MAX here.
5885 */
5886 WARN_ON_ONCE(count == (INT_MAX / 2));
5887 if (count == max)
5888 goto out;
fc29171f
BS
5889 }
5890 }
5891 }
016200c3
JL
5892out:
5893 spin_unlock(&clp->cl_lock);
fc29171f
BS
5894
5895 return count;
5896}
5897
016200c3
JL
5898static u64
5899nfsd_collect_client_locks(struct nfs4_client *clp, struct list_head *collect,
5900 u64 max)
fc29171f 5901{
016200c3 5902 return nfsd_foreach_client_lock(clp, max, collect, unhash_lock_stateid);
fc29171f
BS
5903}
5904
016200c3
JL
5905static u64
5906nfsd_print_client_locks(struct nfs4_client *clp)
184c1847 5907{
016200c3 5908 u64 count = nfsd_foreach_client_lock(clp, 0, NULL, NULL);
184c1847
BS
5909 nfsd_print_count(clp, count, "locked files");
5910 return count;
5911}
5912
016200c3 5913u64
285abdee 5914nfsd_inject_print_locks(void)
016200c3
JL
5915{
5916 struct nfs4_client *clp;
5917 u64 count = 0;
5918 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5919 nfsd_net_id);
5920
5921 if (!nfsd_netns_ready(nn))
5922 return 0;
5923
5924 spin_lock(&nn->client_lock);
5925 list_for_each_entry(clp, &nn->client_lru, cl_lru)
5926 count += nfsd_print_client_locks(clp);
5927 spin_unlock(&nn->client_lock);
5928
5929 return count;
5930}
5931
5932static void
5933nfsd_reap_locks(struct list_head *reaplist)
5934{
5935 struct nfs4_client *clp;
5936 struct nfs4_ol_stateid *stp, *next;
5937
5938 list_for_each_entry_safe(stp, next, reaplist, st_locks) {
5939 list_del_init(&stp->st_locks);
5940 clp = stp->st_stid.sc_client;
5941 nfs4_put_stid(&stp->st_stid);
5942 put_client(clp);
5943 }
5944}
5945
5946u64
285abdee 5947nfsd_inject_forget_client_locks(struct sockaddr_storage *addr, size_t addr_size)
016200c3
JL
5948{
5949 unsigned int count = 0;
5950 struct nfs4_client *clp;
5951 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5952 nfsd_net_id);
5953 LIST_HEAD(reaplist);
5954
5955 if (!nfsd_netns_ready(nn))
5956 return count;
5957
5958 spin_lock(&nn->client_lock);
5959 clp = nfsd_find_client(addr, addr_size);
5960 if (clp)
5961 count = nfsd_collect_client_locks(clp, &reaplist, 0);
5962 spin_unlock(&nn->client_lock);
5963 nfsd_reap_locks(&reaplist);
5964 return count;
5965}
5966
5967u64
285abdee 5968nfsd_inject_forget_locks(u64 max)
016200c3
JL
5969{
5970 u64 count = 0;
5971 struct nfs4_client *clp;
5972 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5973 nfsd_net_id);
5974 LIST_HEAD(reaplist);
5975
5976 if (!nfsd_netns_ready(nn))
5977 return count;
5978
5979 spin_lock(&nn->client_lock);
5980 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
5981 count += nfsd_collect_client_locks(clp, &reaplist, max - count);
5982 if (max != 0 && count >= max)
5983 break;
5984 }
5985 spin_unlock(&nn->client_lock);
5986 nfsd_reap_locks(&reaplist);
5987 return count;
5988}
5989
82e05efa
JL
5990static u64
5991nfsd_foreach_client_openowner(struct nfs4_client *clp, u64 max,
5992 struct list_head *collect,
5993 void (*func)(struct nfs4_openowner *))
4dbdbda8
BS
5994{
5995 struct nfs4_openowner *oop, *next;
82e05efa
JL
5996 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
5997 nfsd_net_id);
4dbdbda8
BS
5998 u64 count = 0;
5999
82e05efa
JL
6000 lockdep_assert_held(&nn->client_lock);
6001
6002 spin_lock(&clp->cl_lock);
4dbdbda8 6003 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
82e05efa 6004 if (func) {
4dbdbda8 6005 func(oop);
82e05efa
JL
6006 if (collect) {
6007 atomic_inc(&clp->cl_refcount);
6008 list_add(&oop->oo_perclient, collect);
6009 }
6010 }
6011 ++count;
6012 /*
6013 * Despite the fact that these functions deal with
6014 * 64-bit integers for "count", we must ensure that
6015 * it doesn't blow up the clp->cl_refcount. Throw a
6016 * warning if we start to approach INT_MAX here.
6017 */
6018 WARN_ON_ONCE(count == (INT_MAX / 2));
6019 if (count == max)
4dbdbda8
BS
6020 break;
6021 }
82e05efa
JL
6022 spin_unlock(&clp->cl_lock);
6023
6024 return count;
6025}
6026
6027static u64
6028nfsd_print_client_openowners(struct nfs4_client *clp)
6029{
6030 u64 count = nfsd_foreach_client_openowner(clp, 0, NULL, NULL);
6031
6032 nfsd_print_count(clp, count, "openowners");
6033 return count;
6034}
6035
6036static u64
6037nfsd_collect_client_openowners(struct nfs4_client *clp,
6038 struct list_head *collect, u64 max)
6039{
6040 return nfsd_foreach_client_openowner(clp, max, collect,
6041 unhash_openowner_locked);
6042}
6043
6044u64
285abdee 6045nfsd_inject_print_openowners(void)
82e05efa
JL
6046{
6047 struct nfs4_client *clp;
6048 u64 count = 0;
6049 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6050 nfsd_net_id);
6051
6052 if (!nfsd_netns_ready(nn))
6053 return 0;
6054
6055 spin_lock(&nn->client_lock);
6056 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6057 count += nfsd_print_client_openowners(clp);
6058 spin_unlock(&nn->client_lock);
4dbdbda8
BS
6059
6060 return count;
6061}
6062
82e05efa
JL
6063static void
6064nfsd_reap_openowners(struct list_head *reaplist)
6065{
6066 struct nfs4_client *clp;
6067 struct nfs4_openowner *oop, *next;
6068
6069 list_for_each_entry_safe(oop, next, reaplist, oo_perclient) {
6070 list_del_init(&oop->oo_perclient);
6071 clp = oop->oo_owner.so_client;
6072 release_openowner(oop);
6073 put_client(clp);
6074 }
6075}
6076
6077u64
285abdee
JL
6078nfsd_inject_forget_client_openowners(struct sockaddr_storage *addr,
6079 size_t addr_size)
4dbdbda8 6080{
82e05efa
JL
6081 unsigned int count = 0;
6082 struct nfs4_client *clp;
6083 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6084 nfsd_net_id);
6085 LIST_HEAD(reaplist);
6086
6087 if (!nfsd_netns_ready(nn))
6088 return count;
6089
6090 spin_lock(&nn->client_lock);
6091 clp = nfsd_find_client(addr, addr_size);
6092 if (clp)
6093 count = nfsd_collect_client_openowners(clp, &reaplist, 0);
6094 spin_unlock(&nn->client_lock);
6095 nfsd_reap_openowners(&reaplist);
6096 return count;
4dbdbda8
BS
6097}
6098
82e05efa 6099u64
285abdee 6100nfsd_inject_forget_openowners(u64 max)
184c1847 6101{
82e05efa
JL
6102 u64 count = 0;
6103 struct nfs4_client *clp;
6104 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6105 nfsd_net_id);
6106 LIST_HEAD(reaplist);
6107
6108 if (!nfsd_netns_ready(nn))
6109 return count;
6110
6111 spin_lock(&nn->client_lock);
6112 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6113 count += nfsd_collect_client_openowners(clp, &reaplist,
6114 max - count);
6115 if (max != 0 && count >= max)
6116 break;
6117 }
6118 spin_unlock(&nn->client_lock);
6119 nfsd_reap_openowners(&reaplist);
184c1847
BS
6120 return count;
6121}
6122
269de30f
BS
6123static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
6124 struct list_head *victims)
6125{
6126 struct nfs4_delegation *dp, *next;
98d5c7c5
JL
6127 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6128 nfsd_net_id);
269de30f
BS
6129 u64 count = 0;
6130
98d5c7c5
JL
6131 lockdep_assert_held(&nn->client_lock);
6132
6133 spin_lock(&state_lock);
269de30f 6134 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
dff1399f
JL
6135 if (victims) {
6136 /*
6137 * It's not safe to mess with delegations that have a
6138 * non-zero dl_time. They might have already been broken
6139 * and could be processed by the laundromat outside of
6140 * the state_lock. Just leave them be.
6141 */
6142 if (dp->dl_time != 0)
6143 continue;
6144
98d5c7c5 6145 atomic_inc(&clp->cl_refcount);
42690676
JL
6146 unhash_delegation_locked(dp);
6147 list_add(&dp->dl_recall_lru, victims);
dff1399f 6148 }
98d5c7c5
JL
6149 ++count;
6150 /*
6151 * Despite the fact that these functions deal with
6152 * 64-bit integers for "count", we must ensure that
6153 * it doesn't blow up the clp->cl_refcount. Throw a
6154 * warning if we start to approach INT_MAX here.
6155 */
6156 WARN_ON_ONCE(count == (INT_MAX / 2));
6157 if (count == max)
269de30f
BS
6158 break;
6159 }
98d5c7c5 6160 spin_unlock(&state_lock);
269de30f
BS
6161 return count;
6162}
6163
98d5c7c5
JL
6164static u64
6165nfsd_print_client_delegations(struct nfs4_client *clp)
269de30f 6166{
98d5c7c5 6167 u64 count = nfsd_find_all_delegations(clp, 0, NULL);
269de30f 6168
98d5c7c5
JL
6169 nfsd_print_count(clp, count, "delegations");
6170 return count;
6171}
6172
6173u64
285abdee 6174nfsd_inject_print_delegations(void)
98d5c7c5
JL
6175{
6176 struct nfs4_client *clp;
6177 u64 count = 0;
6178 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6179 nfsd_net_id);
6180
6181 if (!nfsd_netns_ready(nn))
6182 return 0;
269de30f 6183
98d5c7c5
JL
6184 spin_lock(&nn->client_lock);
6185 list_for_each_entry(clp, &nn->client_lru, cl_lru)
6186 count += nfsd_print_client_delegations(clp);
6187 spin_unlock(&nn->client_lock);
6188
6189 return count;
6190}
6191
6192static void
6193nfsd_forget_delegations(struct list_head *reaplist)
6194{
6195 struct nfs4_client *clp;
6196 struct nfs4_delegation *dp, *next;
6197
6198 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
2d4a532d 6199 list_del_init(&dp->dl_recall_lru);
98d5c7c5 6200 clp = dp->dl_stid.sc_client;
3bd64a5b 6201 revoke_delegation(dp);
98d5c7c5 6202 put_client(clp);
2d4a532d 6203 }
98d5c7c5
JL
6204}
6205
6206u64
285abdee
JL
6207nfsd_inject_forget_client_delegations(struct sockaddr_storage *addr,
6208 size_t addr_size)
98d5c7c5
JL
6209{
6210 u64 count = 0;
6211 struct nfs4_client *clp;
6212 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6213 nfsd_net_id);
6214 LIST_HEAD(reaplist);
6215
6216 if (!nfsd_netns_ready(nn))
6217 return count;
6218
6219 spin_lock(&nn->client_lock);
6220 clp = nfsd_find_client(addr, addr_size);
6221 if (clp)
6222 count = nfsd_find_all_delegations(clp, 0, &reaplist);
6223 spin_unlock(&nn->client_lock);
6224
6225 nfsd_forget_delegations(&reaplist);
6226 return count;
6227}
269de30f 6228
98d5c7c5 6229u64
285abdee 6230nfsd_inject_forget_delegations(u64 max)
98d5c7c5
JL
6231{
6232 u64 count = 0;
6233 struct nfs4_client *clp;
6234 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6235 nfsd_net_id);
6236 LIST_HEAD(reaplist);
6237
6238 if (!nfsd_netns_ready(nn))
6239 return count;
6240
6241 spin_lock(&nn->client_lock);
6242 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
6243 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
6244 if (max != 0 && count >= max)
6245 break;
6246 }
6247 spin_unlock(&nn->client_lock);
6248 nfsd_forget_delegations(&reaplist);
269de30f
BS
6249 return count;
6250}
6251
98d5c7c5
JL
6252static void
6253nfsd_recall_delegations(struct list_head *reaplist)
269de30f 6254{
98d5c7c5
JL
6255 struct nfs4_client *clp;
6256 struct nfs4_delegation *dp, *next;
269de30f 6257
98d5c7c5 6258 list_for_each_entry_safe(dp, next, reaplist, dl_recall_lru) {
dff1399f 6259 list_del_init(&dp->dl_recall_lru);
98d5c7c5
JL
6260 clp = dp->dl_stid.sc_client;
6261 /*
6262 * We skipped all entries that had a zero dl_time before,
6263 * so we can now reset the dl_time back to 0. If a delegation
6264 * break comes in now, then it won't make any difference since
6265 * we're recalling it either way.
6266 */
6267 spin_lock(&state_lock);
dff1399f 6268 dp->dl_time = 0;
98d5c7c5 6269 spin_unlock(&state_lock);
269de30f 6270 nfsd_break_one_deleg(dp);
98d5c7c5 6271 put_client(clp);
dff1399f 6272 }
98d5c7c5 6273}
269de30f 6274
98d5c7c5 6275u64
285abdee 6276nfsd_inject_recall_client_delegations(struct sockaddr_storage *addr,
98d5c7c5
JL
6277 size_t addr_size)
6278{
6279 u64 count = 0;
6280 struct nfs4_client *clp;
6281 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6282 nfsd_net_id);
6283 LIST_HEAD(reaplist);
6284
6285 if (!nfsd_netns_ready(nn))
6286 return count;
6287
6288 spin_lock(&nn->client_lock);
6289 clp = nfsd_find_client(addr, addr_size);
6290 if (clp)
6291 count = nfsd_find_all_delegations(clp, 0, &reaplist);
6292 spin_unlock(&nn->client_lock);
6293
6294 nfsd_recall_delegations(&reaplist);
269de30f
BS
6295 return count;
6296}
6297
98d5c7c5 6298u64
285abdee 6299nfsd_inject_recall_delegations(u64 max)
184c1847
BS
6300{
6301 u64 count = 0;
98d5c7c5
JL
6302 struct nfs4_client *clp, *next;
6303 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
6304 nfsd_net_id);
6305 LIST_HEAD(reaplist);
184c1847 6306
98d5c7c5
JL
6307 if (!nfsd_netns_ready(nn))
6308 return count;
184c1847 6309
98d5c7c5
JL
6310 spin_lock(&nn->client_lock);
6311 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
6312 count += nfsd_find_all_delegations(clp, max - count, &reaplist);
6313 if (max != 0 && ++count >= max)
6314 break;
6315 }
6316 spin_unlock(&nn->client_lock);
6317 nfsd_recall_delegations(&reaplist);
184c1847
BS
6318 return count;
6319}
65178db4
BS
6320#endif /* CONFIG_NFSD_FAULT_INJECTION */
6321
c2f1a551
MS
6322/*
6323 * Since the lifetime of a delegation isn't limited to that of an open, a
6324 * client may quite reasonably hang on to a delegation as long as it has
6325 * the inode cached. This becomes an obvious problem the first time a
6326 * client's inode cache approaches the size of the server's total memory.
6327 *
6328 * For now we avoid this problem by imposing a hard limit on the number
6329 * of delegations, which varies according to the server's memory size.
6330 */
6331static void
6332set_max_delegations(void)
6333{
6334 /*
6335 * Allow at most 4 delegations per megabyte of RAM. Quick
6336 * estimates suggest that in the worst case (where every delegation
6337 * is for a different inode), a delegation could take about 1.5K,
6338 * giving a worst case usage of about 6% of memory.
6339 */
6340 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
6341}
6342
d85ed443 6343static int nfs4_state_create_net(struct net *net)
8daae4dc
SK
6344{
6345 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
6346 int i;
6347
6348 nn->conf_id_hashtbl = kmalloc(sizeof(struct list_head) *
6349 CLIENT_HASH_SIZE, GFP_KERNEL);
6350 if (!nn->conf_id_hashtbl)
382a62e7 6351 goto err;
0a7ec377
SK
6352 nn->unconf_id_hashtbl = kmalloc(sizeof(struct list_head) *
6353 CLIENT_HASH_SIZE, GFP_KERNEL);
6354 if (!nn->unconf_id_hashtbl)
6355 goto err_unconf_id;
1872de0e
SK
6356 nn->sessionid_hashtbl = kmalloc(sizeof(struct list_head) *
6357 SESSION_HASH_SIZE, GFP_KERNEL);
6358 if (!nn->sessionid_hashtbl)
6359 goto err_sessionid;
8daae4dc 6360
382a62e7 6361 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
8daae4dc 6362 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
0a7ec377 6363 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
382a62e7 6364 }
1872de0e
SK
6365 for (i = 0; i < SESSION_HASH_SIZE; i++)
6366 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
382a62e7 6367 nn->conf_name_tree = RB_ROOT;
a99454aa 6368 nn->unconf_name_tree = RB_ROOT;
5ed58bb2 6369 INIT_LIST_HEAD(&nn->client_lru);
73758fed 6370 INIT_LIST_HEAD(&nn->close_lru);
e8c69d17 6371 INIT_LIST_HEAD(&nn->del_recall_lru);
c9a49628 6372 spin_lock_init(&nn->client_lock);
8daae4dc 6373
09121281 6374 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
d85ed443 6375 get_net(net);
09121281 6376
8daae4dc 6377 return 0;
382a62e7 6378
1872de0e 6379err_sessionid:
9b531137 6380 kfree(nn->unconf_id_hashtbl);
0a7ec377
SK
6381err_unconf_id:
6382 kfree(nn->conf_id_hashtbl);
382a62e7
SK
6383err:
6384 return -ENOMEM;
8daae4dc
SK
6385}
6386
6387static void
4dce0ac9 6388nfs4_state_destroy_net(struct net *net)
8daae4dc
SK
6389{
6390 int i;
6391 struct nfs4_client *clp = NULL;
6392 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
6393
6394 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
6395 while (!list_empty(&nn->conf_id_hashtbl[i])) {
6396 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
6397 destroy_client(clp);
6398 }
6399 }
a99454aa 6400
2b905635
KM
6401 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
6402 while (!list_empty(&nn->unconf_id_hashtbl[i])) {
6403 clp = list_entry(nn->unconf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
6404 destroy_client(clp);
6405 }
a99454aa
SK
6406 }
6407
1872de0e 6408 kfree(nn->sessionid_hashtbl);
0a7ec377 6409 kfree(nn->unconf_id_hashtbl);
8daae4dc 6410 kfree(nn->conf_id_hashtbl);
4dce0ac9 6411 put_net(net);
8daae4dc
SK
6412}
6413
f252bc68 6414int
d85ed443 6415nfs4_state_start_net(struct net *net)
ac4d8ff2 6416{
5e1533c7 6417 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
b5a1a81e
BF
6418 int ret;
6419
d85ed443 6420 ret = nfs4_state_create_net(net);
8daae4dc
SK
6421 if (ret)
6422 return ret;
2c142baa 6423 nn->boot_time = get_seconds();
a51c84ed 6424 nn->grace_ended = false;
d4318acd
JL
6425 locks_start_grace(net, &nn->nfsd4_manager);
6426 nfsd4_client_tracking_init(net);
d85ed443 6427 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %p)\n",
5284b44e
SK
6428 nn->nfsd4_grace, net);
6429 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
d85ed443
SK
6430 return 0;
6431}
6432
6433/* initialization to perform when the nfsd service is started: */
6434
6435int
6436nfs4_state_start(void)
6437{
6438 int ret;
6439
b5a1a81e 6440 ret = set_callback_cred();
d85ed443
SK
6441 if (ret)
6442 return -ENOMEM;
58da282b 6443 laundry_wq = create_singlethread_workqueue("nfsd4");
a6d6b781
JL
6444 if (laundry_wq == NULL) {
6445 ret = -ENOMEM;
6446 goto out_recovery;
6447 }
b5a1a81e
BF
6448 ret = nfsd4_create_callback_queue();
6449 if (ret)
6450 goto out_free_laundry;
09121281 6451
c2f1a551 6452 set_max_delegations();
d85ed443 6453
b5a1a81e 6454 return 0;
d85ed443 6455
b5a1a81e
BF
6456out_free_laundry:
6457 destroy_workqueue(laundry_wq);
a6d6b781 6458out_recovery:
b5a1a81e 6459 return ret;
1da177e4
LT
6460}
6461
f252bc68 6462void
4dce0ac9 6463nfs4_state_shutdown_net(struct net *net)
1da177e4 6464{
1da177e4 6465 struct nfs4_delegation *dp = NULL;
1da177e4 6466 struct list_head *pos, *next, reaplist;
4dce0ac9 6467 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1da177e4 6468
4dce0ac9
SK
6469 cancel_delayed_work_sync(&nn->laundromat_work);
6470 locks_end_grace(&nn->nfsd4_manager);
ac55fdc4 6471
1da177e4 6472 INIT_LIST_HEAD(&reaplist);
cdc97505 6473 spin_lock(&state_lock);
e8c69d17 6474 list_for_each_safe(pos, next, &nn->del_recall_lru) {
1da177e4 6475 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
42690676
JL
6476 unhash_delegation_locked(dp);
6477 list_add(&dp->dl_recall_lru, &reaplist);
1da177e4 6478 }
cdc97505 6479 spin_unlock(&state_lock);
1da177e4
LT
6480 list_for_each_safe(pos, next, &reaplist) {
6481 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
42690676 6482 list_del_init(&dp->dl_recall_lru);
afbda402 6483 nfs4_put_deleg_lease(dp->dl_stid.sc_file);
6011695d 6484 nfs4_put_stid(&dp->dl_stid);
1da177e4
LT
6485 }
6486
3320fef1 6487 nfsd4_client_tracking_exit(net);
4dce0ac9 6488 nfs4_state_destroy_net(net);
1da177e4
LT
6489}
6490
6491void
6492nfs4_state_shutdown(void)
6493{
5e8d5c29 6494 destroy_workqueue(laundry_wq);
c3935e30 6495 nfsd4_destroy_callback_queue();
1da177e4 6496}
8b70484c
TM
6497
6498static void
6499get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
6500{
37c593c5
TM
6501 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
6502 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
8b70484c
TM
6503}
6504
6505static void
6506put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
6507{
37c593c5
TM
6508 if (cstate->minorversion) {
6509 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
6510 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
6511 }
6512}
6513
6514void
6515clear_current_stateid(struct nfsd4_compound_state *cstate)
6516{
6517 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
8b70484c
TM
6518}
6519
62cd4a59
TM
6520/*
6521 * functions to set current state id
6522 */
9428fe1a
TM
6523void
6524nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
6525{
6526 put_stateid(cstate, &odp->od_stateid);
6527}
6528
8b70484c
TM
6529void
6530nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
6531{
6532 put_stateid(cstate, &open->op_stateid);
6533}
6534
62cd4a59
TM
6535void
6536nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
6537{
6538 put_stateid(cstate, &close->cl_stateid);
6539}
6540
6541void
6542nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
6543{
6544 put_stateid(cstate, &lock->lk_resp_stateid);
6545}
6546
6547/*
6548 * functions to consume current state id
6549 */
1e97b519 6550
9428fe1a
TM
6551void
6552nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
6553{
6554 get_stateid(cstate, &odp->od_stateid);
6555}
6556
6557void
6558nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
6559{
6560 get_stateid(cstate, &drp->dr_stateid);
6561}
6562
1e97b519
TM
6563void
6564nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
6565{
6566 get_stateid(cstate, &fsp->fr_stateid);
6567}
6568
6569void
6570nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
6571{
6572 get_stateid(cstate, &setattr->sa_stateid);
6573}
6574
8b70484c
TM
6575void
6576nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
6577{
6578 get_stateid(cstate, &close->cl_stateid);
6579}
6580
6581void
62cd4a59 6582nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
8b70484c 6583{
62cd4a59 6584 get_stateid(cstate, &locku->lu_stateid);
8b70484c 6585}
30813e27
TM
6586
6587void
6588nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
6589{
6590 get_stateid(cstate, &read->rd_stateid);
6591}
6592
6593void
6594nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
6595{
6596 get_stateid(cstate, &write->wr_stateid);
6597}
This page took 1.800384 seconds and 5 git commands to generate.