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