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