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