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