71ff73ddbbc5cb3a9bd9c1ce1e4eed522501a97d
[pandora-kernel.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/sunrpc/svcauth_gss.h>
42 #include <linux/sunrpc/clnt.h>
43 #include "xdr4.h"
44 #include "vfs.h"
45
46 #define NFSDDBG_FACILITY                NFSDDBG_PROC
47
48 /* Globals */
49 time_t nfsd4_lease = 90;     /* default lease time */
50 time_t nfsd4_grace = 90;
51 static time_t boot_time;
52 static stateid_t zerostateid;             /* bits all 0 */
53 static stateid_t onestateid;              /* bits all 1 */
54 static u64 current_sessionid = 1;
55
56 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
57 #define ONE_STATEID(stateid)  (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
58
59 /* forward declarations */
60 static int check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner);
61
62 /* Locking: */
63
64 /* Currently used for almost all code touching nfsv4 state: */
65 static DEFINE_MUTEX(client_mutex);
66
67 /*
68  * Currently used for the del_recall_lru and file hash table.  In an
69  * effort to decrease the scope of the client_mutex, this spinlock may
70  * eventually cover more:
71  */
72 static DEFINE_SPINLOCK(recall_lock);
73
74 static struct kmem_cache *openowner_slab = NULL;
75 static struct kmem_cache *lockowner_slab = NULL;
76 static struct kmem_cache *file_slab = NULL;
77 static struct kmem_cache *stateid_slab = NULL;
78 static struct kmem_cache *deleg_slab = NULL;
79
80 void
81 nfs4_lock_state(void)
82 {
83         mutex_lock(&client_mutex);
84 }
85
86 void
87 nfs4_unlock_state(void)
88 {
89         mutex_unlock(&client_mutex);
90 }
91
92 static inline u32
93 opaque_hashval(const void *ptr, int nbytes)
94 {
95         unsigned char *cptr = (unsigned char *) ptr;
96
97         u32 x = 0;
98         while (nbytes--) {
99                 x *= 37;
100                 x += *cptr++;
101         }
102         return x;
103 }
104
105 static struct list_head del_recall_lru;
106
107 static void nfsd4_free_file(struct nfs4_file *f)
108 {
109         kmem_cache_free(file_slab, f);
110 }
111
112 static inline void
113 put_nfs4_file(struct nfs4_file *fi)
114 {
115         if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
116                 list_del(&fi->fi_hash);
117                 spin_unlock(&recall_lock);
118                 iput(fi->fi_inode);
119                 nfsd4_free_file(fi);
120         }
121 }
122
123 static inline void
124 get_nfs4_file(struct nfs4_file *fi)
125 {
126         atomic_inc(&fi->fi_ref);
127 }
128
129 static int num_delegations;
130 unsigned int max_delegations;
131
132 /*
133  * Open owner state (share locks)
134  */
135
136 /* hash tables for open owners */
137 #define OPEN_OWNER_HASH_BITS              8
138 #define OPEN_OWNER_HASH_SIZE             (1 << OPEN_OWNER_HASH_BITS)
139 #define OPEN_OWNER_HASH_MASK             (OPEN_OWNER_HASH_SIZE - 1)
140
141 static unsigned int open_ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
142 {
143         unsigned int ret;
144
145         ret = opaque_hashval(ownername->data, ownername->len);
146         ret += clientid;
147         return ret & OPEN_OWNER_HASH_MASK;
148 }
149
150 static struct list_head open_ownerstr_hashtbl[OPEN_OWNER_HASH_SIZE];
151
152 /* hash table for nfs4_file */
153 #define FILE_HASH_BITS                   8
154 #define FILE_HASH_SIZE                  (1 << FILE_HASH_BITS)
155
156 static unsigned int file_hashval(struct inode *ino)
157 {
158         /* XXX: why are we hashing on inode pointer, anyway? */
159         return hash_ptr(ino, FILE_HASH_BITS);
160 }
161
162 static struct list_head file_hashtbl[FILE_HASH_SIZE];
163
164 static void __nfs4_file_get_access(struct nfs4_file *fp, int oflag)
165 {
166         BUG_ON(!(fp->fi_fds[oflag] || fp->fi_fds[O_RDWR]));
167         atomic_inc(&fp->fi_access[oflag]);
168 }
169
170 static void nfs4_file_get_access(struct nfs4_file *fp, int oflag)
171 {
172         if (oflag == O_RDWR) {
173                 __nfs4_file_get_access(fp, O_RDONLY);
174                 __nfs4_file_get_access(fp, O_WRONLY);
175         } else
176                 __nfs4_file_get_access(fp, oflag);
177 }
178
179 static void nfs4_file_put_fd(struct nfs4_file *fp, int oflag)
180 {
181         if (fp->fi_fds[oflag]) {
182                 fput(fp->fi_fds[oflag]);
183                 fp->fi_fds[oflag] = NULL;
184         }
185 }
186
187 static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
188 {
189         if (atomic_dec_and_test(&fp->fi_access[oflag])) {
190                 nfs4_file_put_fd(fp, oflag);
191                 if (atomic_read(&fp->fi_access[1 - oflag]) == 0)
192                         nfs4_file_put_fd(fp, O_RDWR);
193         }
194 }
195
196 static void nfs4_file_put_access(struct nfs4_file *fp, int oflag)
197 {
198         if (oflag == O_RDWR) {
199                 __nfs4_file_put_access(fp, O_RDONLY);
200                 __nfs4_file_put_access(fp, O_WRONLY);
201         } else
202                 __nfs4_file_put_access(fp, oflag);
203 }
204
205 static inline int get_new_stid(struct nfs4_stid *stid)
206 {
207         static int min_stateid = 0;
208         struct idr *stateids = &stid->sc_client->cl_stateids;
209         int new_stid;
210         int error;
211
212         error = idr_get_new_above(stateids, stid, min_stateid, &new_stid);
213         /*
214          * Note: the necessary preallocation was done in
215          * nfs4_alloc_stateid().  The idr code caps the number of
216          * preallocations that can exist at a time, but the state lock
217          * prevents anyone from using ours before we get here:
218          */
219         BUG_ON(error);
220         /*
221          * It shouldn't be a problem to reuse an opaque stateid value.
222          * I don't think it is for 4.1.  But with 4.0 I worry that, for
223          * example, a stray write retransmission could be accepted by
224          * the server when it should have been rejected.  Therefore,
225          * adopt a trick from the sctp code to attempt to maximize the
226          * amount of time until an id is reused, by ensuring they always
227          * "increase" (mod INT_MAX):
228          */
229
230         min_stateid = new_stid+1;
231         if (min_stateid == INT_MAX)
232                 min_stateid = 0;
233         return new_stid;
234 }
235
236 static void init_stid(struct nfs4_stid *stid, struct nfs4_client *cl, unsigned char type)
237 {
238         stateid_t *s = &stid->sc_stateid;
239         int new_id;
240
241         stid->sc_type = type;
242         stid->sc_client = cl;
243         s->si_opaque.so_clid = cl->cl_clientid;
244         new_id = get_new_stid(stid);
245         s->si_opaque.so_id = (u32)new_id;
246         /* Will be incremented before return to client: */
247         s->si_generation = 0;
248 }
249
250 static struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab)
251 {
252         struct idr *stateids = &cl->cl_stateids;
253
254         if (!idr_pre_get(stateids, GFP_KERNEL))
255                 return NULL;
256         /*
257          * Note: if we fail here (or any time between now and the time
258          * we actually get the new idr), we won't need to undo the idr
259          * preallocation, since the idr code caps the number of
260          * preallocated entries.
261          */
262         return kmem_cache_alloc(slab, GFP_KERNEL);
263 }
264
265 static struct nfs4_ol_stateid * nfs4_alloc_stateid(struct nfs4_client *clp)
266 {
267         return openlockstateid(nfs4_alloc_stid(clp, stateid_slab));
268 }
269
270 static struct nfs4_delegation *
271 alloc_init_deleg(struct nfs4_client *clp, struct nfs4_ol_stateid *stp, struct svc_fh *current_fh, u32 type)
272 {
273         struct nfs4_delegation *dp;
274         struct nfs4_file *fp = stp->st_file;
275
276         dprintk("NFSD alloc_init_deleg\n");
277         /*
278          * Major work on the lease subsystem (for example, to support
279          * calbacks on stat) will be required before we can support
280          * write delegations properly.
281          */
282         if (type != NFS4_OPEN_DELEGATE_READ)
283                 return NULL;
284         if (fp->fi_had_conflict)
285                 return NULL;
286         if (num_delegations > max_delegations)
287                 return NULL;
288         dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab));
289         if (dp == NULL)
290                 return dp;
291         init_stid(&dp->dl_stid, clp, NFS4_DELEG_STID);
292         /*
293          * delegation seqid's are never incremented.  The 4.1 special
294          * meaning of seqid 0 isn't meaningful, really, but let's avoid
295          * 0 anyway just for consistency and use 1:
296          */
297         dp->dl_stid.sc_stateid.si_generation = 1;
298         num_delegations++;
299         INIT_LIST_HEAD(&dp->dl_perfile);
300         INIT_LIST_HEAD(&dp->dl_perclnt);
301         INIT_LIST_HEAD(&dp->dl_recall_lru);
302         get_nfs4_file(fp);
303         dp->dl_file = fp;
304         dp->dl_type = type;
305         fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
306         dp->dl_time = 0;
307         atomic_set(&dp->dl_count, 1);
308         INIT_WORK(&dp->dl_recall.cb_work, nfsd4_do_callback_rpc);
309         return dp;
310 }
311
312 void
313 nfs4_put_delegation(struct nfs4_delegation *dp)
314 {
315         if (atomic_dec_and_test(&dp->dl_count)) {
316                 dprintk("NFSD: freeing dp %p\n",dp);
317                 put_nfs4_file(dp->dl_file);
318                 kmem_cache_free(deleg_slab, dp);
319                 num_delegations--;
320         }
321 }
322
323 static void nfs4_put_deleg_lease(struct nfs4_file *fp)
324 {
325         if (atomic_dec_and_test(&fp->fi_delegees)) {
326                 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
327                 fp->fi_lease = NULL;
328                 fput(fp->fi_deleg_file);
329                 fp->fi_deleg_file = NULL;
330         }
331 }
332
333 static void unhash_stid(struct nfs4_stid *s)
334 {
335         struct idr *stateids = &s->sc_client->cl_stateids;
336
337         idr_remove(stateids, s->sc_stateid.si_opaque.so_id);
338 }
339
340 /* Called under the state lock. */
341 static void
342 unhash_delegation(struct nfs4_delegation *dp)
343 {
344         unhash_stid(&dp->dl_stid);
345         list_del_init(&dp->dl_perclnt);
346         spin_lock(&recall_lock);
347         list_del_init(&dp->dl_perfile);
348         list_del_init(&dp->dl_recall_lru);
349         spin_unlock(&recall_lock);
350         nfs4_put_deleg_lease(dp->dl_file);
351         nfs4_put_delegation(dp);
352 }
353
354 /* 
355  * SETCLIENTID state 
356  */
357
358 /* client_lock protects the client lru list and session hash table */
359 static DEFINE_SPINLOCK(client_lock);
360
361 /* Hash tables for nfs4_clientid state */
362 #define CLIENT_HASH_BITS                 4
363 #define CLIENT_HASH_SIZE                (1 << CLIENT_HASH_BITS)
364 #define CLIENT_HASH_MASK                (CLIENT_HASH_SIZE - 1)
365
366 static unsigned int clientid_hashval(u32 id)
367 {
368         return id & CLIENT_HASH_MASK;
369 }
370
371 static unsigned int clientstr_hashval(const char *name)
372 {
373         return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
374 }
375
376 /*
377  * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
378  * used in reboot/reset lease grace period processing
379  *
380  * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
381  * setclientid_confirmed info. 
382  *
383  * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed 
384  * setclientid info.
385  *
386  * client_lru holds client queue ordered by nfs4_client.cl_time
387  * for lease renewal.
388  *
389  * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
390  * for last close replay.
391  */
392 static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
393 static int reclaim_str_hashtbl_size = 0;
394 static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
395 static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
396 static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
397 static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
398 static struct list_head client_lru;
399 static struct list_head close_lru;
400
401 /*
402  * We store the NONE, READ, WRITE, and BOTH bits separately in the
403  * st_{access,deny}_bmap field of the stateid, in order to track not
404  * only what share bits are currently in force, but also what
405  * combinations of share bits previous opens have used.  This allows us
406  * to enforce the recommendation of rfc 3530 14.2.19 that the server
407  * return an error if the client attempt to downgrade to a combination
408  * of share bits not explicable by closing some of its previous opens.
409  *
410  * XXX: This enforcement is actually incomplete, since we don't keep
411  * track of access/deny bit combinations; so, e.g., we allow:
412  *
413  *      OPEN allow read, deny write
414  *      OPEN allow both, deny none
415  *      DOWNGRADE allow read, deny none
416  *
417  * which we should reject.
418  */
419 static void
420 set_access(unsigned int *access, unsigned long bmap) {
421         int i;
422
423         *access = 0;
424         for (i = 1; i < 4; i++) {
425                 if (test_bit(i, &bmap))
426                         *access |= i;
427         }
428 }
429
430 static void
431 set_deny(unsigned int *deny, unsigned long bmap) {
432         int i;
433
434         *deny = 0;
435         for (i = 0; i < 4; i++) {
436                 if (test_bit(i, &bmap))
437                         *deny |= i ;
438         }
439 }
440
441 static int
442 test_share(struct nfs4_ol_stateid *stp, struct nfsd4_open *open) {
443         unsigned int access, deny;
444
445         set_access(&access, stp->st_access_bmap);
446         set_deny(&deny, stp->st_deny_bmap);
447         if ((access & open->op_share_deny) || (deny & open->op_share_access))
448                 return 0;
449         return 1;
450 }
451
452 static int nfs4_access_to_omode(u32 access)
453 {
454         switch (access & NFS4_SHARE_ACCESS_BOTH) {
455         case NFS4_SHARE_ACCESS_READ:
456                 return O_RDONLY;
457         case NFS4_SHARE_ACCESS_WRITE:
458                 return O_WRONLY;
459         case NFS4_SHARE_ACCESS_BOTH:
460                 return O_RDWR;
461         }
462         BUG();
463 }
464
465 static void unhash_generic_stateid(struct nfs4_ol_stateid *stp)
466 {
467         list_del(&stp->st_perfile);
468         list_del(&stp->st_perstateowner);
469 }
470
471 static void close_generic_stateid(struct nfs4_ol_stateid *stp)
472 {
473         int i;
474
475         if (stp->st_access_bmap) {
476                 for (i = 1; i < 4; i++) {
477                         if (test_bit(i, &stp->st_access_bmap))
478                                 nfs4_file_put_access(stp->st_file,
479                                                 nfs4_access_to_omode(i));
480                         __clear_bit(i, &stp->st_access_bmap);
481                 }
482         }
483         put_nfs4_file(stp->st_file);
484         stp->st_file = NULL;
485 }
486
487 static void free_generic_stateid(struct nfs4_ol_stateid *stp)
488 {
489         kmem_cache_free(stateid_slab, stp);
490 }
491
492 static void release_lock_stateid(struct nfs4_ol_stateid *stp)
493 {
494         struct file *file;
495
496         unhash_generic_stateid(stp);
497         unhash_stid(&stp->st_stid);
498         file = find_any_file(stp->st_file);
499         if (file)
500                 locks_remove_posix(file, (fl_owner_t)lockowner(stp->st_stateowner));
501         close_generic_stateid(stp);
502         free_generic_stateid(stp);
503 }
504
505 static void unhash_lockowner(struct nfs4_lockowner *lo)
506 {
507         struct nfs4_ol_stateid *stp;
508
509         list_del(&lo->lo_owner.so_strhash);
510         list_del(&lo->lo_perstateid);
511         while (!list_empty(&lo->lo_owner.so_stateids)) {
512                 stp = list_first_entry(&lo->lo_owner.so_stateids,
513                                 struct nfs4_ol_stateid, st_perstateowner);
514                 release_lock_stateid(stp);
515         }
516 }
517
518 static void release_lockowner(struct nfs4_lockowner *lo)
519 {
520         unhash_lockowner(lo);
521         nfs4_free_lockowner(lo);
522 }
523
524 static void
525 release_stateid_lockowners(struct nfs4_ol_stateid *open_stp)
526 {
527         struct nfs4_lockowner *lo;
528
529         while (!list_empty(&open_stp->st_lockowners)) {
530                 lo = list_entry(open_stp->st_lockowners.next,
531                                 struct nfs4_lockowner, lo_perstateid);
532                 release_lockowner(lo);
533         }
534 }
535
536 static void unhash_open_stateid(struct nfs4_ol_stateid *stp)
537 {
538         unhash_generic_stateid(stp);
539         release_stateid_lockowners(stp);
540         close_generic_stateid(stp);
541 }
542
543 static void release_open_stateid(struct nfs4_ol_stateid *stp)
544 {
545         unhash_open_stateid(stp);
546         unhash_stid(&stp->st_stid);
547         free_generic_stateid(stp);
548 }
549
550 static void unhash_openowner(struct nfs4_openowner *oo)
551 {
552         struct nfs4_ol_stateid *stp;
553
554         list_del(&oo->oo_owner.so_strhash);
555         list_del(&oo->oo_perclient);
556         while (!list_empty(&oo->oo_owner.so_stateids)) {
557                 stp = list_first_entry(&oo->oo_owner.so_stateids,
558                                 struct nfs4_ol_stateid, st_perstateowner);
559                 release_open_stateid(stp);
560         }
561 }
562
563 static void release_last_closed_stateid(struct nfs4_openowner *oo)
564 {
565         struct nfs4_ol_stateid *s = oo->oo_last_closed_stid;
566
567         if (s) {
568                 unhash_stid(&s->st_stid);
569                 free_generic_stateid(s);
570                 oo->oo_last_closed_stid = NULL;
571         }
572 }
573
574 static void release_openowner(struct nfs4_openowner *oo)
575 {
576         unhash_openowner(oo);
577         list_del(&oo->oo_close_lru);
578         release_last_closed_stateid(oo);
579         nfs4_free_openowner(oo);
580 }
581
582 #define SESSION_HASH_SIZE       512
583 static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
584
585 static inline int
586 hash_sessionid(struct nfs4_sessionid *sessionid)
587 {
588         struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
589
590         return sid->sequence % SESSION_HASH_SIZE;
591 }
592
593 static inline void
594 dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
595 {
596         u32 *ptr = (u32 *)(&sessionid->data[0]);
597         dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
598 }
599
600 static void
601 gen_sessionid(struct nfsd4_session *ses)
602 {
603         struct nfs4_client *clp = ses->se_client;
604         struct nfsd4_sessionid *sid;
605
606         sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
607         sid->clientid = clp->cl_clientid;
608         sid->sequence = current_sessionid++;
609         sid->reserved = 0;
610 }
611
612 /*
613  * The protocol defines ca_maxresponssize_cached to include the size of
614  * the rpc header, but all we need to cache is the data starting after
615  * the end of the initial SEQUENCE operation--the rest we regenerate
616  * each time.  Therefore we can advertise a ca_maxresponssize_cached
617  * value that is the number of bytes in our cache plus a few additional
618  * bytes.  In order to stay on the safe side, and not promise more than
619  * we can cache, those additional bytes must be the minimum possible: 24
620  * bytes of rpc header (xid through accept state, with AUTH_NULL
621  * verifier), 12 for the compound header (with zero-length tag), and 44
622  * for the SEQUENCE op response:
623  */
624 #define NFSD_MIN_HDR_SEQ_SZ  (24 + 12 + 44)
625
626 static void
627 free_session_slots(struct nfsd4_session *ses)
628 {
629         int i;
630
631         for (i = 0; i < ses->se_fchannel.maxreqs; i++)
632                 kfree(ses->se_slots[i]);
633 }
634
635 /*
636  * We don't actually need to cache the rpc and session headers, so we
637  * can allocate a little less for each slot:
638  */
639 static inline int slot_bytes(struct nfsd4_channel_attrs *ca)
640 {
641         return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
642 }
643
644 static int nfsd4_sanitize_slot_size(u32 size)
645 {
646         size -= NFSD_MIN_HDR_SEQ_SZ; /* We don't cache the rpc header */
647         size = min_t(u32, size, NFSD_SLOT_CACHE_SIZE);
648
649         return size;
650 }
651
652 /*
653  * XXX: If we run out of reserved DRC memory we could (up to a point)
654  * re-negotiate active sessions and reduce their slot usage to make
655  * rooom for new connections. For now we just fail the create session.
656  */
657 static int nfsd4_get_drc_mem(int slotsize, u32 num)
658 {
659         int avail;
660
661         num = min_t(u32, num, NFSD_MAX_SLOTS_PER_SESSION);
662
663         spin_lock(&nfsd_drc_lock);
664         avail = min_t(int, NFSD_MAX_MEM_PER_SESSION,
665                         nfsd_drc_max_mem - nfsd_drc_mem_used);
666         num = min_t(int, num, avail / slotsize);
667         nfsd_drc_mem_used += num * slotsize;
668         spin_unlock(&nfsd_drc_lock);
669
670         return num;
671 }
672
673 static void nfsd4_put_drc_mem(int slotsize, int num)
674 {
675         spin_lock(&nfsd_drc_lock);
676         nfsd_drc_mem_used -= slotsize * num;
677         spin_unlock(&nfsd_drc_lock);
678 }
679
680 static struct nfsd4_session *alloc_session(int slotsize, int numslots)
681 {
682         struct nfsd4_session *new;
683         int mem, i;
684
685         BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
686                         + sizeof(struct nfsd4_session) > PAGE_SIZE);
687         mem = numslots * sizeof(struct nfsd4_slot *);
688
689         new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
690         if (!new)
691                 return NULL;
692         /* allocate each struct nfsd4_slot and data cache in one piece */
693         for (i = 0; i < numslots; i++) {
694                 mem = sizeof(struct nfsd4_slot) + slotsize;
695                 new->se_slots[i] = kzalloc(mem, GFP_KERNEL);
696                 if (!new->se_slots[i])
697                         goto out_free;
698         }
699         return new;
700 out_free:
701         while (i--)
702                 kfree(new->se_slots[i]);
703         kfree(new);
704         return NULL;
705 }
706
707 static void init_forechannel_attrs(struct nfsd4_channel_attrs *new, struct nfsd4_channel_attrs *req, int numslots, int slotsize)
708 {
709         u32 maxrpc = nfsd_serv->sv_max_mesg;
710
711         new->maxreqs = numslots;
712         new->maxresp_cached = min_t(u32, req->maxresp_cached,
713                                         slotsize + NFSD_MIN_HDR_SEQ_SZ);
714         new->maxreq_sz = min_t(u32, req->maxreq_sz, maxrpc);
715         new->maxresp_sz = min_t(u32, req->maxresp_sz, maxrpc);
716         new->maxops = min_t(u32, req->maxops, NFSD_MAX_OPS_PER_COMPOUND);
717 }
718
719 static void free_conn(struct nfsd4_conn *c)
720 {
721         svc_xprt_put(c->cn_xprt);
722         kfree(c);
723 }
724
725 static void nfsd4_conn_lost(struct svc_xpt_user *u)
726 {
727         struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
728         struct nfs4_client *clp = c->cn_session->se_client;
729
730         spin_lock(&clp->cl_lock);
731         if (!list_empty(&c->cn_persession)) {
732                 list_del(&c->cn_persession);
733                 free_conn(c);
734         }
735         spin_unlock(&clp->cl_lock);
736         nfsd4_probe_callback(clp);
737 }
738
739 static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
740 {
741         struct nfsd4_conn *conn;
742
743         conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
744         if (!conn)
745                 return NULL;
746         svc_xprt_get(rqstp->rq_xprt);
747         conn->cn_xprt = rqstp->rq_xprt;
748         conn->cn_flags = flags;
749         INIT_LIST_HEAD(&conn->cn_xpt_user.list);
750         return conn;
751 }
752
753 static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
754 {
755         conn->cn_session = ses;
756         list_add(&conn->cn_persession, &ses->se_conns);
757 }
758
759 static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
760 {
761         struct nfs4_client *clp = ses->se_client;
762
763         spin_lock(&clp->cl_lock);
764         __nfsd4_hash_conn(conn, ses);
765         spin_unlock(&clp->cl_lock);
766 }
767
768 static int nfsd4_register_conn(struct nfsd4_conn *conn)
769 {
770         conn->cn_xpt_user.callback = nfsd4_conn_lost;
771         return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
772 }
773
774 static __be32 nfsd4_new_conn(struct svc_rqst *rqstp, struct nfsd4_session *ses, u32 dir)
775 {
776         struct nfsd4_conn *conn;
777         int ret;
778
779         conn = alloc_conn(rqstp, dir);
780         if (!conn)
781                 return nfserr_jukebox;
782         nfsd4_hash_conn(conn, ses);
783         ret = nfsd4_register_conn(conn);
784         if (ret)
785                 /* oops; xprt is already down: */
786                 nfsd4_conn_lost(&conn->cn_xpt_user);
787         return nfs_ok;
788 }
789
790 static __be32 nfsd4_new_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_session *ses)
791 {
792         u32 dir = NFS4_CDFC4_FORE;
793
794         if (ses->se_flags & SESSION4_BACK_CHAN)
795                 dir |= NFS4_CDFC4_BACK;
796
797         return nfsd4_new_conn(rqstp, ses, dir);
798 }
799
800 /* must be called under client_lock */
801 static void nfsd4_del_conns(struct nfsd4_session *s)
802 {
803         struct nfs4_client *clp = s->se_client;
804         struct nfsd4_conn *c;
805
806         spin_lock(&clp->cl_lock);
807         while (!list_empty(&s->se_conns)) {
808                 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
809                 list_del_init(&c->cn_persession);
810                 spin_unlock(&clp->cl_lock);
811
812                 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
813                 free_conn(c);
814
815                 spin_lock(&clp->cl_lock);
816         }
817         spin_unlock(&clp->cl_lock);
818 }
819
820 void free_session(struct kref *kref)
821 {
822         struct nfsd4_session *ses;
823         int mem;
824
825         ses = container_of(kref, struct nfsd4_session, se_ref);
826         nfsd4_del_conns(ses);
827         spin_lock(&nfsd_drc_lock);
828         mem = ses->se_fchannel.maxreqs * slot_bytes(&ses->se_fchannel);
829         nfsd_drc_mem_used -= mem;
830         spin_unlock(&nfsd_drc_lock);
831         free_session_slots(ses);
832         kfree(ses);
833 }
834
835 static struct nfsd4_session *alloc_init_session(struct svc_rqst *rqstp, struct nfs4_client *clp, struct nfsd4_create_session *cses)
836 {
837         struct nfsd4_session *new;
838         struct nfsd4_channel_attrs *fchan = &cses->fore_channel;
839         int numslots, slotsize;
840         int status;
841         int idx;
842
843         /*
844          * Note decreasing slot size below client's request may
845          * make it difficult for client to function correctly, whereas
846          * decreasing the number of slots will (just?) affect
847          * performance.  When short on memory we therefore prefer to
848          * decrease number of slots instead of their size.
849          */
850         slotsize = nfsd4_sanitize_slot_size(fchan->maxresp_cached);
851         numslots = nfsd4_get_drc_mem(slotsize, fchan->maxreqs);
852         if (numslots < 1)
853                 return NULL;
854
855         new = alloc_session(slotsize, numslots);
856         if (!new) {
857                 nfsd4_put_drc_mem(slotsize, fchan->maxreqs);
858                 return NULL;
859         }
860         init_forechannel_attrs(&new->se_fchannel, fchan, numslots, slotsize);
861
862         new->se_client = clp;
863         gen_sessionid(new);
864
865         INIT_LIST_HEAD(&new->se_conns);
866
867         new->se_cb_seq_nr = 1;
868         new->se_flags = cses->flags;
869         new->se_cb_prog = cses->callback_prog;
870         kref_init(&new->se_ref);
871         idx = hash_sessionid(&new->se_sessionid);
872         spin_lock(&client_lock);
873         list_add(&new->se_hash, &sessionid_hashtbl[idx]);
874         spin_lock(&clp->cl_lock);
875         list_add(&new->se_perclnt, &clp->cl_sessions);
876         spin_unlock(&clp->cl_lock);
877         spin_unlock(&client_lock);
878
879         status = nfsd4_new_conn_from_crses(rqstp, new);
880         /* whoops: benny points out, status is ignored! (err, or bogus) */
881         if (status) {
882                 free_session(&new->se_ref);
883                 return NULL;
884         }
885         if (cses->flags & SESSION4_BACK_CHAN) {
886                 struct sockaddr *sa = svc_addr(rqstp);
887                 /*
888                  * This is a little silly; with sessions there's no real
889                  * use for the callback address.  Use the peer address
890                  * as a reasonable default for now, but consider fixing
891                  * the rpc client not to require an address in the
892                  * future:
893                  */
894                 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
895                 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
896         }
897         nfsd4_probe_callback(clp);
898         return new;
899 }
900
901 /* caller must hold client_lock */
902 static struct nfsd4_session *
903 find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
904 {
905         struct nfsd4_session *elem;
906         int idx;
907
908         dump_sessionid(__func__, sessionid);
909         idx = hash_sessionid(sessionid);
910         /* Search in the appropriate list */
911         list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
912                 if (!memcmp(elem->se_sessionid.data, sessionid->data,
913                             NFS4_MAX_SESSIONID_LEN)) {
914                         return elem;
915                 }
916         }
917
918         dprintk("%s: session not found\n", __func__);
919         return NULL;
920 }
921
922 /* caller must hold client_lock */
923 static void
924 unhash_session(struct nfsd4_session *ses)
925 {
926         list_del(&ses->se_hash);
927         spin_lock(&ses->se_client->cl_lock);
928         list_del(&ses->se_perclnt);
929         spin_unlock(&ses->se_client->cl_lock);
930 }
931
932 /* must be called under the client_lock */
933 static inline void
934 renew_client_locked(struct nfs4_client *clp)
935 {
936         if (is_client_expired(clp)) {
937                 dprintk("%s: client (clientid %08x/%08x) already expired\n",
938                         __func__,
939                         clp->cl_clientid.cl_boot,
940                         clp->cl_clientid.cl_id);
941                 return;
942         }
943
944         dprintk("renewing client (clientid %08x/%08x)\n", 
945                         clp->cl_clientid.cl_boot, 
946                         clp->cl_clientid.cl_id);
947         list_move_tail(&clp->cl_lru, &client_lru);
948         clp->cl_time = get_seconds();
949 }
950
951 static inline void
952 renew_client(struct nfs4_client *clp)
953 {
954         spin_lock(&client_lock);
955         renew_client_locked(clp);
956         spin_unlock(&client_lock);
957 }
958
959 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
960 static int
961 STALE_CLIENTID(clientid_t *clid)
962 {
963         if (clid->cl_boot == boot_time)
964                 return 0;
965         dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
966                 clid->cl_boot, clid->cl_id, boot_time);
967         return 1;
968 }
969
970 /* 
971  * XXX Should we use a slab cache ?
972  * This type of memory management is somewhat inefficient, but we use it
973  * anyway since SETCLIENTID is not a common operation.
974  */
975 static struct nfs4_client *alloc_client(struct xdr_netobj name)
976 {
977         struct nfs4_client *clp;
978
979         clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
980         if (clp == NULL)
981                 return NULL;
982         clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
983         if (clp->cl_name.data == NULL) {
984                 kfree(clp);
985                 return NULL;
986         }
987         memcpy(clp->cl_name.data, name.data, name.len);
988         clp->cl_name.len = name.len;
989         INIT_LIST_HEAD(&clp->cl_sessions);
990         idr_init(&clp->cl_stateids);
991         atomic_set(&clp->cl_refcount, 0);
992         clp->cl_cb_state = NFSD4_CB_UNKNOWN;
993         INIT_LIST_HEAD(&clp->cl_idhash);
994         INIT_LIST_HEAD(&clp->cl_strhash);
995         INIT_LIST_HEAD(&clp->cl_openowners);
996         INIT_LIST_HEAD(&clp->cl_delegations);
997         INIT_LIST_HEAD(&clp->cl_lru);
998         INIT_LIST_HEAD(&clp->cl_callbacks);
999         spin_lock_init(&clp->cl_lock);
1000         rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
1001         return clp;
1002 }
1003
1004 static inline void
1005 free_client(struct nfs4_client *clp)
1006 {
1007         while (!list_empty(&clp->cl_sessions)) {
1008                 struct nfsd4_session *ses;
1009                 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1010                                 se_perclnt);
1011                 list_del(&ses->se_perclnt);
1012                 nfsd4_put_session(ses);
1013         }
1014         rpc_destroy_wait_queue(&clp->cl_cb_waitq);
1015         if (clp->cl_cred.cr_group_info)
1016                 put_group_info(clp->cl_cred.cr_group_info);
1017         kfree(clp->cl_principal);
1018         kfree(clp->cl_name.data);
1019         idr_remove_all(&clp->cl_stateids);
1020         idr_destroy(&clp->cl_stateids);
1021         kfree(clp);
1022 }
1023
1024 void
1025 release_session_client(struct nfsd4_session *session)
1026 {
1027         struct nfs4_client *clp = session->se_client;
1028
1029         if (!atomic_dec_and_lock(&clp->cl_refcount, &client_lock))
1030                 return;
1031         if (is_client_expired(clp)) {
1032                 free_client(clp);
1033                 session->se_client = NULL;
1034         } else
1035                 renew_client_locked(clp);
1036         spin_unlock(&client_lock);
1037 }
1038
1039 /* must be called under the client_lock */
1040 static inline void
1041 unhash_client_locked(struct nfs4_client *clp)
1042 {
1043         struct nfsd4_session *ses;
1044
1045         mark_client_expired(clp);
1046         list_del(&clp->cl_lru);
1047         spin_lock(&clp->cl_lock);
1048         list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1049                 list_del_init(&ses->se_hash);
1050         spin_unlock(&clp->cl_lock);
1051 }
1052
1053 static void
1054 expire_client(struct nfs4_client *clp)
1055 {
1056         struct nfs4_openowner *oo;
1057         struct nfs4_delegation *dp;
1058         struct list_head reaplist;
1059
1060         INIT_LIST_HEAD(&reaplist);
1061         spin_lock(&recall_lock);
1062         while (!list_empty(&clp->cl_delegations)) {
1063                 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
1064                 list_del_init(&dp->dl_perclnt);
1065                 list_move(&dp->dl_recall_lru, &reaplist);
1066         }
1067         spin_unlock(&recall_lock);
1068         while (!list_empty(&reaplist)) {
1069                 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
1070                 list_del_init(&dp->dl_recall_lru);
1071                 unhash_delegation(dp);
1072         }
1073         while (!list_empty(&clp->cl_openowners)) {
1074                 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
1075                 release_openowner(oo);
1076         }
1077         nfsd4_shutdown_callback(clp);
1078         if (clp->cl_cb_conn.cb_xprt)
1079                 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
1080         list_del(&clp->cl_idhash);
1081         list_del(&clp->cl_strhash);
1082         spin_lock(&client_lock);
1083         unhash_client_locked(clp);
1084         if (atomic_read(&clp->cl_refcount) == 0)
1085                 free_client(clp);
1086         spin_unlock(&client_lock);
1087 }
1088
1089 static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1090 {
1091         memcpy(target->cl_verifier.data, source->data,
1092                         sizeof(target->cl_verifier.data));
1093 }
1094
1095 static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1096 {
1097         target->cl_clientid.cl_boot = source->cl_clientid.cl_boot; 
1098         target->cl_clientid.cl_id = source->cl_clientid.cl_id; 
1099 }
1100
1101 static void copy_cred(struct svc_cred *target, struct svc_cred *source)
1102 {
1103         target->cr_uid = source->cr_uid;
1104         target->cr_gid = source->cr_gid;
1105         target->cr_group_info = source->cr_group_info;
1106         get_group_info(target->cr_group_info);
1107 }
1108
1109 static int same_name(const char *n1, const char *n2)
1110 {
1111         return 0 == memcmp(n1, n2, HEXDIR_LEN);
1112 }
1113
1114 static int
1115 same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1116 {
1117         return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
1118 }
1119
1120 static int
1121 same_clid(clientid_t *cl1, clientid_t *cl2)
1122 {
1123         return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
1124 }
1125
1126 /* XXX what about NGROUP */
1127 static int
1128 same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1129 {
1130         return cr1->cr_uid == cr2->cr_uid;
1131 }
1132
1133 static void gen_clid(struct nfs4_client *clp)
1134 {
1135         static u32 current_clientid = 1;
1136
1137         clp->cl_clientid.cl_boot = boot_time;
1138         clp->cl_clientid.cl_id = current_clientid++; 
1139 }
1140
1141 static void gen_confirm(struct nfs4_client *clp)
1142 {
1143         static u32 i;
1144         u32 *p;
1145
1146         p = (u32 *)clp->cl_confirm.data;
1147         *p++ = get_seconds();
1148         *p++ = i++;
1149 }
1150
1151 static struct nfs4_stid *find_stateid(struct nfs4_client *cl, stateid_t *t)
1152 {
1153         return idr_find(&cl->cl_stateids, t->si_opaque.so_id);
1154 }
1155
1156 static struct nfs4_stid *find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
1157 {
1158         struct nfs4_stid *s;
1159
1160         s = find_stateid(cl, t);
1161         if (!s)
1162                 return NULL;
1163         if (typemask & s->sc_type)
1164                 return s;
1165         return NULL;
1166 }
1167
1168 static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir,
1169                 struct svc_rqst *rqstp, nfs4_verifier *verf)
1170 {
1171         struct nfs4_client *clp;
1172         struct sockaddr *sa = svc_addr(rqstp);
1173         char *princ;
1174
1175         clp = alloc_client(name);
1176         if (clp == NULL)
1177                 return NULL;
1178
1179
1180         princ = svc_gss_principal(rqstp);
1181         if (princ) {
1182                 clp->cl_principal = kstrdup(princ, GFP_KERNEL);
1183                 if (clp->cl_principal == NULL) {
1184                         free_client(clp);
1185                         return NULL;
1186                 }
1187         }
1188
1189         memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
1190         INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_do_callback_rpc);
1191         clp->cl_time = get_seconds();
1192         clear_bit(0, &clp->cl_cb_slot_busy);
1193         copy_verf(clp, verf);
1194         rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
1195         clp->cl_flavor = rqstp->rq_flavor;
1196         copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1197         gen_confirm(clp);
1198         clp->cl_cb_session = NULL;
1199         return clp;
1200 }
1201
1202 static void
1203 add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
1204 {
1205         unsigned int idhashval;
1206
1207         list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
1208         idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1209         list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
1210         renew_client(clp);
1211 }
1212
1213 static void
1214 move_to_confirmed(struct nfs4_client *clp)
1215 {
1216         unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1217         unsigned int strhashval;
1218
1219         dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
1220         list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
1221         strhashval = clientstr_hashval(clp->cl_recdir);
1222         list_move(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
1223         renew_client(clp);
1224 }
1225
1226 static struct nfs4_client *
1227 find_confirmed_client(clientid_t *clid)
1228 {
1229         struct nfs4_client *clp;
1230         unsigned int idhashval = clientid_hashval(clid->cl_id);
1231
1232         list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
1233                 if (same_clid(&clp->cl_clientid, clid)) {
1234                         renew_client(clp);
1235                         return clp;
1236                 }
1237         }
1238         return NULL;
1239 }
1240
1241 static struct nfs4_client *
1242 find_unconfirmed_client(clientid_t *clid)
1243 {
1244         struct nfs4_client *clp;
1245         unsigned int idhashval = clientid_hashval(clid->cl_id);
1246
1247         list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
1248                 if (same_clid(&clp->cl_clientid, clid))
1249                         return clp;
1250         }
1251         return NULL;
1252 }
1253
1254 static bool clp_used_exchangeid(struct nfs4_client *clp)
1255 {
1256         return clp->cl_exchange_flags != 0;
1257
1258
1259 static struct nfs4_client *
1260 find_confirmed_client_by_str(const char *dname, unsigned int hashval)
1261 {
1262         struct nfs4_client *clp;
1263
1264         list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
1265                 if (same_name(clp->cl_recdir, dname))
1266                         return clp;
1267         }
1268         return NULL;
1269 }
1270
1271 static struct nfs4_client *
1272 find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
1273 {
1274         struct nfs4_client *clp;
1275
1276         list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
1277                 if (same_name(clp->cl_recdir, dname))
1278                         return clp;
1279         }
1280         return NULL;
1281 }
1282
1283 static void
1284 gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
1285 {
1286         struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
1287         struct sockaddr *sa = svc_addr(rqstp);
1288         u32 scopeid = rpc_get_scope_id(sa);
1289         unsigned short expected_family;
1290
1291         /* Currently, we only support tcp and tcp6 for the callback channel */
1292         if (se->se_callback_netid_len == 3 &&
1293             !memcmp(se->se_callback_netid_val, "tcp", 3))
1294                 expected_family = AF_INET;
1295         else if (se->se_callback_netid_len == 4 &&
1296                  !memcmp(se->se_callback_netid_val, "tcp6", 4))
1297                 expected_family = AF_INET6;
1298         else
1299                 goto out_err;
1300
1301         conn->cb_addrlen = rpc_uaddr2sockaddr(se->se_callback_addr_val,
1302                                             se->se_callback_addr_len,
1303                                             (struct sockaddr *)&conn->cb_addr,
1304                                             sizeof(conn->cb_addr));
1305
1306         if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
1307                 goto out_err;
1308
1309         if (conn->cb_addr.ss_family == AF_INET6)
1310                 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
1311
1312         conn->cb_prog = se->se_callback_prog;
1313         conn->cb_ident = se->se_callback_ident;
1314         memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
1315         return;
1316 out_err:
1317         conn->cb_addr.ss_family = AF_UNSPEC;
1318         conn->cb_addrlen = 0;
1319         dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
1320                 "will not receive delegations\n",
1321                 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1322
1323         return;
1324 }
1325
1326 /*
1327  * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
1328  */
1329 void
1330 nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1331 {
1332         struct nfsd4_slot *slot = resp->cstate.slot;
1333         unsigned int base;
1334
1335         dprintk("--> %s slot %p\n", __func__, slot);
1336
1337         slot->sl_opcnt = resp->opcnt;
1338         slot->sl_status = resp->cstate.status;
1339
1340         if (nfsd4_not_cached(resp)) {
1341                 slot->sl_datalen = 0;
1342                 return;
1343         }
1344         slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap;
1345         base = (char *)resp->cstate.datap -
1346                                         (char *)resp->xbuf->head[0].iov_base;
1347         if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data,
1348                                     slot->sl_datalen))
1349                 WARN("%s: sessions DRC could not cache compound\n", __func__);
1350         return;
1351 }
1352
1353 /*
1354  * Encode the replay sequence operation from the slot values.
1355  * If cachethis is FALSE encode the uncached rep error on the next
1356  * operation which sets resp->p and increments resp->opcnt for
1357  * nfs4svc_encode_compoundres.
1358  *
1359  */
1360 static __be32
1361 nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1362                           struct nfsd4_compoundres *resp)
1363 {
1364         struct nfsd4_op *op;
1365         struct nfsd4_slot *slot = resp->cstate.slot;
1366
1367         dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__,
1368                 resp->opcnt, resp->cstate.slot->sl_cachethis);
1369
1370         /* Encode the replayed sequence operation */
1371         op = &args->ops[resp->opcnt - 1];
1372         nfsd4_encode_operation(resp, op);
1373
1374         /* Return nfserr_retry_uncached_rep in next operation. */
1375         if (args->opcnt > 1 && slot->sl_cachethis == 0) {
1376                 op = &args->ops[resp->opcnt++];
1377                 op->status = nfserr_retry_uncached_rep;
1378                 nfsd4_encode_operation(resp, op);
1379         }
1380         return op->status;
1381 }
1382
1383 /*
1384  * The sequence operation is not cached because we can use the slot and
1385  * session values.
1386  */
1387 __be32
1388 nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1389                          struct nfsd4_sequence *seq)
1390 {
1391         struct nfsd4_slot *slot = resp->cstate.slot;
1392         __be32 status;
1393
1394         dprintk("--> %s slot %p\n", __func__, slot);
1395
1396         /* Either returns 0 or nfserr_retry_uncached */
1397         status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1398         if (status == nfserr_retry_uncached_rep)
1399                 return status;
1400
1401         /* The sequence operation has been encoded, cstate->datap set. */
1402         memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen);
1403
1404         resp->opcnt = slot->sl_opcnt;
1405         resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen);
1406         status = slot->sl_status;
1407
1408         return status;
1409 }
1410
1411 /*
1412  * Set the exchange_id flags returned by the server.
1413  */
1414 static void
1415 nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1416 {
1417         /* pNFS is not supported */
1418         new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1419
1420         /* Referrals are supported, Migration is not. */
1421         new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1422
1423         /* set the wire flags to return to client. */
1424         clid->flags = new->cl_exchange_flags;
1425 }
1426
1427 __be32
1428 nfsd4_exchange_id(struct svc_rqst *rqstp,
1429                   struct nfsd4_compound_state *cstate,
1430                   struct nfsd4_exchange_id *exid)
1431 {
1432         struct nfs4_client *unconf, *conf, *new;
1433         int status;
1434         unsigned int            strhashval;
1435         char                    dname[HEXDIR_LEN];
1436         char                    addr_str[INET6_ADDRSTRLEN];
1437         nfs4_verifier           verf = exid->verifier;
1438         struct sockaddr         *sa = svc_addr(rqstp);
1439
1440         rpc_ntop(sa, addr_str, sizeof(addr_str));
1441         dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
1442                 "ip_addr=%s flags %x, spa_how %d\n",
1443                 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
1444                 addr_str, exid->flags, exid->spa_how);
1445
1446         if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
1447                 return nfserr_inval;
1448
1449         /* Currently only support SP4_NONE */
1450         switch (exid->spa_how) {
1451         case SP4_NONE:
1452                 break;
1453         case SP4_SSV:
1454                 return nfserr_serverfault;
1455         default:
1456                 BUG();                          /* checked by xdr code */
1457         case SP4_MACH_CRED:
1458                 return nfserr_serverfault;      /* no excuse :-/ */
1459         }
1460
1461         status = nfs4_make_rec_clidname(dname, &exid->clname);
1462
1463         if (status)
1464                 goto error;
1465
1466         strhashval = clientstr_hashval(dname);
1467
1468         nfs4_lock_state();
1469         status = nfs_ok;
1470
1471         conf = find_confirmed_client_by_str(dname, strhashval);
1472         if (conf) {
1473                 if (!clp_used_exchangeid(conf)) {
1474                         status = nfserr_clid_inuse; /* XXX: ? */
1475                         goto out;
1476                 }
1477                 if (!same_verf(&verf, &conf->cl_verifier)) {
1478                         /* 18.35.4 case 8 */
1479                         if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1480                                 status = nfserr_not_same;
1481                                 goto out;
1482                         }
1483                         /* Client reboot: destroy old state */
1484                         expire_client(conf);
1485                         goto out_new;
1486                 }
1487                 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1488                         /* 18.35.4 case 9 */
1489                         if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1490                                 status = nfserr_perm;
1491                                 goto out;
1492                         }
1493                         expire_client(conf);
1494                         goto out_new;
1495                 }
1496                 /*
1497                  * Set bit when the owner id and verifier map to an already
1498                  * confirmed client id (18.35.3).
1499                  */
1500                 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1501
1502                 /*
1503                  * Falling into 18.35.4 case 2, possible router replay.
1504                  * Leave confirmed record intact and return same result.
1505                  */
1506                 copy_verf(conf, &verf);
1507                 new = conf;
1508                 goto out_copy;
1509         }
1510
1511         /* 18.35.4 case 7 */
1512         if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1513                 status = nfserr_noent;
1514                 goto out;
1515         }
1516
1517         unconf  = find_unconfirmed_client_by_str(dname, strhashval);
1518         if (unconf) {
1519                 /*
1520                  * Possible retry or client restart.  Per 18.35.4 case 4,
1521                  * a new unconfirmed record should be generated regardless
1522                  * of whether any properties have changed.
1523                  */
1524                 expire_client(unconf);
1525         }
1526
1527 out_new:
1528         /* Normal case */
1529         new = create_client(exid->clname, dname, rqstp, &verf);
1530         if (new == NULL) {
1531                 status = nfserr_jukebox;
1532                 goto out;
1533         }
1534
1535         gen_clid(new);
1536         add_to_unconfirmed(new, strhashval);
1537 out_copy:
1538         exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1539         exid->clientid.cl_id = new->cl_clientid.cl_id;
1540
1541         exid->seqid = 1;
1542         nfsd4_set_ex_flags(new, exid);
1543
1544         dprintk("nfsd4_exchange_id seqid %d flags %x\n",
1545                 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
1546         status = nfs_ok;
1547
1548 out:
1549         nfs4_unlock_state();
1550 error:
1551         dprintk("nfsd4_exchange_id returns %d\n", ntohl(status));
1552         return status;
1553 }
1554
1555 static int
1556 check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
1557 {
1558         dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1559                 slot_seqid);
1560
1561         /* The slot is in use, and no response has been sent. */
1562         if (slot_inuse) {
1563                 if (seqid == slot_seqid)
1564                         return nfserr_jukebox;
1565                 else
1566                         return nfserr_seq_misordered;
1567         }
1568         /* Normal */
1569         if (likely(seqid == slot_seqid + 1))
1570                 return nfs_ok;
1571         /* Replay */
1572         if (seqid == slot_seqid)
1573                 return nfserr_replay_cache;
1574         /* Wraparound */
1575         if (seqid == 1 && (slot_seqid + 1) == 0)
1576                 return nfs_ok;
1577         /* Misordered replay or misordered new request */
1578         return nfserr_seq_misordered;
1579 }
1580
1581 /*
1582  * Cache the create session result into the create session single DRC
1583  * slot cache by saving the xdr structure. sl_seqid has been set.
1584  * Do this for solo or embedded create session operations.
1585  */
1586 static void
1587 nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
1588                            struct nfsd4_clid_slot *slot, int nfserr)
1589 {
1590         slot->sl_status = nfserr;
1591         memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1592 }
1593
1594 static __be32
1595 nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1596                             struct nfsd4_clid_slot *slot)
1597 {
1598         memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1599         return slot->sl_status;
1600 }
1601
1602 #define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
1603                         2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
1604                         1 +     /* MIN tag is length with zero, only length */ \
1605                         3 +     /* version, opcount, opcode */ \
1606                         XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1607                                 /* seqid, slotID, slotID, cache */ \
1608                         4 ) * sizeof(__be32))
1609
1610 #define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
1611                         2 +     /* verifier: AUTH_NULL, length 0 */\
1612                         1 +     /* status */ \
1613                         1 +     /* MIN tag is length with zero, only length */ \
1614                         3 +     /* opcount, opcode, opstatus*/ \
1615                         XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1616                                 /* seqid, slotID, slotID, slotID, status */ \
1617                         5 ) * sizeof(__be32))
1618
1619 static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs fchannel)
1620 {
1621         return fchannel.maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ
1622                 || fchannel.maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ;
1623 }
1624
1625 __be32
1626 nfsd4_create_session(struct svc_rqst *rqstp,
1627                      struct nfsd4_compound_state *cstate,
1628                      struct nfsd4_create_session *cr_ses)
1629 {
1630         struct sockaddr *sa = svc_addr(rqstp);
1631         struct nfs4_client *conf, *unconf;
1632         struct nfsd4_session *new;
1633         struct nfsd4_clid_slot *cs_slot = NULL;
1634         bool confirm_me = false;
1635         int status = 0;
1636
1637         if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
1638                 return nfserr_inval;
1639
1640         nfs4_lock_state();
1641         unconf = find_unconfirmed_client(&cr_ses->clientid);
1642         conf = find_confirmed_client(&cr_ses->clientid);
1643
1644         if (conf) {
1645                 cs_slot = &conf->cl_cs_slot;
1646                 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
1647                 if (status == nfserr_replay_cache) {
1648                         dprintk("Got a create_session replay! seqid= %d\n",
1649                                 cs_slot->sl_seqid);
1650                         /* Return the cached reply status */
1651                         status = nfsd4_replay_create_session(cr_ses, cs_slot);
1652                         goto out;
1653                 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
1654                         status = nfserr_seq_misordered;
1655                         dprintk("Sequence misordered!\n");
1656                         dprintk("Expected seqid= %d but got seqid= %d\n",
1657                                 cs_slot->sl_seqid, cr_ses->seqid);
1658                         goto out;
1659                 }
1660         } else if (unconf) {
1661                 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
1662                     !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
1663                         status = nfserr_clid_inuse;
1664                         goto out;
1665                 }
1666
1667                 cs_slot = &unconf->cl_cs_slot;
1668                 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
1669                 if (status) {
1670                         /* an unconfirmed replay returns misordered */
1671                         status = nfserr_seq_misordered;
1672                         goto out;
1673                 }
1674
1675                 confirm_me = true;
1676                 conf = unconf;
1677         } else {
1678                 status = nfserr_stale_clientid;
1679                 goto out;
1680         }
1681
1682         /*
1683          * XXX: we should probably set this at creation time, and check
1684          * for consistent minorversion use throughout:
1685          */
1686         conf->cl_minorversion = 1;
1687         /*
1688          * We do not support RDMA or persistent sessions
1689          */
1690         cr_ses->flags &= ~SESSION4_PERSIST;
1691         cr_ses->flags &= ~SESSION4_RDMA;
1692
1693         status = nfserr_toosmall;
1694         if (check_forechannel_attrs(cr_ses->fore_channel))
1695                 goto out;
1696
1697         status = nfserr_jukebox;
1698         new = alloc_init_session(rqstp, conf, cr_ses);
1699         if (!new)
1700                 goto out;
1701         status = nfs_ok;
1702         memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
1703                NFS4_MAX_SESSIONID_LEN);
1704         memcpy(&cr_ses->fore_channel, &new->se_fchannel,
1705                 sizeof(struct nfsd4_channel_attrs));
1706         cs_slot->sl_seqid++;
1707         cr_ses->seqid = cs_slot->sl_seqid;
1708
1709         /* cache solo and embedded create sessions under the state lock */
1710         nfsd4_cache_create_session(cr_ses, cs_slot, status);
1711         if (confirm_me)
1712                 move_to_confirmed(conf);
1713 out:
1714         nfs4_unlock_state();
1715         dprintk("%s returns %d\n", __func__, ntohl(status));
1716         return status;
1717 }
1718
1719 static bool nfsd4_last_compound_op(struct svc_rqst *rqstp)
1720 {
1721         struct nfsd4_compoundres *resp = rqstp->rq_resp;
1722         struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1723
1724         return argp->opcnt == resp->opcnt;
1725 }
1726
1727 static __be32 nfsd4_map_bcts_dir(u32 *dir)
1728 {
1729         switch (*dir) {
1730         case NFS4_CDFC4_FORE:
1731         case NFS4_CDFC4_BACK:
1732                 return nfs_ok;
1733         case NFS4_CDFC4_FORE_OR_BOTH:
1734         case NFS4_CDFC4_BACK_OR_BOTH:
1735                 *dir = NFS4_CDFC4_BOTH;
1736                 return nfs_ok;
1737         };
1738         return nfserr_inval;
1739 }
1740
1741 __be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
1742                      struct nfsd4_compound_state *cstate,
1743                      struct nfsd4_bind_conn_to_session *bcts)
1744 {
1745         __be32 status;
1746
1747         if (!nfsd4_last_compound_op(rqstp))
1748                 return nfserr_not_only_op;
1749         spin_lock(&client_lock);
1750         cstate->session = find_in_sessionid_hashtbl(&bcts->sessionid);
1751         /* Sorta weird: we only need the refcnt'ing because new_conn acquires
1752          * client_lock iself: */
1753         if (cstate->session) {
1754                 nfsd4_get_session(cstate->session);
1755                 atomic_inc(&cstate->session->se_client->cl_refcount);
1756         }
1757         spin_unlock(&client_lock);
1758         if (!cstate->session)
1759                 return nfserr_badsession;
1760
1761         status = nfsd4_map_bcts_dir(&bcts->dir);
1762         if (!status)
1763                 nfsd4_new_conn(rqstp, cstate->session, bcts->dir);
1764         return status;
1765 }
1766
1767 static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
1768 {
1769         if (!session)
1770                 return 0;
1771         return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
1772 }
1773
1774 __be32
1775 nfsd4_destroy_session(struct svc_rqst *r,
1776                       struct nfsd4_compound_state *cstate,
1777                       struct nfsd4_destroy_session *sessionid)
1778 {
1779         struct nfsd4_session *ses;
1780         u32 status = nfserr_badsession;
1781
1782         /* Notes:
1783          * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1784          * - Should we return nfserr_back_chan_busy if waiting for
1785          *   callbacks on to-be-destroyed session?
1786          * - Do we need to clear any callback info from previous session?
1787          */
1788
1789         if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
1790                 if (!nfsd4_last_compound_op(r))
1791                         return nfserr_not_only_op;
1792         }
1793         dump_sessionid(__func__, &sessionid->sessionid);
1794         spin_lock(&client_lock);
1795         ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1796         if (!ses) {
1797                 spin_unlock(&client_lock);
1798                 goto out;
1799         }
1800
1801         unhash_session(ses);
1802         spin_unlock(&client_lock);
1803
1804         nfs4_lock_state();
1805         nfsd4_probe_callback_sync(ses->se_client);
1806         nfs4_unlock_state();
1807
1808         nfsd4_del_conns(ses);
1809
1810         nfsd4_put_session(ses);
1811         status = nfs_ok;
1812 out:
1813         dprintk("%s returns %d\n", __func__, ntohl(status));
1814         return status;
1815 }
1816
1817 static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
1818 {
1819         struct nfsd4_conn *c;
1820
1821         list_for_each_entry(c, &s->se_conns, cn_persession) {
1822                 if (c->cn_xprt == xpt) {
1823                         return c;
1824                 }
1825         }
1826         return NULL;
1827 }
1828
1829 static void nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
1830 {
1831         struct nfs4_client *clp = ses->se_client;
1832         struct nfsd4_conn *c;
1833         int ret;
1834
1835         spin_lock(&clp->cl_lock);
1836         c = __nfsd4_find_conn(new->cn_xprt, ses);
1837         if (c) {
1838                 spin_unlock(&clp->cl_lock);
1839                 free_conn(new);
1840                 return;
1841         }
1842         __nfsd4_hash_conn(new, ses);
1843         spin_unlock(&clp->cl_lock);
1844         ret = nfsd4_register_conn(new);
1845         if (ret)
1846                 /* oops; xprt is already down: */
1847                 nfsd4_conn_lost(&new->cn_xpt_user);
1848         return;
1849 }
1850
1851 static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
1852 {
1853         struct nfsd4_compoundargs *args = rqstp->rq_argp;
1854
1855         return args->opcnt > session->se_fchannel.maxops;
1856 }
1857
1858 static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
1859                                   struct nfsd4_session *session)
1860 {
1861         struct xdr_buf *xb = &rqstp->rq_arg;
1862
1863         return xb->len > session->se_fchannel.maxreq_sz;
1864 }
1865
1866 __be32
1867 nfsd4_sequence(struct svc_rqst *rqstp,
1868                struct nfsd4_compound_state *cstate,
1869                struct nfsd4_sequence *seq)
1870 {
1871         struct nfsd4_compoundres *resp = rqstp->rq_resp;
1872         struct nfsd4_session *session;
1873         struct nfsd4_slot *slot;
1874         struct nfsd4_conn *conn;
1875         int status;
1876
1877         if (resp->opcnt != 1)
1878                 return nfserr_sequence_pos;
1879
1880         /*
1881          * Will be either used or freed by nfsd4_sequence_check_conn
1882          * below.
1883          */
1884         conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
1885         if (!conn)
1886                 return nfserr_jukebox;
1887
1888         spin_lock(&client_lock);
1889         status = nfserr_badsession;
1890         session = find_in_sessionid_hashtbl(&seq->sessionid);
1891         if (!session)
1892                 goto out;
1893
1894         status = nfserr_too_many_ops;
1895         if (nfsd4_session_too_many_ops(rqstp, session))
1896                 goto out;
1897
1898         status = nfserr_req_too_big;
1899         if (nfsd4_request_too_big(rqstp, session))
1900                 goto out;
1901
1902         status = nfserr_badslot;
1903         if (seq->slotid >= session->se_fchannel.maxreqs)
1904                 goto out;
1905
1906         slot = session->se_slots[seq->slotid];
1907         dprintk("%s: slotid %d\n", __func__, seq->slotid);
1908
1909         /* We do not negotiate the number of slots yet, so set the
1910          * maxslots to the session maxreqs which is used to encode
1911          * sr_highest_slotid and the sr_target_slot id to maxslots */
1912         seq->maxslots = session->se_fchannel.maxreqs;
1913
1914         status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse);
1915         if (status == nfserr_replay_cache) {
1916                 cstate->slot = slot;
1917                 cstate->session = session;
1918                 /* Return the cached reply status and set cstate->status
1919                  * for nfsd4_proc_compound processing */
1920                 status = nfsd4_replay_cache_entry(resp, seq);
1921                 cstate->status = nfserr_replay_cache;
1922                 goto out;
1923         }
1924         if (status)
1925                 goto out;
1926
1927         nfsd4_sequence_check_conn(conn, session);
1928         conn = NULL;
1929
1930         /* Success! bump slot seqid */
1931         slot->sl_inuse = true;
1932         slot->sl_seqid = seq->seqid;
1933         slot->sl_cachethis = seq->cachethis;
1934
1935         cstate->slot = slot;
1936         cstate->session = session;
1937
1938 out:
1939         /* Hold a session reference until done processing the compound. */
1940         if (cstate->session) {
1941                 struct nfs4_client *clp = session->se_client;
1942
1943                 nfsd4_get_session(cstate->session);
1944                 atomic_inc(&clp->cl_refcount);
1945                 switch (clp->cl_cb_state) {
1946                 case NFSD4_CB_DOWN:
1947                         seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
1948                         break;
1949                 case NFSD4_CB_FAULT:
1950                         seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
1951                         break;
1952                 default:
1953                         seq->status_flags = 0;
1954                 }
1955         }
1956         kfree(conn);
1957         spin_unlock(&client_lock);
1958         dprintk("%s: return %d\n", __func__, ntohl(status));
1959         return status;
1960 }
1961
1962 static inline bool has_resources(struct nfs4_client *clp)
1963 {
1964         return !list_empty(&clp->cl_openowners)
1965                 || !list_empty(&clp->cl_delegations)
1966                 || !list_empty(&clp->cl_sessions);
1967 }
1968
1969 __be32
1970 nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
1971 {
1972         struct nfs4_client *conf, *unconf, *clp;
1973         int status = 0;
1974
1975         nfs4_lock_state();
1976         unconf = find_unconfirmed_client(&dc->clientid);
1977         conf = find_confirmed_client(&dc->clientid);
1978
1979         if (conf) {
1980                 clp = conf;
1981
1982                 if (!is_client_expired(conf) && has_resources(conf)) {
1983                         status = nfserr_clientid_busy;
1984                         goto out;
1985                 }
1986
1987                 /* rfc5661 18.50.3 */
1988                 if (cstate->session && conf == cstate->session->se_client) {
1989                         status = nfserr_clientid_busy;
1990                         goto out;
1991                 }
1992         } else if (unconf)
1993                 clp = unconf;
1994         else {
1995                 status = nfserr_stale_clientid;
1996                 goto out;
1997         }
1998
1999         expire_client(clp);
2000 out:
2001         nfs4_unlock_state();
2002         dprintk("%s return %d\n", __func__, ntohl(status));
2003         return status;
2004 }
2005
2006 __be32
2007 nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
2008 {
2009         int status = 0;
2010
2011         if (rc->rca_one_fs) {
2012                 if (!cstate->current_fh.fh_dentry)
2013                         return nfserr_nofilehandle;
2014                 /*
2015                  * We don't take advantage of the rca_one_fs case.
2016                  * That's OK, it's optional, we can safely ignore it.
2017                  */
2018                  return nfs_ok;
2019         }
2020
2021         nfs4_lock_state();
2022         status = nfserr_complete_already;
2023         if (cstate->session->se_client->cl_firststate)
2024                 goto out;
2025
2026         status = nfserr_stale_clientid;
2027         if (is_client_expired(cstate->session->se_client))
2028                 /*
2029                  * The following error isn't really legal.
2030                  * But we only get here if the client just explicitly
2031                  * destroyed the client.  Surely it no longer cares what
2032                  * error it gets back on an operation for the dead
2033                  * client.
2034                  */
2035                 goto out;
2036
2037         status = nfs_ok;
2038         nfsd4_create_clid_dir(cstate->session->se_client);
2039 out:
2040         nfs4_unlock_state();
2041         return status;
2042 }
2043
2044 __be32
2045 nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2046                   struct nfsd4_setclientid *setclid)
2047 {
2048         struct xdr_netobj       clname = setclid->se_name;
2049         nfs4_verifier           clverifier = setclid->se_verf;
2050         unsigned int            strhashval;
2051         struct nfs4_client      *conf, *unconf, *new;
2052         __be32                  status;
2053         char                    dname[HEXDIR_LEN];
2054         
2055         status = nfs4_make_rec_clidname(dname, &clname);
2056         if (status)
2057                 return status;
2058
2059         /* 
2060          * XXX The Duplicate Request Cache (DRC) has been checked (??)
2061          * We get here on a DRC miss.
2062          */
2063
2064         strhashval = clientstr_hashval(dname);
2065
2066         nfs4_lock_state();
2067         conf = find_confirmed_client_by_str(dname, strhashval);
2068         if (conf) {
2069                 /* RFC 3530 14.2.33 CASE 0: */
2070                 status = nfserr_clid_inuse;
2071                 if (clp_used_exchangeid(conf))
2072                         goto out;
2073                 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
2074                         char addr_str[INET6_ADDRSTRLEN];
2075                         rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2076                                  sizeof(addr_str));
2077                         dprintk("NFSD: setclientid: string in use by client "
2078                                 "at %s\n", addr_str);
2079                         goto out;
2080                 }
2081         }
2082         /*
2083          * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
2084          * has a description of SETCLIENTID request processing consisting
2085          * of 5 bullet points, labeled as CASE0 - CASE4 below.
2086          */
2087         unconf = find_unconfirmed_client_by_str(dname, strhashval);
2088         status = nfserr_jukebox;
2089         if (!conf) {
2090                 /*
2091                  * RFC 3530 14.2.33 CASE 4:
2092                  * placed first, because it is the normal case
2093                  */
2094                 if (unconf)
2095                         expire_client(unconf);
2096                 new = create_client(clname, dname, rqstp, &clverifier);
2097                 if (new == NULL)
2098                         goto out;
2099                 gen_clid(new);
2100         } else if (same_verf(&conf->cl_verifier, &clverifier)) {
2101                 /*
2102                  * RFC 3530 14.2.33 CASE 1:
2103                  * probable callback update
2104                  */
2105                 if (unconf) {
2106                         /* Note this is removing unconfirmed {*x***},
2107                          * which is stronger than RFC recommended {vxc**}.
2108                          * This has the advantage that there is at most
2109                          * one {*x***} in either list at any time.
2110                          */
2111                         expire_client(unconf);
2112                 }
2113                 new = create_client(clname, dname, rqstp, &clverifier);
2114                 if (new == NULL)
2115                         goto out;
2116                 copy_clid(new, conf);
2117         } else if (!unconf) {
2118                 /*
2119                  * RFC 3530 14.2.33 CASE 2:
2120                  * probable client reboot; state will be removed if
2121                  * confirmed.
2122                  */
2123                 new = create_client(clname, dname, rqstp, &clverifier);
2124                 if (new == NULL)
2125                         goto out;
2126                 gen_clid(new);
2127         } else {
2128                 /*
2129                  * RFC 3530 14.2.33 CASE 3:
2130                  * probable client reboot; state will be removed if
2131                  * confirmed.
2132                  */
2133                 expire_client(unconf);
2134                 new = create_client(clname, dname, rqstp, &clverifier);
2135                 if (new == NULL)
2136                         goto out;
2137                 gen_clid(new);
2138         }
2139         /*
2140          * XXX: we should probably set this at creation time, and check
2141          * for consistent minorversion use throughout:
2142          */
2143         new->cl_minorversion = 0;
2144         gen_callback(new, setclid, rqstp);
2145         add_to_unconfirmed(new, strhashval);
2146         setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2147         setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2148         memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2149         status = nfs_ok;
2150 out:
2151         nfs4_unlock_state();
2152         return status;
2153 }
2154
2155
2156 /*
2157  * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
2158  * a description of SETCLIENTID_CONFIRM request processing consisting of 4
2159  * bullets, labeled as CASE1 - CASE4 below.
2160  */
2161 __be32
2162 nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2163                          struct nfsd4_compound_state *cstate,
2164                          struct nfsd4_setclientid_confirm *setclientid_confirm)
2165 {
2166         struct sockaddr *sa = svc_addr(rqstp);
2167         struct nfs4_client *conf, *unconf;
2168         nfs4_verifier confirm = setclientid_confirm->sc_confirm; 
2169         clientid_t * clid = &setclientid_confirm->sc_clientid;
2170         __be32 status;
2171
2172         if (STALE_CLIENTID(clid))
2173                 return nfserr_stale_clientid;
2174         /* 
2175          * XXX The Duplicate Request Cache (DRC) has been checked (??)
2176          * We get here on a DRC miss.
2177          */
2178
2179         nfs4_lock_state();
2180
2181         conf = find_confirmed_client(clid);
2182         unconf = find_unconfirmed_client(clid);
2183
2184         status = nfserr_clid_inuse;
2185         if (conf && !rpc_cmp_addr((struct sockaddr *) &conf->cl_addr, sa))
2186                 goto out;
2187         if (unconf && !rpc_cmp_addr((struct sockaddr *) &unconf->cl_addr, sa))
2188                 goto out;
2189
2190         /*
2191          * section 14.2.34 of RFC 3530 has a description of
2192          * SETCLIENTID_CONFIRM request processing consisting
2193          * of 4 bullet points, labeled as CASE1 - CASE4 below.
2194          */
2195         if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
2196                 /*
2197                  * RFC 3530 14.2.34 CASE 1:
2198                  * callback update
2199                  */
2200                 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
2201                         status = nfserr_clid_inuse;
2202                 else {
2203                         nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2204                         nfsd4_probe_callback(conf);
2205                         expire_client(unconf);
2206                         status = nfs_ok;
2207
2208                 }
2209         } else if (conf && !unconf) {
2210                 /*
2211                  * RFC 3530 14.2.34 CASE 2:
2212                  * probable retransmitted request; play it safe and
2213                  * do nothing.
2214                  */
2215                 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
2216                         status = nfserr_clid_inuse;
2217                 else
2218                         status = nfs_ok;
2219         } else if (!conf && unconf
2220                         && same_verf(&unconf->cl_confirm, &confirm)) {
2221                 /*
2222                  * RFC 3530 14.2.34 CASE 3:
2223                  * Normal case; new or rebooted client:
2224                  */
2225                 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
2226                         status = nfserr_clid_inuse;
2227                 } else {
2228                         unsigned int hash =
2229                                 clientstr_hashval(unconf->cl_recdir);
2230                         conf = find_confirmed_client_by_str(unconf->cl_recdir,
2231                                                             hash);
2232                         if (conf) {
2233                                 nfsd4_remove_clid_dir(conf);
2234                                 expire_client(conf);
2235                         }
2236                         move_to_confirmed(unconf);
2237                         conf = unconf;
2238                         nfsd4_probe_callback(conf);
2239                         status = nfs_ok;
2240                 }
2241         } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
2242             && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
2243                                                                 &confirm)))) {
2244                 /*
2245                  * RFC 3530 14.2.34 CASE 4:
2246                  * Client probably hasn't noticed that we rebooted yet.
2247                  */
2248                 status = nfserr_stale_clientid;
2249         } else {
2250                 /* check that we have hit one of the cases...*/
2251                 status = nfserr_clid_inuse;
2252         }
2253 out:
2254         nfs4_unlock_state();
2255         return status;
2256 }
2257
2258 static struct nfs4_file *nfsd4_alloc_file(void)
2259 {
2260         return kmem_cache_alloc(file_slab, GFP_KERNEL);
2261 }
2262
2263 /* OPEN Share state helper functions */
2264 static void nfsd4_init_file(struct nfs4_file *fp, struct inode *ino)
2265 {
2266         unsigned int hashval = file_hashval(ino);
2267
2268         atomic_set(&fp->fi_ref, 1);
2269         INIT_LIST_HEAD(&fp->fi_hash);
2270         INIT_LIST_HEAD(&fp->fi_stateids);
2271         INIT_LIST_HEAD(&fp->fi_delegations);
2272         fp->fi_inode = igrab(ino);
2273         fp->fi_had_conflict = false;
2274         fp->fi_lease = NULL;
2275         memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2276         memset(fp->fi_access, 0, sizeof(fp->fi_access));
2277         spin_lock(&recall_lock);
2278         list_add(&fp->fi_hash, &file_hashtbl[hashval]);
2279         spin_unlock(&recall_lock);
2280 }
2281
2282 static void
2283 nfsd4_free_slab(struct kmem_cache **slab)
2284 {
2285         if (*slab == NULL)
2286                 return;
2287         kmem_cache_destroy(*slab);
2288         *slab = NULL;
2289 }
2290
2291 void
2292 nfsd4_free_slabs(void)
2293 {
2294         nfsd4_free_slab(&openowner_slab);
2295         nfsd4_free_slab(&lockowner_slab);
2296         nfsd4_free_slab(&file_slab);
2297         nfsd4_free_slab(&stateid_slab);
2298         nfsd4_free_slab(&deleg_slab);
2299 }
2300
2301 static int
2302 nfsd4_init_slabs(void)
2303 {
2304         openowner_slab = kmem_cache_create("nfsd4_openowners",
2305                         sizeof(struct nfs4_openowner), 0, 0, NULL);
2306         if (openowner_slab == NULL)
2307                 goto out_nomem;
2308         lockowner_slab = kmem_cache_create("nfsd4_lockowners",
2309                         sizeof(struct nfs4_lockowner), 0, 0, NULL);
2310         if (lockowner_slab == NULL)
2311                 goto out_nomem;
2312         file_slab = kmem_cache_create("nfsd4_files",
2313                         sizeof(struct nfs4_file), 0, 0, NULL);
2314         if (file_slab == NULL)
2315                 goto out_nomem;
2316         stateid_slab = kmem_cache_create("nfsd4_stateids",
2317                         sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
2318         if (stateid_slab == NULL)
2319                 goto out_nomem;
2320         deleg_slab = kmem_cache_create("nfsd4_delegations",
2321                         sizeof(struct nfs4_delegation), 0, 0, NULL);
2322         if (deleg_slab == NULL)
2323                 goto out_nomem;
2324         return 0;
2325 out_nomem:
2326         nfsd4_free_slabs();
2327         dprintk("nfsd4: out of memory while initializing nfsv4\n");
2328         return -ENOMEM;
2329 }
2330
2331 void nfs4_free_openowner(struct nfs4_openowner *oo)
2332 {
2333         kfree(oo->oo_owner.so_owner.data);
2334         kmem_cache_free(openowner_slab, oo);
2335 }
2336
2337 void nfs4_free_lockowner(struct nfs4_lockowner *lo)
2338 {
2339         kfree(lo->lo_owner.so_owner.data);
2340         kmem_cache_free(lockowner_slab, lo);
2341 }
2342
2343 static void init_nfs4_replay(struct nfs4_replay *rp)
2344 {
2345         rp->rp_status = nfserr_serverfault;
2346         rp->rp_buflen = 0;
2347         rp->rp_buf = rp->rp_ibuf;
2348 }
2349
2350 static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
2351 {
2352         struct nfs4_stateowner *sop;
2353
2354         sop = kmem_cache_alloc(slab, GFP_KERNEL);
2355         if (!sop)
2356                 return NULL;
2357
2358         sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2359         if (!sop->so_owner.data) {
2360                 kmem_cache_free(slab, sop);
2361                 return NULL;
2362         }
2363         sop->so_owner.len = owner->len;
2364
2365         INIT_LIST_HEAD(&sop->so_stateids);
2366         sop->so_client = clp;
2367         init_nfs4_replay(&sop->so_replay);
2368         return sop;
2369 }
2370
2371 static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
2372 {
2373         list_add(&oo->oo_owner.so_strhash, &open_ownerstr_hashtbl[strhashval]);
2374         list_add(&oo->oo_perclient, &clp->cl_openowners);
2375 }
2376
2377 static struct nfs4_openowner *
2378 alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
2379         struct nfs4_openowner *oo;
2380
2381         oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
2382         if (!oo)
2383                 return NULL;
2384         oo->oo_owner.so_is_open_owner = 1;
2385         oo->oo_owner.so_seqid = open->op_seqid;
2386         oo->oo_flags = NFS4_OO_NEW;
2387         oo->oo_time = 0;
2388         oo->oo_last_closed_stid = NULL;
2389         INIT_LIST_HEAD(&oo->oo_close_lru);
2390         hash_openowner(oo, clp, strhashval);
2391         return oo;
2392 }
2393
2394 static void init_open_stateid(struct nfs4_ol_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
2395         struct nfs4_openowner *oo = open->op_openowner;
2396         struct nfs4_client *clp = oo->oo_owner.so_client;
2397
2398         init_stid(&stp->st_stid, clp, NFS4_OPEN_STID);
2399         INIT_LIST_HEAD(&stp->st_lockowners);
2400         list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
2401         list_add(&stp->st_perfile, &fp->fi_stateids);
2402         stp->st_stateowner = &oo->oo_owner;
2403         get_nfs4_file(fp);
2404         stp->st_file = fp;
2405         stp->st_access_bmap = 0;
2406         stp->st_deny_bmap = 0;
2407         __set_bit(open->op_share_access, &stp->st_access_bmap);
2408         __set_bit(open->op_share_deny, &stp->st_deny_bmap);
2409         stp->st_openstp = NULL;
2410 }
2411
2412 static void
2413 move_to_close_lru(struct nfs4_openowner *oo)
2414 {
2415         dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
2416
2417         list_move_tail(&oo->oo_close_lru, &close_lru);
2418         oo->oo_time = get_seconds();
2419 }
2420
2421 static int
2422 same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
2423                                                         clientid_t *clid)
2424 {
2425         return (sop->so_owner.len == owner->len) &&
2426                 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
2427                 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
2428 }
2429
2430 static struct nfs4_openowner *
2431 find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
2432 {
2433         struct nfs4_stateowner *so;
2434         struct nfs4_openowner *oo;
2435
2436         list_for_each_entry(so, &open_ownerstr_hashtbl[hashval], so_strhash) {
2437                 if (same_owner_str(so, &open->op_owner, &open->op_clientid)) {
2438                         oo = openowner(so);
2439                         renew_client(oo->oo_owner.so_client);
2440                         return oo;
2441                 }
2442         }
2443         return NULL;
2444 }
2445
2446 /* search file_hashtbl[] for file */
2447 static struct nfs4_file *
2448 find_file(struct inode *ino)
2449 {
2450         unsigned int hashval = file_hashval(ino);
2451         struct nfs4_file *fp;
2452
2453         spin_lock(&recall_lock);
2454         list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
2455                 if (fp->fi_inode == ino) {
2456                         get_nfs4_file(fp);
2457                         spin_unlock(&recall_lock);
2458                         return fp;
2459                 }
2460         }
2461         spin_unlock(&recall_lock);
2462         return NULL;
2463 }
2464
2465 /*
2466  * Called to check deny when READ with all zero stateid or
2467  * WRITE with all zero or all one stateid
2468  */
2469 static __be32
2470 nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2471 {
2472         struct inode *ino = current_fh->fh_dentry->d_inode;
2473         struct nfs4_file *fp;
2474         struct nfs4_ol_stateid *stp;
2475         __be32 ret;
2476
2477         dprintk("NFSD: nfs4_share_conflict\n");
2478
2479         fp = find_file(ino);
2480         if (!fp)
2481                 return nfs_ok;
2482         ret = nfserr_locked;
2483         /* Search for conflicting share reservations */
2484         list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
2485                 if (test_bit(deny_type, &stp->st_deny_bmap) ||
2486                     test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
2487                         goto out;
2488         }
2489         ret = nfs_ok;
2490 out:
2491         put_nfs4_file(fp);
2492         return ret;
2493 }
2494
2495 static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
2496 {
2497         /* We're assuming the state code never drops its reference
2498          * without first removing the lease.  Since we're in this lease
2499          * callback (and since the lease code is serialized by the kernel
2500          * lock) we know the server hasn't removed the lease yet, we know
2501          * it's safe to take a reference: */
2502         atomic_inc(&dp->dl_count);
2503
2504         list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
2505
2506         /* only place dl_time is set. protected by lock_flocks*/
2507         dp->dl_time = get_seconds();
2508
2509         nfsd4_cb_recall(dp);
2510 }
2511
2512 /* Called from break_lease() with lock_flocks() held. */
2513 static void nfsd_break_deleg_cb(struct file_lock *fl)
2514 {
2515         struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
2516         struct nfs4_delegation *dp;
2517
2518         BUG_ON(!fp);
2519         /* We assume break_lease is only called once per lease: */
2520         BUG_ON(fp->fi_had_conflict);
2521         /*
2522          * We don't want the locks code to timeout the lease for us;
2523          * we'll remove it ourself if a delegation isn't returned
2524          * in time:
2525          */
2526         fl->fl_break_time = 0;
2527
2528         spin_lock(&recall_lock);
2529         fp->fi_had_conflict = true;
2530         list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2531                 nfsd_break_one_deleg(dp);
2532         spin_unlock(&recall_lock);
2533 }
2534
2535 static
2536 int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2537 {
2538         if (arg & F_UNLCK)
2539                 return lease_modify(onlist, arg);
2540         else
2541                 return -EAGAIN;
2542 }
2543
2544 static const struct lock_manager_operations nfsd_lease_mng_ops = {
2545         .lm_break = nfsd_break_deleg_cb,
2546         .lm_change = nfsd_change_deleg_cb,
2547 };
2548
2549 static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
2550 {
2551         if (nfsd4_has_session(cstate))
2552                 return nfs_ok;
2553         if (seqid == so->so_seqid - 1)
2554                 return nfserr_replay_me;
2555         if (seqid == so->so_seqid)
2556                 return nfs_ok;
2557         return nfserr_bad_seqid;
2558 }
2559
2560 __be32
2561 nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2562                     struct nfsd4_open *open)
2563 {
2564         clientid_t *clientid = &open->op_clientid;
2565         struct nfs4_client *clp = NULL;
2566         unsigned int strhashval;
2567         struct nfs4_openowner *oo = NULL;
2568         __be32 status;
2569
2570         if (STALE_CLIENTID(&open->op_clientid))
2571                 return nfserr_stale_clientid;
2572         /*
2573          * In case we need it later, after we've already created the
2574          * file and don't want to risk a further failure:
2575          */
2576         open->op_file = nfsd4_alloc_file();
2577         if (open->op_file == NULL)
2578                 return nfserr_jukebox;
2579
2580         strhashval = open_ownerstr_hashval(clientid->cl_id, &open->op_owner);
2581         oo = find_openstateowner_str(strhashval, open);
2582         open->op_openowner = oo;
2583         if (!oo) {
2584                 clp = find_confirmed_client(clientid);
2585                 if (clp == NULL)
2586                         return nfserr_expired;
2587                 goto new_owner;
2588         }
2589         if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
2590                 /* Replace unconfirmed owners without checking for replay. */
2591                 clp = oo->oo_owner.so_client;
2592                 release_openowner(oo);
2593                 open->op_openowner = NULL;
2594                 goto new_owner;
2595         }
2596         status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
2597         if (status)
2598                 return status;
2599         clp = oo->oo_owner.so_client;
2600         goto alloc_stateid;
2601 new_owner:
2602         oo = alloc_init_open_stateowner(strhashval, clp, open);
2603         if (oo == NULL)
2604                 return nfserr_jukebox;
2605         open->op_openowner = oo;
2606 alloc_stateid:
2607         open->op_stp = nfs4_alloc_stateid(clp);
2608         if (!open->op_stp)
2609                 return nfserr_jukebox;
2610         return nfs_ok;
2611 }
2612
2613 static inline __be32
2614 nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2615 {
2616         if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2617                 return nfserr_openmode;
2618         else
2619                 return nfs_ok;
2620 }
2621
2622 static int share_access_to_flags(u32 share_access)
2623 {
2624         share_access &= ~NFS4_SHARE_WANT_MASK;
2625
2626         return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
2627 }
2628
2629 static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
2630 {
2631         struct nfs4_stid *ret;
2632
2633         ret = find_stateid_by_type(cl, s, NFS4_DELEG_STID);
2634         if (!ret)
2635                 return NULL;
2636         return delegstateid(ret);
2637 }
2638
2639 static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
2640 {
2641         return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
2642                open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
2643 }
2644
2645 static __be32
2646 nfs4_check_deleg(struct nfs4_client *cl, struct nfs4_file *fp, struct nfsd4_open *open,
2647                 struct nfs4_delegation **dp)
2648 {
2649         int flags;
2650         __be32 status = nfserr_bad_stateid;
2651
2652         *dp = find_deleg_stateid(cl, &open->op_delegate_stateid);
2653         if (*dp == NULL)
2654                 goto out;
2655         flags = share_access_to_flags(open->op_share_access);
2656         status = nfs4_check_delegmode(*dp, flags);
2657         if (status)
2658                 *dp = NULL;
2659 out:
2660         if (!nfsd4_is_deleg_cur(open))
2661                 return nfs_ok;
2662         if (status)
2663                 return status;
2664         open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
2665         return nfs_ok;
2666 }
2667
2668 static __be32
2669 nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_ol_stateid **stpp)
2670 {
2671         struct nfs4_ol_stateid *local;
2672         struct nfs4_openowner *oo = open->op_openowner;
2673
2674         list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
2675                 /* ignore lock owners */
2676                 if (local->st_stateowner->so_is_open_owner == 0)
2677                         continue;
2678                 /* remember if we have seen this open owner */
2679                 if (local->st_stateowner == &oo->oo_owner)
2680                         *stpp = local;
2681                 /* check for conflicting share reservations */
2682                 if (!test_share(local, open))
2683                         return nfserr_share_denied;
2684         }
2685         return nfs_ok;
2686 }
2687
2688 static void nfs4_free_stateid(struct nfs4_ol_stateid *s)
2689 {
2690         kmem_cache_free(stateid_slab, s);
2691 }
2692
2693 static inline int nfs4_access_to_access(u32 nfs4_access)
2694 {
2695         int flags = 0;
2696
2697         if (nfs4_access & NFS4_SHARE_ACCESS_READ)
2698                 flags |= NFSD_MAY_READ;
2699         if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
2700                 flags |= NFSD_MAY_WRITE;
2701         return flags;
2702 }
2703
2704 static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
2705                 struct svc_fh *cur_fh, struct nfsd4_open *open)
2706 {
2707         __be32 status;
2708         int oflag = nfs4_access_to_omode(open->op_share_access);
2709         int access = nfs4_access_to_access(open->op_share_access);
2710
2711         if (!fp->fi_fds[oflag]) {
2712                 status = nfsd_open(rqstp, cur_fh, S_IFREG, access,
2713                         &fp->fi_fds[oflag]);
2714                 if (status)
2715                         return status;
2716         }
2717         nfs4_file_get_access(fp, oflag);
2718
2719         return nfs_ok;
2720 }
2721
2722 static inline __be32
2723 nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2724                 struct nfsd4_open *open)
2725 {
2726         struct iattr iattr = {
2727                 .ia_valid = ATTR_SIZE,
2728                 .ia_size = 0,
2729         };
2730         if (!open->op_truncate)
2731                 return 0;
2732         if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
2733                 return nfserr_inval;
2734         return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2735 }
2736
2737 static __be32
2738 nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp, struct nfsd4_open *open)
2739 {
2740         u32 op_share_access = open->op_share_access;
2741         bool new_access;
2742         __be32 status;
2743
2744         new_access = !test_bit(op_share_access, &stp->st_access_bmap);
2745         if (new_access) {
2746                 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
2747                 if (status)
2748                         return status;
2749         }
2750         status = nfsd4_truncate(rqstp, cur_fh, open);
2751         if (status) {
2752                 if (new_access) {
2753                         int oflag = nfs4_access_to_omode(op_share_access);
2754                         nfs4_file_put_access(fp, oflag);
2755                 }
2756                 return status;
2757         }
2758         /* remember the open */
2759         __set_bit(op_share_access, &stp->st_access_bmap);
2760         __set_bit(open->op_share_deny, &stp->st_deny_bmap);
2761
2762         return nfs_ok;
2763 }
2764
2765
2766 static void
2767 nfs4_set_claim_prev(struct nfsd4_open *open)
2768 {
2769         open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
2770         open->op_openowner->oo_owner.so_client->cl_firststate = 1;
2771 }
2772
2773 /* Should we give out recallable state?: */
2774 static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
2775 {
2776         if (clp->cl_cb_state == NFSD4_CB_UP)
2777                 return true;
2778         /*
2779          * In the sessions case, since we don't have to establish a
2780          * separate connection for callbacks, we assume it's OK
2781          * until we hear otherwise:
2782          */
2783         return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
2784 }
2785
2786 static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag)
2787 {
2788         struct file_lock *fl;
2789
2790         fl = locks_alloc_lock();
2791         if (!fl)
2792                 return NULL;
2793         locks_init_lock(fl);
2794         fl->fl_lmops = &nfsd_lease_mng_ops;
2795         fl->fl_flags = FL_LEASE;
2796         fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
2797         fl->fl_end = OFFSET_MAX;
2798         fl->fl_owner = (fl_owner_t)(dp->dl_file);
2799         fl->fl_pid = current->tgid;
2800         return fl;
2801 }
2802
2803 static int nfs4_setlease(struct nfs4_delegation *dp, int flag)
2804 {
2805         struct nfs4_file *fp = dp->dl_file;
2806         struct file_lock *fl;
2807         int status;
2808
2809         fl = nfs4_alloc_init_lease(dp, flag);
2810         if (!fl)
2811                 return -ENOMEM;
2812         fl->fl_file = find_readable_file(fp);
2813         list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
2814         status = vfs_setlease(fl->fl_file, fl->fl_type, &fl);
2815         if (status) {
2816                 list_del_init(&dp->dl_perclnt);
2817                 locks_free_lock(fl);
2818                 return -ENOMEM;
2819         }
2820         fp->fi_lease = fl;
2821         fp->fi_deleg_file = fl->fl_file;
2822         get_file(fp->fi_deleg_file);
2823         atomic_set(&fp->fi_delegees, 1);
2824         list_add(&dp->dl_perfile, &fp->fi_delegations);
2825         return 0;
2826 }
2827
2828 static int nfs4_set_delegation(struct nfs4_delegation *dp, int flag)
2829 {
2830         struct nfs4_file *fp = dp->dl_file;
2831
2832         if (!fp->fi_lease)
2833                 return nfs4_setlease(dp, flag);
2834         spin_lock(&recall_lock);
2835         if (fp->fi_had_conflict) {
2836                 spin_unlock(&recall_lock);
2837                 return -EAGAIN;
2838         }
2839         atomic_inc(&fp->fi_delegees);
2840         list_add(&dp->dl_perfile, &fp->fi_delegations);
2841         spin_unlock(&recall_lock);
2842         list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
2843         return 0;
2844 }
2845
2846 /*
2847  * Attempt to hand out a delegation.
2848  */
2849 static void
2850 nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_ol_stateid *stp)
2851 {
2852         struct nfs4_delegation *dp;
2853         struct nfs4_openowner *oo = container_of(stp->st_stateowner, struct nfs4_openowner, oo_owner);
2854         int cb_up;
2855         int status, flag = 0;
2856
2857         cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
2858         flag = NFS4_OPEN_DELEGATE_NONE;
2859         open->op_recall = 0;
2860         switch (open->op_claim_type) {
2861                 case NFS4_OPEN_CLAIM_PREVIOUS:
2862                         if (!cb_up)
2863                                 open->op_recall = 1;
2864                         flag = open->op_delegate_type;
2865                         if (flag == NFS4_OPEN_DELEGATE_NONE)
2866                                 goto out;
2867                         break;
2868                 case NFS4_OPEN_CLAIM_NULL:
2869                         /* Let's not give out any delegations till everyone's
2870                          * had the chance to reclaim theirs.... */
2871                         if (locks_in_grace())
2872                                 goto out;
2873                         if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
2874                                 goto out;
2875                         if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2876                                 flag = NFS4_OPEN_DELEGATE_WRITE;
2877                         else
2878                                 flag = NFS4_OPEN_DELEGATE_READ;
2879                         break;
2880                 default:
2881                         goto out;
2882         }
2883
2884         dp = alloc_init_deleg(oo->oo_owner.so_client, stp, fh, flag);
2885         if (dp == NULL)
2886                 goto out_no_deleg;
2887         status = nfs4_set_delegation(dp, flag);
2888         if (status)
2889                 goto out_free;
2890
2891         memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
2892
2893         dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
2894                 STATEID_VAL(&dp->dl_stid.sc_stateid));
2895 out:
2896         if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
2897                         && flag == NFS4_OPEN_DELEGATE_NONE
2898                         && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
2899                 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
2900         open->op_delegate_type = flag;
2901         return;
2902 out_free:
2903         nfs4_put_delegation(dp);
2904 out_no_deleg:
2905         flag = NFS4_OPEN_DELEGATE_NONE;
2906         goto out;
2907 }
2908
2909 /*
2910  * called with nfs4_lock_state() held.
2911  */
2912 __be32
2913 nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2914 {
2915         struct nfsd4_compoundres *resp = rqstp->rq_resp;
2916         struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
2917         struct nfs4_file *fp = NULL;
2918         struct inode *ino = current_fh->fh_dentry->d_inode;
2919         struct nfs4_ol_stateid *stp = NULL;
2920         struct nfs4_delegation *dp = NULL;
2921         __be32 status;
2922
2923         /*
2924          * Lookup file; if found, lookup stateid and check open request,
2925          * and check for delegations in the process of being recalled.
2926          * If not found, create the nfs4_file struct
2927          */
2928         fp = find_file(ino);
2929         if (fp) {
2930                 if ((status = nfs4_check_open(fp, open, &stp)))
2931                         goto out;
2932                 status = nfs4_check_deleg(cl, fp, open, &dp);
2933                 if (status)
2934                         goto out;
2935         } else {
2936                 status = nfserr_bad_stateid;
2937                 if (nfsd4_is_deleg_cur(open))
2938                         goto out;
2939                 status = nfserr_jukebox;
2940                 fp = open->op_file;
2941                 open->op_file = NULL;
2942                 nfsd4_init_file(fp, ino);
2943         }
2944
2945         /*
2946          * OPEN the file, or upgrade an existing OPEN.
2947          * If truncate fails, the OPEN fails.
2948          */
2949         if (stp) {
2950                 /* Stateid was found, this is an OPEN upgrade */
2951                 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
2952                 if (status)
2953                         goto out;
2954         } else {
2955                 status = nfs4_get_vfs_file(rqstp, fp, current_fh, open);
2956                 if (status)
2957                         goto out;
2958                 stp = open->op_stp;
2959                 open->op_stp = NULL;
2960                 init_open_stateid(stp, fp, open);
2961                 status = nfsd4_truncate(rqstp, current_fh, open);
2962                 if (status) {
2963                         release_open_stateid(stp);
2964                         goto out;
2965                 }
2966         }
2967         update_stateid(&stp->st_stid.sc_stateid);
2968         memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
2969
2970         if (nfsd4_has_session(&resp->cstate))
2971                 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
2972
2973         /*
2974         * Attempt to hand out a delegation. No error return, because the
2975         * OPEN succeeds even if we fail.
2976         */
2977         nfs4_open_delegation(current_fh, open, stp);
2978
2979         status = nfs_ok;
2980
2981         dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
2982                 STATEID_VAL(&stp->st_stid.sc_stateid));
2983 out:
2984         if (fp)
2985                 put_nfs4_file(fp);
2986         if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
2987                 nfs4_set_claim_prev(open);
2988         /*
2989         * To finish the open response, we just need to set the rflags.
2990         */
2991         open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
2992         if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED) &&
2993             !nfsd4_has_session(&resp->cstate))
2994                 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
2995
2996         return status;
2997 }
2998
2999 void nfsd4_cleanup_open_state(struct nfsd4_open *open, __be32 status)
3000 {
3001         if (open->op_openowner) {
3002                 struct nfs4_openowner *oo = open->op_openowner;
3003
3004                 if (!list_empty(&oo->oo_owner.so_stateids))
3005                         list_del_init(&oo->oo_close_lru);
3006                 if (oo->oo_flags & NFS4_OO_NEW) {
3007                         if (status) {
3008                                 release_openowner(oo);
3009                                 open->op_openowner = NULL;
3010                         } else
3011                                 oo->oo_flags &= ~NFS4_OO_NEW;
3012                 }
3013         }
3014         if (open->op_file)
3015                 nfsd4_free_file(open->op_file);
3016         if (open->op_stp)
3017                 nfs4_free_stateid(open->op_stp);
3018 }
3019
3020 __be32
3021 nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3022             clientid_t *clid)
3023 {
3024         struct nfs4_client *clp;
3025         __be32 status;
3026
3027         nfs4_lock_state();
3028         dprintk("process_renew(%08x/%08x): starting\n", 
3029                         clid->cl_boot, clid->cl_id);
3030         status = nfserr_stale_clientid;
3031         if (STALE_CLIENTID(clid))
3032                 goto out;
3033         clp = find_confirmed_client(clid);
3034         status = nfserr_expired;
3035         if (clp == NULL) {
3036                 /* We assume the client took too long to RENEW. */
3037                 dprintk("nfsd4_renew: clientid not found!\n");
3038                 goto out;
3039         }
3040         status = nfserr_cb_path_down;
3041         if (!list_empty(&clp->cl_delegations)
3042                         && clp->cl_cb_state != NFSD4_CB_UP)
3043                 goto out;
3044         status = nfs_ok;
3045 out:
3046         nfs4_unlock_state();
3047         return status;
3048 }
3049
3050 static struct lock_manager nfsd4_manager = {
3051 };
3052
3053 static void
3054 nfsd4_end_grace(void)
3055 {
3056         dprintk("NFSD: end of grace period\n");
3057         nfsd4_recdir_purge_old();
3058         locks_end_grace(&nfsd4_manager);
3059         /*
3060          * Now that every NFSv4 client has had the chance to recover and
3061          * to see the (possibly new, possibly shorter) lease time, we
3062          * can safely set the next grace time to the current lease time:
3063          */
3064         nfsd4_grace = nfsd4_lease;
3065 }
3066
3067 static time_t
3068 nfs4_laundromat(void)
3069 {
3070         struct nfs4_client *clp;
3071         struct nfs4_openowner *oo;
3072         struct nfs4_delegation *dp;
3073         struct list_head *pos, *next, reaplist;
3074         time_t cutoff = get_seconds() - nfsd4_lease;
3075         time_t t, clientid_val = nfsd4_lease;
3076         time_t u, test_val = nfsd4_lease;
3077
3078         nfs4_lock_state();
3079
3080         dprintk("NFSD: laundromat service - starting\n");
3081         if (locks_in_grace())
3082                 nfsd4_end_grace();
3083         INIT_LIST_HEAD(&reaplist);
3084         spin_lock(&client_lock);
3085         list_for_each_safe(pos, next, &client_lru) {
3086                 clp = list_entry(pos, struct nfs4_client, cl_lru);
3087                 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3088                         t = clp->cl_time - cutoff;
3089                         if (clientid_val > t)
3090                                 clientid_val = t;
3091                         break;
3092                 }
3093                 if (atomic_read(&clp->cl_refcount)) {
3094                         dprintk("NFSD: client in use (clientid %08x)\n",
3095                                 clp->cl_clientid.cl_id);
3096                         continue;
3097                 }
3098                 unhash_client_locked(clp);
3099                 list_add(&clp->cl_lru, &reaplist);
3100         }
3101         spin_unlock(&client_lock);
3102         list_for_each_safe(pos, next, &reaplist) {
3103                 clp = list_entry(pos, struct nfs4_client, cl_lru);
3104                 dprintk("NFSD: purging unused client (clientid %08x)\n",
3105                         clp->cl_clientid.cl_id);
3106                 nfsd4_remove_clid_dir(clp);
3107                 expire_client(clp);
3108         }
3109         spin_lock(&recall_lock);
3110         list_for_each_safe(pos, next, &del_recall_lru) {
3111                 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3112                 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
3113                         u = dp->dl_time - cutoff;
3114                         if (test_val > u)
3115                                 test_val = u;
3116                         break;
3117                 }
3118                 list_move(&dp->dl_recall_lru, &reaplist);
3119         }
3120         spin_unlock(&recall_lock);
3121         list_for_each_safe(pos, next, &reaplist) {
3122                 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3123                 list_del_init(&dp->dl_recall_lru);
3124                 unhash_delegation(dp);
3125         }
3126         test_val = nfsd4_lease;
3127         list_for_each_safe(pos, next, &close_lru) {
3128                 oo = container_of(pos, struct nfs4_openowner, oo_close_lru);
3129                 if (time_after((unsigned long)oo->oo_time, (unsigned long)cutoff)) {
3130                         u = oo->oo_time - cutoff;
3131                         if (test_val > u)
3132                                 test_val = u;
3133                         break;
3134                 }
3135                 release_openowner(oo);
3136         }
3137         if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
3138                 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
3139         nfs4_unlock_state();
3140         return clientid_val;
3141 }
3142
3143 static struct workqueue_struct *laundry_wq;
3144 static void laundromat_main(struct work_struct *);
3145 static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
3146
3147 static void
3148 laundromat_main(struct work_struct *not_used)
3149 {
3150         time_t t;
3151
3152         t = nfs4_laundromat();
3153         dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
3154         queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
3155 }
3156
3157 static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
3158 {
3159         if (fhp->fh_dentry->d_inode != stp->st_file->fi_inode)
3160                 return nfserr_bad_stateid;
3161         return nfs_ok;
3162 }
3163
3164 static int
3165 STALE_STATEID(stateid_t *stateid)
3166 {
3167         if (stateid->si_opaque.so_clid.cl_boot == boot_time)
3168                 return 0;
3169         dprintk("NFSD: stale stateid " STATEID_FMT "!\n",
3170                 STATEID_VAL(stateid));
3171         return 1;
3172 }
3173
3174 static inline int
3175 access_permit_read(unsigned long access_bmap)
3176 {
3177         return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
3178                 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
3179                 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
3180 }
3181
3182 static inline int
3183 access_permit_write(unsigned long access_bmap)
3184 {
3185         return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
3186                 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
3187 }
3188
3189 static
3190 __be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
3191 {
3192         __be32 status = nfserr_openmode;
3193
3194         /* For lock stateid's, we test the parent open, not the lock: */
3195         if (stp->st_openstp)
3196                 stp = stp->st_openstp;
3197         if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
3198                 goto out;
3199         if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
3200                 goto out;
3201         status = nfs_ok;
3202 out:
3203         return status;
3204 }
3205
3206 static inline __be32
3207 check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
3208 {
3209         if (ONE_STATEID(stateid) && (flags & RD_STATE))
3210                 return nfs_ok;
3211         else if (locks_in_grace()) {
3212                 /* Answer in remaining cases depends on existence of
3213                  * conflicting state; so we must wait out the grace period. */
3214                 return nfserr_grace;
3215         } else if (flags & WR_STATE)
3216                 return nfs4_share_conflict(current_fh,
3217                                 NFS4_SHARE_DENY_WRITE);
3218         else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
3219                 return nfs4_share_conflict(current_fh,
3220                                 NFS4_SHARE_DENY_READ);
3221 }
3222
3223 /*
3224  * Allow READ/WRITE during grace period on recovered state only for files
3225  * that are not able to provide mandatory locking.
3226  */
3227 static inline int
3228 grace_disallows_io(struct inode *inode)
3229 {
3230         return locks_in_grace() && mandatory_lock(inode);
3231 }
3232
3233 /* Returns true iff a is later than b: */
3234 static bool stateid_generation_after(stateid_t *a, stateid_t *b)
3235 {
3236         return (s32)a->si_generation - (s32)b->si_generation > 0;
3237 }
3238
3239 static int check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
3240 {
3241         /*
3242          * When sessions are used the stateid generation number is ignored
3243          * when it is zero.
3244          */
3245         if (has_session && in->si_generation == 0)
3246                 return nfs_ok;
3247
3248         if (in->si_generation == ref->si_generation)
3249                 return nfs_ok;
3250
3251         /* If the client sends us a stateid from the future, it's buggy: */
3252         if (stateid_generation_after(in, ref))
3253                 return nfserr_bad_stateid;
3254         /*
3255          * However, we could see a stateid from the past, even from a
3256          * non-buggy client.  For example, if the client sends a lock
3257          * while some IO is outstanding, the lock may bump si_generation
3258          * while the IO is still in flight.  The client could avoid that
3259          * situation by waiting for responses on all the IO requests,
3260          * but better performance may result in retrying IO that
3261          * receives an old_stateid error if requests are rarely
3262          * reordered in flight:
3263          */
3264         return nfserr_old_stateid;
3265 }
3266
3267 __be32 nfs4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
3268 {
3269         struct nfs4_stid *s;
3270         struct nfs4_ol_stateid *ols;
3271         __be32 status;
3272
3273         if (STALE_STATEID(stateid))
3274                 return nfserr_stale_stateid;
3275
3276         s = find_stateid(cl, stateid);
3277         if (!s)
3278                  return nfserr_stale_stateid;
3279         status = check_stateid_generation(stateid, &s->sc_stateid, 1);
3280         if (status)
3281                 return status;
3282         if (!(s->sc_type & (NFS4_OPEN_STID | NFS4_LOCK_STID)))
3283                 return nfs_ok;
3284         ols = openlockstateid(s);
3285         if (ols->st_stateowner->so_is_open_owner
3286             && !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
3287                 return nfserr_bad_stateid;
3288         return nfs_ok;
3289 }
3290
3291 static __be32 nfsd4_lookup_stateid(stateid_t *stateid, unsigned char typemask, struct nfs4_stid **s)
3292 {
3293         struct nfs4_client *cl;
3294
3295         if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3296                 return nfserr_bad_stateid;
3297         if (STALE_STATEID(stateid))
3298                 return nfserr_stale_stateid;
3299         cl = find_confirmed_client(&stateid->si_opaque.so_clid);
3300         if (!cl)
3301                 return nfserr_expired;
3302         *s = find_stateid_by_type(cl, stateid, typemask);
3303         if (!*s)
3304                 return nfserr_bad_stateid;
3305         return nfs_ok;
3306
3307 }
3308
3309 /*
3310 * Checks for stateid operations
3311 */
3312 __be32
3313 nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
3314                            stateid_t *stateid, int flags, struct file **filpp)
3315 {
3316         struct nfs4_stid *s;
3317         struct nfs4_ol_stateid *stp = NULL;
3318         struct nfs4_delegation *dp = NULL;
3319         struct svc_fh *current_fh = &cstate->current_fh;
3320         struct inode *ino = current_fh->fh_dentry->d_inode;
3321         __be32 status;
3322
3323         if (filpp)
3324                 *filpp = NULL;
3325
3326         if (grace_disallows_io(ino))
3327                 return nfserr_grace;
3328
3329         if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3330                 return check_special_stateids(current_fh, stateid, flags);
3331
3332         status = nfsd4_lookup_stateid(stateid, NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID, &s);
3333         if (status)
3334                 return status;
3335         status = check_stateid_generation(stateid, &s->sc_stateid, nfsd4_has_session(cstate));
3336         if (status)
3337                 goto out;
3338         switch (s->sc_type) {
3339         case NFS4_DELEG_STID:
3340                 dp = delegstateid(s);
3341                 status = nfs4_check_delegmode(dp, flags);
3342                 if (status)
3343                         goto out;
3344                 if (filpp) {
3345                         *filpp = dp->dl_file->fi_deleg_file;
3346                         BUG_ON(!*filpp);
3347                 }
3348                 break;
3349         case NFS4_OPEN_STID:
3350         case NFS4_LOCK_STID:
3351                 stp = openlockstateid(s);
3352                 status = nfs4_check_fh(current_fh, stp);
3353                 if (status)
3354                         goto out;
3355                 if (stp->st_stateowner->so_is_open_owner
3356                     && !(openowner(stp->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
3357                         goto out;
3358                 status = nfs4_check_openmode(stp, flags);
3359                 if (status)
3360                         goto out;
3361                 if (filpp) {
3362                         if (flags & RD_STATE)
3363                                 *filpp = find_readable_file(stp->st_file);
3364                         else
3365                                 *filpp = find_writeable_file(stp->st_file);
3366                 }
3367                 break;
3368         default:
3369                 return nfserr_bad_stateid;
3370         }
3371         status = nfs_ok;
3372 out:
3373         return status;
3374 }
3375
3376 static __be32
3377 nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp)
3378 {
3379         if (check_for_locks(stp->st_file, lockowner(stp->st_stateowner)))
3380                 return nfserr_locks_held;
3381         release_lock_stateid(stp);
3382         return nfs_ok;
3383 }
3384
3385 /*
3386  * Test if the stateid is valid
3387  */
3388 __be32
3389 nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3390                    struct nfsd4_test_stateid *test_stateid)
3391 {
3392         /* real work is done during encoding */
3393         return nfs_ok;
3394 }
3395
3396 __be32
3397 nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3398                    struct nfsd4_free_stateid *free_stateid)
3399 {
3400         stateid_t *stateid = &free_stateid->fr_stateid;
3401         struct nfs4_stid *s;
3402         struct nfs4_client *cl = cstate->session->se_client;
3403         __be32 ret = nfserr_bad_stateid;
3404
3405         nfs4_lock_state();
3406         s = find_stateid(cl, stateid);
3407         if (!s)
3408                 goto out;
3409         switch (s->sc_type) {
3410         case NFS4_DELEG_STID:
3411                 ret = nfserr_locks_held;
3412                 goto out;
3413         case NFS4_OPEN_STID:
3414         case NFS4_LOCK_STID:
3415                 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
3416                 if (ret)
3417                         goto out;
3418                 if (s->sc_type == NFS4_LOCK_STID)
3419                         ret = nfsd4_free_lock_stateid(openlockstateid(s));
3420                 else
3421                         ret = nfserr_locks_held;
3422                 break;
3423         default:
3424                 ret = nfserr_bad_stateid;
3425         }
3426 out:
3427         nfs4_unlock_state();
3428         return ret;
3429 }
3430
3431 static inline int
3432 setlkflg (int type)
3433 {
3434         return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
3435                 RD_STATE : WR_STATE;
3436 }
3437
3438 static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
3439 {
3440         struct svc_fh *current_fh = &cstate->current_fh;
3441         struct nfs4_stateowner *sop = stp->st_stateowner;
3442         __be32 status;
3443
3444         status = nfsd4_check_seqid(cstate, sop, seqid);
3445         if (status)
3446                 return status;
3447         if (stp->st_stid.sc_type == NFS4_CLOSED_STID)
3448                 /*
3449                  * "Closed" stateid's exist *only* to return
3450                  * nfserr_replay_me from the previous step.
3451                  */
3452                 return nfserr_bad_stateid;
3453         status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
3454         if (status)
3455                 return status;
3456         return nfs4_check_fh(current_fh, stp);
3457 }
3458
3459 /* 
3460  * Checks for sequence id mutating operations. 
3461  */
3462 static __be32
3463 nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
3464                          stateid_t *stateid, char typemask,
3465                          struct nfs4_ol_stateid **stpp)
3466 {
3467         __be32 status;
3468         struct nfs4_stid *s;
3469
3470         dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
3471                 seqid, STATEID_VAL(stateid));
3472
3473         *stpp = NULL;
3474         status = nfsd4_lookup_stateid(stateid, typemask, &s);
3475         if (status)
3476                 return status;
3477         *stpp = openlockstateid(s);
3478         cstate->replay_owner = (*stpp)->st_stateowner;
3479
3480         return nfs4_seqid_op_checks(cstate, stateid, seqid, *stpp);
3481 }
3482
3483 static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid, stateid_t *stateid, struct nfs4_ol_stateid **stpp)
3484 {
3485         __be32 status;
3486         struct nfs4_openowner *oo;
3487
3488         status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
3489                                                 NFS4_OPEN_STID, stpp);
3490         if (status)
3491                 return status;
3492         oo = openowner((*stpp)->st_stateowner);
3493         if (!(oo->oo_flags & NFS4_OO_CONFIRMED))
3494                 return nfserr_bad_stateid;
3495         return nfs_ok;
3496 }
3497
3498 __be32
3499 nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3500                    struct nfsd4_open_confirm *oc)
3501 {
3502         __be32 status;
3503         struct nfs4_openowner *oo;
3504         struct nfs4_ol_stateid *stp;
3505
3506         dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
3507                         (int)cstate->current_fh.fh_dentry->d_name.len,
3508                         cstate->current_fh.fh_dentry->d_name.name);
3509
3510         status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
3511         if (status)
3512                 return status;
3513
3514         nfs4_lock_state();
3515
3516         status = nfs4_preprocess_seqid_op(cstate,
3517                                         oc->oc_seqid, &oc->oc_req_stateid,
3518                                         NFS4_OPEN_STID, &stp);
3519         if (status)
3520                 goto out;
3521         oo = openowner(stp->st_stateowner);
3522         status = nfserr_bad_stateid;
3523         if (oo->oo_flags & NFS4_OO_CONFIRMED)
3524                 goto out;
3525         oo->oo_flags |= NFS4_OO_CONFIRMED;
3526         update_stateid(&stp->st_stid.sc_stateid);
3527         memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3528         dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
3529                 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
3530
3531         nfsd4_create_clid_dir(oo->oo_owner.so_client);
3532         status = nfs_ok;
3533 out:
3534         if (!cstate->replay_owner)
3535                 nfs4_unlock_state();
3536         return status;
3537 }
3538
3539 static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
3540 {
3541         if (!test_bit(access, &stp->st_access_bmap))
3542                 return;
3543         nfs4_file_put_access(stp->st_file, nfs4_access_to_omode(access));
3544         __clear_bit(access, &stp->st_access_bmap);
3545 }
3546
3547 static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
3548 {
3549         switch (to_access) {
3550         case NFS4_SHARE_ACCESS_READ:
3551                 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
3552                 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
3553                 break;
3554         case NFS4_SHARE_ACCESS_WRITE:
3555                 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
3556                 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
3557                 break;
3558         case NFS4_SHARE_ACCESS_BOTH:
3559                 break;
3560         default:
3561                 BUG();
3562         }
3563 }
3564
3565 static void
3566 reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
3567 {
3568         int i;
3569         for (i = 0; i < 4; i++) {
3570                 if ((i & deny) != i)
3571                         __clear_bit(i, bmap);
3572         }
3573 }
3574
3575 __be32
3576 nfsd4_open_downgrade(struct svc_rqst *rqstp,
3577                      struct nfsd4_compound_state *cstate,
3578                      struct nfsd4_open_downgrade *od)
3579 {
3580         __be32 status;
3581         struct nfs4_ol_stateid *stp;
3582
3583         dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n", 
3584                         (int)cstate->current_fh.fh_dentry->d_name.len,
3585                         cstate->current_fh.fh_dentry->d_name.name);
3586
3587         /* We don't yet support WANT bits: */
3588         od->od_share_access &= NFS4_SHARE_ACCESS_MASK;
3589
3590         nfs4_lock_state();
3591         status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
3592                                         &od->od_stateid, &stp);
3593         if (status)
3594                 goto out; 
3595         status = nfserr_inval;
3596         if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
3597                 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
3598                         stp->st_access_bmap, od->od_share_access);
3599                 goto out;
3600         }
3601         if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
3602                 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3603                         stp->st_deny_bmap, od->od_share_deny);
3604                 goto out;
3605         }
3606         nfs4_stateid_downgrade(stp, od->od_share_access);
3607
3608         reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
3609
3610         update_stateid(&stp->st_stid.sc_stateid);
3611         memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3612         status = nfs_ok;
3613 out:
3614         if (!cstate->replay_owner)
3615                 nfs4_unlock_state();
3616         return status;
3617 }
3618
3619 void nfsd4_purge_closed_stateid(struct nfs4_stateowner *so)
3620 {
3621         struct nfs4_openowner *oo;
3622         struct nfs4_ol_stateid *s;
3623
3624         if (!so->so_is_open_owner)
3625                 return;
3626         oo = openowner(so);
3627         s = oo->oo_last_closed_stid;
3628         if (!s)
3629                 return;
3630         if (!(oo->oo_flags & NFS4_OO_PURGE_CLOSE)) {
3631                 /* Release the last_closed_stid on the next seqid bump: */
3632                 oo->oo_flags |= NFS4_OO_PURGE_CLOSE;
3633                 return;
3634         }
3635         oo->oo_flags &= ~NFS4_OO_PURGE_CLOSE;
3636         release_last_closed_stateid(oo);
3637 }
3638
3639 static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
3640 {
3641         unhash_open_stateid(s);
3642         s->st_stid.sc_type = NFS4_CLOSED_STID;
3643 }
3644
3645 /*
3646  * nfs4_unlock_state() called after encode
3647  */
3648 __be32
3649 nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3650             struct nfsd4_close *close)
3651 {
3652         __be32 status;
3653         struct nfs4_openowner *oo;
3654         struct nfs4_ol_stateid *stp;
3655
3656         dprintk("NFSD: nfsd4_close on file %.*s\n", 
3657                         (int)cstate->current_fh.fh_dentry->d_name.len,
3658                         cstate->current_fh.fh_dentry->d_name.name);
3659
3660         nfs4_lock_state();
3661         status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
3662                                         &close->cl_stateid,
3663                                         NFS4_OPEN_STID|NFS4_CLOSED_STID,
3664                                         &stp);
3665         if (status)
3666                 goto out; 
3667         oo = openowner(stp->st_stateowner);
3668         status = nfs_ok;
3669         update_stateid(&stp->st_stid.sc_stateid);
3670         memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3671
3672         nfsd4_close_open_stateid(stp);
3673         release_last_closed_stateid(oo);
3674         oo->oo_last_closed_stid = stp;
3675
3676         /* place unused nfs4_stateowners on so_close_lru list to be
3677          * released by the laundromat service after the lease period
3678          * to enable us to handle CLOSE replay
3679          */
3680         if (list_empty(&oo->oo_owner.so_stateids))
3681                 move_to_close_lru(oo);
3682 out:
3683         if (!cstate->replay_owner)
3684                 nfs4_unlock_state();
3685         return status;
3686 }
3687
3688 __be32
3689 nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3690                   struct nfsd4_delegreturn *dr)
3691 {
3692         struct nfs4_delegation *dp;
3693         stateid_t *stateid = &dr->dr_stateid;
3694         struct nfs4_stid *s;
3695         struct inode *inode;
3696         __be32 status;
3697
3698         if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
3699                 return status;
3700         inode = cstate->current_fh.fh_dentry->d_inode;
3701
3702         nfs4_lock_state();
3703         status = nfsd4_lookup_stateid(stateid, NFS4_DELEG_STID, &s);
3704         if (status)
3705                 goto out;
3706         dp = delegstateid(s);
3707         status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
3708         if (status)
3709                 goto out;
3710
3711         unhash_delegation(dp);
3712 out:
3713         nfs4_unlock_state();
3714
3715         return status;
3716 }
3717
3718
3719 /* 
3720  * Lock owner state (byte-range locks)
3721  */
3722 #define LOFF_OVERFLOW(start, len)      ((u64)(len) > ~(u64)(start))
3723 #define LOCK_HASH_BITS              8
3724 #define LOCK_HASH_SIZE             (1 << LOCK_HASH_BITS)
3725 #define LOCK_HASH_MASK             (LOCK_HASH_SIZE - 1)
3726
3727 static inline u64
3728 end_offset(u64 start, u64 len)
3729 {
3730         u64 end;
3731
3732         end = start + len;
3733         return end >= start ? end: NFS4_MAX_UINT64;
3734 }
3735
3736 /* last octet in a range */
3737 static inline u64
3738 last_byte_offset(u64 start, u64 len)
3739 {
3740         u64 end;
3741
3742         BUG_ON(!len);
3743         end = start + len;
3744         return end > start ? end - 1: NFS4_MAX_UINT64;
3745 }
3746
3747 static inline unsigned int
3748 lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
3749                 struct xdr_netobj *ownername)
3750 {
3751         return (file_hashval(inode) + cl_id
3752                         + opaque_hashval(ownername->data, ownername->len))
3753                 & LOCK_HASH_MASK;
3754 }
3755
3756 static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
3757
3758 /*
3759  * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3760  * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3761  * byte, because of sign extension problems.  Since NFSv4 calls for 64-bit
3762  * locking, this prevents us from being completely protocol-compliant.  The
3763  * real solution to this problem is to start using unsigned file offsets in
3764  * the VFS, but this is a very deep change!
3765  */
3766 static inline void
3767 nfs4_transform_lock_offset(struct file_lock *lock)
3768 {
3769         if (lock->fl_start < 0)
3770                 lock->fl_start = OFFSET_MAX;
3771         if (lock->fl_end < 0)
3772                 lock->fl_end = OFFSET_MAX;
3773 }
3774
3775 /* Hack!: For now, we're defining this just so we can use a pointer to it
3776  * as a unique cookie to identify our (NFSv4's) posix locks. */
3777 static const struct lock_manager_operations nfsd_posix_mng_ops  = {
3778 };
3779
3780 static inline void
3781 nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3782 {
3783         struct nfs4_lockowner *lo;
3784
3785         if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3786                 lo = (struct nfs4_lockowner *) fl->fl_owner;
3787                 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
3788                                         lo->lo_owner.so_owner.len, GFP_KERNEL);
3789                 if (!deny->ld_owner.data)
3790                         /* We just don't care that much */
3791                         goto nevermind;
3792                 deny->ld_owner.len = lo->lo_owner.so_owner.len;
3793                 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
3794         } else {
3795 nevermind:
3796                 deny->ld_owner.len = 0;
3797                 deny->ld_owner.data = NULL;
3798                 deny->ld_clientid.cl_boot = 0;
3799                 deny->ld_clientid.cl_id = 0;
3800         }
3801         deny->ld_start = fl->fl_start;
3802         deny->ld_length = NFS4_MAX_UINT64;
3803         if (fl->fl_end != NFS4_MAX_UINT64)
3804                 deny->ld_length = fl->fl_end - fl->fl_start + 1;        
3805         deny->ld_type = NFS4_READ_LT;
3806         if (fl->fl_type != F_RDLCK)
3807                 deny->ld_type = NFS4_WRITE_LT;
3808 }
3809
3810 static bool same_lockowner_ino(struct nfs4_lockowner *lo, struct inode *inode, clientid_t *clid, struct xdr_netobj *owner)
3811 {
3812         struct nfs4_ol_stateid *lst;
3813
3814         if (!same_owner_str(&lo->lo_owner, owner, clid))
3815                 return false;
3816         lst = list_first_entry(&lo->lo_owner.so_stateids,
3817                                struct nfs4_ol_stateid, st_perstateowner);
3818         return lst->st_file->fi_inode == inode;
3819 }
3820
3821 static struct nfs4_lockowner *
3822 find_lockowner_str(struct inode *inode, clientid_t *clid,
3823                 struct xdr_netobj *owner)
3824 {
3825         unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
3826         struct nfs4_lockowner *lo;
3827         struct nfs4_stateowner *op;
3828
3829         list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
3830                 lo = lockowner(op);
3831                 if (same_lockowner_ino(lo, inode, clid, owner))
3832                         return lo;
3833         }
3834         return NULL;
3835 }
3836
3837 static void hash_lockowner(struct nfs4_lockowner *lo, unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp)
3838 {
3839         list_add(&lo->lo_owner.so_strhash, &lock_ownerstr_hashtbl[strhashval]);
3840         list_add(&lo->lo_perstateid, &open_stp->st_lockowners);
3841 }
3842
3843 /*
3844  * Alloc a lock owner structure.
3845  * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has 
3846  * occurred. 
3847  *
3848  * strhashval = lock_ownerstr_hashval 
3849  */
3850
3851 static struct nfs4_lockowner *
3852 alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp, struct nfsd4_lock *lock) {
3853         struct nfs4_lockowner *lo;
3854
3855         lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
3856         if (!lo)
3857                 return NULL;
3858         INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
3859         lo->lo_owner.so_is_open_owner = 0;
3860         /* It is the openowner seqid that will be incremented in encode in the
3861          * case of new lockowners; so increment the lock seqid manually: */
3862         lo->lo_owner.so_seqid = lock->lk_new_lock_seqid + 1;
3863         hash_lockowner(lo, strhashval, clp, open_stp);
3864         return lo;
3865 }
3866
3867 static struct nfs4_ol_stateid *
3868 alloc_init_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp, struct nfs4_ol_stateid *open_stp)
3869 {
3870         struct nfs4_ol_stateid *stp;
3871         struct nfs4_client *clp = lo->lo_owner.so_client;
3872
3873         stp = nfs4_alloc_stateid(clp);
3874         if (stp == NULL)
3875                 return NULL;
3876         init_stid(&stp->st_stid, clp, NFS4_LOCK_STID);
3877         list_add(&stp->st_perfile, &fp->fi_stateids);
3878         list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
3879         stp->st_stateowner = &lo->lo_owner;
3880         get_nfs4_file(fp);
3881         stp->st_file = fp;
3882         stp->st_access_bmap = 0;
3883         stp->st_deny_bmap = open_stp->st_deny_bmap;
3884         stp->st_openstp = open_stp;
3885         return stp;
3886 }
3887
3888 static int
3889 check_lock_length(u64 offset, u64 length)
3890 {
3891         return ((length == 0)  || ((length != NFS4_MAX_UINT64) &&
3892              LOFF_OVERFLOW(offset, length)));
3893 }
3894
3895 static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
3896 {
3897         struct nfs4_file *fp = lock_stp->st_file;
3898         int oflag = nfs4_access_to_omode(access);
3899
3900         if (test_bit(access, &lock_stp->st_access_bmap))
3901                 return;
3902         nfs4_file_get_access(fp, oflag);
3903         __set_bit(access, &lock_stp->st_access_bmap);
3904 }
3905
3906 /*
3907  *  LOCK operation 
3908  */
3909 __be32
3910 nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3911            struct nfsd4_lock *lock)
3912 {
3913         struct nfs4_openowner *open_sop = NULL;
3914         struct nfs4_lockowner *lock_sop = NULL;
3915         struct nfs4_ol_stateid *lock_stp;
3916         struct nfs4_file *fp;
3917         struct file *filp = NULL;
3918         struct file_lock file_lock;
3919         struct file_lock conflock;
3920         __be32 status = 0;
3921         unsigned int strhashval;
3922         int lkflg;
3923         int err;
3924
3925         dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3926                 (long long) lock->lk_offset,
3927                 (long long) lock->lk_length);
3928
3929         if (check_lock_length(lock->lk_offset, lock->lk_length))
3930                  return nfserr_inval;
3931
3932         if ((status = fh_verify(rqstp, &cstate->current_fh,
3933                                 S_IFREG, NFSD_MAY_LOCK))) {
3934                 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3935                 return status;
3936         }
3937
3938         nfs4_lock_state();
3939
3940         if (lock->lk_is_new) {
3941                 /*
3942                  * Client indicates that this is a new lockowner.
3943                  * Use open owner and open stateid to create lock owner and
3944                  * lock stateid.
3945                  */
3946                 struct nfs4_ol_stateid *open_stp = NULL;
3947                 
3948                 status = nfserr_stale_clientid;
3949                 if (!nfsd4_has_session(cstate) &&
3950                     STALE_CLIENTID(&lock->lk_new_clientid))
3951                         goto out;
3952
3953                 /* validate and update open stateid and open seqid */
3954                 status = nfs4_preprocess_confirmed_seqid_op(cstate,
3955                                         lock->lk_new_open_seqid,
3956                                         &lock->lk_new_open_stateid,
3957                                         &open_stp);
3958                 if (status)
3959                         goto out;
3960                 open_sop = openowner(open_stp->st_stateowner);
3961                 status = nfserr_bad_stateid;
3962                 if (!nfsd4_has_session(cstate) &&
3963                         !same_clid(&open_sop->oo_owner.so_client->cl_clientid,
3964                                                 &lock->v.new.clientid))
3965                         goto out;
3966                 /* create lockowner and lock stateid */
3967                 fp = open_stp->st_file;
3968                 strhashval = lock_ownerstr_hashval(fp->fi_inode,
3969                                 open_sop->oo_owner.so_client->cl_clientid.cl_id,
3970                                 &lock->v.new.owner);
3971                 /* XXX: Do we need to check for duplicate stateowners on
3972                  * the same file, or should they just be allowed (and
3973                  * create new stateids)? */
3974                 status = nfserr_jukebox;
3975                 lock_sop = alloc_init_lock_stateowner(strhashval,
3976                                 open_sop->oo_owner.so_client, open_stp, lock);
3977                 if (lock_sop == NULL)
3978                         goto out;
3979                 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
3980                 if (lock_stp == NULL)
3981                         goto out;
3982         } else {
3983                 /* lock (lock owner + lock stateid) already exists */
3984                 status = nfs4_preprocess_seqid_op(cstate,
3985                                        lock->lk_old_lock_seqid,
3986                                        &lock->lk_old_lock_stateid,
3987                                        NFS4_LOCK_STID, &lock_stp);
3988                 if (status)
3989                         goto out;
3990                 lock_sop = lockowner(lock_stp->st_stateowner);
3991                 fp = lock_stp->st_file;
3992         }
3993         /* lock_sop and lock_stp have been created or found */
3994
3995         lkflg = setlkflg(lock->lk_type);
3996         status = nfs4_check_openmode(lock_stp, lkflg);
3997         if (status)
3998                 goto out;
3999
4000         status = nfserr_grace;
4001         if (locks_in_grace() && !lock->lk_reclaim)
4002                 goto out;
4003         status = nfserr_no_grace;
4004         if (!locks_in_grace() && lock->lk_reclaim)
4005                 goto out;
4006
4007         locks_init_lock(&file_lock);
4008         switch (lock->lk_type) {
4009                 case NFS4_READ_LT:
4010                 case NFS4_READW_LT:
4011                         filp = find_readable_file(lock_stp->st_file);
4012                         if (filp)
4013                                 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
4014                         file_lock.fl_type = F_RDLCK;
4015                         break;
4016                 case NFS4_WRITE_LT:
4017                 case NFS4_WRITEW_LT:
4018                         filp = find_writeable_file(lock_stp->st_file);
4019                         if (filp)
4020                                 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
4021                         file_lock.fl_type = F_WRLCK;
4022                         break;
4023                 default:
4024                         status = nfserr_inval;
4025                 goto out;
4026         }
4027         if (!filp) {
4028                 status = nfserr_openmode;
4029                 goto out;
4030         }
4031         file_lock.fl_owner = (fl_owner_t)lock_sop;
4032         file_lock.fl_pid = current->tgid;
4033         file_lock.fl_file = filp;
4034         file_lock.fl_flags = FL_POSIX;
4035         file_lock.fl_lmops = &nfsd_posix_mng_ops;
4036
4037         file_lock.fl_start = lock->lk_offset;
4038         file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
4039         nfs4_transform_lock_offset(&file_lock);
4040
4041         /*
4042         * Try to lock the file in the VFS.
4043         * Note: locks.c uses the BKL to protect the inode's lock list.
4044         */
4045
4046         err = vfs_lock_file(filp, F_SETLK, &file_lock, &conflock);
4047         switch (-err) {
4048         case 0: /* success! */
4049                 update_stateid(&lock_stp->st_stid.sc_stateid);
4050                 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid, 
4051                                 sizeof(stateid_t));
4052                 status = 0;
4053                 break;
4054         case (EAGAIN):          /* conflock holds conflicting lock */
4055                 status = nfserr_denied;
4056                 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
4057                 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
4058                 break;
4059         case (EDEADLK):
4060                 status = nfserr_deadlock;
4061                 break;
4062         default:
4063                 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
4064                 status = nfserrno(err);
4065                 break;
4066         }
4067 out:
4068         if (status && lock->lk_is_new && lock_sop)
4069                 release_lockowner(lock_sop);
4070         if (!cstate->replay_owner)
4071                 nfs4_unlock_state();
4072         return status;
4073 }
4074
4075 /*
4076  * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
4077  * so we do a temporary open here just to get an open file to pass to
4078  * vfs_test_lock.  (Arguably perhaps test_lock should be done with an
4079  * inode operation.)
4080  */
4081 static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
4082 {
4083         struct file *file;
4084         __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
4085         if (!err) {
4086                 err = nfserrno(vfs_test_lock(file, lock));
4087                 nfsd_close(file);
4088         }
4089         return err;
4090 }
4091
4092 /*
4093  * LOCKT operation
4094  */
4095 __be32
4096 nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4097             struct nfsd4_lockt *lockt)
4098 {
4099         struct inode *inode;
4100         struct file_lock file_lock;
4101         struct nfs4_lockowner *lo;
4102         __be32 status;
4103
4104         if (locks_in_grace())
4105                 return nfserr_grace;
4106
4107         if (check_lock_length(lockt->lt_offset, lockt->lt_length))
4108                  return nfserr_inval;
4109
4110         nfs4_lock_state();
4111
4112         status = nfserr_stale_clientid;
4113         if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
4114                 goto out;
4115
4116         if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
4117                 goto out;
4118
4119         inode = cstate->current_fh.fh_dentry->d_inode;
4120         locks_init_lock(&file_lock);
4121         switch (lockt->lt_type) {
4122                 case NFS4_READ_LT:
4123                 case NFS4_READW_LT:
4124                         file_lock.fl_type = F_RDLCK;
4125                 break;
4126                 case NFS4_WRITE_LT:
4127                 case NFS4_WRITEW_LT:
4128                         file_lock.fl_type = F_WRLCK;
4129                 break;
4130                 default:
4131                         dprintk("NFSD: nfs4_lockt: bad lock type!\n");
4132                         status = nfserr_inval;
4133                 goto out;
4134         }
4135
4136         lo = find_lockowner_str(inode, &lockt->lt_clientid, &lockt->lt_owner);
4137         if (lo)
4138                 file_lock.fl_owner = (fl_owner_t)lo;
4139         file_lock.fl_pid = current->tgid;
4140         file_lock.fl_flags = FL_POSIX;
4141
4142         file_lock.fl_start = lockt->lt_offset;
4143         file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
4144
4145         nfs4_transform_lock_offset(&file_lock);
4146
4147         status = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
4148         if (status)
4149                 goto out;
4150
4151         if (file_lock.fl_type != F_UNLCK) {
4152                 status = nfserr_denied;
4153                 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
4154         }
4155 out:
4156         nfs4_unlock_state();
4157         return status;
4158 }
4159
4160 __be32
4161 nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4162             struct nfsd4_locku *locku)
4163 {
4164         struct nfs4_ol_stateid *stp;
4165         struct file *filp = NULL;
4166         struct file_lock file_lock;
4167         __be32 status;
4168         int err;
4169                                                         
4170         dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
4171                 (long long) locku->lu_offset,
4172                 (long long) locku->lu_length);
4173
4174         if (check_lock_length(locku->lu_offset, locku->lu_length))
4175                  return nfserr_inval;
4176
4177         nfs4_lock_state();
4178                                                                                 
4179         status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
4180                                         &locku->lu_stateid, NFS4_LOCK_STID, &stp);
4181         if (status)
4182                 goto out;
4183         filp = find_any_file(stp->st_file);
4184         if (!filp) {
4185                 status = nfserr_lock_range;
4186                 goto out;
4187         }
4188         BUG_ON(!filp);
4189         locks_init_lock(&file_lock);
4190         file_lock.fl_type = F_UNLCK;
4191         file_lock.fl_owner = (fl_owner_t)lockowner(stp->st_stateowner);
4192         file_lock.fl_pid = current->tgid;
4193         file_lock.fl_file = filp;
4194         file_lock.fl_flags = FL_POSIX; 
4195         file_lock.fl_lmops = &nfsd_posix_mng_ops;
4196         file_lock.fl_start = locku->lu_offset;
4197
4198         file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
4199         nfs4_transform_lock_offset(&file_lock);
4200
4201         /*
4202         *  Try to unlock the file in the VFS.
4203         */
4204         err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
4205         if (err) {
4206                 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
4207                 goto out_nfserr;
4208         }
4209         /*
4210         * OK, unlock succeeded; the only thing left to do is update the stateid.
4211         */
4212         update_stateid(&stp->st_stid.sc_stateid);
4213         memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
4214
4215 out:
4216         if (!cstate->replay_owner)
4217                 nfs4_unlock_state();
4218         return status;
4219
4220 out_nfserr:
4221         status = nfserrno(err);
4222         goto out;
4223 }
4224
4225 /*
4226  * returns
4227  *      1: locks held by lockowner
4228  *      0: no locks held by lockowner
4229  */
4230 static int
4231 check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner)
4232 {
4233         struct file_lock **flpp;
4234         struct inode *inode = filp->fi_inode;
4235         int status = 0;
4236
4237         lock_flocks();
4238         for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
4239                 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
4240                         status = 1;
4241                         goto out;
4242                 }
4243         }
4244 out:
4245         unlock_flocks();
4246         return status;
4247 }
4248
4249 __be32
4250 nfsd4_release_lockowner(struct svc_rqst *rqstp,
4251                         struct nfsd4_compound_state *cstate,
4252                         struct nfsd4_release_lockowner *rlockowner)
4253 {
4254         clientid_t *clid = &rlockowner->rl_clientid;
4255         struct nfs4_stateowner *sop;
4256         struct nfs4_lockowner *lo;
4257         struct nfs4_ol_stateid *stp;
4258         struct xdr_netobj *owner = &rlockowner->rl_owner;
4259         struct list_head matches;
4260         int i;
4261         __be32 status;
4262
4263         dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
4264                 clid->cl_boot, clid->cl_id);
4265
4266         /* XXX check for lease expiration */
4267
4268         status = nfserr_stale_clientid;
4269         if (STALE_CLIENTID(clid))
4270                 return status;
4271
4272         nfs4_lock_state();
4273
4274         status = nfserr_locks_held;
4275         /* XXX: we're doing a linear search through all the lockowners.
4276          * Yipes!  For now we'll just hope clients aren't really using
4277          * release_lockowner much, but eventually we have to fix these
4278          * data structures. */
4279         INIT_LIST_HEAD(&matches);
4280         for (i = 0; i < LOCK_HASH_SIZE; i++) {
4281                 list_for_each_entry(sop, &lock_ownerstr_hashtbl[i], so_strhash) {
4282                         if (!same_owner_str(sop, owner, clid))
4283                                 continue;
4284                         list_for_each_entry(stp, &sop->so_stateids,
4285                                         st_perstateowner) {
4286                                 lo = lockowner(sop);
4287                                 if (check_for_locks(stp->st_file, lo))
4288                                         goto out;
4289                                 list_add(&lo->lo_list, &matches);
4290                         }
4291                 }
4292         }
4293         /* Clients probably won't expect us to return with some (but not all)
4294          * of the lockowner state released; so don't release any until all
4295          * have been checked. */
4296         status = nfs_ok;
4297         while (!list_empty(&matches)) {
4298                 lo = list_entry(matches.next, struct nfs4_lockowner,
4299                                                                 lo_list);
4300                 /* unhash_stateowner deletes so_perclient only
4301                  * for openowners. */
4302                 list_del(&lo->lo_list);
4303                 release_lockowner(lo);
4304         }
4305 out:
4306         nfs4_unlock_state();
4307         return status;
4308 }
4309
4310 static inline struct nfs4_client_reclaim *
4311 alloc_reclaim(void)
4312 {
4313         return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
4314 }
4315
4316 int
4317 nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
4318 {
4319         unsigned int strhashval = clientstr_hashval(name);
4320         struct nfs4_client *clp;
4321
4322         clp = find_confirmed_client_by_str(name, strhashval);
4323         return clp ? 1 : 0;
4324 }
4325
4326 /*
4327  * failure => all reset bets are off, nfserr_no_grace...
4328  */
4329 int
4330 nfs4_client_to_reclaim(const char *name)
4331 {
4332         unsigned int strhashval;
4333         struct nfs4_client_reclaim *crp = NULL;
4334
4335         dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
4336         crp = alloc_reclaim();
4337         if (!crp)
4338                 return 0;
4339         strhashval = clientstr_hashval(name);
4340         INIT_LIST_HEAD(&crp->cr_strhash);
4341         list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
4342         memcpy(crp->cr_recdir, name, HEXDIR_LEN);
4343         reclaim_str_hashtbl_size++;
4344         return 1;
4345 }
4346
4347 static void
4348 nfs4_release_reclaim(void)
4349 {
4350         struct nfs4_client_reclaim *crp = NULL;
4351         int i;
4352
4353         for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4354                 while (!list_empty(&reclaim_str_hashtbl[i])) {
4355                         crp = list_entry(reclaim_str_hashtbl[i].next,
4356                                         struct nfs4_client_reclaim, cr_strhash);
4357                         list_del(&crp->cr_strhash);
4358                         kfree(crp);
4359                         reclaim_str_hashtbl_size--;
4360                 }
4361         }
4362         BUG_ON(reclaim_str_hashtbl_size);
4363 }
4364
4365 /*
4366  * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
4367 static struct nfs4_client_reclaim *
4368 nfs4_find_reclaim_client(clientid_t *clid)
4369 {
4370         unsigned int strhashval;
4371         struct nfs4_client *clp;
4372         struct nfs4_client_reclaim *crp = NULL;
4373
4374
4375         /* find clientid in conf_id_hashtbl */
4376         clp = find_confirmed_client(clid);
4377         if (clp == NULL)
4378                 return NULL;
4379
4380         dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
4381                             clp->cl_name.len, clp->cl_name.data,
4382                             clp->cl_recdir);
4383
4384         /* find clp->cl_name in reclaim_str_hashtbl */
4385         strhashval = clientstr_hashval(clp->cl_recdir);
4386         list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
4387                 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
4388                         return crp;
4389                 }
4390         }
4391         return NULL;
4392 }
4393
4394 /*
4395 * Called from OPEN. Look for clientid in reclaim list.
4396 */
4397 __be32
4398 nfs4_check_open_reclaim(clientid_t *clid)
4399 {
4400         return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
4401 }
4402
4403 /* initialization to perform at module load time: */
4404
4405 int
4406 nfs4_state_init(void)
4407 {
4408         int i, status;
4409
4410         status = nfsd4_init_slabs();
4411         if (status)
4412                 return status;
4413         for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4414                 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
4415                 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
4416                 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
4417                 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
4418                 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
4419         }
4420         for (i = 0; i < SESSION_HASH_SIZE; i++)
4421                 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
4422         for (i = 0; i < FILE_HASH_SIZE; i++) {
4423                 INIT_LIST_HEAD(&file_hashtbl[i]);
4424         }
4425         for (i = 0; i < OPEN_OWNER_HASH_SIZE; i++) {
4426                 INIT_LIST_HEAD(&open_ownerstr_hashtbl[i]);
4427         }
4428         for (i = 0; i < LOCK_HASH_SIZE; i++) {
4429                 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
4430         }
4431         memset(&onestateid, ~0, sizeof(stateid_t));
4432         INIT_LIST_HEAD(&close_lru);
4433         INIT_LIST_HEAD(&client_lru);
4434         INIT_LIST_HEAD(&del_recall_lru);
4435         reclaim_str_hashtbl_size = 0;
4436         return 0;
4437 }
4438
4439 static void
4440 nfsd4_load_reboot_recovery_data(void)
4441 {
4442         int status;
4443
4444         nfs4_lock_state();
4445         nfsd4_init_recdir();
4446         status = nfsd4_recdir_load();
4447         nfs4_unlock_state();
4448         if (status)
4449                 printk("NFSD: Failure reading reboot recovery data\n");
4450 }
4451
4452 /*
4453  * Since the lifetime of a delegation isn't limited to that of an open, a
4454  * client may quite reasonably hang on to a delegation as long as it has
4455  * the inode cached.  This becomes an obvious problem the first time a
4456  * client's inode cache approaches the size of the server's total memory.
4457  *
4458  * For now we avoid this problem by imposing a hard limit on the number
4459  * of delegations, which varies according to the server's memory size.
4460  */
4461 static void
4462 set_max_delegations(void)
4463 {
4464         /*
4465          * Allow at most 4 delegations per megabyte of RAM.  Quick
4466          * estimates suggest that in the worst case (where every delegation
4467          * is for a different inode), a delegation could take about 1.5K,
4468          * giving a worst case usage of about 6% of memory.
4469          */
4470         max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4471 }
4472
4473 /* initialization to perform when the nfsd service is started: */
4474
4475 static int
4476 __nfs4_state_start(void)
4477 {
4478         int ret;
4479
4480         boot_time = get_seconds();
4481         locks_start_grace(&nfsd4_manager);
4482         printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
4483                nfsd4_grace);
4484         ret = set_callback_cred();
4485         if (ret)
4486                 return -ENOMEM;
4487         laundry_wq = create_singlethread_workqueue("nfsd4");
4488         if (laundry_wq == NULL)
4489                 return -ENOMEM;
4490         ret = nfsd4_create_callback_queue();
4491         if (ret)
4492                 goto out_free_laundry;
4493         queue_delayed_work(laundry_wq, &laundromat_work, nfsd4_grace * HZ);
4494         set_max_delegations();
4495         return 0;
4496 out_free_laundry:
4497         destroy_workqueue(laundry_wq);
4498         return ret;
4499 }
4500
4501 int
4502 nfs4_state_start(void)
4503 {
4504         nfsd4_load_reboot_recovery_data();
4505         return __nfs4_state_start();
4506 }
4507
4508 static void
4509 __nfs4_state_shutdown(void)
4510 {
4511         int i;
4512         struct nfs4_client *clp = NULL;
4513         struct nfs4_delegation *dp = NULL;
4514         struct list_head *pos, *next, reaplist;
4515
4516         for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4517                 while (!list_empty(&conf_id_hashtbl[i])) {
4518                         clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4519                         expire_client(clp);
4520                 }
4521                 while (!list_empty(&unconf_str_hashtbl[i])) {
4522                         clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4523                         expire_client(clp);
4524                 }
4525         }
4526         INIT_LIST_HEAD(&reaplist);
4527         spin_lock(&recall_lock);
4528         list_for_each_safe(pos, next, &del_recall_lru) {
4529                 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4530                 list_move(&dp->dl_recall_lru, &reaplist);
4531         }
4532         spin_unlock(&recall_lock);
4533         list_for_each_safe(pos, next, &reaplist) {
4534                 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4535                 list_del_init(&dp->dl_recall_lru);
4536                 unhash_delegation(dp);
4537         }
4538
4539         nfsd4_shutdown_recdir();
4540 }
4541
4542 void
4543 nfs4_state_shutdown(void)
4544 {
4545         cancel_delayed_work_sync(&laundromat_work);
4546         destroy_workqueue(laundry_wq);
4547         locks_end_grace(&nfsd4_manager);
4548         nfs4_lock_state();
4549         nfs4_release_reclaim();
4550         __nfs4_state_shutdown();
4551         nfs4_unlock_state();
4552         nfsd4_destroy_callback_queue();
4553 }