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