2 * linux/fs/nfsd/nfs4state.c
4 * Copyright (c) 2001 The Regents of the University of Michigan.
7 * Kendrick Smith <kmsmith@umich.edu>
8 * Andy Adamson <kandros@umich.edu>
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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.
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.
37 #include <linux/param.h>
38 #include <linux/major.h>
39 #include <linux/slab.h>
41 #include <linux/sunrpc/svc.h>
42 #include <linux/nfsd/nfsd.h>
43 #include <linux/nfsd/cache.h>
44 #include <linux/mount.h>
45 #include <linux/workqueue.h>
46 #include <linux/smp_lock.h>
47 #include <linux/kthread.h>
48 #include <linux/nfs4.h>
49 #include <linux/nfsd/state.h>
50 #include <linux/nfsd/xdr4.h>
52 #define NFSDDBG_FACILITY NFSDDBG_PROC
55 static time_t lease_time = 90; /* default lease time */
56 static time_t user_lease_time = 90;
58 static time_t grace_end = 0;
59 static u32 current_clientid = 1;
60 static u32 current_ownerid = 1;
61 static u32 current_fileid = 1;
62 static u32 current_delegid = 1;
64 stateid_t zerostateid; /* bits all 0 */
65 stateid_t onestateid; /* bits all 1 */
67 /* forward declarations */
68 struct nfs4_stateid * find_stateid(stateid_t *stid, int flags);
69 static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
70 static void release_stateid_lockowners(struct nfs4_stateid *open_stp);
75 * protects clientid_hashtbl[], clientstr_hashtbl[],
76 * unconfstr_hashtbl[], uncofid_hashtbl[].
78 static DECLARE_MUTEX(client_sema);
80 kmem_cache_t *stateowner_slab = NULL;
81 kmem_cache_t *file_slab = NULL;
82 kmem_cache_t *stateid_slab = NULL;
83 kmem_cache_t *deleg_slab = NULL;
92 nfs4_unlock_state(void)
98 opaque_hashval(const void *ptr, int nbytes)
100 unsigned char *cptr = (unsigned char *) ptr;
110 /* forward declarations */
111 static void release_stateowner(struct nfs4_stateowner *sop);
112 static void release_stateid(struct nfs4_stateid *stp, int flags);
118 /* recall_lock protects the del_recall_lru */
119 spinlock_t recall_lock = SPIN_LOCK_UNLOCKED;
120 static struct list_head del_recall_lru;
123 free_nfs4_file(struct kref *kref)
125 struct nfs4_file *fp = container_of(kref, struct nfs4_file, fi_ref);
126 list_del(&fp->fi_hash);
128 kmem_cache_free(file_slab, fp);
132 put_nfs4_file(struct nfs4_file *fi)
134 kref_put(&fi->fi_ref, free_nfs4_file);
138 get_nfs4_file(struct nfs4_file *fi)
140 kref_get(&fi->fi_ref);
143 static struct nfs4_delegation *
144 alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
146 struct nfs4_delegation *dp;
147 struct nfs4_file *fp = stp->st_file;
148 struct nfs4_callback *cb = &stp->st_stateowner->so_client->cl_callback;
150 dprintk("NFSD alloc_init_deleg\n");
151 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
154 INIT_LIST_HEAD(&dp->dl_del_perfile);
155 INIT_LIST_HEAD(&dp->dl_del_perclnt);
156 INIT_LIST_HEAD(&dp->dl_recall_lru);
161 get_file(stp->st_vfs_file);
162 dp->dl_vfs_file = stp->st_vfs_file;
164 dp->dl_recall.cbr_dp = NULL;
165 dp->dl_recall.cbr_ident = cb->cb_ident;
166 dp->dl_recall.cbr_trunc = 0;
167 dp->dl_stateid.si_boot = boot_time;
168 dp->dl_stateid.si_stateownerid = current_delegid++;
169 dp->dl_stateid.si_fileid = 0;
170 dp->dl_stateid.si_generation = 0;
171 dp->dl_fhlen = current_fh->fh_handle.fh_size;
172 memcpy(dp->dl_fhval, ¤t_fh->fh_handle.fh_base,
173 current_fh->fh_handle.fh_size);
175 atomic_set(&dp->dl_count, 1);
176 list_add(&dp->dl_del_perfile, &fp->fi_delegations);
177 list_add(&dp->dl_del_perclnt, &clp->cl_del_perclnt);
182 nfs4_put_delegation(struct nfs4_delegation *dp)
184 if (atomic_dec_and_test(&dp->dl_count)) {
185 dprintk("NFSD: freeing dp %p\n",dp);
186 put_nfs4_file(dp->dl_file);
187 kmem_cache_free(deleg_slab, dp);
191 /* Remove the associated file_lock first, then remove the delegation.
192 * lease_modify() is called to remove the FS_LEASE file_lock from
193 * the i_flock list, eventually calling nfsd's lock_manager
194 * fl_release_callback.
197 nfs4_close_delegation(struct nfs4_delegation *dp)
199 struct file *filp = dp->dl_vfs_file;
201 dprintk("NFSD: close_delegation dp %p\n",dp);
202 dp->dl_vfs_file = NULL;
203 /* The following nfsd_close may not actually close the file,
204 * but we want to remove the lease in any case. */
206 setlease(filp, F_UNLCK, &dp->dl_flock);
210 /* Called under the state lock. */
212 unhash_delegation(struct nfs4_delegation *dp)
214 list_del_init(&dp->dl_del_perfile);
215 list_del_init(&dp->dl_del_perclnt);
216 spin_lock(&recall_lock);
217 list_del_init(&dp->dl_recall_lru);
218 spin_unlock(&recall_lock);
219 nfs4_close_delegation(dp);
220 nfs4_put_delegation(dp);
227 /* Hash tables for nfs4_clientid state */
228 #define CLIENT_HASH_BITS 4
229 #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
230 #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
232 #define clientid_hashval(id) \
233 ((id) & CLIENT_HASH_MASK)
234 #define clientstr_hashval(name, namelen) \
235 (opaque_hashval((name), (namelen)) & CLIENT_HASH_MASK)
237 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
238 * used in reboot/reset lease grace period processing
240 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
241 * setclientid_confirmed info.
243 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
246 * client_lru holds client queue ordered by nfs4_client.cl_time
249 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
250 * for last close replay.
252 static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
253 static int reclaim_str_hashtbl_size = 0;
254 static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
255 static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
256 static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
257 static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
258 static struct list_head client_lru;
259 static struct list_head close_lru;
262 renew_client(struct nfs4_client *clp)
265 * Move client to the end to the LRU list.
267 dprintk("renewing client (clientid %08x/%08x)\n",
268 clp->cl_clientid.cl_boot,
269 clp->cl_clientid.cl_id);
270 list_move_tail(&clp->cl_lru, &client_lru);
271 clp->cl_time = get_seconds();
274 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
276 STALE_CLIENTID(clientid_t *clid)
278 if (clid->cl_boot == boot_time)
280 dprintk("NFSD stale clientid (%08x/%08x)\n",
281 clid->cl_boot, clid->cl_id);
286 * XXX Should we use a slab cache ?
287 * This type of memory management is somewhat inefficient, but we use it
288 * anyway since SETCLIENTID is not a common operation.
290 static inline struct nfs4_client *
291 alloc_client(struct xdr_netobj name)
293 struct nfs4_client *clp;
295 if ((clp = kmalloc(sizeof(struct nfs4_client), GFP_KERNEL))!= NULL) {
296 memset(clp, 0, sizeof(*clp));
297 if ((clp->cl_name.data = kmalloc(name.len, GFP_KERNEL)) != NULL) {
298 memcpy(clp->cl_name.data, name.data, name.len);
299 clp->cl_name.len = name.len;
310 free_client(struct nfs4_client *clp)
312 if (clp->cl_cred.cr_group_info)
313 put_group_info(clp->cl_cred.cr_group_info);
314 kfree(clp->cl_name.data);
319 put_nfs4_client(struct nfs4_client *clp)
321 if (atomic_dec_and_test(&clp->cl_count))
326 expire_client(struct nfs4_client *clp)
328 struct nfs4_stateowner *sop;
329 struct nfs4_delegation *dp;
330 struct nfs4_callback *cb = &clp->cl_callback;
331 struct rpc_clnt *clnt = clp->cl_callback.cb_client;
332 struct list_head reaplist;
334 dprintk("NFSD: expire_client cl_count %d\n",
335 atomic_read(&clp->cl_count));
337 /* shutdown rpc client, ending any outstanding recall rpcs */
338 if (atomic_read(&cb->cb_set) == 1 && clnt) {
339 rpc_shutdown_client(clnt);
340 clnt = clp->cl_callback.cb_client = NULL;
343 INIT_LIST_HEAD(&reaplist);
344 spin_lock(&recall_lock);
345 while (!list_empty(&clp->cl_del_perclnt)) {
346 dp = list_entry(clp->cl_del_perclnt.next, struct nfs4_delegation, dl_del_perclnt);
347 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
349 list_del_init(&dp->dl_del_perclnt);
350 list_move(&dp->dl_recall_lru, &reaplist);
352 spin_unlock(&recall_lock);
353 while (!list_empty(&reaplist)) {
354 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
355 list_del_init(&dp->dl_recall_lru);
356 unhash_delegation(dp);
358 list_del(&clp->cl_idhash);
359 list_del(&clp->cl_strhash);
360 list_del(&clp->cl_lru);
361 while (!list_empty(&clp->cl_perclient)) {
362 sop = list_entry(clp->cl_perclient.next, struct nfs4_stateowner, so_perclient);
363 release_stateowner(sop);
365 put_nfs4_client(clp);
368 static struct nfs4_client *
369 create_client(struct xdr_netobj name) {
370 struct nfs4_client *clp;
372 if (!(clp = alloc_client(name)))
374 atomic_set(&clp->cl_count, 1);
375 atomic_set(&clp->cl_callback.cb_set, 0);
376 clp->cl_callback.cb_parsed = 0;
377 INIT_LIST_HEAD(&clp->cl_idhash);
378 INIT_LIST_HEAD(&clp->cl_strhash);
379 INIT_LIST_HEAD(&clp->cl_perclient);
380 INIT_LIST_HEAD(&clp->cl_del_perclnt);
381 INIT_LIST_HEAD(&clp->cl_lru);
387 copy_verf(struct nfs4_client *target, nfs4_verifier *source) {
388 memcpy(target->cl_verifier.data, source->data, sizeof(target->cl_verifier.data));
392 copy_clid(struct nfs4_client *target, struct nfs4_client *source) {
393 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
394 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
398 copy_cred(struct svc_cred *target, struct svc_cred *source) {
400 target->cr_uid = source->cr_uid;
401 target->cr_gid = source->cr_gid;
402 target->cr_group_info = source->cr_group_info;
403 get_group_info(target->cr_group_info);
407 cmp_name(struct xdr_netobj *n1, struct xdr_netobj *n2) {
410 return((n1->len == n2->len) && !memcmp(n1->data, n2->data, n2->len));
414 cmp_verf(nfs4_verifier *v1, nfs4_verifier *v2) {
415 return(!memcmp(v1->data,v2->data,sizeof(v1->data)));
419 cmp_clid(clientid_t * cl1, clientid_t * cl2) {
420 return((cl1->cl_boot == cl2->cl_boot) &&
421 (cl1->cl_id == cl2->cl_id));
424 /* XXX what about NGROUP */
426 cmp_creds(struct svc_cred *cr1, struct svc_cred *cr2){
427 return(cr1->cr_uid == cr2->cr_uid);
432 gen_clid(struct nfs4_client *clp) {
433 clp->cl_clientid.cl_boot = boot_time;
434 clp->cl_clientid.cl_id = current_clientid++;
438 gen_confirm(struct nfs4_client *clp) {
443 p = (u32 *)clp->cl_confirm.data;
449 check_name(struct xdr_netobj name) {
453 if (name.len > NFS4_OPAQUE_LIMIT) {
454 printk("NFSD: check_name: name too long(%d)!\n", name.len);
461 add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
463 unsigned int idhashval;
465 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
466 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
467 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
468 list_add_tail(&clp->cl_lru, &client_lru);
469 clp->cl_time = get_seconds();
473 move_to_confirmed(struct nfs4_client *clp)
475 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
476 unsigned int strhashval;
478 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
479 list_del_init(&clp->cl_strhash);
480 list_del_init(&clp->cl_idhash);
481 list_add(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
482 strhashval = clientstr_hashval(clp->cl_name.data,
484 list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
488 static struct nfs4_client *
489 find_confirmed_client(clientid_t *clid)
491 struct nfs4_client *clp;
492 unsigned int idhashval = clientid_hashval(clid->cl_id);
494 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
495 if (cmp_clid(&clp->cl_clientid, clid))
501 static struct nfs4_client *
502 find_unconfirmed_client(clientid_t *clid)
504 struct nfs4_client *clp;
505 unsigned int idhashval = clientid_hashval(clid->cl_id);
507 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
508 if (cmp_clid(&clp->cl_clientid, clid))
514 /* a helper function for parse_callback */
516 parse_octet(unsigned int *lenp, char **addrp)
518 unsigned int len = *lenp;
530 if ((c < '0') || (c > '9')) {
536 n = (n * 10) + (c - '0');
547 /* parse and set the setclientid ipv4 callback address */
549 parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp)
554 u32 addrlen = addr_len;
555 char *addr = addr_val;
560 for(i = 4; i > 0 ; i--) {
561 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
564 cbaddr |= (temp << shift);
572 for(i = 2; i > 0 ; i--) {
573 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
576 cbport |= (temp << shift);
585 gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se)
587 struct nfs4_callback *cb = &clp->cl_callback;
589 /* Currently, we only support tcp for the callback channel */
590 if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3))
593 if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val,
594 &cb->cb_addr, &cb->cb_port)))
596 cb->cb_prog = se->se_callback_prog;
597 cb->cb_ident = se->se_callback_ident;
601 printk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
602 "will not receive delegations\n",
603 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
610 * RFC 3010 has a complex implmentation description of processing a
611 * SETCLIENTID request consisting of 5 bullets, labeled as
612 * CASE0 - CASE4 below.
615 * callback information will be processed in a future patch
617 * an unconfirmed record is added when:
618 * NORMAL (part of CASE 4): there is no confirmed nor unconfirmed record.
619 * CASE 1: confirmed record found with matching name, principal,
620 * verifier, and clientid.
621 * CASE 2: confirmed record found with matching name, principal,
622 * and there is no unconfirmed record with matching
625 * an unconfirmed record is replaced when:
626 * CASE 3: confirmed record found with matching name, principal,
627 * and an unconfirmed record is found with matching
628 * name, principal, and with clientid and
629 * confirm that does not match the confirmed record.
630 * CASE 4: there is no confirmed record with matching name and
631 * principal. there is an unconfirmed record with
632 * matching name, principal.
634 * an unconfirmed record is deleted when:
635 * CASE 1: an unconfirmed record that matches input name, verifier,
636 * and confirmed clientid.
637 * CASE 4: any unconfirmed records with matching name and principal
638 * that exist after an unconfirmed record has been replaced
639 * as described above.
643 nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_setclientid *setclid)
645 u32 ip_addr = rqstp->rq_addr.sin_addr.s_addr;
646 struct xdr_netobj clname = {
647 .len = setclid->se_namelen,
648 .data = setclid->se_name,
650 nfs4_verifier clverifier = setclid->se_verf;
651 unsigned int strhashval;
652 struct nfs4_client * conf, * unconf, * new, * clp;
655 status = nfserr_inval;
656 if (!check_name(clname))
660 * XXX The Duplicate Request Cache (DRC) has been checked (??)
661 * We get here on a DRC miss.
664 strhashval = clientstr_hashval(clname.data, clname.len);
668 list_for_each_entry(clp, &conf_str_hashtbl[strhashval], cl_strhash) {
669 if (!cmp_name(&clp->cl_name, &clname))
673 * clname match, confirmed, different principal
674 * or different ip_address
676 status = nfserr_clid_inuse;
677 if (!cmp_creds(&clp->cl_cred,&rqstp->rq_cred)
678 || clp->cl_addr != ip_addr) {
679 printk("NFSD: setclientid: string in use by client"
680 "(clientid %08x/%08x)\n",
681 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
688 list_for_each_entry(clp, &unconf_str_hashtbl[strhashval], cl_strhash) {
689 if (!cmp_name(&clp->cl_name, &clname))
691 /* cl_name match from a previous SETCLIENTID operation */
695 status = nfserr_resource;
699 * placed first, because it is the normal case.
702 expire_client(unconf);
703 if (!(new = create_client(clname)))
705 copy_verf(new, &clverifier);
706 new->cl_addr = ip_addr;
707 copy_cred(&new->cl_cred,&rqstp->rq_cred);
710 gen_callback(new, setclid);
711 add_to_unconfirmed(new, strhashval);
712 } else if (cmp_verf(&conf->cl_verifier, &clverifier)) {
715 * cl_name match, confirmed, principal match
716 * verifier match: probable callback update
718 * remove any unconfirmed nfs4_client with
719 * matching cl_name, cl_verifier, and cl_clientid
721 * create and insert an unconfirmed nfs4_client with same
722 * cl_name, cl_verifier, and cl_clientid as existing
723 * nfs4_client, but with the new callback info and a
727 cmp_verf(&unconf->cl_verifier, &conf->cl_verifier) &&
728 cmp_clid(&unconf->cl_clientid, &conf->cl_clientid)) {
729 expire_client(unconf);
731 if (!(new = create_client(clname)))
733 copy_verf(new,&conf->cl_verifier);
734 new->cl_addr = ip_addr;
735 copy_cred(&new->cl_cred,&rqstp->rq_cred);
736 copy_clid(new, conf);
738 gen_callback(new, setclid);
739 add_to_unconfirmed(new,strhashval);
740 } else if (!unconf) {
743 * clname match, confirmed, principal match
744 * verfier does not match
745 * no unconfirmed. create a new unconfirmed nfs4_client
746 * using input clverifier, clname, and callback info
747 * and generate a new cl_clientid and cl_confirm.
749 if (!(new = create_client(clname)))
751 copy_verf(new,&clverifier);
752 new->cl_addr = ip_addr;
753 copy_cred(&new->cl_cred,&rqstp->rq_cred);
756 gen_callback(new, setclid);
757 add_to_unconfirmed(new, strhashval);
758 } else if (!cmp_verf(&conf->cl_confirm, &unconf->cl_confirm)) {
761 * confirmed found (name, principal match)
762 * confirmed verifier does not match input clverifier
764 * unconfirmed found (name match)
765 * confirmed->cl_confirm != unconfirmed->cl_confirm
767 * remove unconfirmed.
769 * create an unconfirmed nfs4_client
770 * with same cl_name as existing confirmed nfs4_client,
771 * but with new callback info, new cl_clientid,
772 * new cl_verifier and a new cl_confirm
774 expire_client(unconf);
775 if (!(new = create_client(clname)))
777 copy_verf(new,&clverifier);
778 new->cl_addr = ip_addr;
779 copy_cred(&new->cl_cred,&rqstp->rq_cred);
782 gen_callback(new, setclid);
783 add_to_unconfirmed(new, strhashval);
785 /* No cases hit !!! */
786 status = nfserr_inval;
790 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
791 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
792 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
801 * RFC 3010 has a complex implmentation description of processing a
802 * SETCLIENTID_CONFIRM request consisting of 4 bullets describing
803 * processing on a DRC miss, labeled as CASE1 - CASE4 below.
805 * NOTE: callback information will be processed here in a future patch
808 nfsd4_setclientid_confirm(struct svc_rqst *rqstp, struct nfsd4_setclientid_confirm *setclientid_confirm)
810 u32 ip_addr = rqstp->rq_addr.sin_addr.s_addr;
811 struct nfs4_client *clp, *conf = NULL, *unconf = NULL;
812 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
813 clientid_t * clid = &setclientid_confirm->sc_clientid;
816 if (STALE_CLIENTID(clid))
817 return nfserr_stale_clientid;
819 * XXX The Duplicate Request Cache (DRC) has been checked (??)
820 * We get here on a DRC miss.
824 clp = find_confirmed_client(clid);
826 status = nfserr_inval;
828 * Found a record for this clientid. If the IP addresses
829 * don't match, return ERR_INVAL just as if the record had
832 if (clp->cl_addr != ip_addr) {
833 printk("NFSD: setclientid: string in use by client"
834 "(clientid %08x/%08x)\n",
835 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
840 clp = find_unconfirmed_client(clid);
842 status = nfserr_inval;
843 if (clp->cl_addr != ip_addr) {
844 printk("NFSD: setclientid: string in use by client"
845 "(clientid %08x/%08x)\n",
846 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
852 * unconf record that matches input clientid and input confirm.
853 * conf record that matches input clientid.
854 * conf and unconf records match names, verifiers
856 if ((conf && unconf) &&
857 (cmp_verf(&unconf->cl_confirm, &confirm)) &&
858 (cmp_verf(&conf->cl_verifier, &unconf->cl_verifier)) &&
859 (cmp_name(&conf->cl_name,&unconf->cl_name)) &&
860 (!cmp_verf(&conf->cl_confirm, &unconf->cl_confirm))) {
861 if (!cmp_creds(&conf->cl_cred, &unconf->cl_cred))
862 status = nfserr_clid_inuse;
866 move_to_confirmed(unconf);
872 * conf record that matches input clientid.
873 * if unconf record that matches input clientid, then unconf->cl_name
874 * or unconf->cl_verifier don't match the conf record.
876 if ((conf && !unconf) ||
878 (!cmp_verf(&conf->cl_verifier, &unconf->cl_verifier) ||
879 !cmp_name(&conf->cl_name, &unconf->cl_name)))) {
880 if (!cmp_creds(&conf->cl_cred,&rqstp->rq_cred)) {
881 status = nfserr_clid_inuse;
889 * conf record not found.
890 * unconf record found.
891 * unconf->cl_confirm matches input confirm
893 if (!conf && unconf && cmp_verf(&unconf->cl_confirm, &confirm)) {
894 if (!cmp_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
895 status = nfserr_clid_inuse;
899 move_to_confirmed(unconf);
904 * conf record not found, or if conf, then conf->cl_confirm does not
905 * match input confirm.
906 * unconf record not found, or if unconf, then unconf->cl_confirm
907 * does not match input confirm.
909 if ((!conf || (conf && !cmp_verf(&conf->cl_confirm, &confirm))) &&
910 (!unconf || (unconf && !cmp_verf(&unconf->cl_confirm, &confirm)))) {
911 status = nfserr_stale_clientid;
914 /* check that we have hit one of the cases...*/
915 status = nfserr_inval;
919 nfsd4_probe_callback(clp);
925 * Open owner state (share locks)
928 /* hash tables for nfs4_stateowner */
929 #define OWNER_HASH_BITS 8
930 #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
931 #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
933 #define ownerid_hashval(id) \
934 ((id) & OWNER_HASH_MASK)
935 #define ownerstr_hashval(clientid, ownername) \
936 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
938 static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE];
939 static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
941 /* hash table for nfs4_file */
942 #define FILE_HASH_BITS 8
943 #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
944 #define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
945 /* hash table for (open)nfs4_stateid */
946 #define STATEID_HASH_BITS 10
947 #define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
948 #define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
950 #define file_hashval(x) \
951 hash_ptr(x, FILE_HASH_BITS)
952 #define stateid_hashval(owner_id, file_id) \
953 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
955 static struct list_head file_hashtbl[FILE_HASH_SIZE];
956 static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
958 /* OPEN Share state helper functions */
959 static inline struct nfs4_file *
960 alloc_init_file(struct inode *ino)
962 struct nfs4_file *fp;
963 unsigned int hashval = file_hashval(ino);
965 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
967 kref_init(&fp->fi_ref);
968 INIT_LIST_HEAD(&fp->fi_hash);
969 INIT_LIST_HEAD(&fp->fi_stateids);
970 INIT_LIST_HEAD(&fp->fi_delegations);
971 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
972 fp->fi_inode = igrab(ino);
973 fp->fi_id = current_fileid++;
980 nfsd4_free_slab(kmem_cache_t **slab)
986 status = kmem_cache_destroy(*slab);
992 nfsd4_free_slabs(void)
994 nfsd4_free_slab(&stateowner_slab);
995 nfsd4_free_slab(&file_slab);
996 nfsd4_free_slab(&stateid_slab);
997 nfsd4_free_slab(&deleg_slab);
1001 nfsd4_init_slabs(void)
1003 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
1004 sizeof(struct nfs4_stateowner), 0, 0, NULL, NULL);
1005 if (stateowner_slab == NULL)
1007 file_slab = kmem_cache_create("nfsd4_files",
1008 sizeof(struct nfs4_file), 0, 0, NULL, NULL);
1009 if (file_slab == NULL)
1011 stateid_slab = kmem_cache_create("nfsd4_stateids",
1012 sizeof(struct nfs4_stateid), 0, 0, NULL, NULL);
1013 if (stateid_slab == NULL)
1015 deleg_slab = kmem_cache_create("nfsd4_delegations",
1016 sizeof(struct nfs4_delegation), 0, 0, NULL, NULL);
1017 if (deleg_slab == NULL)
1022 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1027 nfs4_free_stateowner(struct kref *kref)
1029 struct nfs4_stateowner *sop =
1030 container_of(kref, struct nfs4_stateowner, so_ref);
1031 kfree(sop->so_owner.data);
1032 kmem_cache_free(stateowner_slab, sop);
1035 static inline struct nfs4_stateowner *
1036 alloc_stateowner(struct xdr_netobj *owner)
1038 struct nfs4_stateowner *sop;
1040 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1041 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1042 memcpy(sop->so_owner.data, owner->data, owner->len);
1043 sop->so_owner.len = owner->len;
1044 kref_init(&sop->so_ref);
1047 kmem_cache_free(stateowner_slab, sop);
1052 static struct nfs4_stateowner *
1053 alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1054 struct nfs4_stateowner *sop;
1055 struct nfs4_replay *rp;
1056 unsigned int idhashval;
1058 if (!(sop = alloc_stateowner(&open->op_owner)))
1060 idhashval = ownerid_hashval(current_ownerid);
1061 INIT_LIST_HEAD(&sop->so_idhash);
1062 INIT_LIST_HEAD(&sop->so_strhash);
1063 INIT_LIST_HEAD(&sop->so_perclient);
1064 INIT_LIST_HEAD(&sop->so_perfilestate);
1065 INIT_LIST_HEAD(&sop->so_perlockowner); /* not used */
1066 INIT_LIST_HEAD(&sop->so_close_lru);
1068 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1069 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
1070 list_add(&sop->so_perclient, &clp->cl_perclient);
1071 sop->so_is_open_owner = 1;
1072 sop->so_id = current_ownerid++;
1073 sop->so_client = clp;
1074 sop->so_seqid = open->op_seqid;
1075 sop->so_confirmed = 0;
1076 rp = &sop->so_replay;
1077 rp->rp_status = NFSERR_SERVERFAULT;
1079 rp->rp_buf = rp->rp_ibuf;
1084 release_stateid_lockowners(struct nfs4_stateid *open_stp)
1086 struct nfs4_stateowner *lock_sop;
1088 while (!list_empty(&open_stp->st_perlockowner)) {
1089 lock_sop = list_entry(open_stp->st_perlockowner.next,
1090 struct nfs4_stateowner, so_perlockowner);
1091 /* list_del(&open_stp->st_perlockowner); */
1092 BUG_ON(lock_sop->so_is_open_owner);
1093 release_stateowner(lock_sop);
1098 unhash_stateowner(struct nfs4_stateowner *sop)
1100 struct nfs4_stateid *stp;
1102 list_del(&sop->so_idhash);
1103 list_del(&sop->so_strhash);
1104 if (sop->so_is_open_owner)
1105 list_del(&sop->so_perclient);
1106 list_del(&sop->so_perlockowner);
1107 while (!list_empty(&sop->so_perfilestate)) {
1108 stp = list_entry(sop->so_perfilestate.next,
1109 struct nfs4_stateid, st_perfilestate);
1110 if (sop->so_is_open_owner)
1111 release_stateid(stp, OPEN_STATE);
1113 release_stateid(stp, LOCK_STATE);
1118 release_stateowner(struct nfs4_stateowner *sop)
1120 unhash_stateowner(sop);
1121 list_del(&sop->so_close_lru);
1122 nfs4_put_stateowner(sop);
1126 init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1127 struct nfs4_stateowner *sop = open->op_stateowner;
1128 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1130 INIT_LIST_HEAD(&stp->st_hash);
1131 INIT_LIST_HEAD(&stp->st_perfilestate);
1132 INIT_LIST_HEAD(&stp->st_perlockowner);
1133 INIT_LIST_HEAD(&stp->st_perfile);
1134 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
1135 list_add(&stp->st_perfilestate, &sop->so_perfilestate);
1136 list_add(&stp->st_perfile, &fp->fi_stateids);
1137 stp->st_stateowner = sop;
1140 stp->st_stateid.si_boot = boot_time;
1141 stp->st_stateid.si_stateownerid = sop->so_id;
1142 stp->st_stateid.si_fileid = fp->fi_id;
1143 stp->st_stateid.si_generation = 0;
1144 stp->st_access_bmap = 0;
1145 stp->st_deny_bmap = 0;
1146 __set_bit(open->op_share_access, &stp->st_access_bmap);
1147 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
1151 release_stateid(struct nfs4_stateid *stp, int flags)
1153 struct file *filp = stp->st_vfs_file;
1155 list_del(&stp->st_hash);
1156 list_del(&stp->st_perfile);
1157 list_del(&stp->st_perfilestate);
1158 if (flags & OPEN_STATE) {
1159 release_stateid_lockowners(stp);
1160 stp->st_vfs_file = NULL;
1162 } else if (flags & LOCK_STATE)
1163 locks_remove_posix(filp, (fl_owner_t) stp->st_stateowner);
1164 put_nfs4_file(stp->st_file);
1165 kmem_cache_free(stateid_slab, stp);
1170 move_to_close_lru(struct nfs4_stateowner *sop)
1172 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1174 unhash_stateowner(sop);
1175 list_add_tail(&sop->so_close_lru, &close_lru);
1176 sop->so_time = get_seconds();
1180 release_state_owner(struct nfs4_stateid *stp, int flag)
1182 struct nfs4_stateowner *sop = stp->st_stateowner;
1184 dprintk("NFSD: release_state_owner\n");
1185 release_stateid(stp, flag);
1187 /* place unused nfs4_stateowners on so_close_lru list to be
1188 * released by the laundromat service after the lease period
1189 * to enable us to handle CLOSE replay
1191 if (sop->so_confirmed && list_empty(&sop->so_perfilestate))
1192 move_to_close_lru(sop);
1196 cmp_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner, clientid_t *clid) {
1197 return ((sop->so_owner.len == owner->len) &&
1198 !memcmp(sop->so_owner.data, owner->data, owner->len) &&
1199 (sop->so_client->cl_clientid.cl_id == clid->cl_id));
1202 static struct nfs4_stateowner *
1203 find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1205 struct nfs4_stateowner *so = NULL;
1207 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
1208 if (cmp_owner_str(so, &open->op_owner, &open->op_clientid))
1214 /* search file_hashtbl[] for file */
1215 static struct nfs4_file *
1216 find_file(struct inode *ino)
1218 unsigned int hashval = file_hashval(ino);
1219 struct nfs4_file *fp;
1221 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
1222 if (fp->fi_inode == ino) {
1230 #define TEST_ACCESS(x) ((x > 0 || x < 4)?1:0)
1231 #define TEST_DENY(x) ((x >= 0 || x < 5)?1:0)
1234 set_access(unsigned int *access, unsigned long bmap) {
1238 for (i = 1; i < 4; i++) {
1239 if (test_bit(i, &bmap))
1245 set_deny(unsigned int *deny, unsigned long bmap) {
1249 for (i = 0; i < 4; i++) {
1250 if (test_bit(i, &bmap))
1256 test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
1257 unsigned int access, deny;
1259 set_access(&access, stp->st_access_bmap);
1260 set_deny(&deny, stp->st_deny_bmap);
1261 if ((access & open->op_share_deny) || (deny & open->op_share_access))
1267 * Called to check deny when READ with all zero stateid or
1268 * WRITE with all zero or all one stateid
1271 nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
1273 struct inode *ino = current_fh->fh_dentry->d_inode;
1274 struct nfs4_file *fp;
1275 struct nfs4_stateid *stp;
1278 dprintk("NFSD: nfs4_share_conflict\n");
1280 fp = find_file(ino);
1283 ret = nfserr_share_denied;
1284 /* Search for conflicting share reservations */
1285 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
1286 if (test_bit(deny_type, &stp->st_deny_bmap) ||
1287 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
1297 nfs4_file_downgrade(struct file *filp, unsigned int share_access)
1299 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
1300 put_write_access(filp->f_dentry->d_inode);
1301 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
1306 * Recall a delegation
1309 do_recall(void *__dp)
1311 struct nfs4_delegation *dp = __dp;
1313 daemonize("nfsv4-recall");
1315 nfsd4_cb_recall(dp);
1320 * Spawn a thread to perform a recall on the delegation represented
1321 * by the lease (file_lock)
1323 * Called from break_lease() with lock_kernel() held.
1324 * Note: we assume break_lease will only call this *once* for any given
1328 void nfsd_break_deleg_cb(struct file_lock *fl)
1330 struct nfs4_delegation *dp= (struct nfs4_delegation *)fl->fl_owner;
1331 struct task_struct *t;
1333 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
1337 /* We're assuming the state code never drops its reference
1338 * without first removing the lease. Since we're in this lease
1339 * callback (and since the lease code is serialized by the kernel
1340 * lock) we know the server hasn't removed the lease yet, we know
1341 * it's safe to take a reference: */
1342 atomic_inc(&dp->dl_count);
1344 spin_lock(&recall_lock);
1345 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
1346 spin_unlock(&recall_lock);
1348 /* only place dl_time is set. protected by lock_kernel*/
1349 dp->dl_time = get_seconds();
1351 /* XXX need to merge NFSD_LEASE_TIME with fs/locks.c:lease_break_time */
1352 fl->fl_break_time = jiffies + NFSD_LEASE_TIME * HZ;
1354 t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall");
1356 struct nfs4_client *clp = dp->dl_client;
1358 printk(KERN_INFO "NFSD: Callback thread failed for "
1359 "for client (clientid %08x/%08x)\n",
1360 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1361 nfs4_put_delegation(dp);
1366 * The file_lock is being reapd.
1368 * Called by locks_free_lock() with lock_kernel() held.
1371 void nfsd_release_deleg_cb(struct file_lock *fl)
1373 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
1375 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
1377 if (!(fl->fl_flags & FL_LEASE) || !dp)
1379 dp->dl_flock = NULL;
1383 * Set the delegation file_lock back pointer.
1385 * Called from __setlease() with lock_kernel() held.
1388 void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
1390 struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
1392 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
1399 * Called from __setlease() with lock_kernel() held
1402 int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
1404 struct nfs4_delegation *onlistd =
1405 (struct nfs4_delegation *)onlist->fl_owner;
1406 struct nfs4_delegation *tryd =
1407 (struct nfs4_delegation *)try->fl_owner;
1409 if (onlist->fl_lmops != try->fl_lmops)
1412 return onlistd->dl_client == tryd->dl_client;
1417 int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
1420 return lease_modify(onlist, arg);
1425 struct lock_manager_operations nfsd_lease_mng_ops = {
1426 .fl_break = nfsd_break_deleg_cb,
1427 .fl_release_private = nfsd_release_deleg_cb,
1428 .fl_copy_lock = nfsd_copy_lock_deleg_cb,
1429 .fl_mylease = nfsd_same_client_deleg_cb,
1430 .fl_change = nfsd_change_deleg_cb,
1435 * nfsd4_process_open1()
1436 * lookup stateowner.
1448 * called with nfs4_lock_state() held.
1451 nfsd4_process_open1(struct nfsd4_open *open)
1454 clientid_t *clientid = &open->op_clientid;
1455 struct nfs4_client *clp = NULL;
1456 unsigned int strhashval;
1457 struct nfs4_stateowner *sop = NULL;
1459 status = nfserr_inval;
1460 if (!check_name(open->op_owner))
1463 if (STALE_CLIENTID(&open->op_clientid))
1464 return nfserr_stale_clientid;
1466 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
1467 sop = find_openstateowner_str(strhashval, open);
1469 open->op_stateowner = sop;
1470 /* check for replay */
1471 if (open->op_seqid == sop->so_seqid){
1472 if (sop->so_replay.rp_buflen)
1473 return NFSERR_REPLAY_ME;
1475 /* The original OPEN failed so spectacularly
1476 * that we don't even have replay data saved!
1477 * Therefore, we have no choice but to continue
1478 * processing this OPEN; presumably, we'll
1479 * fail again for the same reason.
1481 dprintk("nfsd4_process_open1:"
1482 " replay with no replay cache\n");
1485 } else if (sop->so_confirmed) {
1486 if (open->op_seqid == sop->so_seqid + 1)
1488 status = nfserr_bad_seqid;
1491 /* If we get here, we received an OPEN for an
1492 * unconfirmed nfs4_stateowner. Since the seqid's are
1493 * different, purge the existing nfs4_stateowner, and
1494 * instantiate a new one.
1496 clp = sop->so_client;
1497 release_stateowner(sop);
1500 /* nfs4_stateowner not found.
1501 * Verify clientid and instantiate new nfs4_stateowner.
1502 * If verify fails this is presumably the result of the
1503 * client's lease expiring.
1505 status = nfserr_expired;
1506 clp = find_confirmed_client(clientid);
1510 status = nfserr_resource;
1511 sop = alloc_init_open_stateowner(strhashval, clp, open);
1514 open->op_stateowner = sop;
1517 renew_client(sop->so_client);
1519 if (status && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1520 status = nfserr_reclaim_bad;
1525 nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
1527 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
1528 return nfserr_openmode;
1533 static struct nfs4_delegation *
1534 find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
1536 struct nfs4_delegation *dp;
1538 list_for_each_entry(dp, &fp->fi_delegations, dl_del_perfile) {
1539 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
1546 nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
1547 struct nfs4_delegation **dp)
1550 int status = nfserr_bad_stateid;
1552 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
1555 flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
1556 RD_STATE : WR_STATE;
1557 status = nfs4_check_delegmode(*dp, flags);
1561 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
1565 open->op_stateowner->so_confirmed = 1;
1570 nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
1572 struct nfs4_stateid *local;
1573 int status = nfserr_share_denied;
1574 struct nfs4_stateowner *sop = open->op_stateowner;
1576 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
1577 /* ignore lock owners */
1578 if (local->st_stateowner->so_is_open_owner == 0)
1580 /* remember if we have seen this open owner */
1581 if (local->st_stateowner == sop)
1583 /* check for conflicting share reservations */
1584 if (!test_share(local, open))
1592 static inline struct nfs4_stateid *
1593 nfs4_alloc_stateid(void)
1595 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
1599 nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
1600 struct nfs4_delegation *dp,
1601 struct svc_fh *cur_fh, int flags)
1603 struct nfs4_stateid *stp;
1605 stp = nfs4_alloc_stateid();
1607 return nfserr_resource;
1610 get_file(dp->dl_vfs_file);
1611 stp->st_vfs_file = dp->dl_vfs_file;
1614 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
1617 if (status == nfserr_dropit)
1618 status = nfserr_jukebox;
1619 kmem_cache_free(stateid_slab, stp);
1628 nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
1629 struct nfsd4_open *open)
1631 struct iattr iattr = {
1632 .ia_valid = ATTR_SIZE,
1635 if (!open->op_truncate)
1637 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
1639 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
1643 nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
1645 struct file *filp = stp->st_vfs_file;
1646 struct inode *inode = filp->f_dentry->d_inode;
1647 unsigned int share_access;
1650 set_access(&share_access, stp->st_access_bmap);
1651 share_access = ~share_access;
1652 share_access &= open->op_share_access;
1654 if (!(share_access & NFS4_SHARE_ACCESS_WRITE))
1655 return nfsd4_truncate(rqstp, cur_fh, open);
1657 status = get_write_access(inode);
1659 return nfserrno(status);
1660 status = nfsd4_truncate(rqstp, cur_fh, open);
1662 put_write_access(inode);
1665 /* remember the open */
1666 filp->f_mode = (filp->f_mode | FMODE_WRITE) & ~FMODE_READ;
1667 set_bit(open->op_share_access, &stp->st_access_bmap);
1668 set_bit(open->op_share_deny, &stp->st_deny_bmap);
1674 /* decrement seqid on successful reclaim, it will be bumped in encode_open */
1676 nfs4_set_claim_prev(struct nfsd4_open *open, int *status)
1678 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS) {
1680 *status = nfserr_reclaim_bad;
1682 open->op_stateowner->so_confirmed = 1;
1683 open->op_stateowner->so_seqid--;
1689 * Attempt to hand out a delegation.
1692 nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
1694 struct nfs4_delegation *dp;
1695 struct nfs4_stateowner *sop = stp->st_stateowner;
1696 struct nfs4_callback *cb = &sop->so_client->cl_callback;
1697 struct file_lock fl, *flp = &fl;
1698 int status, flag = 0;
1700 flag = NFS4_OPEN_DELEGATE_NONE;
1701 open->op_recall = 0;
1702 switch (open->op_claim_type) {
1703 case NFS4_OPEN_CLAIM_PREVIOUS:
1704 if (!atomic_read(&cb->cb_set))
1705 open->op_recall = 1;
1706 flag = open->op_delegate_type;
1707 if (flag == NFS4_OPEN_DELEGATE_NONE)
1710 case NFS4_OPEN_CLAIM_NULL:
1711 /* Let's not give out any delegations till everyone's
1712 * had the chance to reclaim theirs.... */
1713 if (nfs4_in_grace())
1715 if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
1717 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1718 flag = NFS4_OPEN_DELEGATE_WRITE;
1720 flag = NFS4_OPEN_DELEGATE_READ;
1726 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
1728 flag = NFS4_OPEN_DELEGATE_NONE;
1731 locks_init_lock(&fl);
1732 fl.fl_lmops = &nfsd_lease_mng_ops;
1733 fl.fl_flags = FL_LEASE;
1734 fl.fl_end = OFFSET_MAX;
1735 fl.fl_owner = (fl_owner_t)dp;
1736 fl.fl_file = stp->st_vfs_file;
1737 fl.fl_pid = current->tgid;
1739 /* setlease checks to see if delegation should be handed out.
1740 * the lock_manager callbacks fl_mylease and fl_change are used
1742 if ((status = setlease(stp->st_vfs_file,
1743 flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK, &flp))) {
1744 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
1745 unhash_delegation(dp);
1746 flag = NFS4_OPEN_DELEGATE_NONE;
1750 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
1752 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1753 dp->dl_stateid.si_boot,
1754 dp->dl_stateid.si_stateownerid,
1755 dp->dl_stateid.si_fileid,
1756 dp->dl_stateid.si_generation);
1758 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
1759 && flag == NFS4_OPEN_DELEGATE_NONE
1760 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
1761 printk("NFSD: WARNING: refusing delegation reclaim\n");
1762 open->op_delegate_type = flag;
1766 * called with nfs4_lock_state() held.
1769 nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
1771 struct nfs4_file *fp = NULL;
1772 struct inode *ino = current_fh->fh_dentry->d_inode;
1773 struct nfs4_stateid *stp = NULL;
1774 struct nfs4_delegation *dp = NULL;
1777 status = nfserr_inval;
1778 if (!TEST_ACCESS(open->op_share_access) || !TEST_DENY(open->op_share_deny))
1781 * Lookup file; if found, lookup stateid and check open request,
1782 * and check for delegations in the process of being recalled.
1783 * If not found, create the nfs4_file struct
1785 fp = find_file(ino);
1787 if ((status = nfs4_check_open(fp, open, &stp)))
1789 status = nfs4_check_deleg(fp, open, &dp);
1793 status = nfserr_bad_stateid;
1794 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
1796 status = nfserr_resource;
1797 fp = alloc_init_file(ino);
1803 * OPEN the file, or upgrade an existing OPEN.
1804 * If truncate fails, the OPEN fails.
1807 /* Stateid was found, this is an OPEN upgrade */
1808 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
1812 /* Stateid was not found, this is a new OPEN */
1814 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1818 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
1821 init_stateid(stp, fp, open);
1822 status = nfsd4_truncate(rqstp, current_fh, open);
1824 release_stateid(stp, OPEN_STATE);
1828 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
1831 * Attempt to hand out a delegation. No error return, because the
1832 * OPEN succeeds even if we fail.
1834 nfs4_open_delegation(current_fh, open, stp);
1838 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1839 stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid,
1840 stp->st_stateid.si_fileid, stp->st_stateid.si_generation);
1844 /* CLAIM_PREVIOUS has different error returns */
1845 nfs4_set_claim_prev(open, &status);
1847 * To finish the open response, we just need to set the rflags.
1849 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
1850 if (!open->op_stateowner->so_confirmed)
1851 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
1856 static struct workqueue_struct *laundry_wq;
1857 static struct work_struct laundromat_work;
1858 static void laundromat_main(void *);
1859 static DECLARE_WORK(laundromat_work, laundromat_main, NULL);
1862 nfsd4_renew(clientid_t *clid)
1864 struct nfs4_client *clp;
1868 dprintk("process_renew(%08x/%08x): starting\n",
1869 clid->cl_boot, clid->cl_id);
1870 status = nfserr_stale_clientid;
1871 if (STALE_CLIENTID(clid))
1873 clp = find_confirmed_client(clid);
1874 status = nfserr_expired;
1876 /* We assume the client took too long to RENEW. */
1877 dprintk("nfsd4_renew: clientid not found!\n");
1881 status = nfserr_cb_path_down;
1882 if (!list_empty(&clp->cl_del_perclnt)
1883 && !atomic_read(&clp->cl_callback.cb_set))
1887 nfs4_unlock_state();
1892 nfs4_laundromat(void)
1894 struct nfs4_client *clp;
1895 struct nfs4_stateowner *sop;
1896 struct nfs4_delegation *dp;
1897 struct list_head *pos, *next, reaplist;
1898 time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
1899 time_t t, clientid_val = NFSD_LEASE_TIME;
1900 time_t u, test_val = NFSD_LEASE_TIME;
1904 dprintk("NFSD: laundromat service - starting\n");
1905 list_for_each_safe(pos, next, &client_lru) {
1906 clp = list_entry(pos, struct nfs4_client, cl_lru);
1907 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
1908 t = clp->cl_time - cutoff;
1909 if (clientid_val > t)
1913 dprintk("NFSD: purging unused client (clientid %08x)\n",
1914 clp->cl_clientid.cl_id);
1917 INIT_LIST_HEAD(&reaplist);
1918 spin_lock(&recall_lock);
1919 list_for_each_safe(pos, next, &del_recall_lru) {
1920 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1921 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
1922 u = dp->dl_time - cutoff;
1927 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1929 list_move(&dp->dl_recall_lru, &reaplist);
1931 spin_unlock(&recall_lock);
1932 list_for_each_safe(pos, next, &reaplist) {
1933 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1934 list_del_init(&dp->dl_recall_lru);
1935 unhash_delegation(dp);
1937 test_val = NFSD_LEASE_TIME;
1938 list_for_each_safe(pos, next, &close_lru) {
1939 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
1940 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
1941 u = sop->so_time - cutoff;
1946 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1948 list_del(&sop->so_close_lru);
1949 nfs4_put_stateowner(sop);
1951 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
1952 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
1953 nfs4_unlock_state();
1954 return clientid_val;
1958 laundromat_main(void *not_used)
1962 t = nfs4_laundromat();
1963 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
1964 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
1967 /* search ownerid_hashtbl[] and close_lru for stateid owner
1968 * (stateid->si_stateownerid)
1970 struct nfs4_stateowner *
1971 find_openstateowner_id(u32 st_id, int flags) {
1972 struct nfs4_stateowner *local = NULL;
1974 dprintk("NFSD: find_openstateowner_id %d\n", st_id);
1975 if (flags & CLOSE_STATE) {
1976 list_for_each_entry(local, &close_lru, so_close_lru) {
1977 if (local->so_id == st_id)
1985 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
1987 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_dentry->d_inode;
1991 STALE_STATEID(stateid_t *stateid)
1993 if (stateid->si_boot == boot_time)
1995 printk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
1996 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
1997 stateid->si_generation);
2002 access_permit_read(unsigned long access_bmap)
2004 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
2005 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
2006 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
2010 access_permit_write(unsigned long access_bmap)
2012 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
2013 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
2017 int nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
2019 int status = nfserr_openmode;
2021 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
2023 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
2031 check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2033 /* Trying to call delegreturn with a special stateid? Yuch: */
2034 if (!(flags & (RD_STATE | WR_STATE)))
2035 return nfserr_bad_stateid;
2036 else if (ONE_STATEID(stateid) && (flags & RD_STATE))
2038 else if (nfs4_in_grace()) {
2039 /* Answer in remaining cases depends on existance of
2040 * conflicting state; so we must wait out the grace period. */
2041 return nfserr_grace;
2042 } else if (flags & WR_STATE)
2043 return nfs4_share_conflict(current_fh,
2044 NFS4_SHARE_DENY_WRITE);
2045 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2046 return nfs4_share_conflict(current_fh,
2047 NFS4_SHARE_DENY_READ);
2051 * Allow READ/WRITE during grace period on recovered state only for files
2052 * that are not able to provide mandatory locking.
2055 io_during_grace_disallowed(struct inode *inode, int flags)
2057 return nfs4_in_grace() && (flags & (RD_STATE | WR_STATE))
2058 && MANDATORY_LOCK(inode);
2062 * Checks for stateid operations
2065 nfs4_preprocess_stateid_op(struct svc_fh *current_fh, stateid_t *stateid, int flags, struct file **filpp)
2067 struct nfs4_stateid *stp = NULL;
2068 struct nfs4_delegation *dp = NULL;
2070 struct inode *ino = current_fh->fh_dentry->d_inode;
2073 dprintk("NFSD: preprocess_stateid_op: stateid = (%08x/%08x/%08x/%08x)\n",
2074 stateid->si_boot, stateid->si_stateownerid,
2075 stateid->si_fileid, stateid->si_generation);
2079 if (io_during_grace_disallowed(ino, flags))
2080 return nfserr_grace;
2082 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2083 return check_special_stateids(current_fh, stateid, flags);
2086 status = nfserr_stale_stateid;
2087 if (STALE_STATEID(stateid))
2091 status = nfserr_bad_stateid;
2092 if (!stateid->si_fileid) { /* delegation stateid */
2093 if(!(dp = find_delegation_stateid(ino, stateid))) {
2094 dprintk("NFSD: delegation stateid not found\n");
2095 if (nfs4_in_grace())
2096 status = nfserr_grace;
2099 stidp = &dp->dl_stateid;
2100 } else { /* open or lock stateid */
2101 if (!(stp = find_stateid(stateid, flags))) {
2102 dprintk("NFSD: open or lock stateid not found\n");
2103 if (nfs4_in_grace())
2104 status = nfserr_grace;
2107 if ((flags & CHECK_FH) && nfs4_check_fh(current_fh, stp))
2109 if (!stp->st_stateowner->so_confirmed)
2111 stidp = &stp->st_stateid;
2113 if (stateid->si_generation > stidp->si_generation)
2117 status = nfserr_old_stateid;
2118 if (stateid->si_generation < stidp->si_generation)
2121 if ((status = nfs4_check_openmode(stp,flags)))
2123 renew_client(stp->st_stateowner->so_client);
2125 *filpp = stp->st_vfs_file;
2127 if ((status = nfs4_check_delegmode(dp, flags)))
2129 renew_client(dp->dl_client);
2130 if (flags & DELEG_RET)
2131 unhash_delegation(dp);
2133 *filpp = dp->dl_vfs_file;
2142 * Checks for sequence id mutating operations.
2145 nfs4_preprocess_seqid_op(struct svc_fh *current_fh, u32 seqid, stateid_t *stateid, int flags, struct nfs4_stateowner **sopp, struct nfs4_stateid **stpp, clientid_t *lockclid)
2148 struct nfs4_stateid *stp;
2149 struct nfs4_stateowner *sop;
2151 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2152 "stateid = (%08x/%08x/%08x/%08x)\n", seqid,
2153 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2154 stateid->si_generation);
2159 status = nfserr_bad_stateid;
2160 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
2161 printk("NFSD: preprocess_seqid_op: magic stateid!\n");
2165 status = nfserr_stale_stateid;
2166 if (STALE_STATEID(stateid))
2169 * We return BAD_STATEID if filehandle doesn't match stateid,
2170 * the confirmed flag is incorrecly set, or the generation
2171 * number is incorrect.
2172 * If there is no entry in the openfile table for this id,
2173 * we can't always return BAD_STATEID;
2174 * this might be a retransmitted CLOSE which has arrived after
2175 * the openfile has been released.
2177 if (!(stp = find_stateid(stateid, flags)))
2178 goto no_nfs4_stateid;
2180 status = nfserr_bad_stateid;
2182 /* for new lock stateowners:
2183 * check that the lock->v.new.open_stateid
2184 * refers to an open stateowner
2186 * check that the lockclid (nfs4_lock->v.new.clientid) is the same
2187 * as the open_stateid->st_stateowner->so_client->clientid
2190 struct nfs4_stateowner *sop = stp->st_stateowner;
2191 struct nfs4_client *clp = sop->so_client;
2193 if (!sop->so_is_open_owner)
2195 if (!cmp_clid(&clp->cl_clientid, lockclid))
2199 if ((flags & CHECK_FH) && nfs4_check_fh(current_fh, stp)) {
2200 printk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
2205 *sopp = sop = stp->st_stateowner;
2208 * We now validate the seqid and stateid generation numbers.
2209 * For the moment, we ignore the possibility of
2210 * generation number wraparound.
2212 if (seqid != sop->so_seqid + 1)
2215 if (sop->so_confirmed) {
2216 if (flags & CONFIRM) {
2217 printk("NFSD: preprocess_seqid_op: expected unconfirmed stateowner!\n");
2222 if (!(flags & CONFIRM)) {
2223 printk("NFSD: preprocess_seqid_op: stateowner not confirmed yet!\n");
2227 if (stateid->si_generation > stp->st_stateid.si_generation) {
2228 printk("NFSD: preprocess_seqid_op: future stateid?!\n");
2232 status = nfserr_old_stateid;
2233 if (stateid->si_generation < stp->st_stateid.si_generation) {
2234 printk("NFSD: preprocess_seqid_op: old stateid!\n");
2237 /* XXX renew the client lease here */
2246 * We determine whether this is a bad stateid or a replay,
2247 * starting by trying to look up the stateowner.
2248 * If stateowner is not found - stateid is bad.
2250 if (!(sop = find_openstateowner_id(stateid->si_stateownerid, flags))) {
2251 printk("NFSD: preprocess_seqid_op: no stateowner or nfs4_stateid!\n");
2252 status = nfserr_bad_stateid;
2258 if (seqid == sop->so_seqid) {
2259 printk("NFSD: preprocess_seqid_op: retransmission?\n");
2260 /* indicate replay to calling function */
2261 status = NFSERR_REPLAY_ME;
2263 printk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d\n", sop->so_seqid +1, seqid);
2266 status = nfserr_bad_seqid;
2272 nfsd4_open_confirm(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open_confirm *oc)
2275 struct nfs4_stateowner *sop;
2276 struct nfs4_stateid *stp;
2278 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
2279 (int)current_fh->fh_dentry->d_name.len,
2280 current_fh->fh_dentry->d_name.name);
2282 if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0)))
2287 if ((status = nfs4_preprocess_seqid_op(current_fh, oc->oc_seqid,
2288 &oc->oc_req_stateid,
2289 CHECK_FH | CONFIRM | OPEN_STATE,
2290 &oc->oc_stateowner, &stp, NULL)))
2293 sop = oc->oc_stateowner;
2294 sop->so_confirmed = 1;
2295 update_stateid(&stp->st_stateid);
2296 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
2297 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
2298 "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid,
2299 stp->st_stateid.si_boot,
2300 stp->st_stateid.si_stateownerid,
2301 stp->st_stateid.si_fileid,
2302 stp->st_stateid.si_generation);
2304 if (oc->oc_stateowner)
2305 nfs4_get_stateowner(oc->oc_stateowner);
2306 nfs4_unlock_state();
2312 * unset all bits in union bitmap (bmap) that
2313 * do not exist in share (from successful OPEN_DOWNGRADE)
2316 reset_union_bmap_access(unsigned long access, unsigned long *bmap)
2319 for (i = 1; i < 4; i++) {
2320 if ((i & access) != i)
2321 __clear_bit(i, bmap);
2326 reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
2329 for (i = 0; i < 4; i++) {
2330 if ((i & deny) != i)
2331 __clear_bit(i, bmap);
2336 nfsd4_open_downgrade(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open_downgrade *od)
2339 struct nfs4_stateid *stp;
2340 unsigned int share_access;
2342 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
2343 (int)current_fh->fh_dentry->d_name.len,
2344 current_fh->fh_dentry->d_name.name);
2346 if (!TEST_ACCESS(od->od_share_access) || !TEST_DENY(od->od_share_deny))
2347 return nfserr_inval;
2350 if ((status = nfs4_preprocess_seqid_op(current_fh, od->od_seqid,
2352 CHECK_FH | OPEN_STATE,
2353 &od->od_stateowner, &stp, NULL)))
2356 status = nfserr_inval;
2357 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
2358 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2359 stp->st_access_bmap, od->od_share_access);
2362 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
2363 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2364 stp->st_deny_bmap, od->od_share_deny);
2367 set_access(&share_access, stp->st_access_bmap);
2368 nfs4_file_downgrade(stp->st_vfs_file,
2369 share_access & ~od->od_share_access);
2371 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
2372 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
2374 update_stateid(&stp->st_stateid);
2375 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
2378 if (od->od_stateowner)
2379 nfs4_get_stateowner(od->od_stateowner);
2380 nfs4_unlock_state();
2385 * nfs4_unlock_state() called after encode
2388 nfsd4_close(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_close *close)
2391 struct nfs4_stateid *stp;
2393 dprintk("NFSD: nfsd4_close on file %.*s\n",
2394 (int)current_fh->fh_dentry->d_name.len,
2395 current_fh->fh_dentry->d_name.name);
2398 /* check close_lru for replay */
2399 if ((status = nfs4_preprocess_seqid_op(current_fh, close->cl_seqid,
2401 CHECK_FH | OPEN_STATE | CLOSE_STATE,
2402 &close->cl_stateowner, &stp, NULL)))
2405 * Return success, but first update the stateid.
2408 update_stateid(&stp->st_stateid);
2409 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
2411 /* release_state_owner() calls nfsd_close() if needed */
2412 release_state_owner(stp, OPEN_STATE);
2414 if (close->cl_stateowner)
2415 nfs4_get_stateowner(close->cl_stateowner);
2416 nfs4_unlock_state();
2421 nfsd4_delegreturn(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_delegreturn *dr)
2425 if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0)))
2429 status = nfs4_preprocess_stateid_op(current_fh, &dr->dr_stateid, DELEG_RET, NULL);
2430 nfs4_unlock_state();
2437 * Lock owner state (byte-range locks)
2439 #define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
2440 #define LOCK_HASH_BITS 8
2441 #define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
2442 #define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
2444 #define lockownerid_hashval(id) \
2445 ((id) & LOCK_HASH_MASK)
2447 static inline unsigned int
2448 lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
2449 struct xdr_netobj *ownername)
2451 return (file_hashval(inode) + cl_id
2452 + opaque_hashval(ownername->data, ownername->len))
2456 static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
2457 static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
2458 static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
2460 struct nfs4_stateid *
2461 find_stateid(stateid_t *stid, int flags)
2463 struct nfs4_stateid *local = NULL;
2464 u32 st_id = stid->si_stateownerid;
2465 u32 f_id = stid->si_fileid;
2466 unsigned int hashval;
2468 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
2469 if ((flags & LOCK_STATE) || (flags & RD_STATE) || (flags & WR_STATE)) {
2470 hashval = stateid_hashval(st_id, f_id);
2471 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
2472 if ((local->st_stateid.si_stateownerid == st_id) &&
2473 (local->st_stateid.si_fileid == f_id))
2477 if ((flags & OPEN_STATE) || (flags & RD_STATE) || (flags & WR_STATE)) {
2478 hashval = stateid_hashval(st_id, f_id);
2479 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
2480 if ((local->st_stateid.si_stateownerid == st_id) &&
2481 (local->st_stateid.si_fileid == f_id))
2485 printk("NFSD: find_stateid: ERROR: no state flag\n");
2489 static struct nfs4_delegation *
2490 find_delegation_stateid(struct inode *ino, stateid_t *stid)
2492 struct nfs4_file *fp;
2493 struct nfs4_delegation *dl;
2495 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2496 stid->si_boot, stid->si_stateownerid,
2497 stid->si_fileid, stid->si_generation);
2499 fp = find_file(ino);
2502 dl = find_delegation_file(fp, stid);
2508 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2509 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2510 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
2511 * locking, this prevents us from being completely protocol-compliant. The
2512 * real solution to this problem is to start using unsigned file offsets in
2513 * the VFS, but this is a very deep change!
2516 nfs4_transform_lock_offset(struct file_lock *lock)
2518 if (lock->fl_start < 0)
2519 lock->fl_start = OFFSET_MAX;
2520 if (lock->fl_end < 0)
2521 lock->fl_end = OFFSET_MAX;
2525 nfs4_verify_lock_stateowner(struct nfs4_stateowner *sop, unsigned int hashval)
2527 struct nfs4_stateowner *local = NULL;
2530 if (hashval >= LOCK_HASH_SIZE)
2532 list_for_each_entry(local, &lock_ownerid_hashtbl[hashval], so_idhash) {
2544 nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
2546 struct nfs4_stateowner *sop = (struct nfs4_stateowner *) fl->fl_owner;
2547 unsigned int hval = lockownerid_hashval(sop->so_id);
2549 deny->ld_sop = NULL;
2550 if (nfs4_verify_lock_stateowner(sop, hval)) {
2551 kref_get(&sop->so_ref);
2553 deny->ld_clientid = sop->so_client->cl_clientid;
2555 deny->ld_start = fl->fl_start;
2556 deny->ld_length = ~(u64)0;
2557 if (fl->fl_end != ~(u64)0)
2558 deny->ld_length = fl->fl_end - fl->fl_start + 1;
2559 deny->ld_type = NFS4_READ_LT;
2560 if (fl->fl_type != F_RDLCK)
2561 deny->ld_type = NFS4_WRITE_LT;
2564 static struct nfs4_stateowner *
2565 find_lockstateowner(struct xdr_netobj *owner, clientid_t *clid)
2567 struct nfs4_stateowner *local = NULL;
2570 for (i = 0; i < LOCK_HASH_SIZE; i++) {
2571 list_for_each_entry(local, &lock_ownerid_hashtbl[i], so_idhash) {
2572 if (!cmp_owner_str(local, owner, clid))
2580 static struct nfs4_stateowner *
2581 find_lockstateowner_str(struct inode *inode, clientid_t *clid,
2582 struct xdr_netobj *owner)
2584 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
2585 struct nfs4_stateowner *op;
2587 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
2588 if (cmp_owner_str(op, owner, clid))
2595 * Alloc a lock owner structure.
2596 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
2599 * strhashval = lock_ownerstr_hashval
2600 * so_seqid = lock->lk_new_lock_seqid - 1: it gets bumped in encode
2603 static struct nfs4_stateowner *
2604 alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
2605 struct nfs4_stateowner *sop;
2606 struct nfs4_replay *rp;
2607 unsigned int idhashval;
2609 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
2611 idhashval = lockownerid_hashval(current_ownerid);
2612 INIT_LIST_HEAD(&sop->so_idhash);
2613 INIT_LIST_HEAD(&sop->so_strhash);
2614 INIT_LIST_HEAD(&sop->so_perclient);
2615 INIT_LIST_HEAD(&sop->so_perfilestate);
2616 INIT_LIST_HEAD(&sop->so_perlockowner);
2617 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
2619 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
2620 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
2621 list_add(&sop->so_perlockowner, &open_stp->st_perlockowner);
2622 sop->so_is_open_owner = 0;
2623 sop->so_id = current_ownerid++;
2624 sop->so_client = clp;
2625 sop->so_seqid = lock->lk_new_lock_seqid - 1;
2626 sop->so_confirmed = 1;
2627 rp = &sop->so_replay;
2628 rp->rp_status = NFSERR_SERVERFAULT;
2630 rp->rp_buf = rp->rp_ibuf;
2634 struct nfs4_stateid *
2635 alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
2637 struct nfs4_stateid *stp;
2638 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2640 stp = nfs4_alloc_stateid();
2643 INIT_LIST_HEAD(&stp->st_hash);
2644 INIT_LIST_HEAD(&stp->st_perfile);
2645 INIT_LIST_HEAD(&stp->st_perfilestate);
2646 INIT_LIST_HEAD(&stp->st_perlockowner); /* not used */
2647 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
2648 list_add(&stp->st_perfile, &fp->fi_stateids);
2649 list_add(&stp->st_perfilestate, &sop->so_perfilestate);
2650 stp->st_stateowner = sop;
2653 stp->st_stateid.si_boot = boot_time;
2654 stp->st_stateid.si_stateownerid = sop->so_id;
2655 stp->st_stateid.si_fileid = fp->fi_id;
2656 stp->st_stateid.si_generation = 0;
2657 stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
2658 stp->st_access_bmap = open_stp->st_access_bmap;
2659 stp->st_deny_bmap = open_stp->st_deny_bmap;
2666 check_lock_length(u64 offset, u64 length)
2668 return ((length == 0) || ((length != ~(u64)0) &&
2669 LOFF_OVERFLOW(offset, length)));
2676 nfsd4_lock(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_lock *lock)
2678 struct nfs4_stateowner *lock_sop = NULL, *open_sop = NULL;
2679 struct nfs4_stateid *lock_stp;
2681 struct file_lock file_lock;
2682 struct file_lock *conflock;
2684 unsigned int strhashval;
2686 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2687 (long long) lock->lk_offset,
2688 (long long) lock->lk_length);
2690 if (nfs4_in_grace() && !lock->lk_reclaim)
2691 return nfserr_grace;
2692 if (!nfs4_in_grace() && lock->lk_reclaim)
2693 return nfserr_no_grace;
2695 if (check_lock_length(lock->lk_offset, lock->lk_length))
2696 return nfserr_inval;
2700 if (lock->lk_is_new) {
2702 * Client indicates that this is a new lockowner.
2703 * Use open owner and open stateid to create lock owner and lock
2706 struct nfs4_stateid *open_stp = NULL;
2707 struct nfs4_file *fp;
2709 status = nfserr_stale_clientid;
2710 if (STALE_CLIENTID(&lock->lk_new_clientid)) {
2711 printk("NFSD: nfsd4_lock: clientid is stale!\n");
2715 /* is the new lock seqid presented by the client zero? */
2716 status = nfserr_bad_seqid;
2717 if (lock->v.new.lock_seqid != 0)
2720 /* validate and update open stateid and open seqid */
2721 status = nfs4_preprocess_seqid_op(current_fh,
2722 lock->lk_new_open_seqid,
2723 &lock->lk_new_open_stateid,
2724 CHECK_FH | OPEN_STATE,
2725 &open_sop, &open_stp,
2726 &lock->v.new.clientid);
2728 if (lock->lk_reclaim)
2729 status = nfserr_reclaim_bad;
2732 /* create lockowner and lock stateid */
2733 fp = open_stp->st_file;
2734 strhashval = lock_ownerstr_hashval(fp->fi_inode,
2735 open_sop->so_client->cl_clientid.cl_id,
2736 &lock->v.new.owner);
2738 * If we already have this lock owner, the client is in
2739 * error (or our bookeeping is wrong!)
2740 * for asking for a 'new lock'.
2742 status = nfserr_bad_stateid;
2743 lock_sop = find_lockstateowner(&lock->v.new.owner,
2744 &lock->v.new.clientid);
2747 status = nfserr_resource;
2748 if (!(lock->lk_stateowner = alloc_init_lock_stateowner(strhashval, open_sop->so_client, open_stp, lock)))
2750 if ((lock_stp = alloc_init_lock_stateid(lock->lk_stateowner,
2751 fp, open_stp)) == NULL) {
2752 release_stateowner(lock->lk_stateowner);
2753 lock->lk_stateowner = NULL;
2756 /* bump the open seqid used to create the lock */
2757 open_sop->so_seqid++;
2759 /* lock (lock owner + lock stateid) already exists */
2760 status = nfs4_preprocess_seqid_op(current_fh,
2761 lock->lk_old_lock_seqid,
2762 &lock->lk_old_lock_stateid,
2763 CHECK_FH | LOCK_STATE,
2764 &lock->lk_stateowner, &lock_stp, NULL);
2768 /* lock->lk_stateowner and lock_stp have been created or found */
2769 filp = lock_stp->st_vfs_file;
2771 if ((status = fh_verify(rqstp, current_fh, S_IFREG, MAY_LOCK))) {
2772 printk("NFSD: nfsd4_lock: permission denied!\n");
2776 locks_init_lock(&file_lock);
2777 switch (lock->lk_type) {
2780 file_lock.fl_type = F_RDLCK;
2783 case NFS4_WRITEW_LT:
2784 file_lock.fl_type = F_WRLCK;
2787 status = nfserr_inval;
2790 file_lock.fl_owner = (fl_owner_t) lock->lk_stateowner;
2791 file_lock.fl_pid = current->tgid;
2792 file_lock.fl_file = filp;
2793 file_lock.fl_flags = FL_POSIX;
2795 file_lock.fl_start = lock->lk_offset;
2796 if ((lock->lk_length == ~(u64)0) ||
2797 LOFF_OVERFLOW(lock->lk_offset, lock->lk_length))
2798 file_lock.fl_end = ~(u64)0;
2800 file_lock.fl_end = lock->lk_offset + lock->lk_length - 1;
2801 nfs4_transform_lock_offset(&file_lock);
2804 * Try to lock the file in the VFS.
2805 * Note: locks.c uses the BKL to protect the inode's lock list.
2808 status = posix_lock_file(filp, &file_lock);
2809 if (file_lock.fl_ops && file_lock.fl_ops->fl_release_private)
2810 file_lock.fl_ops->fl_release_private(&file_lock);
2811 dprintk("NFSD: nfsd4_lock: posix_lock_file status %d\n",status);
2813 case 0: /* success! */
2814 update_stateid(&lock_stp->st_stateid);
2815 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
2819 goto conflicting_lock;
2821 status = nfserr_deadlock;
2823 dprintk("NFSD: nfsd4_lock: posix_lock_file() failed! status %d\n",status);
2824 goto out_destroy_new_stateid;
2828 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2829 status = nfserr_denied;
2830 /* XXX There is a race here. Future patch needed to provide
2831 * an atomic posix_lock_and_test_file
2833 if (!(conflock = posix_test_lock(filp, &file_lock))) {
2834 status = nfserr_serverfault;
2837 nfs4_set_lock_denied(conflock, &lock->lk_denied);
2839 out_destroy_new_stateid:
2840 if (lock->lk_is_new) {
2841 dprintk("NFSD: nfsd4_lock: destroy new stateid!\n");
2843 * An error encountered after instantiation of the new
2844 * stateid has forced us to destroy it.
2846 if (!seqid_mutating_err(status))
2847 open_sop->so_seqid--;
2849 release_state_owner(lock_stp, LOCK_STATE);
2852 if (lock->lk_stateowner)
2853 nfs4_get_stateowner(lock->lk_stateowner);
2854 nfs4_unlock_state();
2862 nfsd4_lockt(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_lockt *lockt)
2864 struct inode *inode;
2866 struct file_lock file_lock;
2867 struct file_lock *conflicting_lock;
2870 if (nfs4_in_grace())
2871 return nfserr_grace;
2873 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
2874 return nfserr_inval;
2876 lockt->lt_stateowner = NULL;
2879 status = nfserr_stale_clientid;
2880 if (STALE_CLIENTID(&lockt->lt_clientid)) {
2881 printk("NFSD: nfsd4_lockt: clientid is stale!\n");
2885 if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0))) {
2886 printk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
2887 if (status == nfserr_symlink)
2888 status = nfserr_inval;
2892 inode = current_fh->fh_dentry->d_inode;
2893 locks_init_lock(&file_lock);
2894 switch (lockt->lt_type) {
2897 file_lock.fl_type = F_RDLCK;
2900 case NFS4_WRITEW_LT:
2901 file_lock.fl_type = F_WRLCK;
2904 printk("NFSD: nfs4_lockt: bad lock type!\n");
2905 status = nfserr_inval;
2909 lockt->lt_stateowner = find_lockstateowner_str(inode,
2910 &lockt->lt_clientid, &lockt->lt_owner);
2911 if (lockt->lt_stateowner)
2912 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
2913 file_lock.fl_pid = current->tgid;
2914 file_lock.fl_flags = FL_POSIX;
2916 file_lock.fl_start = lockt->lt_offset;
2917 if ((lockt->lt_length == ~(u64)0) || LOFF_OVERFLOW(lockt->lt_offset, lockt->lt_length))
2918 file_lock.fl_end = ~(u64)0;
2920 file_lock.fl_end = lockt->lt_offset + lockt->lt_length - 1;
2922 nfs4_transform_lock_offset(&file_lock);
2924 /* posix_test_lock uses the struct file _only_ to resolve the inode.
2925 * since LOCKT doesn't require an OPEN, and therefore a struct
2926 * file may not exist, pass posix_test_lock a struct file with
2927 * only the dentry:inode set.
2929 memset(&file, 0, sizeof (struct file));
2930 file.f_dentry = current_fh->fh_dentry;
2933 conflicting_lock = posix_test_lock(&file, &file_lock);
2934 if (conflicting_lock) {
2935 status = nfserr_denied;
2936 nfs4_set_lock_denied(conflicting_lock, &lockt->lt_denied);
2939 nfs4_unlock_state();
2944 nfsd4_locku(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_locku *locku)
2946 struct nfs4_stateid *stp;
2947 struct file *filp = NULL;
2948 struct file_lock file_lock;
2951 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2952 (long long) locku->lu_offset,
2953 (long long) locku->lu_length);
2955 if (check_lock_length(locku->lu_offset, locku->lu_length))
2956 return nfserr_inval;
2960 if ((status = nfs4_preprocess_seqid_op(current_fh,
2963 CHECK_FH | LOCK_STATE,
2964 &locku->lu_stateowner, &stp, NULL)))
2967 filp = stp->st_vfs_file;
2969 locks_init_lock(&file_lock);
2970 file_lock.fl_type = F_UNLCK;
2971 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
2972 file_lock.fl_pid = current->tgid;
2973 file_lock.fl_file = filp;
2974 file_lock.fl_flags = FL_POSIX;
2975 file_lock.fl_start = locku->lu_offset;
2977 if ((locku->lu_length == ~(u64)0) || LOFF_OVERFLOW(locku->lu_offset, locku->lu_length))
2978 file_lock.fl_end = ~(u64)0;
2980 file_lock.fl_end = locku->lu_offset + locku->lu_length - 1;
2981 nfs4_transform_lock_offset(&file_lock);
2984 * Try to unlock the file in the VFS.
2986 status = posix_lock_file(filp, &file_lock);
2987 if (file_lock.fl_ops && file_lock.fl_ops->fl_release_private)
2988 file_lock.fl_ops->fl_release_private(&file_lock);
2990 printk("NFSD: nfs4_locku: posix_lock_file failed!\n");
2994 * OK, unlock succeeded; the only thing left to do is update the stateid.
2996 update_stateid(&stp->st_stateid);
2997 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
3000 if (locku->lu_stateowner)
3001 nfs4_get_stateowner(locku->lu_stateowner);
3002 nfs4_unlock_state();
3006 status = nfserrno(status);
3012 * 1: locks held by lockowner
3013 * 0: no locks held by lockowner
3016 check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
3018 struct file_lock **flpp;
3019 struct inode *inode = filp->f_dentry->d_inode;
3023 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
3024 if ((*flpp)->fl_owner == (fl_owner_t)lowner)
3034 nfsd4_release_lockowner(struct svc_rqst *rqstp, struct nfsd4_release_lockowner *rlockowner)
3036 clientid_t *clid = &rlockowner->rl_clientid;
3037 struct nfs4_stateowner *local = NULL;
3038 struct xdr_netobj *owner = &rlockowner->rl_owner;
3041 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3042 clid->cl_boot, clid->cl_id);
3044 /* XXX check for lease expiration */
3046 status = nfserr_stale_clientid;
3047 if (STALE_CLIENTID(clid)) {
3048 printk("NFSD: nfsd4_release_lockowner: clientid is stale!\n");
3055 local = find_lockstateowner(owner, clid);
3057 struct nfs4_stateid *stp;
3059 /* check for any locks held by any stateid
3060 * associated with the (lock) stateowner */
3061 status = nfserr_locks_held;
3062 list_for_each_entry(stp, &local->so_perfilestate,
3064 if (check_for_locks(stp->st_vfs_file, local))
3067 /* no locks held by (lock) stateowner */
3069 release_stateowner(local);
3072 nfs4_unlock_state();
3076 static inline struct nfs4_client_reclaim *
3077 alloc_reclaim(int namelen)
3079 struct nfs4_client_reclaim *crp = NULL;
3081 crp = kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
3084 crp->cr_name.data = kmalloc(namelen, GFP_KERNEL);
3085 if (!crp->cr_name.data) {
3093 * failure => all reset bets are off, nfserr_no_grace...
3096 nfs4_client_to_reclaim(char *name, int namlen)
3098 unsigned int strhashval;
3099 struct nfs4_client_reclaim *crp = NULL;
3101 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", namlen, name);
3102 crp = alloc_reclaim(namlen);
3105 strhashval = clientstr_hashval(name, namlen);
3106 INIT_LIST_HEAD(&crp->cr_strhash);
3107 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
3108 memcpy(crp->cr_name.data, name, namlen);
3109 crp->cr_name.len = namlen;
3110 reclaim_str_hashtbl_size++;
3115 nfs4_release_reclaim(void)
3117 struct nfs4_client_reclaim *crp = NULL;
3120 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3121 while (!list_empty(&reclaim_str_hashtbl[i])) {
3122 crp = list_entry(reclaim_str_hashtbl[i].next,
3123 struct nfs4_client_reclaim, cr_strhash);
3124 list_del(&crp->cr_strhash);
3125 kfree(crp->cr_name.data);
3127 reclaim_str_hashtbl_size--;
3130 BUG_ON(reclaim_str_hashtbl_size);
3134 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
3135 struct nfs4_client_reclaim *
3136 nfs4_find_reclaim_client(clientid_t *clid)
3138 unsigned int strhashval;
3139 struct nfs4_client *clp;
3140 struct nfs4_client_reclaim *crp = NULL;
3143 /* find clientid in conf_id_hashtbl */
3144 clp = find_confirmed_client(clid);
3148 dprintk("NFSD: nfs4_find_reclaim_client for %.*s\n",
3149 clp->cl_name.len, clp->cl_name.data);
3151 /* find clp->cl_name in reclaim_str_hashtbl */
3152 strhashval = clientstr_hashval(clp->cl_name.data, clp->cl_name.len);
3153 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
3154 if (cmp_name(&crp->cr_name, &clp->cl_name)) {
3162 * Called from OPEN. Look for clientid in reclaim list.
3165 nfs4_check_open_reclaim(clientid_t *clid)
3167 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
3170 /* initialization to perform at module load time: */
3173 nfs4_state_init(void)
3177 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3178 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
3179 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
3180 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
3181 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
3183 for (i = 0; i < FILE_HASH_SIZE; i++) {
3184 INIT_LIST_HEAD(&file_hashtbl[i]);
3186 for (i = 0; i < OWNER_HASH_SIZE; i++) {
3187 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
3188 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
3190 for (i = 0; i < STATEID_HASH_SIZE; i++) {
3191 INIT_LIST_HEAD(&stateid_hashtbl[i]);
3192 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
3194 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3195 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
3196 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
3198 memset(&onestateid, ~0, sizeof(stateid_t));
3199 INIT_LIST_HEAD(&close_lru);
3200 INIT_LIST_HEAD(&client_lru);
3201 INIT_LIST_HEAD(&del_recall_lru);
3202 for (i = 0; i < CLIENT_HASH_SIZE; i++)
3203 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
3204 reclaim_str_hashtbl_size = 0;
3207 /* initialization to perform when the nfsd service is started: */
3210 __nfs4_state_start(void)
3214 boot_time = get_seconds();
3215 grace_time = max(user_lease_time, lease_time);
3216 lease_time = user_lease_time;
3217 printk("NFSD: starting %ld-second grace period\n", grace_time);
3218 grace_end = boot_time + grace_time;
3219 laundry_wq = create_singlethread_workqueue("nfsd4");
3220 queue_delayed_work(laundry_wq, &laundromat_work, NFSD_LEASE_TIME*HZ);
3224 nfs4_state_start(void)
3230 status = nfsd4_init_slabs();
3233 __nfs4_state_start();
3241 return get_seconds() < grace_end;
3247 printk("NFSD: ERROR in reboot recovery. State reclaims will fail.\n");
3248 grace_end = get_seconds();
3252 nfs4_lease_time(void)
3258 __nfs4_state_shutdown(void)
3261 struct nfs4_client *clp = NULL;
3262 struct nfs4_delegation *dp = NULL;
3263 struct nfs4_stateowner *sop = NULL;
3264 struct list_head *pos, *next, reaplist;
3266 list_for_each_safe(pos, next, &close_lru) {
3267 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
3268 list_del(&sop->so_close_lru);
3269 nfs4_put_stateowner(sop);
3272 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3273 while (!list_empty(&conf_id_hashtbl[i])) {
3274 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
3277 while (!list_empty(&unconf_str_hashtbl[i])) {
3278 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
3282 INIT_LIST_HEAD(&reaplist);
3283 spin_lock(&recall_lock);
3284 list_for_each_safe(pos, next, &del_recall_lru) {
3285 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3286 list_move(&dp->dl_recall_lru, &reaplist);
3288 spin_unlock(&recall_lock);
3289 list_for_each_safe(pos, next, &reaplist) {
3290 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3291 list_del_init(&dp->dl_recall_lru);
3292 unhash_delegation(dp);
3295 cancel_delayed_work(&laundromat_work);
3296 flush_workqueue(laundry_wq);
3297 destroy_workqueue(laundry_wq);
3302 nfs4_state_shutdown(void)
3305 nfs4_release_reclaim();
3306 __nfs4_state_shutdown();
3308 nfs4_unlock_state();
3312 * Called when leasetime is changed.
3314 * The only way the protocol gives us to handle on-the-fly lease changes is to
3315 * simulate a reboot. Instead of doing that, we just wait till the next time
3316 * we start to register any changes in lease time. If the administrator
3317 * really wants to change the lease time *now*, they can go ahead and bring
3318 * nfsd down and then back up again after changing the lease time.
3321 nfs4_reset_lease(time_t leasetime)
3324 user_lease_time = leasetime;