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