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