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