[PATCH] knfsd: nfsd4: clean up state initialization
[safe/jmp/linux-2.6] / fs / nfsd / nfs4state.c
1 /*
2 *  linux/fs/nfsd/nfs4state.c
3 *
4 *  Copyright (c) 2001 The Regents of the University of Michigan.
5 *  All rights reserved.
6 *
7 *  Kendrick Smith <kmsmith@umich.edu>
8 *  Andy Adamson <kandros@umich.edu>
9 *
10 *  Redistribution and use in source and binary forms, with or without
11 *  modification, are permitted provided that the following conditions
12 *  are met:
13 *
14 *  1. Redistributions of source code must retain the above copyright
15 *     notice, this list of conditions and the following disclaimer.
16 *  2. Redistributions in binary form must reproduce the above copyright
17 *     notice, this list of conditions and the following disclaimer in the
18 *     documentation and/or other materials provided with the distribution.
19 *  3. Neither the name of the University nor the names of its
20 *     contributors may be used to endorse or promote products derived
21 *     from this software without specific prior written permission.
22 *
23 *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 *  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 *
35 */
36
37 #include <linux/param.h>
38 #include <linux/major.h>
39 #include <linux/slab.h>
40
41 #include <linux/sunrpc/svc.h>
42 #include <linux/nfsd/nfsd.h>
43 #include <linux/nfsd/cache.h>
44 #include <linux/mount.h>
45 #include <linux/workqueue.h>
46 #include <linux/smp_lock.h>
47 #include <linux/kthread.h>
48 #include <linux/nfs4.h>
49 #include <linux/nfsd/state.h>
50 #include <linux/nfsd/xdr4.h>
51
52 #define NFSDDBG_FACILITY                NFSDDBG_PROC
53
54 /* Globals */
55 static time_t lease_time = 90;     /* default lease time */
56 static time_t user_lease_time = 90;
57 static u32 nfs4_reclaim_init = 0;
58 time_t boot_time;
59 static time_t grace_end = 0;
60 static u32 current_clientid = 1;
61 static u32 current_ownerid = 1;
62 static u32 current_fileid = 1;
63 static u32 current_delegid = 1;
64 static u32 nfs4_init;
65 stateid_t zerostateid;             /* bits all 0 */
66 stateid_t onestateid;              /* bits all 1 */
67
68 /* forward declarations */
69 struct nfs4_stateid * find_stateid(stateid_t *stid, int flags);
70 static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
71 static void release_stateid_lockowners(struct nfs4_stateid *open_stp);
72
73 /* Locking:
74  *
75  * client_sema: 
76  *      protects clientid_hashtbl[], clientstr_hashtbl[],
77  *      unconfstr_hashtbl[], uncofid_hashtbl[].
78  */
79 static DECLARE_MUTEX(client_sema);
80
81 kmem_cache_t *stateowner_slab = NULL;
82 kmem_cache_t *file_slab = NULL;
83 kmem_cache_t *stateid_slab = NULL;
84 kmem_cache_t *deleg_slab = NULL;
85
86 void
87 nfs4_lock_state(void)
88 {
89         down(&client_sema);
90 }
91
92 void
93 nfs4_unlock_state(void)
94 {
95         up(&client_sema);
96 }
97
98 static inline u32
99 opaque_hashval(const void *ptr, int nbytes)
100 {
101         unsigned char *cptr = (unsigned char *) ptr;
102
103         u32 x = 0;
104         while (nbytes--) {
105                 x *= 37;
106                 x += *cptr++;
107         }
108         return x;
109 }
110
111 /* forward declarations */
112 static void release_stateowner(struct nfs4_stateowner *sop);
113 static void release_stateid(struct nfs4_stateid *stp, int flags);
114
115 /*
116  * Delegation state
117  */
118
119 /* recall_lock protects the del_recall_lru */
120 spinlock_t recall_lock = SPIN_LOCK_UNLOCKED;
121 static struct list_head del_recall_lru;
122
123 static void
124 free_nfs4_file(struct kref *kref)
125 {
126         struct nfs4_file *fp = container_of(kref, struct nfs4_file, fi_ref);
127         list_del(&fp->fi_hash);
128         iput(fp->fi_inode);
129         kmem_cache_free(file_slab, fp);
130 }
131
132 static inline void
133 put_nfs4_file(struct nfs4_file *fi)
134 {
135         kref_put(&fi->fi_ref, free_nfs4_file);
136 }
137
138 static inline void
139 get_nfs4_file(struct nfs4_file *fi)
140 {
141         kref_get(&fi->fi_ref);
142 }
143
144 static struct nfs4_delegation *
145 alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
146 {
147         struct nfs4_delegation *dp;
148         struct nfs4_file *fp = stp->st_file;
149         struct nfs4_callback *cb = &stp->st_stateowner->so_client->cl_callback;
150
151         dprintk("NFSD alloc_init_deleg\n");
152         dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
153         if (dp == NULL)
154                 return dp;
155         INIT_LIST_HEAD(&dp->dl_del_perfile);
156         INIT_LIST_HEAD(&dp->dl_del_perclnt);
157         INIT_LIST_HEAD(&dp->dl_recall_lru);
158         dp->dl_client = clp;
159         get_nfs4_file(fp);
160         dp->dl_file = fp;
161         dp->dl_flock = NULL;
162         get_file(stp->st_vfs_file);
163         dp->dl_vfs_file = stp->st_vfs_file;
164         dp->dl_type = type;
165         dp->dl_recall.cbr_dp = NULL;
166         dp->dl_recall.cbr_ident = cb->cb_ident;
167         dp->dl_recall.cbr_trunc = 0;
168         dp->dl_stateid.si_boot = boot_time;
169         dp->dl_stateid.si_stateownerid = current_delegid++;
170         dp->dl_stateid.si_fileid = 0;
171         dp->dl_stateid.si_generation = 0;
172         dp->dl_fhlen = current_fh->fh_handle.fh_size;
173         memcpy(dp->dl_fhval, &current_fh->fh_handle.fh_base,
174                         current_fh->fh_handle.fh_size);
175         dp->dl_time = 0;
176         atomic_set(&dp->dl_count, 1);
177         list_add(&dp->dl_del_perfile, &fp->fi_delegations);
178         list_add(&dp->dl_del_perclnt, &clp->cl_del_perclnt);
179         return dp;
180 }
181
182 void
183 nfs4_put_delegation(struct nfs4_delegation *dp)
184 {
185         if (atomic_dec_and_test(&dp->dl_count)) {
186                 dprintk("NFSD: freeing dp %p\n",dp);
187                 put_nfs4_file(dp->dl_file);
188                 kmem_cache_free(deleg_slab, dp);
189         }
190 }
191
192 /* Remove the associated file_lock first, then remove the delegation.
193  * lease_modify() is called to remove the FS_LEASE file_lock from
194  * the i_flock list, eventually calling nfsd's lock_manager
195  * fl_release_callback.
196  */
197 static void
198 nfs4_close_delegation(struct nfs4_delegation *dp)
199 {
200         struct file *filp = dp->dl_vfs_file;
201
202         dprintk("NFSD: close_delegation dp %p\n",dp);
203         dp->dl_vfs_file = NULL;
204         /* The following nfsd_close may not actually close the file,
205          * but we want to remove the lease in any case. */
206         if (dp->dl_flock)
207                 setlease(filp, F_UNLCK, &dp->dl_flock);
208         nfsd_close(filp);
209 }
210
211 /* Called under the state lock. */
212 static void
213 unhash_delegation(struct nfs4_delegation *dp)
214 {
215         list_del_init(&dp->dl_del_perfile);
216         list_del_init(&dp->dl_del_perclnt);
217         spin_lock(&recall_lock);
218         list_del_init(&dp->dl_recall_lru);
219         spin_unlock(&recall_lock);
220         nfs4_close_delegation(dp);
221         nfs4_put_delegation(dp);
222 }
223
224 /* 
225  * SETCLIENTID state 
226  */
227
228 /* Hash tables for nfs4_clientid state */
229 #define CLIENT_HASH_BITS                 4
230 #define CLIENT_HASH_SIZE                (1 << CLIENT_HASH_BITS)
231 #define CLIENT_HASH_MASK                (CLIENT_HASH_SIZE - 1)
232
233 #define clientid_hashval(id) \
234         ((id) & CLIENT_HASH_MASK)
235 #define clientstr_hashval(name, namelen) \
236         (opaque_hashval((name), (namelen)) & CLIENT_HASH_MASK)
237 /*
238  * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
239  * used in reboot/reset lease grace period processing
240  *
241  * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
242  * setclientid_confirmed info. 
243  *
244  * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed 
245  * setclientid info.
246  *
247  * client_lru holds client queue ordered by nfs4_client.cl_time
248  * for lease renewal.
249  *
250  * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
251  * for last close replay.
252  */
253 static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
254 static int reclaim_str_hashtbl_size = 0;
255 static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
256 static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
257 static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
258 static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
259 static struct list_head client_lru;
260 static struct list_head close_lru;
261
262 static inline void
263 renew_client(struct nfs4_client *clp)
264 {
265         /*
266         * Move client to the end to the LRU list.
267         */
268         dprintk("renewing client (clientid %08x/%08x)\n", 
269                         clp->cl_clientid.cl_boot, 
270                         clp->cl_clientid.cl_id);
271         list_move_tail(&clp->cl_lru, &client_lru);
272         clp->cl_time = get_seconds();
273 }
274
275 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
276 static int
277 STALE_CLIENTID(clientid_t *clid)
278 {
279         if (clid->cl_boot == boot_time)
280                 return 0;
281         dprintk("NFSD stale clientid (%08x/%08x)\n", 
282                         clid->cl_boot, clid->cl_id);
283         return 1;
284 }
285
286 /* 
287  * XXX Should we use a slab cache ?
288  * This type of memory management is somewhat inefficient, but we use it
289  * anyway since SETCLIENTID is not a common operation.
290  */
291 static inline struct nfs4_client *
292 alloc_client(struct xdr_netobj name)
293 {
294         struct nfs4_client *clp;
295
296         if ((clp = kmalloc(sizeof(struct nfs4_client), GFP_KERNEL))!= NULL) {
297                 memset(clp, 0, sizeof(*clp));
298                 if ((clp->cl_name.data = kmalloc(name.len, GFP_KERNEL)) != NULL) {
299                         memcpy(clp->cl_name.data, name.data, name.len);
300                         clp->cl_name.len = name.len;
301                 }
302                 else {
303                         kfree(clp);
304                         clp = NULL;
305                 }
306         }
307         return clp;
308 }
309
310 static inline void
311 free_client(struct nfs4_client *clp)
312 {
313         if (clp->cl_cred.cr_group_info)
314                 put_group_info(clp->cl_cred.cr_group_info);
315         kfree(clp->cl_name.data);
316         kfree(clp);
317 }
318
319 void
320 put_nfs4_client(struct nfs4_client *clp)
321 {
322         if (atomic_dec_and_test(&clp->cl_count))
323                 free_client(clp);
324 }
325
326 static void
327 expire_client(struct nfs4_client *clp)
328 {
329         struct nfs4_stateowner *sop;
330         struct nfs4_delegation *dp;
331         struct nfs4_callback *cb = &clp->cl_callback;
332         struct rpc_clnt *clnt = clp->cl_callback.cb_client;
333         struct list_head reaplist;
334
335         dprintk("NFSD: expire_client cl_count %d\n",
336                             atomic_read(&clp->cl_count));
337
338         /* shutdown rpc client, ending any outstanding recall rpcs */
339         if (atomic_read(&cb->cb_set) == 1 && clnt) {
340                 rpc_shutdown_client(clnt);
341                 clnt = clp->cl_callback.cb_client = NULL;
342         }
343
344         INIT_LIST_HEAD(&reaplist);
345         spin_lock(&recall_lock);
346         while (!list_empty(&clp->cl_del_perclnt)) {
347                 dp = list_entry(clp->cl_del_perclnt.next, struct nfs4_delegation, dl_del_perclnt);
348                 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
349                                 dp->dl_flock);
350                 list_del_init(&dp->dl_del_perclnt);
351                 list_move(&dp->dl_recall_lru, &reaplist);
352         }
353         spin_unlock(&recall_lock);
354         while (!list_empty(&reaplist)) {
355                 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
356                 list_del_init(&dp->dl_recall_lru);
357                 unhash_delegation(dp);
358         }
359         list_del(&clp->cl_idhash);
360         list_del(&clp->cl_strhash);
361         list_del(&clp->cl_lru);
362         while (!list_empty(&clp->cl_perclient)) {
363                 sop = list_entry(clp->cl_perclient.next, struct nfs4_stateowner, so_perclient);
364                 release_stateowner(sop);
365         }
366         put_nfs4_client(clp);
367 }
368
369 static struct nfs4_client *
370 create_client(struct xdr_netobj name) {
371         struct nfs4_client *clp;
372
373         if (!(clp = alloc_client(name)))
374                 goto out;
375         atomic_set(&clp->cl_count, 1);
376         atomic_set(&clp->cl_callback.cb_set, 0);
377         clp->cl_callback.cb_parsed = 0;
378         INIT_LIST_HEAD(&clp->cl_idhash);
379         INIT_LIST_HEAD(&clp->cl_strhash);
380         INIT_LIST_HEAD(&clp->cl_perclient);
381         INIT_LIST_HEAD(&clp->cl_del_perclnt);
382         INIT_LIST_HEAD(&clp->cl_lru);
383 out:
384         return clp;
385 }
386
387 static void
388 copy_verf(struct nfs4_client *target, nfs4_verifier *source) {
389         memcpy(target->cl_verifier.data, source->data, sizeof(target->cl_verifier.data));
390 }
391
392 static void
393 copy_clid(struct nfs4_client *target, struct nfs4_client *source) {
394         target->cl_clientid.cl_boot = source->cl_clientid.cl_boot; 
395         target->cl_clientid.cl_id = source->cl_clientid.cl_id; 
396 }
397
398 static void
399 copy_cred(struct svc_cred *target, struct svc_cred *source) {
400
401         target->cr_uid = source->cr_uid;
402         target->cr_gid = source->cr_gid;
403         target->cr_group_info = source->cr_group_info;
404         get_group_info(target->cr_group_info);
405 }
406
407 static int
408 cmp_name(struct xdr_netobj *n1, struct xdr_netobj *n2) {
409         if (!n1 || !n2)
410                 return 0;
411         return((n1->len == n2->len) && !memcmp(n1->data, n2->data, n2->len));
412 }
413
414 static int
415 cmp_verf(nfs4_verifier *v1, nfs4_verifier *v2) {
416         return(!memcmp(v1->data,v2->data,sizeof(v1->data)));
417 }
418
419 static int
420 cmp_clid(clientid_t * cl1, clientid_t * cl2) {
421         return((cl1->cl_boot == cl2->cl_boot) &&
422                 (cl1->cl_id == cl2->cl_id));
423 }
424
425 /* XXX what about NGROUP */
426 static int
427 cmp_creds(struct svc_cred *cr1, struct svc_cred *cr2){
428         return(cr1->cr_uid == cr2->cr_uid);
429
430 }
431
432 static void
433 gen_clid(struct nfs4_client *clp) {
434         clp->cl_clientid.cl_boot = boot_time;
435         clp->cl_clientid.cl_id = current_clientid++; 
436 }
437
438 static void
439 gen_confirm(struct nfs4_client *clp) {
440         struct timespec         tv;
441         u32 *                   p;
442
443         tv = CURRENT_TIME;
444         p = (u32 *)clp->cl_confirm.data;
445         *p++ = tv.tv_sec;
446         *p++ = tv.tv_nsec;
447 }
448
449 static int
450 check_name(struct xdr_netobj name) {
451
452         if (name.len == 0) 
453                 return 0;
454         if (name.len > NFS4_OPAQUE_LIMIT) {
455                 printk("NFSD: check_name: name too long(%d)!\n", name.len);
456                 return 0;
457         }
458         return 1;
459 }
460
461 void
462 add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
463 {
464         unsigned int idhashval;
465
466         list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
467         idhashval = clientid_hashval(clp->cl_clientid.cl_id);
468         list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
469         list_add_tail(&clp->cl_lru, &client_lru);
470         clp->cl_time = get_seconds();
471 }
472
473 void
474 move_to_confirmed(struct nfs4_client *clp)
475 {
476         unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
477         unsigned int strhashval;
478
479         dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
480         list_del_init(&clp->cl_strhash);
481         list_del_init(&clp->cl_idhash);
482         list_add(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
483         strhashval = clientstr_hashval(clp->cl_name.data, 
484                         clp->cl_name.len);
485         list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
486         renew_client(clp);
487 }
488
489 static struct nfs4_client *
490 find_confirmed_client(clientid_t *clid)
491 {
492         struct nfs4_client *clp;
493         unsigned int idhashval = clientid_hashval(clid->cl_id);
494
495         list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
496                 if (cmp_clid(&clp->cl_clientid, clid))
497                         return clp;
498         }
499         return NULL;
500 }
501
502 static struct nfs4_client *
503 find_unconfirmed_client(clientid_t *clid)
504 {
505         struct nfs4_client *clp;
506         unsigned int idhashval = clientid_hashval(clid->cl_id);
507
508         list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
509                 if (cmp_clid(&clp->cl_clientid, clid))
510                         return clp;
511         }
512         return NULL;
513 }
514
515 /* a helper function for parse_callback */
516 static int
517 parse_octet(unsigned int *lenp, char **addrp)
518 {
519         unsigned int len = *lenp;
520         char *p = *addrp;
521         int n = -1;
522         char c;
523
524         for (;;) {
525                 if (!len)
526                         break;
527                 len--;
528                 c = *p++;
529                 if (c == '.')
530                         break;
531                 if ((c < '0') || (c > '9')) {
532                         n = -1;
533                         break;
534                 }
535                 if (n < 0)
536                         n = 0;
537                 n = (n * 10) + (c - '0');
538                 if (n > 255) {
539                         n = -1;
540                         break;
541                 }
542         }
543         *lenp = len;
544         *addrp = p;
545         return n;
546 }
547
548 /* parse and set the setclientid ipv4 callback address */
549 int
550 parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp)
551 {
552         int temp = 0;
553         u32 cbaddr = 0;
554         u16 cbport = 0;
555         u32 addrlen = addr_len;
556         char *addr = addr_val;
557         int i, shift;
558
559         /* ipaddress */
560         shift = 24;
561         for(i = 4; i > 0  ; i--) {
562                 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
563                         return 0;
564                 }
565                 cbaddr |= (temp << shift);
566                 if (shift > 0)
567                 shift -= 8;
568         }
569         *cbaddrp = cbaddr;
570
571         /* port */
572         shift = 8;
573         for(i = 2; i > 0  ; i--) {
574                 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
575                         return 0;
576                 }
577                 cbport |= (temp << shift);
578                 if (shift > 0)
579                         shift -= 8;
580         }
581         *cbportp = cbport;
582         return 1;
583 }
584
585 void
586 gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se)
587 {
588         struct nfs4_callback *cb = &clp->cl_callback;
589
590         /* Currently, we only support tcp for the callback channel */
591         if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3))
592                 goto out_err;
593
594         if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val,
595                          &cb->cb_addr, &cb->cb_port)))
596                 goto out_err;
597         cb->cb_prog = se->se_callback_prog;
598         cb->cb_ident = se->se_callback_ident;
599         cb->cb_parsed = 1;
600         return;
601 out_err:
602         printk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
603                 "will not receive delegations\n",
604                 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
605
606         cb->cb_parsed = 0;
607         return;
608 }
609
610 /*
611  * RFC 3010 has a complex implmentation description of processing a 
612  * SETCLIENTID request consisting of 5 bullets, labeled as 
613  * CASE0 - CASE4 below.
614  *
615  * NOTES:
616  *      callback information will be processed in a future patch
617  *
618  *      an unconfirmed record is added when:
619  *      NORMAL (part of CASE 4): there is no confirmed nor unconfirmed record.
620  *      CASE 1: confirmed record found with matching name, principal,
621  *              verifier, and clientid.
622  *      CASE 2: confirmed record found with matching name, principal,
623  *              and there is no unconfirmed record with matching
624  *              name and principal
625  *
626  *      an unconfirmed record is replaced when:
627  *      CASE 3: confirmed record found with matching name, principal,
628  *              and an unconfirmed record is found with matching 
629  *              name, principal, and with clientid and
630  *              confirm that does not match the confirmed record.
631  *      CASE 4: there is no confirmed record with matching name and 
632  *              principal. there is an unconfirmed record with 
633  *              matching name, principal.
634  *
635  *      an unconfirmed record is deleted when:
636  *      CASE 1: an unconfirmed record that matches input name, verifier,
637  *              and confirmed clientid.
638  *      CASE 4: any unconfirmed records with matching name and principal
639  *              that exist after an unconfirmed record has been replaced
640  *              as described above.
641  *
642  */
643 int
644 nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_setclientid *setclid)
645 {
646         u32                     ip_addr = rqstp->rq_addr.sin_addr.s_addr;
647         struct xdr_netobj       clname = { 
648                 .len = setclid->se_namelen,
649                 .data = setclid->se_name,
650         };
651         nfs4_verifier           clverifier = setclid->se_verf;
652         unsigned int            strhashval;
653         struct nfs4_client *    conf, * unconf, * new, * clp;
654         int                     status;
655         
656         status = nfserr_inval;
657         if (!check_name(clname))
658                 goto out;
659
660         /* 
661          * XXX The Duplicate Request Cache (DRC) has been checked (??)
662          * We get here on a DRC miss.
663          */
664
665         strhashval = clientstr_hashval(clname.data, clname.len);
666
667         conf = NULL;
668         nfs4_lock_state();
669         list_for_each_entry(clp, &conf_str_hashtbl[strhashval], cl_strhash) {
670                 if (!cmp_name(&clp->cl_name, &clname))
671                         continue;
672                 /* 
673                  * CASE 0:
674                  * clname match, confirmed, different principal
675                  * or different ip_address
676                  */
677                 status = nfserr_clid_inuse;
678                 if (!cmp_creds(&clp->cl_cred,&rqstp->rq_cred)) {
679                         printk("NFSD: setclientid: string in use by client"
680                         "(clientid %08x/%08x)\n",
681                         clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
682                         goto out;
683                 }
684                 if (clp->cl_addr != ip_addr) { 
685                         printk("NFSD: setclientid: string in use by client"
686                         "(clientid %08x/%08x)\n",
687                         clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
688                         goto out;
689                 }
690
691                 /* 
692                  * cl_name match from a previous SETCLIENTID operation
693                  * XXX check for additional matches?
694                  */
695                 conf = clp;
696                 break;
697         }
698         unconf = NULL;
699         list_for_each_entry(clp, &unconf_str_hashtbl[strhashval], cl_strhash) {
700                 if (!cmp_name(&clp->cl_name, &clname))
701                         continue;
702                 /* cl_name match from a previous SETCLIENTID operation */
703                 unconf = clp;
704                 break;
705         }
706         status = nfserr_resource;
707         if (!conf) {
708                 /* 
709                  * CASE 4:
710                  * placed first, because it is the normal case.
711                  */
712                 if (unconf)
713                         expire_client(unconf);
714                 if (!(new = create_client(clname)))
715                         goto out;
716                 copy_verf(new, &clverifier);
717                 new->cl_addr = ip_addr;
718                 copy_cred(&new->cl_cred,&rqstp->rq_cred);
719                 gen_clid(new);
720                 gen_confirm(new);
721                 gen_callback(new, setclid);
722                 add_to_unconfirmed(new, strhashval);
723         } else if (cmp_verf(&conf->cl_verifier, &clverifier)) {
724                 /*
725                  * CASE 1:
726                  * cl_name match, confirmed, principal match
727                  * verifier match: probable callback update
728                  *
729                  * remove any unconfirmed nfs4_client with 
730                  * matching cl_name, cl_verifier, and cl_clientid
731                  *
732                  * create and insert an unconfirmed nfs4_client with same 
733                  * cl_name, cl_verifier, and cl_clientid as existing 
734                  * nfs4_client,  but with the new callback info and a 
735                  * new cl_confirm
736                  */
737                 if ((unconf) && 
738                     cmp_verf(&unconf->cl_verifier, &conf->cl_verifier) &&
739                      cmp_clid(&unconf->cl_clientid, &conf->cl_clientid)) {
740                                 expire_client(unconf);
741                 }
742                 if (!(new = create_client(clname)))
743                         goto out;
744                 copy_verf(new,&conf->cl_verifier);
745                 new->cl_addr = ip_addr;
746                 copy_cred(&new->cl_cred,&rqstp->rq_cred);
747                 copy_clid(new, conf);
748                 gen_confirm(new);
749                 gen_callback(new, setclid);
750                 add_to_unconfirmed(new,strhashval);
751         } else if (!unconf) {
752                 /*
753                  * CASE 2:
754                  * clname match, confirmed, principal match
755                  * verfier does not match
756                  * no unconfirmed. create a new unconfirmed nfs4_client
757                  * using input clverifier, clname, and callback info
758                  * and generate a new cl_clientid and cl_confirm.
759                  */
760                 if (!(new = create_client(clname)))
761                         goto out;
762                 copy_verf(new,&clverifier);
763                 new->cl_addr = ip_addr;
764                 copy_cred(&new->cl_cred,&rqstp->rq_cred);
765                 gen_clid(new);
766                 gen_confirm(new);
767                 gen_callback(new, setclid);
768                 add_to_unconfirmed(new, strhashval);
769         } else if (!cmp_verf(&conf->cl_confirm, &unconf->cl_confirm)) {
770                 /*      
771                  * CASE3:
772                  * confirmed found (name, principal match)
773                  * confirmed verifier does not match input clverifier
774                  *
775                  * unconfirmed found (name match)
776                  * confirmed->cl_confirm != unconfirmed->cl_confirm
777                  *
778                  * remove unconfirmed.
779                  *
780                  * create an unconfirmed nfs4_client 
781                  * with same cl_name as existing confirmed nfs4_client, 
782                  * but with new callback info, new cl_clientid,
783                  * new cl_verifier and a new cl_confirm
784                  */
785                 expire_client(unconf);
786                 if (!(new = create_client(clname)))
787                         goto out;
788                 copy_verf(new,&clverifier);
789                 new->cl_addr = ip_addr;
790                 copy_cred(&new->cl_cred,&rqstp->rq_cred);
791                 gen_clid(new);
792                 gen_confirm(new);
793                 gen_callback(new, setclid);
794                 add_to_unconfirmed(new, strhashval);
795         } else {
796                 /* No cases hit !!! */
797                 status = nfserr_inval;
798                 goto out;
799
800         }
801         setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
802         setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
803         memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
804         status = nfs_ok;
805 out:
806         nfs4_unlock_state();
807         return status;
808 }
809
810
811 /*
812  * RFC 3010 has a complex implmentation description of processing a 
813  * SETCLIENTID_CONFIRM request consisting of 4 bullets describing
814  * processing on a DRC miss, labeled as CASE1 - CASE4 below.
815  *
816  * NOTE: callback information will be processed here in a future patch
817  */
818 int
819 nfsd4_setclientid_confirm(struct svc_rqst *rqstp, struct nfsd4_setclientid_confirm *setclientid_confirm)
820 {
821         u32 ip_addr = rqstp->rq_addr.sin_addr.s_addr;
822         struct nfs4_client *clp, *conf = NULL, *unconf = NULL;
823         nfs4_verifier confirm = setclientid_confirm->sc_confirm; 
824         clientid_t * clid = &setclientid_confirm->sc_clientid;
825         int status;
826
827         if (STALE_CLIENTID(clid))
828                 return nfserr_stale_clientid;
829         /* 
830          * XXX The Duplicate Request Cache (DRC) has been checked (??)
831          * We get here on a DRC miss.
832          */
833
834         nfs4_lock_state();
835         clp = find_confirmed_client(clid);
836         if (clp) {
837                 status = nfserr_inval;
838                 /* 
839                  * Found a record for this clientid. If the IP addresses
840                  * don't match, return ERR_INVAL just as if the record had
841                  * not been found.
842                  */
843                 if (clp->cl_addr != ip_addr) { 
844                         printk("NFSD: setclientid: string in use by client"
845                         "(clientid %08x/%08x)\n",
846                         clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
847                         goto out;
848                 }
849                 conf = clp;
850         }
851         clp = find_unconfirmed_client(clid);
852         if (clp) {
853                 status = nfserr_inval;
854                 if (clp->cl_addr != ip_addr) { 
855                         printk("NFSD: setclientid: string in use by client"
856                         "(clientid %08x/%08x)\n",
857                         clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
858                         goto out;
859                 }
860                 unconf = clp;
861         }
862         /* CASE 1: 
863         * unconf record that matches input clientid and input confirm.
864         * conf record that matches input clientid.
865         * conf  and unconf records match names, verifiers 
866         */
867         if ((conf && unconf) && 
868             (cmp_verf(&unconf->cl_confirm, &confirm)) &&
869             (cmp_verf(&conf->cl_verifier, &unconf->cl_verifier)) &&
870             (cmp_name(&conf->cl_name,&unconf->cl_name))  &&
871             (!cmp_verf(&conf->cl_confirm, &unconf->cl_confirm))) {
872                 if (!cmp_creds(&conf->cl_cred, &unconf->cl_cred)) 
873                         status = nfserr_clid_inuse;
874                 else {
875                         expire_client(conf);
876                         clp = unconf;
877                         move_to_confirmed(unconf);
878                         status = nfs_ok;
879                 }
880                 goto out;
881         } 
882         /* CASE 2:
883          * conf record that matches input clientid.
884          * if unconf record that matches input clientid, then unconf->cl_name
885          * or unconf->cl_verifier don't match the conf record.
886          */
887         if ((conf && !unconf) || 
888             ((conf && unconf) && 
889              (!cmp_verf(&conf->cl_verifier, &unconf->cl_verifier) ||
890               !cmp_name(&conf->cl_name, &unconf->cl_name)))) {
891                 if (!cmp_creds(&conf->cl_cred,&rqstp->rq_cred)) {
892                         status = nfserr_clid_inuse;
893                 } else {
894                         clp = conf;
895                         status = nfs_ok;
896                 }
897                 goto out;
898         }
899         /* CASE 3:
900          * conf record not found.
901          * unconf record found. 
902          * unconf->cl_confirm matches input confirm
903          */ 
904         if (!conf && unconf && cmp_verf(&unconf->cl_confirm, &confirm)) {
905                 if (!cmp_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
906                         status = nfserr_clid_inuse;
907                 } else {
908                         status = nfs_ok;
909                         clp = unconf;
910                         move_to_confirmed(unconf);
911                 }
912                 goto out;
913         }
914         /* CASE 4:
915          * conf record not found, or if conf, then conf->cl_confirm does not
916          * match input confirm.
917          * unconf record not found, or if unconf, then unconf->cl_confirm 
918          * does not match input confirm.
919          */
920         if ((!conf || (conf && !cmp_verf(&conf->cl_confirm, &confirm))) &&
921             (!unconf || (unconf && !cmp_verf(&unconf->cl_confirm, &confirm)))) {
922                 status = nfserr_stale_clientid;
923                 goto out;
924         }
925         /* check that we have hit one of the cases...*/
926         status = nfserr_inval;
927         goto out;
928 out:
929         if (!status)
930                 nfsd4_probe_callback(clp);
931         nfs4_unlock_state();
932         return status;
933 }
934
935 /* 
936  * Open owner state (share locks)
937  */
938
939 /* hash tables for nfs4_stateowner */
940 #define OWNER_HASH_BITS              8
941 #define OWNER_HASH_SIZE             (1 << OWNER_HASH_BITS)
942 #define OWNER_HASH_MASK             (OWNER_HASH_SIZE - 1)
943
944 #define ownerid_hashval(id) \
945         ((id) & OWNER_HASH_MASK)
946 #define ownerstr_hashval(clientid, ownername) \
947         (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
948
949 static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE];
950 static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
951
952 /* hash table for nfs4_file */
953 #define FILE_HASH_BITS                   8
954 #define FILE_HASH_SIZE                  (1 << FILE_HASH_BITS)
955 #define FILE_HASH_MASK                  (FILE_HASH_SIZE - 1)
956 /* hash table for (open)nfs4_stateid */
957 #define STATEID_HASH_BITS              10
958 #define STATEID_HASH_SIZE              (1 << STATEID_HASH_BITS)
959 #define STATEID_HASH_MASK              (STATEID_HASH_SIZE - 1)
960
961 #define file_hashval(x) \
962         hash_ptr(x, FILE_HASH_BITS)
963 #define stateid_hashval(owner_id, file_id)  \
964         (((owner_id) + (file_id)) & STATEID_HASH_MASK)
965
966 static struct list_head file_hashtbl[FILE_HASH_SIZE];
967 static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
968
969 /* OPEN Share state helper functions */
970 static inline struct nfs4_file *
971 alloc_init_file(struct inode *ino)
972 {
973         struct nfs4_file *fp;
974         unsigned int hashval = file_hashval(ino);
975
976         fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
977         if (fp) {
978                 kref_init(&fp->fi_ref);
979                 INIT_LIST_HEAD(&fp->fi_hash);
980                 INIT_LIST_HEAD(&fp->fi_stateids);
981                 INIT_LIST_HEAD(&fp->fi_delegations);
982                 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
983                 fp->fi_inode = igrab(ino);
984                 fp->fi_id = current_fileid++;
985                 return fp;
986         }
987         return NULL;
988 }
989
990 static void
991 nfsd4_free_slab(kmem_cache_t **slab)
992 {
993         int status;
994
995         if (*slab == NULL)
996                 return;
997         status = kmem_cache_destroy(*slab);
998         *slab = NULL;
999         WARN_ON(status);
1000 }
1001
1002 static void
1003 nfsd4_free_slabs(void)
1004 {
1005         nfsd4_free_slab(&stateowner_slab);
1006         nfsd4_free_slab(&file_slab);
1007         nfsd4_free_slab(&stateid_slab);
1008         nfsd4_free_slab(&deleg_slab);
1009 }
1010
1011 static int
1012 nfsd4_init_slabs(void)
1013 {
1014         stateowner_slab = kmem_cache_create("nfsd4_stateowners",
1015                         sizeof(struct nfs4_stateowner), 0, 0, NULL, NULL);
1016         if (stateowner_slab == NULL)
1017                 goto out_nomem;
1018         file_slab = kmem_cache_create("nfsd4_files",
1019                         sizeof(struct nfs4_file), 0, 0, NULL, NULL);
1020         if (file_slab == NULL)
1021                 goto out_nomem;
1022         stateid_slab = kmem_cache_create("nfsd4_stateids",
1023                         sizeof(struct nfs4_stateid), 0, 0, NULL, NULL);
1024         if (stateid_slab == NULL)
1025                 goto out_nomem;
1026         deleg_slab = kmem_cache_create("nfsd4_delegations",
1027                         sizeof(struct nfs4_delegation), 0, 0, NULL, NULL);
1028         if (deleg_slab == NULL)
1029                 goto out_nomem;
1030         return 0;
1031 out_nomem:
1032         nfsd4_free_slabs();
1033         dprintk("nfsd4: out of memory while initializing nfsv4\n");
1034         return -ENOMEM;
1035 }
1036
1037 void
1038 nfs4_free_stateowner(struct kref *kref)
1039 {
1040         struct nfs4_stateowner *sop =
1041                 container_of(kref, struct nfs4_stateowner, so_ref);
1042         kfree(sop->so_owner.data);
1043         kmem_cache_free(stateowner_slab, sop);
1044 }
1045
1046 static inline struct nfs4_stateowner *
1047 alloc_stateowner(struct xdr_netobj *owner)
1048 {
1049         struct nfs4_stateowner *sop;
1050
1051         if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1052                 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1053                         memcpy(sop->so_owner.data, owner->data, owner->len);
1054                         sop->so_owner.len = owner->len;
1055                         kref_init(&sop->so_ref);
1056                         return sop;
1057                 } 
1058                 kmem_cache_free(stateowner_slab, sop);
1059         }
1060         return NULL;
1061 }
1062
1063 static struct nfs4_stateowner *
1064 alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1065         struct nfs4_stateowner *sop;
1066         struct nfs4_replay *rp;
1067         unsigned int idhashval;
1068
1069         if (!(sop = alloc_stateowner(&open->op_owner)))
1070                 return NULL;
1071         idhashval = ownerid_hashval(current_ownerid);
1072         INIT_LIST_HEAD(&sop->so_idhash);
1073         INIT_LIST_HEAD(&sop->so_strhash);
1074         INIT_LIST_HEAD(&sop->so_perclient);
1075         INIT_LIST_HEAD(&sop->so_perfilestate);
1076         INIT_LIST_HEAD(&sop->so_perlockowner);  /* not used */
1077         INIT_LIST_HEAD(&sop->so_close_lru);
1078         sop->so_time = 0;
1079         list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1080         list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
1081         list_add(&sop->so_perclient, &clp->cl_perclient);
1082         sop->so_is_open_owner = 1;
1083         sop->so_id = current_ownerid++;
1084         sop->so_client = clp;
1085         sop->so_seqid = open->op_seqid;
1086         sop->so_confirmed = 0;
1087         rp = &sop->so_replay;
1088         rp->rp_status = NFSERR_SERVERFAULT;
1089         rp->rp_buflen = 0;
1090         rp->rp_buf = rp->rp_ibuf;
1091         return sop;
1092 }
1093
1094 static void
1095 release_stateid_lockowners(struct nfs4_stateid *open_stp)
1096 {
1097         struct nfs4_stateowner *lock_sop;
1098
1099         while (!list_empty(&open_stp->st_perlockowner)) {
1100                 lock_sop = list_entry(open_stp->st_perlockowner.next,
1101                                 struct nfs4_stateowner, so_perlockowner);
1102                 /* list_del(&open_stp->st_perlockowner);  */
1103                 BUG_ON(lock_sop->so_is_open_owner);
1104                 release_stateowner(lock_sop);
1105         }
1106 }
1107
1108 static void
1109 unhash_stateowner(struct nfs4_stateowner *sop)
1110 {
1111         struct nfs4_stateid *stp;
1112
1113         list_del(&sop->so_idhash);
1114         list_del(&sop->so_strhash);
1115         if (sop->so_is_open_owner)
1116                 list_del(&sop->so_perclient);
1117         list_del(&sop->so_perlockowner);
1118         while (!list_empty(&sop->so_perfilestate)) {
1119                 stp = list_entry(sop->so_perfilestate.next, 
1120                         struct nfs4_stateid, st_perfilestate);
1121                 if (sop->so_is_open_owner)
1122                         release_stateid(stp, OPEN_STATE);
1123                 else
1124                         release_stateid(stp, LOCK_STATE);
1125         }
1126 }
1127
1128 static void
1129 release_stateowner(struct nfs4_stateowner *sop)
1130 {
1131         unhash_stateowner(sop);
1132         list_del(&sop->so_close_lru);
1133         nfs4_put_stateowner(sop);
1134 }
1135
1136 static inline void
1137 init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1138         struct nfs4_stateowner *sop = open->op_stateowner;
1139         unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1140
1141         INIT_LIST_HEAD(&stp->st_hash);
1142         INIT_LIST_HEAD(&stp->st_perfilestate);
1143         INIT_LIST_HEAD(&stp->st_perlockowner);
1144         INIT_LIST_HEAD(&stp->st_perfile);
1145         list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
1146         list_add(&stp->st_perfilestate, &sop->so_perfilestate);
1147         list_add(&stp->st_perfile, &fp->fi_stateids);
1148         stp->st_stateowner = sop;
1149         get_nfs4_file(fp);
1150         stp->st_file = fp;
1151         stp->st_stateid.si_boot = boot_time;
1152         stp->st_stateid.si_stateownerid = sop->so_id;
1153         stp->st_stateid.si_fileid = fp->fi_id;
1154         stp->st_stateid.si_generation = 0;
1155         stp->st_access_bmap = 0;
1156         stp->st_deny_bmap = 0;
1157         __set_bit(open->op_share_access, &stp->st_access_bmap);
1158         __set_bit(open->op_share_deny, &stp->st_deny_bmap);
1159 }
1160
1161 static void
1162 release_stateid(struct nfs4_stateid *stp, int flags)
1163 {
1164         struct file *filp = stp->st_vfs_file;
1165
1166         list_del(&stp->st_hash);
1167         list_del(&stp->st_perfile);
1168         list_del(&stp->st_perfilestate);
1169         if (flags & OPEN_STATE) {
1170                 release_stateid_lockowners(stp);
1171                 stp->st_vfs_file = NULL;
1172                 nfsd_close(filp);
1173         } else if (flags & LOCK_STATE)
1174                 locks_remove_posix(filp, (fl_owner_t) stp->st_stateowner);
1175         put_nfs4_file(stp->st_file);
1176         kmem_cache_free(stateid_slab, stp);
1177         stp = NULL;
1178 }
1179
1180 void
1181 move_to_close_lru(struct nfs4_stateowner *sop)
1182 {
1183         dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1184
1185         unhash_stateowner(sop);
1186         list_add_tail(&sop->so_close_lru, &close_lru);
1187         sop->so_time = get_seconds();
1188 }
1189
1190 void
1191 release_state_owner(struct nfs4_stateid *stp, int flag)
1192 {
1193         struct nfs4_stateowner *sop = stp->st_stateowner;
1194
1195         dprintk("NFSD: release_state_owner\n");
1196         release_stateid(stp, flag);
1197
1198         /* place unused nfs4_stateowners on so_close_lru list to be
1199          * released by the laundromat service after the lease period
1200          * to enable us to handle CLOSE replay
1201          */
1202         if (sop->so_confirmed && list_empty(&sop->so_perfilestate))
1203                 move_to_close_lru(sop);
1204 }
1205
1206 static int
1207 cmp_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner, clientid_t *clid) {
1208         return ((sop->so_owner.len == owner->len) && 
1209          !memcmp(sop->so_owner.data, owner->data, owner->len) && 
1210           (sop->so_client->cl_clientid.cl_id == clid->cl_id));
1211 }
1212
1213 static struct nfs4_stateowner *
1214 find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1215 {
1216         struct nfs4_stateowner *so = NULL;
1217
1218         list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
1219                 if (cmp_owner_str(so, &open->op_owner, &open->op_clientid))
1220                         return so;
1221         }
1222         return NULL;
1223 }
1224
1225 /* search file_hashtbl[] for file */
1226 static struct nfs4_file *
1227 find_file(struct inode *ino)
1228 {
1229         unsigned int hashval = file_hashval(ino);
1230         struct nfs4_file *fp;
1231
1232         list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
1233                 if (fp->fi_inode == ino) {
1234                         get_nfs4_file(fp);
1235                         return fp;
1236                 }
1237         }
1238         return NULL;
1239 }
1240
1241 #define TEST_ACCESS(x) ((x > 0 || x < 4)?1:0)
1242 #define TEST_DENY(x) ((x >= 0 || x < 5)?1:0)
1243
1244 void
1245 set_access(unsigned int *access, unsigned long bmap) {
1246         int i;
1247
1248         *access = 0;
1249         for (i = 1; i < 4; i++) {
1250                 if (test_bit(i, &bmap))
1251                         *access |= i;
1252         }
1253 }
1254
1255 void
1256 set_deny(unsigned int *deny, unsigned long bmap) {
1257         int i;
1258
1259         *deny = 0;
1260         for (i = 0; i < 4; i++) {
1261                 if (test_bit(i, &bmap))
1262                         *deny |= i ;
1263         }
1264 }
1265
1266 static int
1267 test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
1268         unsigned int access, deny;
1269
1270         set_access(&access, stp->st_access_bmap);
1271         set_deny(&deny, stp->st_deny_bmap);
1272         if ((access & open->op_share_deny) || (deny & open->op_share_access))
1273                 return 0;
1274         return 1;
1275 }
1276
1277 /*
1278  * Called to check deny when READ with all zero stateid or
1279  * WRITE with all zero or all one stateid
1280  */
1281 int
1282 nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
1283 {
1284         struct inode *ino = current_fh->fh_dentry->d_inode;
1285         struct nfs4_file *fp;
1286         struct nfs4_stateid *stp;
1287         int ret;
1288
1289         dprintk("NFSD: nfs4_share_conflict\n");
1290
1291         fp = find_file(ino);
1292         if (!fp)
1293                 return nfs_ok;
1294         ret = nfserr_share_denied;
1295         /* Search for conflicting share reservations */
1296         list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
1297                 if (test_bit(deny_type, &stp->st_deny_bmap) ||
1298                     test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
1299                         goto out;
1300         }
1301         ret = nfs_ok;
1302 out:
1303         put_nfs4_file(fp);
1304         return ret;
1305 }
1306
1307 static inline void
1308 nfs4_file_downgrade(struct file *filp, unsigned int share_access)
1309 {
1310         if (share_access & NFS4_SHARE_ACCESS_WRITE) {
1311                 put_write_access(filp->f_dentry->d_inode);
1312                 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
1313         }
1314 }
1315
1316 /*
1317  * Recall a delegation
1318  */
1319 static int
1320 do_recall(void *__dp)
1321 {
1322         struct nfs4_delegation *dp = __dp;
1323
1324         daemonize("nfsv4-recall");
1325
1326         nfsd4_cb_recall(dp);
1327         return 0;
1328 }
1329
1330 /*
1331  * Spawn a thread to perform a recall on the delegation represented
1332  * by the lease (file_lock)
1333  *
1334  * Called from break_lease() with lock_kernel() held.
1335  * Note: we assume break_lease will only call this *once* for any given
1336  * lease.
1337  */
1338 static
1339 void nfsd_break_deleg_cb(struct file_lock *fl)
1340 {
1341         struct nfs4_delegation *dp=  (struct nfs4_delegation *)fl->fl_owner;
1342         struct task_struct *t;
1343
1344         dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
1345         if (!dp)
1346                 return;
1347
1348         /* We're assuming the state code never drops its reference
1349          * without first removing the lease.  Since we're in this lease
1350          * callback (and since the lease code is serialized by the kernel
1351          * lock) we know the server hasn't removed the lease yet, we know
1352          * it's safe to take a reference: */
1353         atomic_inc(&dp->dl_count);
1354
1355         spin_lock(&recall_lock);
1356         list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
1357         spin_unlock(&recall_lock);
1358
1359         /* only place dl_time is set. protected by lock_kernel*/
1360         dp->dl_time = get_seconds();
1361
1362         /* XXX need to merge NFSD_LEASE_TIME with fs/locks.c:lease_break_time */
1363         fl->fl_break_time = jiffies + NFSD_LEASE_TIME * HZ;
1364
1365         t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall");
1366         if (IS_ERR(t)) {
1367                 struct nfs4_client *clp = dp->dl_client;
1368
1369                 printk(KERN_INFO "NFSD: Callback thread failed for "
1370                         "for client (clientid %08x/%08x)\n",
1371                         clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1372                 nfs4_put_delegation(dp);
1373         }
1374 }
1375
1376 /*
1377  * The file_lock is being reapd.
1378  *
1379  * Called by locks_free_lock() with lock_kernel() held.
1380  */
1381 static
1382 void nfsd_release_deleg_cb(struct file_lock *fl)
1383 {
1384         struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
1385
1386         dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
1387
1388         if (!(fl->fl_flags & FL_LEASE) || !dp)
1389                 return;
1390         dp->dl_flock = NULL;
1391 }
1392
1393 /*
1394  * Set the delegation file_lock back pointer.
1395  *
1396  * Called from __setlease() with lock_kernel() held.
1397  */
1398 static
1399 void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
1400 {
1401         struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
1402
1403         dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
1404         if (!dp)
1405                 return;
1406         dp->dl_flock = new;
1407 }
1408
1409 /*
1410  * Called from __setlease() with lock_kernel() held
1411  */
1412 static
1413 int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
1414 {
1415         struct nfs4_delegation *onlistd =
1416                 (struct nfs4_delegation *)onlist->fl_owner;
1417         struct nfs4_delegation *tryd =
1418                 (struct nfs4_delegation *)try->fl_owner;
1419
1420         if (onlist->fl_lmops != try->fl_lmops)
1421                 return 0;
1422
1423         return onlistd->dl_client == tryd->dl_client;
1424 }
1425
1426
1427 static
1428 int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
1429 {
1430         if (arg & F_UNLCK)
1431                 return lease_modify(onlist, arg);
1432         else
1433                 return -EAGAIN;
1434 }
1435
1436 struct lock_manager_operations nfsd_lease_mng_ops = {
1437         .fl_break = nfsd_break_deleg_cb,
1438         .fl_release_private = nfsd_release_deleg_cb,
1439         .fl_copy_lock = nfsd_copy_lock_deleg_cb,
1440         .fl_mylease = nfsd_same_client_deleg_cb,
1441         .fl_change = nfsd_change_deleg_cb,
1442 };
1443
1444
1445 /*
1446  * nfsd4_process_open1()
1447  *      lookup stateowner.
1448  *              found:
1449  *                      check confirmed 
1450  *                              confirmed:
1451  *                                      check seqid
1452  *                              not confirmed:
1453  *                                      delete owner
1454  *                                      create new owner
1455  *              notfound:
1456  *                      verify clientid
1457  *                      create new owner
1458  *
1459  * called with nfs4_lock_state() held.
1460  */
1461 int
1462 nfsd4_process_open1(struct nfsd4_open *open)
1463 {
1464         int status;
1465         clientid_t *clientid = &open->op_clientid;
1466         struct nfs4_client *clp = NULL;
1467         unsigned int strhashval;
1468         struct nfs4_stateowner *sop = NULL;
1469
1470         status = nfserr_inval;
1471         if (!check_name(open->op_owner))
1472                 goto out;
1473
1474         if (STALE_CLIENTID(&open->op_clientid))
1475                 return nfserr_stale_clientid;
1476
1477         strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
1478         sop = find_openstateowner_str(strhashval, open);
1479         if (sop) {
1480                 open->op_stateowner = sop;
1481                 /* check for replay */
1482                 if (open->op_seqid == sop->so_seqid){
1483                         if (sop->so_replay.rp_buflen)
1484                                 return NFSERR_REPLAY_ME;
1485                         else {
1486                                 /* The original OPEN failed so spectacularly
1487                                  * that we don't even have replay data saved!
1488                                  * Therefore, we have no choice but to continue
1489                                  * processing this OPEN; presumably, we'll
1490                                  * fail again for the same reason.
1491                                  */
1492                                 dprintk("nfsd4_process_open1:"
1493                                         " replay with no replay cache\n");
1494                                 goto renew;
1495                         }
1496                 } else if (sop->so_confirmed) {
1497                         if (open->op_seqid == sop->so_seqid + 1)
1498                                 goto renew;
1499                         status = nfserr_bad_seqid;
1500                         goto out;
1501                 } else {
1502                         /* If we get here, we received an OPEN for an
1503                          * unconfirmed nfs4_stateowner. Since the seqid's are
1504                          * different, purge the existing nfs4_stateowner, and
1505                          * instantiate a new one.
1506                          */
1507                         clp = sop->so_client;
1508                         release_stateowner(sop);
1509                 }
1510         } else {
1511                 /* nfs4_stateowner not found.
1512                  * Verify clientid and instantiate new nfs4_stateowner.
1513                  * If verify fails this is presumably the result of the
1514                  * client's lease expiring.
1515                  */
1516                 status = nfserr_expired;
1517                 clp = find_confirmed_client(clientid);
1518                 if (clp == NULL)
1519                         goto out;
1520         }
1521         status = nfserr_resource;
1522         sop = alloc_init_open_stateowner(strhashval, clp, open);
1523         if (sop == NULL)
1524                 goto out;
1525         open->op_stateowner = sop;
1526 renew:
1527         status = nfs_ok;
1528         renew_client(sop->so_client);
1529 out:
1530         if (status && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1531                 status = nfserr_reclaim_bad;
1532         return status;
1533 }
1534
1535 static inline int
1536 nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
1537 {
1538         if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
1539                 return nfserr_openmode;
1540         else
1541                 return nfs_ok;
1542 }
1543
1544 static struct nfs4_delegation *
1545 find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
1546 {
1547         struct nfs4_delegation *dp;
1548
1549         list_for_each_entry(dp, &fp->fi_delegations, dl_del_perfile) {
1550                 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
1551                         return dp;
1552         }
1553         return NULL;
1554 }
1555
1556 static int
1557 nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
1558                 struct nfs4_delegation **dp)
1559 {
1560         int flags;
1561         int status = nfserr_bad_stateid;
1562
1563         *dp = find_delegation_file(fp, &open->op_delegate_stateid);
1564         if (*dp == NULL)
1565                 goto out;
1566         flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
1567                                                 RD_STATE : WR_STATE;
1568         status = nfs4_check_delegmode(*dp, flags);
1569         if (status)
1570                 *dp = NULL;
1571 out:
1572         if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
1573                 return nfs_ok;
1574         if (status)
1575                 return status;
1576         open->op_stateowner->so_confirmed = 1;
1577         return nfs_ok;
1578 }
1579
1580 static int
1581 nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
1582 {
1583         struct nfs4_stateid *local;
1584         int status = nfserr_share_denied;
1585         struct nfs4_stateowner *sop = open->op_stateowner;
1586
1587         list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
1588                 /* ignore lock owners */
1589                 if (local->st_stateowner->so_is_open_owner == 0)
1590                         continue;
1591                 /* remember if we have seen this open owner */
1592                 if (local->st_stateowner == sop)
1593                         *stpp = local;
1594                 /* check for conflicting share reservations */
1595                 if (!test_share(local, open))
1596                         goto out;
1597         }
1598         status = 0;
1599 out:
1600         return status;
1601 }
1602
1603 static inline struct nfs4_stateid *
1604 nfs4_alloc_stateid(void)
1605 {
1606         return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
1607 }
1608
1609 static int
1610 nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
1611                 struct nfs4_delegation *dp,
1612                 struct svc_fh *cur_fh, int flags)
1613 {
1614         struct nfs4_stateid *stp;
1615
1616         stp = nfs4_alloc_stateid();
1617         if (stp == NULL)
1618                 return nfserr_resource;
1619
1620         if (dp) {
1621                 get_file(dp->dl_vfs_file);
1622                 stp->st_vfs_file = dp->dl_vfs_file;
1623         } else {
1624                 int status;
1625                 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
1626                                 &stp->st_vfs_file);
1627                 if (status) {
1628                         if (status == nfserr_dropit)
1629                                 status = nfserr_jukebox;
1630                         kmem_cache_free(stateid_slab, stp);
1631                         return status;
1632                 }
1633         }
1634         *stpp = stp;
1635         return 0;
1636 }
1637
1638 static inline int
1639 nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
1640                 struct nfsd4_open *open)
1641 {
1642         struct iattr iattr = {
1643                 .ia_valid = ATTR_SIZE,
1644                 .ia_size = 0,
1645         };
1646         if (!open->op_truncate)
1647                 return 0;
1648         if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
1649                 return -EINVAL;
1650         return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
1651 }
1652
1653 static int
1654 nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
1655 {
1656         struct file *filp = stp->st_vfs_file;
1657         struct inode *inode = filp->f_dentry->d_inode;
1658         unsigned int share_access;
1659         int status;
1660
1661         set_access(&share_access, stp->st_access_bmap);
1662         share_access = ~share_access;
1663         share_access &= open->op_share_access;
1664
1665         if (!(share_access & NFS4_SHARE_ACCESS_WRITE))
1666                 return nfsd4_truncate(rqstp, cur_fh, open);
1667
1668         status = get_write_access(inode);
1669         if (status)
1670                 return nfserrno(status);
1671         status = nfsd4_truncate(rqstp, cur_fh, open);
1672         if (status) {
1673                 put_write_access(inode);
1674                 return status;
1675         }
1676         /* remember the open */
1677         filp->f_mode = (filp->f_mode | FMODE_WRITE) & ~FMODE_READ;
1678         set_bit(open->op_share_access, &stp->st_access_bmap);
1679         set_bit(open->op_share_deny, &stp->st_deny_bmap);
1680
1681         return nfs_ok;
1682 }
1683
1684
1685 /* decrement seqid on successful reclaim, it will be bumped in encode_open */
1686 static void
1687 nfs4_set_claim_prev(struct nfsd4_open *open, int *status)
1688 {
1689         if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS) {
1690                 if (*status)
1691                         *status = nfserr_reclaim_bad;
1692                 else {
1693                         open->op_stateowner->so_confirmed = 1;
1694                         open->op_stateowner->so_seqid--;
1695                 }
1696         }
1697 }
1698
1699 /*
1700  * Attempt to hand out a delegation.
1701  */
1702 static void
1703 nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
1704 {
1705         struct nfs4_delegation *dp;
1706         struct nfs4_stateowner *sop = stp->st_stateowner;
1707         struct nfs4_callback *cb = &sop->so_client->cl_callback;
1708         struct file_lock fl, *flp = &fl;
1709         int status, flag = 0;
1710
1711         flag = NFS4_OPEN_DELEGATE_NONE;
1712         open->op_recall = 0;
1713         switch (open->op_claim_type) {
1714                 case NFS4_OPEN_CLAIM_PREVIOUS:
1715                         if (!atomic_read(&cb->cb_set))
1716                                 open->op_recall = 1;
1717                         flag = open->op_delegate_type;
1718                         if (flag == NFS4_OPEN_DELEGATE_NONE)
1719                                 goto out;
1720                         break;
1721                 case NFS4_OPEN_CLAIM_NULL:
1722                         /* Let's not give out any delegations till everyone's
1723                          * had the chance to reclaim theirs.... */
1724                         if (nfs4_in_grace())
1725                                 goto out;
1726                         if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
1727                                 goto out;
1728                         if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1729                                 flag = NFS4_OPEN_DELEGATE_WRITE;
1730                         else
1731                                 flag = NFS4_OPEN_DELEGATE_READ;
1732                         break;
1733                 default:
1734                         goto out;
1735         }
1736
1737         dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
1738         if (dp == NULL) {
1739                 flag = NFS4_OPEN_DELEGATE_NONE;
1740                 goto out;
1741         }
1742         locks_init_lock(&fl);
1743         fl.fl_lmops = &nfsd_lease_mng_ops;
1744         fl.fl_flags = FL_LEASE;
1745         fl.fl_end = OFFSET_MAX;
1746         fl.fl_owner =  (fl_owner_t)dp;
1747         fl.fl_file = stp->st_vfs_file;
1748         fl.fl_pid = current->tgid;
1749
1750         /* setlease checks to see if delegation should be handed out.
1751          * the lock_manager callbacks fl_mylease and fl_change are used
1752          */
1753         if ((status = setlease(stp->st_vfs_file,
1754                 flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK, &flp))) {
1755                 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
1756                 unhash_delegation(dp);
1757                 flag = NFS4_OPEN_DELEGATE_NONE;
1758                 goto out;
1759         }
1760
1761         memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
1762
1763         dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1764                      dp->dl_stateid.si_boot,
1765                      dp->dl_stateid.si_stateownerid,
1766                      dp->dl_stateid.si_fileid,
1767                      dp->dl_stateid.si_generation);
1768 out:
1769         if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
1770                         && flag == NFS4_OPEN_DELEGATE_NONE
1771                         && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
1772                 printk("NFSD: WARNING: refusing delegation reclaim\n");
1773         open->op_delegate_type = flag;
1774 }
1775
1776 /*
1777  * called with nfs4_lock_state() held.
1778  */
1779 int
1780 nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
1781 {
1782         struct nfs4_file *fp = NULL;
1783         struct inode *ino = current_fh->fh_dentry->d_inode;
1784         struct nfs4_stateid *stp = NULL;
1785         struct nfs4_delegation *dp = NULL;
1786         int status;
1787
1788         status = nfserr_inval;
1789         if (!TEST_ACCESS(open->op_share_access) || !TEST_DENY(open->op_share_deny))
1790                 goto out;
1791         /*
1792          * Lookup file; if found, lookup stateid and check open request,
1793          * and check for delegations in the process of being recalled.
1794          * If not found, create the nfs4_file struct
1795          */
1796         fp = find_file(ino);
1797         if (fp) {
1798                 if ((status = nfs4_check_open(fp, open, &stp)))
1799                         goto out;
1800                 status = nfs4_check_deleg(fp, open, &dp);
1801                 if (status)
1802                         goto out;
1803         } else {
1804                 status = nfserr_bad_stateid;
1805                 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
1806                         goto out;
1807                 status = nfserr_resource;
1808                 fp = alloc_init_file(ino);
1809                 if (fp == NULL)
1810                         goto out;
1811         }
1812
1813         /*
1814          * OPEN the file, or upgrade an existing OPEN.
1815          * If truncate fails, the OPEN fails.
1816          */
1817         if (stp) {
1818                 /* Stateid was found, this is an OPEN upgrade */
1819                 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
1820                 if (status)
1821                         goto out;
1822         } else {
1823                 /* Stateid was not found, this is a new OPEN */
1824                 int flags = 0;
1825                 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1826                         flags = MAY_WRITE;
1827                 else
1828                         flags = MAY_READ;
1829                 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
1830                 if (status)
1831                         goto out;
1832                 init_stateid(stp, fp, open);
1833                 status = nfsd4_truncate(rqstp, current_fh, open);
1834                 if (status) {
1835                         release_stateid(stp, OPEN_STATE);
1836                         goto out;
1837                 }
1838         }
1839         memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
1840
1841         /*
1842         * Attempt to hand out a delegation. No error return, because the
1843         * OPEN succeeds even if we fail.
1844         */
1845         nfs4_open_delegation(current_fh, open, stp);
1846
1847         status = nfs_ok;
1848
1849         dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1850                     stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid,
1851                     stp->st_stateid.si_fileid, stp->st_stateid.si_generation);
1852 out:
1853         if (fp)
1854                 put_nfs4_file(fp);
1855         /* CLAIM_PREVIOUS has different error returns */
1856         nfs4_set_claim_prev(open, &status);
1857         /*
1858         * To finish the open response, we just need to set the rflags.
1859         */
1860         open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
1861         if (!open->op_stateowner->so_confirmed)
1862                 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
1863
1864         return status;
1865 }
1866
1867 static struct workqueue_struct *laundry_wq;
1868 static struct work_struct laundromat_work;
1869 static void laundromat_main(void *);
1870 static DECLARE_WORK(laundromat_work, laundromat_main, NULL);
1871
1872 int 
1873 nfsd4_renew(clientid_t *clid)
1874 {
1875         struct nfs4_client *clp;
1876         int status;
1877
1878         nfs4_lock_state();
1879         dprintk("process_renew(%08x/%08x): starting\n", 
1880                         clid->cl_boot, clid->cl_id);
1881         status = nfserr_stale_clientid;
1882         if (STALE_CLIENTID(clid))
1883                 goto out;
1884         clp = find_confirmed_client(clid);
1885         status = nfserr_expired;
1886         if (clp == NULL) {
1887                 /* We assume the client took too long to RENEW. */
1888                 dprintk("nfsd4_renew: clientid not found!\n");
1889                 goto out;
1890         }
1891         renew_client(clp);
1892         status = nfserr_cb_path_down;
1893         if (!list_empty(&clp->cl_del_perclnt)
1894                         && !atomic_read(&clp->cl_callback.cb_set))
1895                 goto out;
1896         status = nfs_ok;
1897 out:
1898         nfs4_unlock_state();
1899         return status;
1900 }
1901
1902 time_t
1903 nfs4_laundromat(void)
1904 {
1905         struct nfs4_client *clp;
1906         struct nfs4_stateowner *sop;
1907         struct nfs4_delegation *dp;
1908         struct list_head *pos, *next, reaplist;
1909         time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
1910         time_t t, clientid_val = NFSD_LEASE_TIME;
1911         time_t u, test_val = NFSD_LEASE_TIME;
1912
1913         nfs4_lock_state();
1914
1915         dprintk("NFSD: laundromat service - starting\n");
1916         list_for_each_safe(pos, next, &client_lru) {
1917                 clp = list_entry(pos, struct nfs4_client, cl_lru);
1918                 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
1919                         t = clp->cl_time - cutoff;
1920                         if (clientid_val > t)
1921                                 clientid_val = t;
1922                         break;
1923                 }
1924                 dprintk("NFSD: purging unused client (clientid %08x)\n",
1925                         clp->cl_clientid.cl_id);
1926                 expire_client(clp);
1927         }
1928         INIT_LIST_HEAD(&reaplist);
1929         spin_lock(&recall_lock);
1930         list_for_each_safe(pos, next, &del_recall_lru) {
1931                 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1932                 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
1933                         u = dp->dl_time - cutoff;
1934                         if (test_val > u)
1935                                 test_val = u;
1936                         break;
1937                 }
1938                 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1939                                     dp, dp->dl_flock);
1940                 list_move(&dp->dl_recall_lru, &reaplist);
1941         }
1942         spin_unlock(&recall_lock);
1943         list_for_each_safe(pos, next, &reaplist) {
1944                 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1945                 list_del_init(&dp->dl_recall_lru);
1946                 unhash_delegation(dp);
1947         }
1948         test_val = NFSD_LEASE_TIME;
1949         list_for_each_safe(pos, next, &close_lru) {
1950                 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
1951                 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
1952                         u = sop->so_time - cutoff;
1953                         if (test_val > u)
1954                                 test_val = u;
1955                         break;
1956                 }
1957                 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1958                         sop->so_id);
1959                 list_del(&sop->so_close_lru);
1960                 nfs4_put_stateowner(sop);
1961         }
1962         if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
1963                 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
1964         nfs4_unlock_state();
1965         return clientid_val;
1966 }
1967
1968 void
1969 laundromat_main(void *not_used)
1970 {
1971         time_t t;
1972
1973         t = nfs4_laundromat();
1974         dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
1975         queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
1976 }
1977
1978 /* search ownerid_hashtbl[] and close_lru for stateid owner
1979  * (stateid->si_stateownerid)
1980  */
1981 struct nfs4_stateowner *
1982 find_openstateowner_id(u32 st_id, int flags) {
1983         struct nfs4_stateowner *local = NULL;
1984
1985         dprintk("NFSD: find_openstateowner_id %d\n", st_id);
1986         if (flags & CLOSE_STATE) {
1987                 list_for_each_entry(local, &close_lru, so_close_lru) {
1988                         if (local->so_id == st_id)
1989                                 return local;
1990                 }
1991         }
1992         return NULL;
1993 }
1994
1995 static inline int
1996 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
1997 {
1998         return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_dentry->d_inode;
1999 }
2000
2001 static int
2002 STALE_STATEID(stateid_t *stateid)
2003 {
2004         if (stateid->si_boot == boot_time)
2005                 return 0;
2006         printk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
2007                 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2008                 stateid->si_generation);
2009         return 1;
2010 }
2011
2012 static inline int
2013 access_permit_read(unsigned long access_bmap)
2014 {
2015         return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
2016                 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
2017                 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
2018 }
2019
2020 static inline int
2021 access_permit_write(unsigned long access_bmap)
2022 {
2023         return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
2024                 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
2025 }
2026
2027 static
2028 int nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
2029 {
2030         int status = nfserr_openmode;
2031
2032         if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
2033                 goto out;
2034         if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
2035                 goto out;
2036         status = nfs_ok;
2037 out:
2038         return status;
2039 }
2040
2041 static inline int
2042 check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2043 {
2044         /* Trying to call delegreturn with a special stateid? Yuch: */
2045         if (!(flags & (RD_STATE | WR_STATE)))
2046                 return nfserr_bad_stateid;
2047         else if (ONE_STATEID(stateid) && (flags & RD_STATE))
2048                 return nfs_ok;
2049         else if (nfs4_in_grace()) {
2050                 /* Answer in remaining cases depends on existance of
2051                  * conflicting state; so we must wait out the grace period. */
2052                 return nfserr_grace;
2053         } else if (flags & WR_STATE)
2054                 return nfs4_share_conflict(current_fh,
2055                                 NFS4_SHARE_DENY_WRITE);
2056         else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2057                 return nfs4_share_conflict(current_fh,
2058                                 NFS4_SHARE_DENY_READ);
2059 }
2060
2061 /*
2062  * Allow READ/WRITE during grace period on recovered state only for files
2063  * that are not able to provide mandatory locking.
2064  */
2065 static inline int
2066 io_during_grace_disallowed(struct inode *inode, int flags)
2067 {
2068         return nfs4_in_grace() && (flags & (RD_STATE | WR_STATE))
2069                 && MANDATORY_LOCK(inode);
2070 }
2071
2072 /*
2073 * Checks for stateid operations
2074 */
2075 int
2076 nfs4_preprocess_stateid_op(struct svc_fh *current_fh, stateid_t *stateid, int flags, struct file **filpp)
2077 {
2078         struct nfs4_stateid *stp = NULL;
2079         struct nfs4_delegation *dp = NULL;
2080         stateid_t *stidp;
2081         struct inode *ino = current_fh->fh_dentry->d_inode;
2082         int status;
2083
2084         dprintk("NFSD: preprocess_stateid_op: stateid = (%08x/%08x/%08x/%08x)\n",
2085                 stateid->si_boot, stateid->si_stateownerid, 
2086                 stateid->si_fileid, stateid->si_generation); 
2087         if (filpp)
2088                 *filpp = NULL;
2089
2090         if (io_during_grace_disallowed(ino, flags))
2091                 return nfserr_grace;
2092
2093         if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2094                 return check_special_stateids(current_fh, stateid, flags);
2095
2096         /* STALE STATEID */
2097         status = nfserr_stale_stateid;
2098         if (STALE_STATEID(stateid)) 
2099                 goto out;
2100
2101         /* BAD STATEID */
2102         status = nfserr_bad_stateid;
2103         if (!stateid->si_fileid) { /* delegation stateid */
2104                 if(!(dp = find_delegation_stateid(ino, stateid))) {
2105                         dprintk("NFSD: delegation stateid not found\n");
2106                         if (nfs4_in_grace())
2107                                 status = nfserr_grace;
2108                         goto out;
2109                 }
2110                 stidp = &dp->dl_stateid;
2111         } else { /* open or lock stateid */
2112                 if (!(stp = find_stateid(stateid, flags))) {
2113                         dprintk("NFSD: open or lock stateid not found\n");
2114                         if (nfs4_in_grace())
2115                                 status = nfserr_grace;
2116                         goto out;
2117                 }
2118                 if ((flags & CHECK_FH) && nfs4_check_fh(current_fh, stp))
2119                         goto out;
2120                 if (!stp->st_stateowner->so_confirmed)
2121                         goto out;
2122                 stidp = &stp->st_stateid;
2123         }
2124         if (stateid->si_generation > stidp->si_generation)
2125                 goto out;
2126
2127         /* OLD STATEID */
2128         status = nfserr_old_stateid;
2129         if (stateid->si_generation < stidp->si_generation)
2130                 goto out;
2131         if (stp) {
2132                 if ((status = nfs4_check_openmode(stp,flags)))
2133                         goto out;
2134                 renew_client(stp->st_stateowner->so_client);
2135                 if (filpp)
2136                         *filpp = stp->st_vfs_file;
2137         } else if (dp) {
2138                 if ((status = nfs4_check_delegmode(dp, flags)))
2139                         goto out;
2140                 renew_client(dp->dl_client);
2141                 if (flags & DELEG_RET)
2142                         unhash_delegation(dp);
2143                 if (filpp)
2144                         *filpp = dp->dl_vfs_file;
2145         }
2146         status = nfs_ok;
2147 out:
2148         return status;
2149 }
2150
2151
2152 /* 
2153  * Checks for sequence id mutating operations. 
2154  */
2155 int
2156 nfs4_preprocess_seqid_op(struct svc_fh *current_fh, u32 seqid, stateid_t *stateid, int flags, struct nfs4_stateowner **sopp, struct nfs4_stateid **stpp, clientid_t *lockclid)
2157 {
2158         int status;
2159         struct nfs4_stateid *stp;
2160         struct nfs4_stateowner *sop;
2161
2162         dprintk("NFSD: preprocess_seqid_op: seqid=%d " 
2163                         "stateid = (%08x/%08x/%08x/%08x)\n", seqid,
2164                 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2165                 stateid->si_generation);
2166                                 
2167         *stpp = NULL;
2168         *sopp = NULL;
2169
2170         status = nfserr_bad_stateid;
2171         if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
2172                 printk("NFSD: preprocess_seqid_op: magic stateid!\n");
2173                 goto out;
2174         }
2175
2176         status = nfserr_stale_stateid;
2177         if (STALE_STATEID(stateid))
2178                 goto out;
2179         /*
2180         * We return BAD_STATEID if filehandle doesn't match stateid, 
2181         * the confirmed flag is incorrecly set, or the generation 
2182         * number is incorrect.  
2183         * If there is no entry in the openfile table for this id, 
2184         * we can't always return BAD_STATEID;
2185         * this might be a retransmitted CLOSE which has arrived after 
2186         * the openfile has been released.
2187         */
2188         if (!(stp = find_stateid(stateid, flags)))
2189                 goto no_nfs4_stateid;
2190
2191         status = nfserr_bad_stateid;
2192
2193         /* for new lock stateowners:
2194          * check that the lock->v.new.open_stateid
2195          * refers to an open stateowner
2196          *
2197          * check that the lockclid (nfs4_lock->v.new.clientid) is the same
2198          * as the open_stateid->st_stateowner->so_client->clientid
2199          */
2200         if (lockclid) {
2201                 struct nfs4_stateowner *sop = stp->st_stateowner;
2202                 struct nfs4_client *clp = sop->so_client;
2203
2204                 if (!sop->so_is_open_owner)
2205                         goto out;
2206                 if (!cmp_clid(&clp->cl_clientid, lockclid))
2207                         goto out;
2208         }
2209
2210         if ((flags & CHECK_FH) && nfs4_check_fh(current_fh, stp)) {
2211                 printk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
2212                 goto out;
2213         }
2214
2215         *stpp = stp;
2216         *sopp = sop = stp->st_stateowner;
2217
2218         /*
2219         *  We now validate the seqid and stateid generation numbers.
2220         *  For the moment, we ignore the possibility of 
2221         *  generation number wraparound.
2222         */
2223         if (seqid != sop->so_seqid + 1)
2224                 goto check_replay;
2225
2226         if (sop->so_confirmed) {
2227                 if (flags & CONFIRM) {
2228                         printk("NFSD: preprocess_seqid_op: expected unconfirmed stateowner!\n");
2229                         goto out;
2230                 }
2231         }
2232         else {
2233                 if (!(flags & CONFIRM)) {
2234                         printk("NFSD: preprocess_seqid_op: stateowner not confirmed yet!\n");
2235                         goto out;
2236                 }
2237         }
2238         if (stateid->si_generation > stp->st_stateid.si_generation) {
2239                 printk("NFSD: preprocess_seqid_op: future stateid?!\n");
2240                 goto out;
2241         }
2242
2243         status = nfserr_old_stateid;
2244         if (stateid->si_generation < stp->st_stateid.si_generation) {
2245                 printk("NFSD: preprocess_seqid_op: old stateid!\n");
2246                 goto out;
2247         }
2248         /* XXX renew the client lease here */
2249         status = nfs_ok;
2250
2251 out:
2252         return status;
2253
2254 no_nfs4_stateid:
2255
2256         /*
2257         * We determine whether this is a bad stateid or a replay, 
2258         * starting by trying to look up the stateowner.
2259         * If stateowner is not found - stateid is bad.
2260         */
2261         if (!(sop = find_openstateowner_id(stateid->si_stateownerid, flags))) {
2262                 printk("NFSD: preprocess_seqid_op: no stateowner or nfs4_stateid!\n");
2263                 status = nfserr_bad_stateid;
2264                 goto out;
2265         }
2266         *sopp = sop;
2267
2268 check_replay:
2269         if (seqid == sop->so_seqid) {
2270                 printk("NFSD: preprocess_seqid_op: retransmission?\n");
2271                 /* indicate replay to calling function */
2272                 status = NFSERR_REPLAY_ME;
2273         } else  {
2274                 printk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d\n", sop->so_seqid +1, seqid);
2275
2276                 *sopp = NULL;
2277                 status = nfserr_bad_seqid;
2278         }
2279         goto out;
2280 }
2281
2282 int
2283 nfsd4_open_confirm(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open_confirm *oc)
2284 {
2285         int status;
2286         struct nfs4_stateowner *sop;
2287         struct nfs4_stateid *stp;
2288
2289         dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
2290                         (int)current_fh->fh_dentry->d_name.len,
2291                         current_fh->fh_dentry->d_name.name);
2292
2293         if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0)))
2294                 goto out;
2295
2296         nfs4_lock_state();
2297
2298         if ((status = nfs4_preprocess_seqid_op(current_fh, oc->oc_seqid,
2299                                         &oc->oc_req_stateid,
2300                                         CHECK_FH | CONFIRM | OPEN_STATE,
2301                                         &oc->oc_stateowner, &stp, NULL)))
2302                 goto out; 
2303
2304         sop = oc->oc_stateowner;
2305         sop->so_confirmed = 1;
2306         update_stateid(&stp->st_stateid);
2307         memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
2308         dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d " 
2309                 "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid,
2310                          stp->st_stateid.si_boot,
2311                          stp->st_stateid.si_stateownerid,
2312                          stp->st_stateid.si_fileid,
2313                          stp->st_stateid.si_generation);
2314 out:
2315         if (oc->oc_stateowner)
2316                 nfs4_get_stateowner(oc->oc_stateowner);
2317         nfs4_unlock_state();
2318         return status;
2319 }
2320
2321
2322 /*
2323  * unset all bits in union bitmap (bmap) that
2324  * do not exist in share (from successful OPEN_DOWNGRADE)
2325  */
2326 static void
2327 reset_union_bmap_access(unsigned long access, unsigned long *bmap)
2328 {
2329         int i;
2330         for (i = 1; i < 4; i++) {
2331                 if ((i & access) != i)
2332                         __clear_bit(i, bmap);
2333         }
2334 }
2335
2336 static void
2337 reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
2338 {
2339         int i;
2340         for (i = 0; i < 4; i++) {
2341                 if ((i & deny) != i)
2342                         __clear_bit(i, bmap);
2343         }
2344 }
2345
2346 int
2347 nfsd4_open_downgrade(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open_downgrade *od)
2348 {
2349         int status;
2350         struct nfs4_stateid *stp;
2351         unsigned int share_access;
2352
2353         dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n", 
2354                         (int)current_fh->fh_dentry->d_name.len,
2355                         current_fh->fh_dentry->d_name.name);
2356
2357         if (!TEST_ACCESS(od->od_share_access) || !TEST_DENY(od->od_share_deny))
2358                 return nfserr_inval;
2359
2360         nfs4_lock_state();
2361         if ((status = nfs4_preprocess_seqid_op(current_fh, od->od_seqid, 
2362                                         &od->od_stateid, 
2363                                         CHECK_FH | OPEN_STATE, 
2364                                         &od->od_stateowner, &stp, NULL)))
2365                 goto out; 
2366
2367         status = nfserr_inval;
2368         if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
2369                 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2370                         stp->st_access_bmap, od->od_share_access);
2371                 goto out;
2372         }
2373         if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
2374                 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2375                         stp->st_deny_bmap, od->od_share_deny);
2376                 goto out;
2377         }
2378         set_access(&share_access, stp->st_access_bmap);
2379         nfs4_file_downgrade(stp->st_vfs_file,
2380                             share_access & ~od->od_share_access);
2381
2382         reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
2383         reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
2384
2385         update_stateid(&stp->st_stateid);
2386         memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
2387         status = nfs_ok;
2388 out:
2389         if (od->od_stateowner)
2390                 nfs4_get_stateowner(od->od_stateowner);
2391         nfs4_unlock_state();
2392         return status;
2393 }
2394
2395 /*
2396  * nfs4_unlock_state() called after encode
2397  */
2398 int
2399 nfsd4_close(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_close *close)
2400 {
2401         int status;
2402         struct nfs4_stateid *stp;
2403
2404         dprintk("NFSD: nfsd4_close on file %.*s\n", 
2405                         (int)current_fh->fh_dentry->d_name.len,
2406                         current_fh->fh_dentry->d_name.name);
2407
2408         nfs4_lock_state();
2409         /* check close_lru for replay */
2410         if ((status = nfs4_preprocess_seqid_op(current_fh, close->cl_seqid, 
2411                                         &close->cl_stateid, 
2412                                         CHECK_FH | OPEN_STATE | CLOSE_STATE,
2413                                         &close->cl_stateowner, &stp, NULL)))
2414                 goto out; 
2415         /*
2416         *  Return success, but first update the stateid.
2417         */
2418         status = nfs_ok;
2419         update_stateid(&stp->st_stateid);
2420         memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
2421
2422         /* release_state_owner() calls nfsd_close() if needed */
2423         release_state_owner(stp, OPEN_STATE);
2424 out:
2425         if (close->cl_stateowner)
2426                 nfs4_get_stateowner(close->cl_stateowner);
2427         nfs4_unlock_state();
2428         return status;
2429 }
2430
2431 int
2432 nfsd4_delegreturn(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_delegreturn *dr)
2433 {
2434         int status;
2435
2436         if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0)))
2437                 goto out;
2438
2439         nfs4_lock_state();
2440         status = nfs4_preprocess_stateid_op(current_fh, &dr->dr_stateid, DELEG_RET, NULL);
2441         nfs4_unlock_state();
2442 out:
2443         return status;
2444 }
2445
2446
2447 /* 
2448  * Lock owner state (byte-range locks)
2449  */
2450 #define LOFF_OVERFLOW(start, len)      ((u64)(len) > ~(u64)(start))
2451 #define LOCK_HASH_BITS              8
2452 #define LOCK_HASH_SIZE             (1 << LOCK_HASH_BITS)
2453 #define LOCK_HASH_MASK             (LOCK_HASH_SIZE - 1)
2454
2455 #define lockownerid_hashval(id) \
2456         ((id) & LOCK_HASH_MASK)
2457
2458 static inline unsigned int
2459 lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
2460                 struct xdr_netobj *ownername)
2461 {
2462         return (file_hashval(inode) + cl_id
2463                         + opaque_hashval(ownername->data, ownername->len))
2464                 & LOCK_HASH_MASK;
2465 }
2466
2467 static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
2468 static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
2469 static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
2470
2471 struct nfs4_stateid *
2472 find_stateid(stateid_t *stid, int flags)
2473 {
2474         struct nfs4_stateid *local = NULL;
2475         u32 st_id = stid->si_stateownerid;
2476         u32 f_id = stid->si_fileid;
2477         unsigned int hashval;
2478
2479         dprintk("NFSD: find_stateid flags 0x%x\n",flags);
2480         if ((flags & LOCK_STATE) || (flags & RD_STATE) || (flags & WR_STATE)) {
2481                 hashval = stateid_hashval(st_id, f_id);
2482                 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
2483                         if ((local->st_stateid.si_stateownerid == st_id) &&
2484                             (local->st_stateid.si_fileid == f_id))
2485                                 return local;
2486                 }
2487         } 
2488         if ((flags & OPEN_STATE) || (flags & RD_STATE) || (flags & WR_STATE)) {
2489                 hashval = stateid_hashval(st_id, f_id);
2490                 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
2491                         if ((local->st_stateid.si_stateownerid == st_id) &&
2492                             (local->st_stateid.si_fileid == f_id))
2493                                 return local;
2494                 }
2495         } else
2496                 printk("NFSD: find_stateid: ERROR: no state flag\n");
2497         return NULL;
2498 }
2499
2500 static struct nfs4_delegation *
2501 find_delegation_stateid(struct inode *ino, stateid_t *stid)
2502 {
2503         struct nfs4_file *fp;
2504         struct nfs4_delegation *dl;
2505
2506         dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2507                     stid->si_boot, stid->si_stateownerid,
2508                     stid->si_fileid, stid->si_generation);
2509
2510         fp = find_file(ino);
2511         if (!fp)
2512                 return NULL;
2513         dl = find_delegation_file(fp, stid);
2514         put_nfs4_file(fp);
2515         return dl;
2516 }
2517
2518 /*
2519  * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2520  * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2521  * byte, because of sign extension problems.  Since NFSv4 calls for 64-bit
2522  * locking, this prevents us from being completely protocol-compliant.  The
2523  * real solution to this problem is to start using unsigned file offsets in
2524  * the VFS, but this is a very deep change!
2525  */
2526 static inline void
2527 nfs4_transform_lock_offset(struct file_lock *lock)
2528 {
2529         if (lock->fl_start < 0)
2530                 lock->fl_start = OFFSET_MAX;
2531         if (lock->fl_end < 0)
2532                 lock->fl_end = OFFSET_MAX;
2533 }
2534
2535 int
2536 nfs4_verify_lock_stateowner(struct nfs4_stateowner *sop, unsigned int hashval)
2537 {
2538         struct nfs4_stateowner *local = NULL;
2539         int status = 0;
2540                                 
2541         if (hashval >= LOCK_HASH_SIZE)
2542                 goto out;
2543         list_for_each_entry(local, &lock_ownerid_hashtbl[hashval], so_idhash) {
2544                 if (local == sop) {
2545                         status = 1;
2546                         goto out;
2547                 }
2548         }
2549 out:
2550         return status;
2551 }
2552
2553
2554 static inline void
2555 nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
2556 {
2557         struct nfs4_stateowner *sop = (struct nfs4_stateowner *) fl->fl_owner;
2558         unsigned int hval = lockownerid_hashval(sop->so_id);
2559
2560         deny->ld_sop = NULL;
2561         if (nfs4_verify_lock_stateowner(sop, hval)) {
2562                 kref_get(&sop->so_ref);
2563                 deny->ld_sop = sop;
2564                 deny->ld_clientid = sop->so_client->cl_clientid;
2565         }
2566         deny->ld_start = fl->fl_start;
2567         deny->ld_length = ~(u64)0;
2568         if (fl->fl_end != ~(u64)0)
2569                 deny->ld_length = fl->fl_end - fl->fl_start + 1;        
2570         deny->ld_type = NFS4_READ_LT;
2571         if (fl->fl_type != F_RDLCK)
2572                 deny->ld_type = NFS4_WRITE_LT;
2573 }
2574
2575 static struct nfs4_stateowner *
2576 find_lockstateowner(struct xdr_netobj *owner, clientid_t *clid)
2577 {
2578         struct nfs4_stateowner *local = NULL;
2579         int i;
2580
2581         for (i = 0; i < LOCK_HASH_SIZE; i++) {
2582                 list_for_each_entry(local, &lock_ownerid_hashtbl[i], so_idhash) {
2583                         if (!cmp_owner_str(local, owner, clid))
2584                                 continue;
2585                         return local;
2586                 }
2587         }
2588         return NULL;
2589 }
2590
2591 static struct nfs4_stateowner *
2592 find_lockstateowner_str(struct inode *inode, clientid_t *clid,
2593                 struct xdr_netobj *owner)
2594 {
2595         unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
2596         struct nfs4_stateowner *op;
2597
2598         list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
2599                 if (cmp_owner_str(op, owner, clid))
2600                         return op;
2601         }
2602         return NULL;
2603 }
2604
2605 /*
2606  * Alloc a lock owner structure.
2607  * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has 
2608  * occured. 
2609  *
2610  * strhashval = lock_ownerstr_hashval 
2611  * so_seqid = lock->lk_new_lock_seqid - 1: it gets bumped in encode 
2612  */
2613
2614 static struct nfs4_stateowner *
2615 alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
2616         struct nfs4_stateowner *sop;
2617         struct nfs4_replay *rp;
2618         unsigned int idhashval;
2619
2620         if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
2621                 return NULL;
2622         idhashval = lockownerid_hashval(current_ownerid);
2623         INIT_LIST_HEAD(&sop->so_idhash);
2624         INIT_LIST_HEAD(&sop->so_strhash);
2625         INIT_LIST_HEAD(&sop->so_perclient);
2626         INIT_LIST_HEAD(&sop->so_perfilestate);
2627         INIT_LIST_HEAD(&sop->so_perlockowner);
2628         INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
2629         sop->so_time = 0;
2630         list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
2631         list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
2632         list_add(&sop->so_perlockowner, &open_stp->st_perlockowner);
2633         sop->so_is_open_owner = 0;
2634         sop->so_id = current_ownerid++;
2635         sop->so_client = clp;
2636         sop->so_seqid = lock->lk_new_lock_seqid - 1;
2637         sop->so_confirmed = 1;
2638         rp = &sop->so_replay;
2639         rp->rp_status = NFSERR_SERVERFAULT;
2640         rp->rp_buflen = 0;
2641         rp->rp_buf = rp->rp_ibuf;
2642         return sop;
2643 }
2644
2645 struct nfs4_stateid *
2646 alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
2647 {
2648         struct nfs4_stateid *stp;
2649         unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2650
2651         stp = nfs4_alloc_stateid();
2652         if (stp == NULL)
2653                 goto out;
2654         INIT_LIST_HEAD(&stp->st_hash);
2655         INIT_LIST_HEAD(&stp->st_perfile);
2656         INIT_LIST_HEAD(&stp->st_perfilestate);
2657         INIT_LIST_HEAD(&stp->st_perlockowner); /* not used */
2658         list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
2659         list_add(&stp->st_perfile, &fp->fi_stateids);
2660         list_add(&stp->st_perfilestate, &sop->so_perfilestate);
2661         stp->st_stateowner = sop;
2662         get_nfs4_file(fp);
2663         stp->st_file = fp;
2664         stp->st_stateid.si_boot = boot_time;
2665         stp->st_stateid.si_stateownerid = sop->so_id;
2666         stp->st_stateid.si_fileid = fp->fi_id;
2667         stp->st_stateid.si_generation = 0;
2668         stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
2669         stp->st_access_bmap = open_stp->st_access_bmap;
2670         stp->st_deny_bmap = open_stp->st_deny_bmap;
2671
2672 out:
2673         return stp;
2674 }
2675
2676 int
2677 check_lock_length(u64 offset, u64 length)
2678 {
2679         return ((length == 0)  || ((length != ~(u64)0) &&
2680              LOFF_OVERFLOW(offset, length)));
2681 }
2682
2683 /*
2684  *  LOCK operation 
2685  */
2686 int
2687 nfsd4_lock(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_lock *lock)
2688 {
2689         struct nfs4_stateowner *lock_sop = NULL, *open_sop = NULL;
2690         struct nfs4_stateid *lock_stp;
2691         struct file *filp;
2692         struct file_lock file_lock;
2693         struct file_lock *conflock;
2694         int status = 0;
2695         unsigned int strhashval;
2696
2697         dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2698                 (long long) lock->lk_offset,
2699                 (long long) lock->lk_length);
2700
2701         if (nfs4_in_grace() && !lock->lk_reclaim)
2702                 return nfserr_grace;
2703         if (!nfs4_in_grace() && lock->lk_reclaim)
2704                 return nfserr_no_grace;
2705
2706         if (check_lock_length(lock->lk_offset, lock->lk_length))
2707                  return nfserr_inval;
2708
2709         nfs4_lock_state();
2710
2711         if (lock->lk_is_new) {
2712         /*
2713          * Client indicates that this is a new lockowner.
2714          * Use open owner and open stateid to create lock owner and lock 
2715          * stateid.
2716          */
2717                 struct nfs4_stateid *open_stp = NULL;
2718                 struct nfs4_file *fp;
2719                 
2720                 status = nfserr_stale_clientid;
2721                 if (STALE_CLIENTID(&lock->lk_new_clientid)) {
2722                         printk("NFSD: nfsd4_lock: clientid is stale!\n");
2723                         goto out;
2724                 }
2725
2726                 /* is the new lock seqid presented by the client zero? */
2727                 status = nfserr_bad_seqid;
2728                 if (lock->v.new.lock_seqid != 0)
2729                         goto out;
2730
2731                 /* validate and update open stateid and open seqid */
2732                 status = nfs4_preprocess_seqid_op(current_fh, 
2733                                         lock->lk_new_open_seqid,
2734                                         &lock->lk_new_open_stateid,
2735                                         CHECK_FH | OPEN_STATE,
2736                                         &open_sop, &open_stp,
2737                                         &lock->v.new.clientid);
2738                 if (status) {
2739                         if (lock->lk_reclaim)
2740                                 status = nfserr_reclaim_bad;
2741                         goto out;
2742                 }
2743                 /* create lockowner and lock stateid */
2744                 fp = open_stp->st_file;
2745                 strhashval = lock_ownerstr_hashval(fp->fi_inode, 
2746                                 open_sop->so_client->cl_clientid.cl_id, 
2747                                 &lock->v.new.owner);
2748                 /* 
2749                  * If we already have this lock owner, the client is in 
2750                  * error (or our bookeeping is wrong!) 
2751                  * for asking for a 'new lock'.
2752                  */
2753                 status = nfserr_bad_stateid;
2754                 lock_sop = find_lockstateowner(&lock->v.new.owner,
2755                                                 &lock->v.new.clientid);
2756                 if (lock_sop)
2757                         goto out;
2758                 status = nfserr_resource;
2759                 if (!(lock->lk_stateowner = alloc_init_lock_stateowner(strhashval, open_sop->so_client, open_stp, lock)))
2760                         goto out;
2761                 if ((lock_stp = alloc_init_lock_stateid(lock->lk_stateowner, 
2762                                                 fp, open_stp)) == NULL) {
2763                         release_stateowner(lock->lk_stateowner);
2764                         lock->lk_stateowner = NULL;
2765                         goto out;
2766                 }
2767                 /* bump the open seqid used to create the lock */
2768                 open_sop->so_seqid++;
2769         } else {
2770                 /* lock (lock owner + lock stateid) already exists */
2771                 status = nfs4_preprocess_seqid_op(current_fh,
2772                                        lock->lk_old_lock_seqid, 
2773                                        &lock->lk_old_lock_stateid, 
2774                                        CHECK_FH | LOCK_STATE, 
2775                                        &lock->lk_stateowner, &lock_stp, NULL);
2776                 if (status)
2777                         goto out;
2778         }
2779         /* lock->lk_stateowner and lock_stp have been created or found */
2780         filp = lock_stp->st_vfs_file;
2781
2782         if ((status = fh_verify(rqstp, current_fh, S_IFREG, MAY_LOCK))) {
2783                 printk("NFSD: nfsd4_lock: permission denied!\n");
2784                 goto out;
2785         }
2786
2787         locks_init_lock(&file_lock);
2788         switch (lock->lk_type) {
2789                 case NFS4_READ_LT:
2790                 case NFS4_READW_LT:
2791                         file_lock.fl_type = F_RDLCK;
2792                 break;
2793                 case NFS4_WRITE_LT:
2794                 case NFS4_WRITEW_LT:
2795                         file_lock.fl_type = F_WRLCK;
2796                 break;
2797                 default:
2798                         status = nfserr_inval;
2799                 goto out;
2800         }
2801         file_lock.fl_owner = (fl_owner_t) lock->lk_stateowner;
2802         file_lock.fl_pid = current->tgid;
2803         file_lock.fl_file = filp;
2804         file_lock.fl_flags = FL_POSIX;
2805
2806         file_lock.fl_start = lock->lk_offset;
2807         if ((lock->lk_length == ~(u64)0) || 
2808                         LOFF_OVERFLOW(lock->lk_offset, lock->lk_length))
2809                 file_lock.fl_end = ~(u64)0;
2810         else
2811                 file_lock.fl_end = lock->lk_offset + lock->lk_length - 1;
2812         nfs4_transform_lock_offset(&file_lock);
2813
2814         /*
2815         * Try to lock the file in the VFS.
2816         * Note: locks.c uses the BKL to protect the inode's lock list.
2817         */
2818
2819         status = posix_lock_file(filp, &file_lock);
2820         if (file_lock.fl_ops && file_lock.fl_ops->fl_release_private)
2821                 file_lock.fl_ops->fl_release_private(&file_lock);
2822         dprintk("NFSD: nfsd4_lock: posix_lock_file status %d\n",status);
2823         switch (-status) {
2824         case 0: /* success! */
2825                 update_stateid(&lock_stp->st_stateid);
2826                 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid, 
2827                                 sizeof(stateid_t));
2828                 goto out;
2829         case (EAGAIN):
2830                 goto conflicting_lock;
2831         case (EDEADLK):
2832                 status = nfserr_deadlock;
2833         default:        
2834                 dprintk("NFSD: nfsd4_lock: posix_lock_file() failed! status %d\n",status);
2835                 goto out_destroy_new_stateid;
2836         }
2837
2838 conflicting_lock:
2839         dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2840         status = nfserr_denied;
2841         /* XXX There is a race here. Future patch needed to provide 
2842          * an atomic posix_lock_and_test_file
2843          */
2844         if (!(conflock = posix_test_lock(filp, &file_lock))) {
2845                 status = nfserr_serverfault;
2846                 goto out;
2847         }
2848         nfs4_set_lock_denied(conflock, &lock->lk_denied);
2849
2850 out_destroy_new_stateid:
2851         if (lock->lk_is_new) {
2852                 dprintk("NFSD: nfsd4_lock: destroy new stateid!\n");
2853         /*
2854         * An error encountered after instantiation of the new
2855         * stateid has forced us to destroy it.
2856         */
2857                 if (!seqid_mutating_err(status))
2858                         open_sop->so_seqid--;
2859
2860                 release_state_owner(lock_stp, LOCK_STATE);
2861         }
2862 out:
2863         if (lock->lk_stateowner)
2864                 nfs4_get_stateowner(lock->lk_stateowner);
2865         nfs4_unlock_state();
2866         return status;
2867 }
2868
2869 /*
2870  * LOCKT operation
2871  */
2872 int
2873 nfsd4_lockt(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_lockt *lockt)
2874 {
2875         struct inode *inode;
2876         struct file file;
2877         struct file_lock file_lock;
2878         struct file_lock *conflicting_lock;
2879         int status;
2880
2881         if (nfs4_in_grace())
2882                 return nfserr_grace;
2883
2884         if (check_lock_length(lockt->lt_offset, lockt->lt_length))
2885                  return nfserr_inval;
2886
2887         lockt->lt_stateowner = NULL;
2888         nfs4_lock_state();
2889
2890         status = nfserr_stale_clientid;
2891         if (STALE_CLIENTID(&lockt->lt_clientid)) {
2892                 printk("NFSD: nfsd4_lockt: clientid is stale!\n");
2893                 goto out;
2894         }
2895
2896         if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0))) {
2897                 printk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
2898                 if (status == nfserr_symlink)
2899                         status = nfserr_inval;
2900                 goto out;
2901         }
2902
2903         inode = current_fh->fh_dentry->d_inode;
2904         locks_init_lock(&file_lock);
2905         switch (lockt->lt_type) {
2906                 case NFS4_READ_LT:
2907                 case NFS4_READW_LT:
2908                         file_lock.fl_type = F_RDLCK;
2909                 break;
2910                 case NFS4_WRITE_LT:
2911                 case NFS4_WRITEW_LT:
2912                         file_lock.fl_type = F_WRLCK;
2913                 break;
2914                 default:
2915                         printk("NFSD: nfs4_lockt: bad lock type!\n");
2916                         status = nfserr_inval;
2917                 goto out;
2918         }
2919
2920         lockt->lt_stateowner = find_lockstateowner_str(inode,
2921                         &lockt->lt_clientid, &lockt->lt_owner);
2922         if (lockt->lt_stateowner)
2923                 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
2924         file_lock.fl_pid = current->tgid;
2925         file_lock.fl_flags = FL_POSIX;
2926
2927         file_lock.fl_start = lockt->lt_offset;
2928         if ((lockt->lt_length == ~(u64)0) || LOFF_OVERFLOW(lockt->lt_offset, lockt->lt_length))
2929                 file_lock.fl_end = ~(u64)0;
2930         else
2931                 file_lock.fl_end = lockt->lt_offset + lockt->lt_length - 1;
2932
2933         nfs4_transform_lock_offset(&file_lock);
2934
2935         /* posix_test_lock uses the struct file _only_ to resolve the inode.
2936          * since LOCKT doesn't require an OPEN, and therefore a struct
2937          * file may not exist, pass posix_test_lock a struct file with
2938          * only the dentry:inode set.
2939          */
2940         memset(&file, 0, sizeof (struct file));
2941         file.f_dentry = current_fh->fh_dentry;
2942
2943         status = nfs_ok;
2944         conflicting_lock = posix_test_lock(&file, &file_lock);
2945         if (conflicting_lock) {
2946                 status = nfserr_denied;
2947                 nfs4_set_lock_denied(conflicting_lock, &lockt->lt_denied);
2948         }
2949 out:
2950         nfs4_unlock_state();
2951         return status;
2952 }
2953
2954 int
2955 nfsd4_locku(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_locku *locku)
2956 {
2957         struct nfs4_stateid *stp;
2958         struct file *filp = NULL;
2959         struct file_lock file_lock;
2960         int status;
2961                                                         
2962         dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2963                 (long long) locku->lu_offset,
2964                 (long long) locku->lu_length);
2965
2966         if (check_lock_length(locku->lu_offset, locku->lu_length))
2967                  return nfserr_inval;
2968
2969         nfs4_lock_state();
2970                                                                                 
2971         if ((status = nfs4_preprocess_seqid_op(current_fh, 
2972                                         locku->lu_seqid, 
2973                                         &locku->lu_stateid, 
2974                                         CHECK_FH | LOCK_STATE, 
2975                                         &locku->lu_stateowner, &stp, NULL)))
2976                 goto out;
2977
2978         filp = stp->st_vfs_file;
2979         BUG_ON(!filp);
2980         locks_init_lock(&file_lock);
2981         file_lock.fl_type = F_UNLCK;
2982         file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
2983         file_lock.fl_pid = current->tgid;
2984         file_lock.fl_file = filp;
2985         file_lock.fl_flags = FL_POSIX; 
2986         file_lock.fl_start = locku->lu_offset;
2987
2988         if ((locku->lu_length == ~(u64)0) || LOFF_OVERFLOW(locku->lu_offset, locku->lu_length))
2989                 file_lock.fl_end = ~(u64)0;
2990         else
2991                 file_lock.fl_end = locku->lu_offset + locku->lu_length - 1;
2992         nfs4_transform_lock_offset(&file_lock);
2993
2994         /*
2995         *  Try to unlock the file in the VFS.
2996         */
2997         status = posix_lock_file(filp, &file_lock); 
2998         if (file_lock.fl_ops && file_lock.fl_ops->fl_release_private)
2999                 file_lock.fl_ops->fl_release_private(&file_lock);
3000         if (status) {
3001                 printk("NFSD: nfs4_locku: posix_lock_file failed!\n");
3002                 goto out_nfserr;
3003         }
3004         /*
3005         * OK, unlock succeeded; the only thing left to do is update the stateid.
3006         */
3007         update_stateid(&stp->st_stateid);
3008         memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
3009
3010 out:
3011         if (locku->lu_stateowner)
3012                 nfs4_get_stateowner(locku->lu_stateowner);
3013         nfs4_unlock_state();
3014         return status;
3015
3016 out_nfserr:
3017         status = nfserrno(status);
3018         goto out;
3019 }
3020
3021 /*
3022  * returns
3023  *      1: locks held by lockowner
3024  *      0: no locks held by lockowner
3025  */
3026 static int
3027 check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
3028 {
3029         struct file_lock **flpp;
3030         struct inode *inode = filp->f_dentry->d_inode;
3031         int status = 0;
3032
3033         lock_kernel();
3034         for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
3035                 if ((*flpp)->fl_owner == (fl_owner_t)lowner)
3036                         status = 1;
3037                         goto out;
3038         }
3039 out:
3040         unlock_kernel();
3041         return status;
3042 }
3043
3044 int
3045 nfsd4_release_lockowner(struct svc_rqst *rqstp, struct nfsd4_release_lockowner *rlockowner)
3046 {
3047         clientid_t *clid = &rlockowner->rl_clientid;
3048         struct nfs4_stateowner *local = NULL;
3049         struct xdr_netobj *owner = &rlockowner->rl_owner;
3050         int status;
3051
3052         dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3053                 clid->cl_boot, clid->cl_id);
3054
3055         /* XXX check for lease expiration */
3056
3057         status = nfserr_stale_clientid;
3058         if (STALE_CLIENTID(clid)) {
3059                 printk("NFSD: nfsd4_release_lockowner: clientid is stale!\n");
3060                 return status;
3061         }
3062
3063         nfs4_lock_state();
3064
3065         status = nfs_ok;
3066         local = find_lockstateowner(owner, clid);
3067         if (local) {
3068                 struct nfs4_stateid *stp;
3069
3070                 /* check for any locks held by any stateid
3071                  * associated with the (lock) stateowner */
3072                 status = nfserr_locks_held;
3073                 list_for_each_entry(stp, &local->so_perfilestate,
3074                                 st_perfilestate) {
3075                         if (check_for_locks(stp->st_vfs_file, local))
3076                                 goto out;
3077                 }
3078                 /* no locks held by (lock) stateowner */
3079                 status = nfs_ok;
3080                 release_stateowner(local);
3081         }
3082 out:
3083         nfs4_unlock_state();
3084         return status;
3085 }
3086
3087 static inline struct nfs4_client_reclaim *
3088 alloc_reclaim(int namelen)
3089 {
3090         struct nfs4_client_reclaim *crp = NULL;
3091
3092         crp = kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
3093         if (!crp)
3094                 return NULL;
3095         crp->cr_name.data = kmalloc(namelen, GFP_KERNEL);
3096         if (!crp->cr_name.data) {
3097                 kfree(crp);
3098                 return NULL;
3099         }
3100         return crp;
3101 }
3102
3103 /*
3104  * failure => all reset bets are off, nfserr_no_grace...
3105  */
3106 static int
3107 nfs4_client_to_reclaim(char *name, int namlen)
3108 {
3109         unsigned int strhashval;
3110         struct nfs4_client_reclaim *crp = NULL;
3111
3112         dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", namlen, name);
3113         crp = alloc_reclaim(namlen);
3114         if (!crp)
3115                 return 0;
3116         strhashval = clientstr_hashval(name, namlen);
3117         INIT_LIST_HEAD(&crp->cr_strhash);
3118         list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
3119         memcpy(crp->cr_name.data, name, namlen);
3120         crp->cr_name.len = namlen;
3121         reclaim_str_hashtbl_size++;
3122         return 1;
3123 }
3124
3125 static void
3126 nfs4_release_reclaim(void)
3127 {
3128         struct nfs4_client_reclaim *crp = NULL;
3129         int i;
3130
3131         BUG_ON(!nfs4_reclaim_init);
3132         for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3133                 while (!list_empty(&reclaim_str_hashtbl[i])) {
3134                         crp = list_entry(reclaim_str_hashtbl[i].next,
3135                                         struct nfs4_client_reclaim, cr_strhash);
3136                         list_del(&crp->cr_strhash);
3137                         kfree(crp->cr_name.data);
3138                         kfree(crp);
3139                         reclaim_str_hashtbl_size--;
3140                 }
3141         }
3142         BUG_ON(reclaim_str_hashtbl_size);
3143 }
3144
3145 /*
3146  * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
3147 struct nfs4_client_reclaim *
3148 nfs4_find_reclaim_client(clientid_t *clid)
3149 {
3150         unsigned int strhashval;
3151         struct nfs4_client *clp;
3152         struct nfs4_client_reclaim *crp = NULL;
3153
3154
3155         /* find clientid in conf_id_hashtbl */
3156         clp = find_confirmed_client(clid);
3157         if (clp == NULL)
3158                 return NULL;
3159
3160         dprintk("NFSD: nfs4_find_reclaim_client for %.*s\n",
3161                             clp->cl_name.len, clp->cl_name.data);
3162
3163         /* find clp->cl_name in reclaim_str_hashtbl */
3164         strhashval = clientstr_hashval(clp->cl_name.data, clp->cl_name.len);
3165         list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
3166                 if (cmp_name(&crp->cr_name, &clp->cl_name)) {
3167                         return crp;
3168                 }
3169         }
3170         return NULL;
3171 }
3172
3173 /*
3174 * Called from OPEN. Look for clientid in reclaim list.
3175 */
3176 int
3177 nfs4_check_open_reclaim(clientid_t *clid)
3178 {
3179         return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
3180 }
3181
3182 /* initialization to perform at module load time: */
3183
3184 void
3185 nfs4_state_init(void)
3186 {
3187         int i;
3188
3189         for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3190                 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
3191                 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
3192                 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
3193                 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
3194         }
3195         for (i = 0; i < FILE_HASH_SIZE; i++) {
3196                 INIT_LIST_HEAD(&file_hashtbl[i]);
3197         }
3198         for (i = 0; i < OWNER_HASH_SIZE; i++) {
3199                 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
3200                 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
3201         }
3202         for (i = 0; i < STATEID_HASH_SIZE; i++) {
3203                 INIT_LIST_HEAD(&stateid_hashtbl[i]);
3204                 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
3205         }
3206         for (i = 0; i < LOCK_HASH_SIZE; i++) {
3207                 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
3208                 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
3209         }
3210         memset(&onestateid, ~0, sizeof(stateid_t));
3211         INIT_LIST_HEAD(&close_lru);
3212         INIT_LIST_HEAD(&client_lru);
3213         INIT_LIST_HEAD(&del_recall_lru);
3214         for (i = 0; i < CLIENT_HASH_SIZE; i++)
3215                 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
3216         reclaim_str_hashtbl_size = 0;
3217         nfs4_reclaim_init = 1;
3218 }
3219
3220 /* initialization to perform when the nfsd service is started: */
3221
3222 static void
3223 __nfs4_state_start(void)
3224 {
3225         time_t grace_time;
3226
3227         boot_time = get_seconds();
3228         grace_time = max(user_lease_time, lease_time);
3229         lease_time = user_lease_time;
3230         printk("NFSD: starting %ld-second grace period\n", grace_time);
3231         grace_end = boot_time + grace_time;
3232         laundry_wq = create_singlethread_workqueue("nfsd4");
3233         queue_delayed_work(laundry_wq, &laundromat_work, NFSD_LEASE_TIME*HZ);
3234 }
3235
3236 int
3237 nfs4_state_start(void)
3238 {
3239         int status;
3240
3241         if (nfs4_init)
3242                 return 0;
3243         status = nfsd4_init_slabs();
3244         if (status)
3245                 return status;
3246         __nfs4_state_start();
3247         nfs4_init = 1;
3248         return 0;
3249 }
3250
3251 int
3252 nfs4_in_grace(void)
3253 {
3254         return get_seconds() < grace_end;
3255 }
3256
3257 void
3258 set_no_grace(void)
3259 {
3260         printk("NFSD: ERROR in reboot recovery.  State reclaims will fail.\n");
3261         grace_end = get_seconds();
3262 }
3263
3264 time_t
3265 nfs4_lease_time(void)
3266 {
3267         return lease_time;
3268 }
3269
3270 static void
3271 __nfs4_state_shutdown(void)
3272 {
3273         int i;
3274         struct nfs4_client *clp = NULL;
3275         struct nfs4_delegation *dp = NULL;
3276         struct nfs4_stateowner *sop = NULL;
3277         struct list_head *pos, *next, reaplist;
3278
3279         list_for_each_safe(pos, next, &close_lru) {
3280                 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
3281                 list_del(&sop->so_close_lru);
3282                 nfs4_put_stateowner(sop);
3283         }
3284
3285         for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3286                 while (!list_empty(&conf_id_hashtbl[i])) {
3287                         clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
3288                         expire_client(clp);
3289                 }
3290                 while (!list_empty(&unconf_str_hashtbl[i])) {
3291                         clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
3292                         expire_client(clp);
3293                 }
3294         }
3295         INIT_LIST_HEAD(&reaplist);
3296         spin_lock(&recall_lock);
3297         list_for_each_safe(pos, next, &del_recall_lru) {
3298                 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3299                 list_move(&dp->dl_recall_lru, &reaplist);
3300         }
3301         spin_unlock(&recall_lock);
3302         list_for_each_safe(pos, next, &reaplist) {
3303                 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3304                 list_del_init(&dp->dl_recall_lru);
3305                 unhash_delegation(dp);
3306         }
3307
3308         cancel_delayed_work(&laundromat_work);
3309         flush_workqueue(laundry_wq);
3310         destroy_workqueue(laundry_wq);
3311         nfs4_init = 0;
3312 }
3313
3314 void
3315 nfs4_state_shutdown(void)
3316 {
3317         nfs4_lock_state();
3318         nfs4_release_reclaim();
3319         __nfs4_state_shutdown();
3320         nfsd4_free_slabs();
3321         nfs4_unlock_state();
3322 }
3323
3324 /*
3325  * Called when leasetime is changed.
3326  *
3327  * The only way the protocol gives us to handle on-the-fly lease changes is to
3328  * simulate a reboot.  Instead of doing that, we just wait till the next time
3329  * we start to register any changes in lease time.  If the administrator
3330  * really wants to change the lease time *now*, they can go ahead and bring
3331  * nfsd down and then back up again after changing the lease time.
3332  */
3333 void
3334 nfs4_reset_lease(time_t leasetime)
3335 {
3336         lock_kernel();
3337         user_lease_time = leasetime;
3338         unlock_kernel();
3339 }