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>
51 #include <linux/namei.h>
53 #define NFSDDBG_FACILITY NFSDDBG_PROC
56 static time_t lease_time
= 90; /* default lease time */
57 static time_t user_lease_time
= 90;
58 static time_t boot_time
;
59 static int in_grace
= 1;
60 static u32 current_clientid
= 1;
61 static u32 current_ownerid
= 1;
62 static u32 current_fileid
= 1;
63 static u32 current_delegid
= 1;
65 static stateid_t zerostateid
; /* bits all 0 */
66 static stateid_t onestateid
; /* bits all 1 */
68 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
69 #define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
71 /* forward declarations */
72 static struct nfs4_stateid
* find_stateid(stateid_t
*stid
, int flags
);
73 static struct nfs4_delegation
* find_delegation_stateid(struct inode
*ino
, stateid_t
*stid
);
74 static void release_stateid_lockowners(struct nfs4_stateid
*open_stp
);
75 static char user_recovery_dirname
[PATH_MAX
] = "/var/lib/nfs/v4recovery";
76 static void nfs4_set_recdir(char *recdir
);
81 * protects clientid_hashtbl[], clientstr_hashtbl[],
82 * unconfstr_hashtbl[], uncofid_hashtbl[].
84 static DECLARE_MUTEX(client_sema
);
86 static kmem_cache_t
*stateowner_slab
= NULL
;
87 static kmem_cache_t
*file_slab
= NULL
;
88 static kmem_cache_t
*stateid_slab
= NULL
;
89 static kmem_cache_t
*deleg_slab
= NULL
;
98 nfs4_unlock_state(void)
104 opaque_hashval(const void *ptr
, int nbytes
)
106 unsigned char *cptr
= (unsigned char *) ptr
;
116 /* forward declarations */
117 static void release_stateowner(struct nfs4_stateowner
*sop
);
118 static void release_stateid(struct nfs4_stateid
*stp
, int flags
);
124 /* recall_lock protects the del_recall_lru */
125 static spinlock_t recall_lock
= SPIN_LOCK_UNLOCKED
;
126 static struct list_head del_recall_lru
;
129 free_nfs4_file(struct kref
*kref
)
131 struct nfs4_file
*fp
= container_of(kref
, struct nfs4_file
, fi_ref
);
132 list_del(&fp
->fi_hash
);
134 kmem_cache_free(file_slab
, fp
);
138 put_nfs4_file(struct nfs4_file
*fi
)
140 kref_put(&fi
->fi_ref
, free_nfs4_file
);
144 get_nfs4_file(struct nfs4_file
*fi
)
146 kref_get(&fi
->fi_ref
);
149 static struct nfs4_delegation
*
150 alloc_init_deleg(struct nfs4_client
*clp
, struct nfs4_stateid
*stp
, struct svc_fh
*current_fh
, u32 type
)
152 struct nfs4_delegation
*dp
;
153 struct nfs4_file
*fp
= stp
->st_file
;
154 struct nfs4_callback
*cb
= &stp
->st_stateowner
->so_client
->cl_callback
;
156 dprintk("NFSD alloc_init_deleg\n");
157 dp
= kmem_cache_alloc(deleg_slab
, GFP_KERNEL
);
160 INIT_LIST_HEAD(&dp
->dl_perfile
);
161 INIT_LIST_HEAD(&dp
->dl_perclnt
);
162 INIT_LIST_HEAD(&dp
->dl_recall_lru
);
167 get_file(stp
->st_vfs_file
);
168 dp
->dl_vfs_file
= stp
->st_vfs_file
;
170 dp
->dl_recall
.cbr_dp
= NULL
;
171 dp
->dl_recall
.cbr_ident
= cb
->cb_ident
;
172 dp
->dl_recall
.cbr_trunc
= 0;
173 dp
->dl_stateid
.si_boot
= boot_time
;
174 dp
->dl_stateid
.si_stateownerid
= current_delegid
++;
175 dp
->dl_stateid
.si_fileid
= 0;
176 dp
->dl_stateid
.si_generation
= 0;
177 dp
->dl_fhlen
= current_fh
->fh_handle
.fh_size
;
178 memcpy(dp
->dl_fhval
, ¤t_fh
->fh_handle
.fh_base
,
179 current_fh
->fh_handle
.fh_size
);
181 atomic_set(&dp
->dl_count
, 1);
182 list_add(&dp
->dl_perfile
, &fp
->fi_delegations
);
183 list_add(&dp
->dl_perclnt
, &clp
->cl_delegations
);
188 nfs4_put_delegation(struct nfs4_delegation
*dp
)
190 if (atomic_dec_and_test(&dp
->dl_count
)) {
191 dprintk("NFSD: freeing dp %p\n",dp
);
192 put_nfs4_file(dp
->dl_file
);
193 kmem_cache_free(deleg_slab
, dp
);
197 /* Remove the associated file_lock first, then remove the delegation.
198 * lease_modify() is called to remove the FS_LEASE file_lock from
199 * the i_flock list, eventually calling nfsd's lock_manager
200 * fl_release_callback.
203 nfs4_close_delegation(struct nfs4_delegation
*dp
)
205 struct file
*filp
= dp
->dl_vfs_file
;
207 dprintk("NFSD: close_delegation dp %p\n",dp
);
208 dp
->dl_vfs_file
= NULL
;
209 /* The following nfsd_close may not actually close the file,
210 * but we want to remove the lease in any case. */
212 setlease(filp
, F_UNLCK
, &dp
->dl_flock
);
216 /* Called under the state lock. */
218 unhash_delegation(struct nfs4_delegation
*dp
)
220 list_del_init(&dp
->dl_perfile
);
221 list_del_init(&dp
->dl_perclnt
);
222 spin_lock(&recall_lock
);
223 list_del_init(&dp
->dl_recall_lru
);
224 spin_unlock(&recall_lock
);
225 nfs4_close_delegation(dp
);
226 nfs4_put_delegation(dp
);
233 /* Hash tables for nfs4_clientid state */
234 #define CLIENT_HASH_BITS 4
235 #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
236 #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
238 #define clientid_hashval(id) \
239 ((id) & CLIENT_HASH_MASK)
240 #define clientstr_hashval(name) \
241 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
243 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
244 * used in reboot/reset lease grace period processing
246 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
247 * setclientid_confirmed info.
249 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
252 * client_lru holds client queue ordered by nfs4_client.cl_time
255 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
256 * for last close replay.
258 static struct list_head reclaim_str_hashtbl
[CLIENT_HASH_SIZE
];
259 static int reclaim_str_hashtbl_size
= 0;
260 static struct list_head conf_id_hashtbl
[CLIENT_HASH_SIZE
];
261 static struct list_head conf_str_hashtbl
[CLIENT_HASH_SIZE
];
262 static struct list_head unconf_str_hashtbl
[CLIENT_HASH_SIZE
];
263 static struct list_head unconf_id_hashtbl
[CLIENT_HASH_SIZE
];
264 static struct list_head client_lru
;
265 static struct list_head close_lru
;
268 renew_client(struct nfs4_client
*clp
)
271 * Move client to the end to the LRU list.
273 dprintk("renewing client (clientid %08x/%08x)\n",
274 clp
->cl_clientid
.cl_boot
,
275 clp
->cl_clientid
.cl_id
);
276 list_move_tail(&clp
->cl_lru
, &client_lru
);
277 clp
->cl_time
= get_seconds();
280 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
282 STALE_CLIENTID(clientid_t
*clid
)
284 if (clid
->cl_boot
== boot_time
)
286 dprintk("NFSD stale clientid (%08x/%08x)\n",
287 clid
->cl_boot
, clid
->cl_id
);
292 * XXX Should we use a slab cache ?
293 * This type of memory management is somewhat inefficient, but we use it
294 * anyway since SETCLIENTID is not a common operation.
296 static inline struct nfs4_client
*
297 alloc_client(struct xdr_netobj name
)
299 struct nfs4_client
*clp
;
301 if ((clp
= kmalloc(sizeof(struct nfs4_client
), GFP_KERNEL
))!= NULL
) {
302 memset(clp
, 0, sizeof(*clp
));
303 if ((clp
->cl_name
.data
= kmalloc(name
.len
, GFP_KERNEL
)) != NULL
) {
304 memcpy(clp
->cl_name
.data
, name
.data
, name
.len
);
305 clp
->cl_name
.len
= name
.len
;
316 free_client(struct nfs4_client
*clp
)
318 if (clp
->cl_cred
.cr_group_info
)
319 put_group_info(clp
->cl_cred
.cr_group_info
);
320 kfree(clp
->cl_name
.data
);
325 put_nfs4_client(struct nfs4_client
*clp
)
327 if (atomic_dec_and_test(&clp
->cl_count
))
332 expire_client(struct nfs4_client
*clp
)
334 struct nfs4_stateowner
*sop
;
335 struct nfs4_delegation
*dp
;
336 struct nfs4_callback
*cb
= &clp
->cl_callback
;
337 struct rpc_clnt
*clnt
= clp
->cl_callback
.cb_client
;
338 struct list_head reaplist
;
340 dprintk("NFSD: expire_client cl_count %d\n",
341 atomic_read(&clp
->cl_count
));
343 /* shutdown rpc client, ending any outstanding recall rpcs */
344 if (atomic_read(&cb
->cb_set
) == 1 && clnt
) {
345 rpc_shutdown_client(clnt
);
346 clnt
= clp
->cl_callback
.cb_client
= NULL
;
349 INIT_LIST_HEAD(&reaplist
);
350 spin_lock(&recall_lock
);
351 while (!list_empty(&clp
->cl_delegations
)) {
352 dp
= list_entry(clp
->cl_delegations
.next
, struct nfs4_delegation
, dl_perclnt
);
353 dprintk("NFSD: expire client. dp %p, fp %p\n", dp
,
355 list_del_init(&dp
->dl_perclnt
);
356 list_move(&dp
->dl_recall_lru
, &reaplist
);
358 spin_unlock(&recall_lock
);
359 while (!list_empty(&reaplist
)) {
360 dp
= list_entry(reaplist
.next
, struct nfs4_delegation
, dl_recall_lru
);
361 list_del_init(&dp
->dl_recall_lru
);
362 unhash_delegation(dp
);
364 list_del(&clp
->cl_idhash
);
365 list_del(&clp
->cl_strhash
);
366 list_del(&clp
->cl_lru
);
367 while (!list_empty(&clp
->cl_openowners
)) {
368 sop
= list_entry(clp
->cl_openowners
.next
, struct nfs4_stateowner
, so_perclient
);
369 release_stateowner(sop
);
371 put_nfs4_client(clp
);
374 static struct nfs4_client
*
375 create_client(struct xdr_netobj name
, char *recdir
) {
376 struct nfs4_client
*clp
;
378 if (!(clp
= alloc_client(name
)))
380 memcpy(clp
->cl_recdir
, recdir
, HEXDIR_LEN
);
381 atomic_set(&clp
->cl_count
, 1);
382 atomic_set(&clp
->cl_callback
.cb_set
, 0);
383 INIT_LIST_HEAD(&clp
->cl_idhash
);
384 INIT_LIST_HEAD(&clp
->cl_strhash
);
385 INIT_LIST_HEAD(&clp
->cl_openowners
);
386 INIT_LIST_HEAD(&clp
->cl_delegations
);
387 INIT_LIST_HEAD(&clp
->cl_lru
);
393 copy_verf(struct nfs4_client
*target
, nfs4_verifier
*source
) {
394 memcpy(target
->cl_verifier
.data
, source
->data
, sizeof(target
->cl_verifier
.data
));
398 copy_clid(struct nfs4_client
*target
, struct nfs4_client
*source
) {
399 target
->cl_clientid
.cl_boot
= source
->cl_clientid
.cl_boot
;
400 target
->cl_clientid
.cl_id
= source
->cl_clientid
.cl_id
;
404 copy_cred(struct svc_cred
*target
, struct svc_cred
*source
) {
406 target
->cr_uid
= source
->cr_uid
;
407 target
->cr_gid
= source
->cr_gid
;
408 target
->cr_group_info
= source
->cr_group_info
;
409 get_group_info(target
->cr_group_info
);
413 same_name(const char *n1
, const char *n2
) {
414 return 0 == memcmp(n1
, n2
, HEXDIR_LEN
);
418 cmp_verf(nfs4_verifier
*v1
, nfs4_verifier
*v2
) {
419 return(!memcmp(v1
->data
,v2
->data
,sizeof(v1
->data
)));
423 cmp_clid(clientid_t
* cl1
, clientid_t
* cl2
) {
424 return((cl1
->cl_boot
== cl2
->cl_boot
) &&
425 (cl1
->cl_id
== cl2
->cl_id
));
428 /* XXX what about NGROUP */
430 cmp_creds(struct svc_cred
*cr1
, struct svc_cred
*cr2
){
431 return(cr1
->cr_uid
== cr2
->cr_uid
);
436 gen_clid(struct nfs4_client
*clp
) {
437 clp
->cl_clientid
.cl_boot
= boot_time
;
438 clp
->cl_clientid
.cl_id
= current_clientid
++;
442 gen_confirm(struct nfs4_client
*clp
) {
447 p
= (u32
*)clp
->cl_confirm
.data
;
453 check_name(struct xdr_netobj name
) {
457 if (name
.len
> NFS4_OPAQUE_LIMIT
) {
458 printk("NFSD: check_name: name too long(%d)!\n", name
.len
);
465 add_to_unconfirmed(struct nfs4_client
*clp
, unsigned int strhashval
)
467 unsigned int idhashval
;
469 list_add(&clp
->cl_strhash
, &unconf_str_hashtbl
[strhashval
]);
470 idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
471 list_add(&clp
->cl_idhash
, &unconf_id_hashtbl
[idhashval
]);
472 list_add_tail(&clp
->cl_lru
, &client_lru
);
473 clp
->cl_time
= get_seconds();
477 move_to_confirmed(struct nfs4_client
*clp
)
479 unsigned int idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
480 unsigned int strhashval
;
482 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp
);
483 list_del_init(&clp
->cl_strhash
);
484 list_del_init(&clp
->cl_idhash
);
485 list_add(&clp
->cl_idhash
, &conf_id_hashtbl
[idhashval
]);
486 strhashval
= clientstr_hashval(clp
->cl_recdir
);
487 list_add(&clp
->cl_strhash
, &conf_str_hashtbl
[strhashval
]);
491 static struct nfs4_client
*
492 find_confirmed_client(clientid_t
*clid
)
494 struct nfs4_client
*clp
;
495 unsigned int idhashval
= clientid_hashval(clid
->cl_id
);
497 list_for_each_entry(clp
, &conf_id_hashtbl
[idhashval
], cl_idhash
) {
498 if (cmp_clid(&clp
->cl_clientid
, clid
))
504 static struct nfs4_client
*
505 find_unconfirmed_client(clientid_t
*clid
)
507 struct nfs4_client
*clp
;
508 unsigned int idhashval
= clientid_hashval(clid
->cl_id
);
510 list_for_each_entry(clp
, &unconf_id_hashtbl
[idhashval
], cl_idhash
) {
511 if (cmp_clid(&clp
->cl_clientid
, clid
))
517 static struct nfs4_client
*
518 find_confirmed_client_by_str(const char *dname
, unsigned int hashval
)
520 struct nfs4_client
*clp
;
522 list_for_each_entry(clp
, &conf_str_hashtbl
[hashval
], cl_strhash
) {
523 if (same_name(clp
->cl_recdir
, dname
))
529 static struct nfs4_client
*
530 find_unconfirmed_client_by_str(const char *dname
, unsigned int hashval
)
532 struct nfs4_client
*clp
;
534 list_for_each_entry(clp
, &unconf_str_hashtbl
[hashval
], cl_strhash
) {
535 if (same_name(clp
->cl_recdir
, dname
))
541 /* a helper function for parse_callback */
543 parse_octet(unsigned int *lenp
, char **addrp
)
545 unsigned int len
= *lenp
;
557 if ((c
< '0') || (c
> '9')) {
563 n
= (n
* 10) + (c
- '0');
574 /* parse and set the setclientid ipv4 callback address */
576 parse_ipv4(unsigned int addr_len
, char *addr_val
, unsigned int *cbaddrp
, unsigned short *cbportp
)
581 u32 addrlen
= addr_len
;
582 char *addr
= addr_val
;
587 for(i
= 4; i
> 0 ; i
--) {
588 if ((temp
= parse_octet(&addrlen
, &addr
)) < 0) {
591 cbaddr
|= (temp
<< shift
);
599 for(i
= 2; i
> 0 ; i
--) {
600 if ((temp
= parse_octet(&addrlen
, &addr
)) < 0) {
603 cbport
|= (temp
<< shift
);
612 gen_callback(struct nfs4_client
*clp
, struct nfsd4_setclientid
*se
)
614 struct nfs4_callback
*cb
= &clp
->cl_callback
;
616 /* Currently, we only support tcp for the callback channel */
617 if ((se
->se_callback_netid_len
!= 3) || memcmp((char *)se
->se_callback_netid_val
, "tcp", 3))
620 if ( !(parse_ipv4(se
->se_callback_addr_len
, se
->se_callback_addr_val
,
621 &cb
->cb_addr
, &cb
->cb_port
)))
623 cb
->cb_prog
= se
->se_callback_prog
;
624 cb
->cb_ident
= se
->se_callback_ident
;
627 dprintk(KERN_INFO
"NFSD: this client (clientid %08x/%08x) "
628 "will not receive delegations\n",
629 clp
->cl_clientid
.cl_boot
, clp
->cl_clientid
.cl_id
);
635 * RFC 3010 has a complex implmentation description of processing a
636 * SETCLIENTID request consisting of 5 bullets, labeled as
637 * CASE0 - CASE4 below.
640 * callback information will be processed in a future patch
642 * an unconfirmed record is added when:
643 * NORMAL (part of CASE 4): there is no confirmed nor unconfirmed record.
644 * CASE 1: confirmed record found with matching name, principal,
645 * verifier, and clientid.
646 * CASE 2: confirmed record found with matching name, principal,
647 * and there is no unconfirmed record with matching
650 * an unconfirmed record is replaced when:
651 * CASE 3: confirmed record found with matching name, principal,
652 * and an unconfirmed record is found with matching
653 * name, principal, and with clientid and
654 * confirm that does not match the confirmed record.
655 * CASE 4: there is no confirmed record with matching name and
656 * principal. there is an unconfirmed record with
657 * matching name, principal.
659 * an unconfirmed record is deleted when:
660 * CASE 1: an unconfirmed record that matches input name, verifier,
661 * and confirmed clientid.
662 * CASE 4: any unconfirmed records with matching name and principal
663 * that exist after an unconfirmed record has been replaced
664 * as described above.
668 nfsd4_setclientid(struct svc_rqst
*rqstp
, struct nfsd4_setclientid
*setclid
)
670 u32 ip_addr
= rqstp
->rq_addr
.sin_addr
.s_addr
;
671 struct xdr_netobj clname
= {
672 .len
= setclid
->se_namelen
,
673 .data
= setclid
->se_name
,
675 nfs4_verifier clverifier
= setclid
->se_verf
;
676 unsigned int strhashval
;
677 struct nfs4_client
*conf
, *unconf
, *new;
679 char dname
[HEXDIR_LEN
];
681 if (!check_name(clname
))
684 status
= nfs4_make_rec_clidname(dname
, &clname
);
689 * XXX The Duplicate Request Cache (DRC) has been checked (??)
690 * We get here on a DRC miss.
693 strhashval
= clientstr_hashval(dname
);
696 conf
= find_confirmed_client_by_str(dname
, strhashval
);
700 * clname match, confirmed, different principal
701 * or different ip_address
703 status
= nfserr_clid_inuse
;
704 if (!cmp_creds(&conf
->cl_cred
, &rqstp
->rq_cred
)
705 || conf
->cl_addr
!= ip_addr
) {
706 printk("NFSD: setclientid: string in use by client"
707 "(clientid %08x/%08x)\n",
708 conf
->cl_clientid
.cl_boot
, conf
->cl_clientid
.cl_id
);
712 unconf
= find_unconfirmed_client_by_str(dname
, strhashval
);
713 status
= nfserr_resource
;
717 * placed first, because it is the normal case.
720 expire_client(unconf
);
721 new = create_client(clname
, dname
);
724 copy_verf(new, &clverifier
);
725 new->cl_addr
= ip_addr
;
726 copy_cred(&new->cl_cred
,&rqstp
->rq_cred
);
729 gen_callback(new, setclid
);
730 add_to_unconfirmed(new, strhashval
);
731 } else if (cmp_verf(&conf
->cl_verifier
, &clverifier
)) {
734 * cl_name match, confirmed, principal match
735 * verifier match: probable callback update
737 * remove any unconfirmed nfs4_client with
738 * matching cl_name, cl_verifier, and cl_clientid
740 * create and insert an unconfirmed nfs4_client with same
741 * cl_name, cl_verifier, and cl_clientid as existing
742 * nfs4_client, but with the new callback info and a
746 /* Note this is removing unconfirmed {*x***},
747 * which is stronger than RFC recommended {vxc**}.
748 * This has the advantage that there is at most
749 * one {*x***} in either list at any time.
751 expire_client(unconf
);
753 new = create_client(clname
, dname
);
756 copy_verf(new,&conf
->cl_verifier
);
757 new->cl_addr
= ip_addr
;
758 copy_cred(&new->cl_cred
,&rqstp
->rq_cred
);
759 copy_clid(new, conf
);
761 gen_callback(new, setclid
);
762 add_to_unconfirmed(new,strhashval
);
763 } else if (!unconf
) {
766 * clname match, confirmed, principal match
767 * verfier does not match
768 * no unconfirmed. create a new unconfirmed nfs4_client
769 * using input clverifier, clname, and callback info
770 * and generate a new cl_clientid and cl_confirm.
772 new = create_client(clname
, dname
);
775 copy_verf(new,&clverifier
);
776 new->cl_addr
= ip_addr
;
777 copy_cred(&new->cl_cred
,&rqstp
->rq_cred
);
780 gen_callback(new, setclid
);
781 add_to_unconfirmed(new, strhashval
);
782 } else if (!cmp_verf(&conf
->cl_confirm
, &unconf
->cl_confirm
)) {
785 * confirmed found (name, principal match)
786 * confirmed verifier does not match input clverifier
788 * unconfirmed found (name match)
789 * confirmed->cl_confirm != unconfirmed->cl_confirm
791 * remove unconfirmed.
793 * create an unconfirmed nfs4_client
794 * with same cl_name as existing confirmed nfs4_client,
795 * but with new callback info, new cl_clientid,
796 * new cl_verifier and a new cl_confirm
798 expire_client(unconf
);
799 new = create_client(clname
, dname
);
802 copy_verf(new,&clverifier
);
803 new->cl_addr
= ip_addr
;
804 copy_cred(&new->cl_cred
,&rqstp
->rq_cred
);
807 gen_callback(new, setclid
);
808 add_to_unconfirmed(new, strhashval
);
810 /* No cases hit !!! */
811 status
= nfserr_inval
;
815 setclid
->se_clientid
.cl_boot
= new->cl_clientid
.cl_boot
;
816 setclid
->se_clientid
.cl_id
= new->cl_clientid
.cl_id
;
817 memcpy(setclid
->se_confirm
.data
, new->cl_confirm
.data
, sizeof(setclid
->se_confirm
.data
));
826 * RFC 3010 has a complex implmentation description of processing a
827 * SETCLIENTID_CONFIRM request consisting of 4 bullets describing
828 * processing on a DRC miss, labeled as CASE1 - CASE4 below.
830 * NOTE: callback information will be processed here in a future patch
833 nfsd4_setclientid_confirm(struct svc_rqst
*rqstp
, struct nfsd4_setclientid_confirm
*setclientid_confirm
)
835 u32 ip_addr
= rqstp
->rq_addr
.sin_addr
.s_addr
;
836 struct nfs4_client
*conf
, *unconf
;
837 nfs4_verifier confirm
= setclientid_confirm
->sc_confirm
;
838 clientid_t
* clid
= &setclientid_confirm
->sc_clientid
;
841 if (STALE_CLIENTID(clid
))
842 return nfserr_stale_clientid
;
844 * XXX The Duplicate Request Cache (DRC) has been checked (??)
845 * We get here on a DRC miss.
850 conf
= find_confirmed_client(clid
);
851 unconf
= find_unconfirmed_client(clid
);
853 status
= nfserr_clid_inuse
;
854 if (conf
&& conf
->cl_addr
!= ip_addr
)
856 if (unconf
&& unconf
->cl_addr
!= ip_addr
)
859 if ((conf
&& unconf
) &&
860 (cmp_verf(&unconf
->cl_confirm
, &confirm
)) &&
861 (cmp_verf(&conf
->cl_verifier
, &unconf
->cl_verifier
)) &&
862 (same_name(conf
->cl_recdir
,unconf
->cl_recdir
)) &&
863 (!cmp_verf(&conf
->cl_confirm
, &unconf
->cl_confirm
))) {
865 * unconf record that matches input clientid and input confirm.
866 * conf record that matches input clientid.
867 * conf and unconf records match names, verifiers
869 if (!cmp_creds(&conf
->cl_cred
, &unconf
->cl_cred
))
870 status
= nfserr_clid_inuse
;
872 /* XXX: We just turn off callbacks until we can handle
873 * change request correctly. */
874 atomic_set(&conf
->cl_callback
.cb_set
, 0);
876 nfsd4_remove_clid_dir(unconf
);
877 expire_client(unconf
);
881 } else if ((conf
&& !unconf
) ||
883 (!cmp_verf(&conf
->cl_verifier
, &unconf
->cl_verifier
) ||
884 !same_name(conf
->cl_recdir
, unconf
->cl_recdir
)))) {
886 * conf record that matches input clientid.
887 * if unconf record matches input clientid, then
888 * unconf->cl_name or unconf->cl_verifier don't match the
891 if (!cmp_creds(&conf
->cl_cred
,&rqstp
->rq_cred
))
892 status
= nfserr_clid_inuse
;
895 } else if (!conf
&& unconf
896 && cmp_verf(&unconf
->cl_confirm
, &confirm
)) {
898 * conf record not found.
899 * unconf record found.
900 * unconf->cl_confirm matches input confirm
902 if (!cmp_creds(&unconf
->cl_cred
, &rqstp
->rq_cred
)) {
903 status
= nfserr_clid_inuse
;
906 clientstr_hashval(unconf
->cl_recdir
);
907 conf
= find_confirmed_client_by_str(unconf
->cl_recdir
,
910 nfsd4_remove_clid_dir(conf
);
913 move_to_confirmed(unconf
);
917 } else if ((!conf
|| (conf
&& !cmp_verf(&conf
->cl_confirm
, &confirm
)))
918 && (!unconf
|| (unconf
&& !cmp_verf(&unconf
->cl_confirm
,
921 * conf record not found, or if conf, conf->cl_confirm does not
922 * match input confirm.
923 * unconf record not found, or if unconf, unconf->cl_confirm
924 * does not match input confirm.
926 status
= nfserr_stale_clientid
;
928 /* check that we have hit one of the cases...*/
929 status
= nfserr_clid_inuse
;
933 nfsd4_probe_callback(conf
);
939 * Open owner state (share locks)
942 /* hash tables for nfs4_stateowner */
943 #define OWNER_HASH_BITS 8
944 #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
945 #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
947 #define ownerid_hashval(id) \
948 ((id) & OWNER_HASH_MASK)
949 #define ownerstr_hashval(clientid, ownername) \
950 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
952 static struct list_head ownerid_hashtbl
[OWNER_HASH_SIZE
];
953 static struct list_head ownerstr_hashtbl
[OWNER_HASH_SIZE
];
955 /* hash table for nfs4_file */
956 #define FILE_HASH_BITS 8
957 #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
958 #define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
959 /* hash table for (open)nfs4_stateid */
960 #define STATEID_HASH_BITS 10
961 #define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
962 #define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
964 #define file_hashval(x) \
965 hash_ptr(x, FILE_HASH_BITS)
966 #define stateid_hashval(owner_id, file_id) \
967 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
969 static struct list_head file_hashtbl
[FILE_HASH_SIZE
];
970 static struct list_head stateid_hashtbl
[STATEID_HASH_SIZE
];
972 /* OPEN Share state helper functions */
973 static inline struct nfs4_file
*
974 alloc_init_file(struct inode
*ino
)
976 struct nfs4_file
*fp
;
977 unsigned int hashval
= file_hashval(ino
);
979 fp
= kmem_cache_alloc(file_slab
, GFP_KERNEL
);
981 kref_init(&fp
->fi_ref
);
982 INIT_LIST_HEAD(&fp
->fi_hash
);
983 INIT_LIST_HEAD(&fp
->fi_stateids
);
984 INIT_LIST_HEAD(&fp
->fi_delegations
);
985 list_add(&fp
->fi_hash
, &file_hashtbl
[hashval
]);
986 fp
->fi_inode
= igrab(ino
);
987 fp
->fi_id
= current_fileid
++;
994 nfsd4_free_slab(kmem_cache_t
**slab
)
1000 status
= kmem_cache_destroy(*slab
);
1006 nfsd4_free_slabs(void)
1008 nfsd4_free_slab(&stateowner_slab
);
1009 nfsd4_free_slab(&file_slab
);
1010 nfsd4_free_slab(&stateid_slab
);
1011 nfsd4_free_slab(&deleg_slab
);
1015 nfsd4_init_slabs(void)
1017 stateowner_slab
= kmem_cache_create("nfsd4_stateowners",
1018 sizeof(struct nfs4_stateowner
), 0, 0, NULL
, NULL
);
1019 if (stateowner_slab
== NULL
)
1021 file_slab
= kmem_cache_create("nfsd4_files",
1022 sizeof(struct nfs4_file
), 0, 0, NULL
, NULL
);
1023 if (file_slab
== NULL
)
1025 stateid_slab
= kmem_cache_create("nfsd4_stateids",
1026 sizeof(struct nfs4_stateid
), 0, 0, NULL
, NULL
);
1027 if (stateid_slab
== NULL
)
1029 deleg_slab
= kmem_cache_create("nfsd4_delegations",
1030 sizeof(struct nfs4_delegation
), 0, 0, NULL
, NULL
);
1031 if (deleg_slab
== NULL
)
1036 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1041 nfs4_free_stateowner(struct kref
*kref
)
1043 struct nfs4_stateowner
*sop
=
1044 container_of(kref
, struct nfs4_stateowner
, so_ref
);
1045 kfree(sop
->so_owner
.data
);
1046 kmem_cache_free(stateowner_slab
, sop
);
1049 static inline struct nfs4_stateowner
*
1050 alloc_stateowner(struct xdr_netobj
*owner
)
1052 struct nfs4_stateowner
*sop
;
1054 if ((sop
= kmem_cache_alloc(stateowner_slab
, GFP_KERNEL
))) {
1055 if ((sop
->so_owner
.data
= kmalloc(owner
->len
, GFP_KERNEL
))) {
1056 memcpy(sop
->so_owner
.data
, owner
->data
, owner
->len
);
1057 sop
->so_owner
.len
= owner
->len
;
1058 kref_init(&sop
->so_ref
);
1061 kmem_cache_free(stateowner_slab
, sop
);
1066 static struct nfs4_stateowner
*
1067 alloc_init_open_stateowner(unsigned int strhashval
, struct nfs4_client
*clp
, struct nfsd4_open
*open
) {
1068 struct nfs4_stateowner
*sop
;
1069 struct nfs4_replay
*rp
;
1070 unsigned int idhashval
;
1072 if (!(sop
= alloc_stateowner(&open
->op_owner
)))
1074 idhashval
= ownerid_hashval(current_ownerid
);
1075 INIT_LIST_HEAD(&sop
->so_idhash
);
1076 INIT_LIST_HEAD(&sop
->so_strhash
);
1077 INIT_LIST_HEAD(&sop
->so_perclient
);
1078 INIT_LIST_HEAD(&sop
->so_stateids
);
1079 INIT_LIST_HEAD(&sop
->so_perstateid
); /* not used */
1080 INIT_LIST_HEAD(&sop
->so_close_lru
);
1082 list_add(&sop
->so_idhash
, &ownerid_hashtbl
[idhashval
]);
1083 list_add(&sop
->so_strhash
, &ownerstr_hashtbl
[strhashval
]);
1084 list_add(&sop
->so_perclient
, &clp
->cl_openowners
);
1085 sop
->so_is_open_owner
= 1;
1086 sop
->so_id
= current_ownerid
++;
1087 sop
->so_client
= clp
;
1088 sop
->so_seqid
= open
->op_seqid
;
1089 sop
->so_confirmed
= 0;
1090 rp
= &sop
->so_replay
;
1091 rp
->rp_status
= NFSERR_SERVERFAULT
;
1093 rp
->rp_buf
= rp
->rp_ibuf
;
1098 release_stateid_lockowners(struct nfs4_stateid
*open_stp
)
1100 struct nfs4_stateowner
*lock_sop
;
1102 while (!list_empty(&open_stp
->st_lockowners
)) {
1103 lock_sop
= list_entry(open_stp
->st_lockowners
.next
,
1104 struct nfs4_stateowner
, so_perstateid
);
1105 /* list_del(&open_stp->st_lockowners); */
1106 BUG_ON(lock_sop
->so_is_open_owner
);
1107 release_stateowner(lock_sop
);
1112 unhash_stateowner(struct nfs4_stateowner
*sop
)
1114 struct nfs4_stateid
*stp
;
1116 list_del(&sop
->so_idhash
);
1117 list_del(&sop
->so_strhash
);
1118 if (sop
->so_is_open_owner
)
1119 list_del(&sop
->so_perclient
);
1120 list_del(&sop
->so_perstateid
);
1121 while (!list_empty(&sop
->so_stateids
)) {
1122 stp
= list_entry(sop
->so_stateids
.next
,
1123 struct nfs4_stateid
, st_perstateowner
);
1124 if (sop
->so_is_open_owner
)
1125 release_stateid(stp
, OPEN_STATE
);
1127 release_stateid(stp
, LOCK_STATE
);
1132 release_stateowner(struct nfs4_stateowner
*sop
)
1134 unhash_stateowner(sop
);
1135 list_del(&sop
->so_close_lru
);
1136 nfs4_put_stateowner(sop
);
1140 init_stateid(struct nfs4_stateid
*stp
, struct nfs4_file
*fp
, struct nfsd4_open
*open
) {
1141 struct nfs4_stateowner
*sop
= open
->op_stateowner
;
1142 unsigned int hashval
= stateid_hashval(sop
->so_id
, fp
->fi_id
);
1144 INIT_LIST_HEAD(&stp
->st_hash
);
1145 INIT_LIST_HEAD(&stp
->st_perstateowner
);
1146 INIT_LIST_HEAD(&stp
->st_lockowners
);
1147 INIT_LIST_HEAD(&stp
->st_perfile
);
1148 list_add(&stp
->st_hash
, &stateid_hashtbl
[hashval
]);
1149 list_add(&stp
->st_perstateowner
, &sop
->so_stateids
);
1150 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
1151 stp
->st_stateowner
= sop
;
1154 stp
->st_stateid
.si_boot
= boot_time
;
1155 stp
->st_stateid
.si_stateownerid
= sop
->so_id
;
1156 stp
->st_stateid
.si_fileid
= fp
->fi_id
;
1157 stp
->st_stateid
.si_generation
= 0;
1158 stp
->st_access_bmap
= 0;
1159 stp
->st_deny_bmap
= 0;
1160 __set_bit(open
->op_share_access
, &stp
->st_access_bmap
);
1161 __set_bit(open
->op_share_deny
, &stp
->st_deny_bmap
);
1162 stp
->st_openstp
= NULL
;
1166 release_stateid(struct nfs4_stateid
*stp
, int flags
)
1168 struct file
*filp
= stp
->st_vfs_file
;
1170 list_del(&stp
->st_hash
);
1171 list_del(&stp
->st_perfile
);
1172 list_del(&stp
->st_perstateowner
);
1173 if (flags
& OPEN_STATE
) {
1174 release_stateid_lockowners(stp
);
1175 stp
->st_vfs_file
= NULL
;
1177 } else if (flags
& LOCK_STATE
)
1178 locks_remove_posix(filp
, (fl_owner_t
) stp
->st_stateowner
);
1179 put_nfs4_file(stp
->st_file
);
1180 kmem_cache_free(stateid_slab
, stp
);
1185 move_to_close_lru(struct nfs4_stateowner
*sop
)
1187 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop
);
1189 unhash_stateowner(sop
);
1190 list_add_tail(&sop
->so_close_lru
, &close_lru
);
1191 sop
->so_time
= get_seconds();
1195 release_state_owner(struct nfs4_stateid
*stp
, int flag
)
1197 struct nfs4_stateowner
*sop
= stp
->st_stateowner
;
1199 dprintk("NFSD: release_state_owner\n");
1200 release_stateid(stp
, flag
);
1202 /* place unused nfs4_stateowners on so_close_lru list to be
1203 * released by the laundromat service after the lease period
1204 * to enable us to handle CLOSE replay
1206 if (sop
->so_confirmed
&& list_empty(&sop
->so_stateids
))
1207 move_to_close_lru(sop
);
1211 cmp_owner_str(struct nfs4_stateowner
*sop
, struct xdr_netobj
*owner
, clientid_t
*clid
) {
1212 return ((sop
->so_owner
.len
== owner
->len
) &&
1213 !memcmp(sop
->so_owner
.data
, owner
->data
, owner
->len
) &&
1214 (sop
->so_client
->cl_clientid
.cl_id
== clid
->cl_id
));
1217 static struct nfs4_stateowner
*
1218 find_openstateowner_str(unsigned int hashval
, struct nfsd4_open
*open
)
1220 struct nfs4_stateowner
*so
= NULL
;
1222 list_for_each_entry(so
, &ownerstr_hashtbl
[hashval
], so_strhash
) {
1223 if (cmp_owner_str(so
, &open
->op_owner
, &open
->op_clientid
))
1229 /* search file_hashtbl[] for file */
1230 static struct nfs4_file
*
1231 find_file(struct inode
*ino
)
1233 unsigned int hashval
= file_hashval(ino
);
1234 struct nfs4_file
*fp
;
1236 list_for_each_entry(fp
, &file_hashtbl
[hashval
], fi_hash
) {
1237 if (fp
->fi_inode
== ino
) {
1245 #define TEST_ACCESS(x) ((x > 0 || x < 4)?1:0)
1246 #define TEST_DENY(x) ((x >= 0 || x < 5)?1:0)
1249 set_access(unsigned int *access
, unsigned long bmap
) {
1253 for (i
= 1; i
< 4; i
++) {
1254 if (test_bit(i
, &bmap
))
1260 set_deny(unsigned int *deny
, unsigned long bmap
) {
1264 for (i
= 0; i
< 4; i
++) {
1265 if (test_bit(i
, &bmap
))
1271 test_share(struct nfs4_stateid
*stp
, struct nfsd4_open
*open
) {
1272 unsigned int access
, deny
;
1274 set_access(&access
, stp
->st_access_bmap
);
1275 set_deny(&deny
, stp
->st_deny_bmap
);
1276 if ((access
& open
->op_share_deny
) || (deny
& open
->op_share_access
))
1282 * Called to check deny when READ with all zero stateid or
1283 * WRITE with all zero or all one stateid
1286 nfs4_share_conflict(struct svc_fh
*current_fh
, unsigned int deny_type
)
1288 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
1289 struct nfs4_file
*fp
;
1290 struct nfs4_stateid
*stp
;
1293 dprintk("NFSD: nfs4_share_conflict\n");
1295 fp
= find_file(ino
);
1298 ret
= nfserr_locked
;
1299 /* Search for conflicting share reservations */
1300 list_for_each_entry(stp
, &fp
->fi_stateids
, st_perfile
) {
1301 if (test_bit(deny_type
, &stp
->st_deny_bmap
) ||
1302 test_bit(NFS4_SHARE_DENY_BOTH
, &stp
->st_deny_bmap
))
1312 nfs4_file_downgrade(struct file
*filp
, unsigned int share_access
)
1314 if (share_access
& NFS4_SHARE_ACCESS_WRITE
) {
1315 put_write_access(filp
->f_dentry
->d_inode
);
1316 filp
->f_mode
= (filp
->f_mode
| FMODE_READ
) & ~FMODE_WRITE
;
1321 * Recall a delegation
1324 do_recall(void *__dp
)
1326 struct nfs4_delegation
*dp
= __dp
;
1328 daemonize("nfsv4-recall");
1330 nfsd4_cb_recall(dp
);
1335 * Spawn a thread to perform a recall on the delegation represented
1336 * by the lease (file_lock)
1338 * Called from break_lease() with lock_kernel() held.
1339 * Note: we assume break_lease will only call this *once* for any given
1343 void nfsd_break_deleg_cb(struct file_lock
*fl
)
1345 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)fl
->fl_owner
;
1346 struct task_struct
*t
;
1348 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp
,fl
);
1352 /* We're assuming the state code never drops its reference
1353 * without first removing the lease. Since we're in this lease
1354 * callback (and since the lease code is serialized by the kernel
1355 * lock) we know the server hasn't removed the lease yet, we know
1356 * it's safe to take a reference: */
1357 atomic_inc(&dp
->dl_count
);
1359 spin_lock(&recall_lock
);
1360 list_add_tail(&dp
->dl_recall_lru
, &del_recall_lru
);
1361 spin_unlock(&recall_lock
);
1363 /* only place dl_time is set. protected by lock_kernel*/
1364 dp
->dl_time
= get_seconds();
1366 /* XXX need to merge NFSD_LEASE_TIME with fs/locks.c:lease_break_time */
1367 fl
->fl_break_time
= jiffies
+ NFSD_LEASE_TIME
* HZ
;
1369 t
= kthread_run(do_recall
, dp
, "%s", "nfs4_cb_recall");
1371 struct nfs4_client
*clp
= dp
->dl_client
;
1373 printk(KERN_INFO
"NFSD: Callback thread failed for "
1374 "for client (clientid %08x/%08x)\n",
1375 clp
->cl_clientid
.cl_boot
, clp
->cl_clientid
.cl_id
);
1376 nfs4_put_delegation(dp
);
1381 * The file_lock is being reapd.
1383 * Called by locks_free_lock() with lock_kernel() held.
1386 void nfsd_release_deleg_cb(struct file_lock
*fl
)
1388 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)fl
->fl_owner
;
1390 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl
,dp
, atomic_read(&dp
->dl_count
));
1392 if (!(fl
->fl_flags
& FL_LEASE
) || !dp
)
1394 dp
->dl_flock
= NULL
;
1398 * Set the delegation file_lock back pointer.
1400 * Called from __setlease() with lock_kernel() held.
1403 void nfsd_copy_lock_deleg_cb(struct file_lock
*new, struct file_lock
*fl
)
1405 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)new->fl_owner
;
1407 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp
);
1414 * Called from __setlease() with lock_kernel() held
1417 int nfsd_same_client_deleg_cb(struct file_lock
*onlist
, struct file_lock
*try)
1419 struct nfs4_delegation
*onlistd
=
1420 (struct nfs4_delegation
*)onlist
->fl_owner
;
1421 struct nfs4_delegation
*tryd
=
1422 (struct nfs4_delegation
*)try->fl_owner
;
1424 if (onlist
->fl_lmops
!= try->fl_lmops
)
1427 return onlistd
->dl_client
== tryd
->dl_client
;
1432 int nfsd_change_deleg_cb(struct file_lock
**onlist
, int arg
)
1435 return lease_modify(onlist
, arg
);
1440 static struct lock_manager_operations nfsd_lease_mng_ops
= {
1441 .fl_break
= nfsd_break_deleg_cb
,
1442 .fl_release_private
= nfsd_release_deleg_cb
,
1443 .fl_copy_lock
= nfsd_copy_lock_deleg_cb
,
1444 .fl_mylease
= nfsd_same_client_deleg_cb
,
1445 .fl_change
= nfsd_change_deleg_cb
,
1450 * nfsd4_process_open1()
1451 * lookup stateowner.
1463 * called with nfs4_lock_state() held.
1466 nfsd4_process_open1(struct nfsd4_open
*open
)
1469 clientid_t
*clientid
= &open
->op_clientid
;
1470 struct nfs4_client
*clp
= NULL
;
1471 unsigned int strhashval
;
1472 struct nfs4_stateowner
*sop
= NULL
;
1474 status
= nfserr_inval
;
1475 if (!check_name(open
->op_owner
))
1478 if (STALE_CLIENTID(&open
->op_clientid
))
1479 return nfserr_stale_clientid
;
1481 strhashval
= ownerstr_hashval(clientid
->cl_id
, open
->op_owner
);
1482 sop
= find_openstateowner_str(strhashval
, open
);
1484 open
->op_stateowner
= sop
;
1485 /* check for replay */
1486 if (open
->op_seqid
== sop
->so_seqid
- 1){
1487 if (sop
->so_replay
.rp_buflen
)
1488 return NFSERR_REPLAY_ME
;
1490 /* The original OPEN failed so spectacularly
1491 * that we don't even have replay data saved!
1492 * Therefore, we have no choice but to continue
1493 * processing this OPEN; presumably, we'll
1494 * fail again for the same reason.
1496 dprintk("nfsd4_process_open1:"
1497 " replay with no replay cache\n");
1500 } else if (sop
->so_confirmed
) {
1501 if (open
->op_seqid
== sop
->so_seqid
)
1503 status
= nfserr_bad_seqid
;
1506 /* If we get here, we received an OPEN for an
1507 * unconfirmed nfs4_stateowner. Since the seqid's are
1508 * different, purge the existing nfs4_stateowner, and
1509 * instantiate a new one.
1511 clp
= sop
->so_client
;
1512 release_stateowner(sop
);
1515 /* nfs4_stateowner not found.
1516 * Verify clientid and instantiate new nfs4_stateowner.
1517 * If verify fails this is presumably the result of the
1518 * client's lease expiring.
1520 status
= nfserr_expired
;
1521 clp
= find_confirmed_client(clientid
);
1525 status
= nfserr_resource
;
1526 sop
= alloc_init_open_stateowner(strhashval
, clp
, open
);
1529 open
->op_stateowner
= sop
;
1532 renew_client(sop
->so_client
);
1538 nfs4_check_delegmode(struct nfs4_delegation
*dp
, int flags
)
1540 if ((flags
& WR_STATE
) && (dp
->dl_type
== NFS4_OPEN_DELEGATE_READ
))
1541 return nfserr_openmode
;
1546 static struct nfs4_delegation
*
1547 find_delegation_file(struct nfs4_file
*fp
, stateid_t
*stid
)
1549 struct nfs4_delegation
*dp
;
1551 list_for_each_entry(dp
, &fp
->fi_delegations
, dl_perfile
) {
1552 if (dp
->dl_stateid
.si_stateownerid
== stid
->si_stateownerid
)
1559 nfs4_check_deleg(struct nfs4_file
*fp
, struct nfsd4_open
*open
,
1560 struct nfs4_delegation
**dp
)
1563 int status
= nfserr_bad_stateid
;
1565 *dp
= find_delegation_file(fp
, &open
->op_delegate_stateid
);
1568 flags
= open
->op_share_access
== NFS4_SHARE_ACCESS_READ
?
1569 RD_STATE
: WR_STATE
;
1570 status
= nfs4_check_delegmode(*dp
, flags
);
1574 if (open
->op_claim_type
!= NFS4_OPEN_CLAIM_DELEGATE_CUR
)
1578 open
->op_stateowner
->so_confirmed
= 1;
1583 nfs4_check_open(struct nfs4_file
*fp
, struct nfsd4_open
*open
, struct nfs4_stateid
**stpp
)
1585 struct nfs4_stateid
*local
;
1586 int status
= nfserr_share_denied
;
1587 struct nfs4_stateowner
*sop
= open
->op_stateowner
;
1589 list_for_each_entry(local
, &fp
->fi_stateids
, st_perfile
) {
1590 /* ignore lock owners */
1591 if (local
->st_stateowner
->so_is_open_owner
== 0)
1593 /* remember if we have seen this open owner */
1594 if (local
->st_stateowner
== sop
)
1596 /* check for conflicting share reservations */
1597 if (!test_share(local
, open
))
1605 static inline struct nfs4_stateid
*
1606 nfs4_alloc_stateid(void)
1608 return kmem_cache_alloc(stateid_slab
, GFP_KERNEL
);
1612 nfs4_new_open(struct svc_rqst
*rqstp
, struct nfs4_stateid
**stpp
,
1613 struct nfs4_delegation
*dp
,
1614 struct svc_fh
*cur_fh
, int flags
)
1616 struct nfs4_stateid
*stp
;
1618 stp
= nfs4_alloc_stateid();
1620 return nfserr_resource
;
1623 get_file(dp
->dl_vfs_file
);
1624 stp
->st_vfs_file
= dp
->dl_vfs_file
;
1627 status
= nfsd_open(rqstp
, cur_fh
, S_IFREG
, flags
,
1630 if (status
== nfserr_dropit
)
1631 status
= nfserr_jukebox
;
1632 kmem_cache_free(stateid_slab
, stp
);
1641 nfsd4_truncate(struct svc_rqst
*rqstp
, struct svc_fh
*fh
,
1642 struct nfsd4_open
*open
)
1644 struct iattr iattr
= {
1645 .ia_valid
= ATTR_SIZE
,
1648 if (!open
->op_truncate
)
1650 if (!(open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
))
1652 return nfsd_setattr(rqstp
, fh
, &iattr
, 0, (time_t)0);
1656 nfs4_upgrade_open(struct svc_rqst
*rqstp
, struct svc_fh
*cur_fh
, struct nfs4_stateid
*stp
, struct nfsd4_open
*open
)
1658 struct file
*filp
= stp
->st_vfs_file
;
1659 struct inode
*inode
= filp
->f_dentry
->d_inode
;
1660 unsigned int share_access
;
1663 set_access(&share_access
, stp
->st_access_bmap
);
1664 share_access
= ~share_access
;
1665 share_access
&= open
->op_share_access
;
1667 if (!(share_access
& NFS4_SHARE_ACCESS_WRITE
))
1668 return nfsd4_truncate(rqstp
, cur_fh
, open
);
1670 status
= get_write_access(inode
);
1672 return nfserrno(status
);
1673 status
= nfsd4_truncate(rqstp
, cur_fh
, open
);
1675 put_write_access(inode
);
1678 /* remember the open */
1679 filp
->f_mode
= (filp
->f_mode
| FMODE_WRITE
) & ~FMODE_READ
;
1680 set_bit(open
->op_share_access
, &stp
->st_access_bmap
);
1681 set_bit(open
->op_share_deny
, &stp
->st_deny_bmap
);
1688 nfs4_set_claim_prev(struct nfsd4_open
*open
)
1690 open
->op_stateowner
->so_confirmed
= 1;
1691 open
->op_stateowner
->so_client
->cl_firststate
= 1;
1695 * Attempt to hand out a delegation.
1698 nfs4_open_delegation(struct svc_fh
*fh
, struct nfsd4_open
*open
, struct nfs4_stateid
*stp
)
1700 struct nfs4_delegation
*dp
;
1701 struct nfs4_stateowner
*sop
= stp
->st_stateowner
;
1702 struct nfs4_callback
*cb
= &sop
->so_client
->cl_callback
;
1703 struct file_lock fl
, *flp
= &fl
;
1704 int status
, flag
= 0;
1706 flag
= NFS4_OPEN_DELEGATE_NONE
;
1707 open
->op_recall
= 0;
1708 switch (open
->op_claim_type
) {
1709 case NFS4_OPEN_CLAIM_PREVIOUS
:
1710 if (!atomic_read(&cb
->cb_set
))
1711 open
->op_recall
= 1;
1712 flag
= open
->op_delegate_type
;
1713 if (flag
== NFS4_OPEN_DELEGATE_NONE
)
1716 case NFS4_OPEN_CLAIM_NULL
:
1717 /* Let's not give out any delegations till everyone's
1718 * had the chance to reclaim theirs.... */
1719 if (nfs4_in_grace())
1721 if (!atomic_read(&cb
->cb_set
) || !sop
->so_confirmed
)
1723 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
1724 flag
= NFS4_OPEN_DELEGATE_WRITE
;
1726 flag
= NFS4_OPEN_DELEGATE_READ
;
1732 dp
= alloc_init_deleg(sop
->so_client
, stp
, fh
, flag
);
1734 flag
= NFS4_OPEN_DELEGATE_NONE
;
1737 locks_init_lock(&fl
);
1738 fl
.fl_lmops
= &nfsd_lease_mng_ops
;
1739 fl
.fl_flags
= FL_LEASE
;
1740 fl
.fl_end
= OFFSET_MAX
;
1741 fl
.fl_owner
= (fl_owner_t
)dp
;
1742 fl
.fl_file
= stp
->st_vfs_file
;
1743 fl
.fl_pid
= current
->tgid
;
1745 /* setlease checks to see if delegation should be handed out.
1746 * the lock_manager callbacks fl_mylease and fl_change are used
1748 if ((status
= setlease(stp
->st_vfs_file
,
1749 flag
== NFS4_OPEN_DELEGATE_READ
? F_RDLCK
: F_WRLCK
, &flp
))) {
1750 dprintk("NFSD: setlease failed [%d], no delegation\n", status
);
1751 unhash_delegation(dp
);
1752 flag
= NFS4_OPEN_DELEGATE_NONE
;
1756 memcpy(&open
->op_delegate_stateid
, &dp
->dl_stateid
, sizeof(dp
->dl_stateid
));
1758 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1759 dp
->dl_stateid
.si_boot
,
1760 dp
->dl_stateid
.si_stateownerid
,
1761 dp
->dl_stateid
.si_fileid
,
1762 dp
->dl_stateid
.si_generation
);
1764 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
1765 && flag
== NFS4_OPEN_DELEGATE_NONE
1766 && open
->op_delegate_type
!= NFS4_OPEN_DELEGATE_NONE
)
1767 printk("NFSD: WARNING: refusing delegation reclaim\n");
1768 open
->op_delegate_type
= flag
;
1772 * called with nfs4_lock_state() held.
1775 nfsd4_process_open2(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open
*open
)
1777 struct nfs4_file
*fp
= NULL
;
1778 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
1779 struct nfs4_stateid
*stp
= NULL
;
1780 struct nfs4_delegation
*dp
= NULL
;
1783 if (nfs4_in_grace() && open
->op_claim_type
!= NFS4_OPEN_CLAIM_PREVIOUS
)
1784 return nfserr_grace
;
1786 if (!nfs4_in_grace() && open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
)
1787 return nfserr_no_grace
;
1789 status
= nfserr_inval
;
1790 if (!TEST_ACCESS(open
->op_share_access
) || !TEST_DENY(open
->op_share_deny
))
1793 * Lookup file; if found, lookup stateid and check open request,
1794 * and check for delegations in the process of being recalled.
1795 * If not found, create the nfs4_file struct
1797 fp
= find_file(ino
);
1799 if ((status
= nfs4_check_open(fp
, open
, &stp
)))
1801 status
= nfs4_check_deleg(fp
, open
, &dp
);
1805 status
= nfserr_bad_stateid
;
1806 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_DELEGATE_CUR
)
1808 status
= nfserr_resource
;
1809 fp
= alloc_init_file(ino
);
1815 * OPEN the file, or upgrade an existing OPEN.
1816 * If truncate fails, the OPEN fails.
1819 /* Stateid was found, this is an OPEN upgrade */
1820 status
= nfs4_upgrade_open(rqstp
, current_fh
, stp
, open
);
1823 update_stateid(&stp
->st_stateid
);
1825 /* Stateid was not found, this is a new OPEN */
1827 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
1831 status
= nfs4_new_open(rqstp
, &stp
, dp
, current_fh
, flags
);
1834 init_stateid(stp
, fp
, open
);
1835 status
= nfsd4_truncate(rqstp
, current_fh
, open
);
1837 release_stateid(stp
, OPEN_STATE
);
1841 memcpy(&open
->op_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
1844 * Attempt to hand out a delegation. No error return, because the
1845 * OPEN succeeds even if we fail.
1847 nfs4_open_delegation(current_fh
, open
, stp
);
1851 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1852 stp
->st_stateid
.si_boot
, stp
->st_stateid
.si_stateownerid
,
1853 stp
->st_stateid
.si_fileid
, stp
->st_stateid
.si_generation
);
1857 if (status
== 0 && open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
)
1858 nfs4_set_claim_prev(open
);
1860 * To finish the open response, we just need to set the rflags.
1862 open
->op_rflags
= NFS4_OPEN_RESULT_LOCKTYPE_POSIX
;
1863 if (!open
->op_stateowner
->so_confirmed
)
1864 open
->op_rflags
|= NFS4_OPEN_RESULT_CONFIRM
;
1869 static struct workqueue_struct
*laundry_wq
;
1870 static struct work_struct laundromat_work
;
1871 static void laundromat_main(void *);
1872 static DECLARE_WORK(laundromat_work
, laundromat_main
, NULL
);
1875 nfsd4_renew(clientid_t
*clid
)
1877 struct nfs4_client
*clp
;
1881 dprintk("process_renew(%08x/%08x): starting\n",
1882 clid
->cl_boot
, clid
->cl_id
);
1883 status
= nfserr_stale_clientid
;
1884 if (STALE_CLIENTID(clid
))
1886 clp
= find_confirmed_client(clid
);
1887 status
= nfserr_expired
;
1889 /* We assume the client took too long to RENEW. */
1890 dprintk("nfsd4_renew: clientid not found!\n");
1894 status
= nfserr_cb_path_down
;
1895 if (!list_empty(&clp
->cl_delegations
)
1896 && !atomic_read(&clp
->cl_callback
.cb_set
))
1900 nfs4_unlock_state();
1907 dprintk("NFSD: end of grace period\n");
1908 nfsd4_recdir_purge_old();
1913 nfs4_laundromat(void)
1915 struct nfs4_client
*clp
;
1916 struct nfs4_stateowner
*sop
;
1917 struct nfs4_delegation
*dp
;
1918 struct list_head
*pos
, *next
, reaplist
;
1919 time_t cutoff
= get_seconds() - NFSD_LEASE_TIME
;
1920 time_t t
, clientid_val
= NFSD_LEASE_TIME
;
1921 time_t u
, test_val
= NFSD_LEASE_TIME
;
1925 dprintk("NFSD: laundromat service - starting\n");
1928 list_for_each_safe(pos
, next
, &client_lru
) {
1929 clp
= list_entry(pos
, struct nfs4_client
, cl_lru
);
1930 if (time_after((unsigned long)clp
->cl_time
, (unsigned long)cutoff
)) {
1931 t
= clp
->cl_time
- cutoff
;
1932 if (clientid_val
> t
)
1936 dprintk("NFSD: purging unused client (clientid %08x)\n",
1937 clp
->cl_clientid
.cl_id
);
1938 nfsd4_remove_clid_dir(clp
);
1941 INIT_LIST_HEAD(&reaplist
);
1942 spin_lock(&recall_lock
);
1943 list_for_each_safe(pos
, next
, &del_recall_lru
) {
1944 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
1945 if (time_after((unsigned long)dp
->dl_time
, (unsigned long)cutoff
)) {
1946 u
= dp
->dl_time
- cutoff
;
1951 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1953 list_move(&dp
->dl_recall_lru
, &reaplist
);
1955 spin_unlock(&recall_lock
);
1956 list_for_each_safe(pos
, next
, &reaplist
) {
1957 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
1958 list_del_init(&dp
->dl_recall_lru
);
1959 unhash_delegation(dp
);
1961 test_val
= NFSD_LEASE_TIME
;
1962 list_for_each_safe(pos
, next
, &close_lru
) {
1963 sop
= list_entry(pos
, struct nfs4_stateowner
, so_close_lru
);
1964 if (time_after((unsigned long)sop
->so_time
, (unsigned long)cutoff
)) {
1965 u
= sop
->so_time
- cutoff
;
1970 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1972 list_del(&sop
->so_close_lru
);
1973 nfs4_put_stateowner(sop
);
1975 if (clientid_val
< NFSD_LAUNDROMAT_MINTIMEOUT
)
1976 clientid_val
= NFSD_LAUNDROMAT_MINTIMEOUT
;
1977 nfs4_unlock_state();
1978 return clientid_val
;
1982 laundromat_main(void *not_used
)
1986 t
= nfs4_laundromat();
1987 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t
);
1988 queue_delayed_work(laundry_wq
, &laundromat_work
, t
*HZ
);
1991 static struct nfs4_stateowner
*
1992 search_close_lru(u32 st_id
, int flags
)
1994 struct nfs4_stateowner
*local
= NULL
;
1996 if (flags
& CLOSE_STATE
) {
1997 list_for_each_entry(local
, &close_lru
, so_close_lru
) {
1998 if (local
->so_id
== st_id
)
2006 nfs4_check_fh(struct svc_fh
*fhp
, struct nfs4_stateid
*stp
)
2008 return fhp
->fh_dentry
->d_inode
!= stp
->st_vfs_file
->f_dentry
->d_inode
;
2012 STALE_STATEID(stateid_t
*stateid
)
2014 if (stateid
->si_boot
== boot_time
)
2016 dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
2017 stateid
->si_boot
, stateid
->si_stateownerid
, stateid
->si_fileid
,
2018 stateid
->si_generation
);
2023 access_permit_read(unsigned long access_bmap
)
2025 return test_bit(NFS4_SHARE_ACCESS_READ
, &access_bmap
) ||
2026 test_bit(NFS4_SHARE_ACCESS_BOTH
, &access_bmap
) ||
2027 test_bit(NFS4_SHARE_ACCESS_WRITE
, &access_bmap
);
2031 access_permit_write(unsigned long access_bmap
)
2033 return test_bit(NFS4_SHARE_ACCESS_WRITE
, &access_bmap
) ||
2034 test_bit(NFS4_SHARE_ACCESS_BOTH
, &access_bmap
);
2038 int nfs4_check_openmode(struct nfs4_stateid
*stp
, int flags
)
2040 int status
= nfserr_openmode
;
2042 if ((flags
& WR_STATE
) && (!access_permit_write(stp
->st_access_bmap
)))
2044 if ((flags
& RD_STATE
) && (!access_permit_read(stp
->st_access_bmap
)))
2052 check_special_stateids(svc_fh
*current_fh
, stateid_t
*stateid
, int flags
)
2054 /* Trying to call delegreturn with a special stateid? Yuch: */
2055 if (!(flags
& (RD_STATE
| WR_STATE
)))
2056 return nfserr_bad_stateid
;
2057 else if (ONE_STATEID(stateid
) && (flags
& RD_STATE
))
2059 else if (nfs4_in_grace()) {
2060 /* Answer in remaining cases depends on existance of
2061 * conflicting state; so we must wait out the grace period. */
2062 return nfserr_grace
;
2063 } else if (flags
& WR_STATE
)
2064 return nfs4_share_conflict(current_fh
,
2065 NFS4_SHARE_DENY_WRITE
);
2066 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2067 return nfs4_share_conflict(current_fh
,
2068 NFS4_SHARE_DENY_READ
);
2072 * Allow READ/WRITE during grace period on recovered state only for files
2073 * that are not able to provide mandatory locking.
2076 io_during_grace_disallowed(struct inode
*inode
, int flags
)
2078 return nfs4_in_grace() && (flags
& (RD_STATE
| WR_STATE
))
2079 && MANDATORY_LOCK(inode
);
2083 * Checks for stateid operations
2086 nfs4_preprocess_stateid_op(struct svc_fh
*current_fh
, stateid_t
*stateid
, int flags
, struct file
**filpp
)
2088 struct nfs4_stateid
*stp
= NULL
;
2089 struct nfs4_delegation
*dp
= NULL
;
2091 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
2094 dprintk("NFSD: preprocess_stateid_op: stateid = (%08x/%08x/%08x/%08x)\n",
2095 stateid
->si_boot
, stateid
->si_stateownerid
,
2096 stateid
->si_fileid
, stateid
->si_generation
);
2100 if (io_during_grace_disallowed(ino
, flags
))
2101 return nfserr_grace
;
2103 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
))
2104 return check_special_stateids(current_fh
, stateid
, flags
);
2107 status
= nfserr_stale_stateid
;
2108 if (STALE_STATEID(stateid
))
2112 status
= nfserr_bad_stateid
;
2113 if (!stateid
->si_fileid
) { /* delegation stateid */
2114 if(!(dp
= find_delegation_stateid(ino
, stateid
))) {
2115 dprintk("NFSD: delegation stateid not found\n");
2116 if (nfs4_in_grace())
2117 status
= nfserr_grace
;
2120 stidp
= &dp
->dl_stateid
;
2121 } else { /* open or lock stateid */
2122 if (!(stp
= find_stateid(stateid
, flags
))) {
2123 dprintk("NFSD: open or lock stateid not found\n");
2124 if (nfs4_in_grace())
2125 status
= nfserr_grace
;
2128 if ((flags
& CHECK_FH
) && nfs4_check_fh(current_fh
, stp
))
2130 if (!stp
->st_stateowner
->so_confirmed
)
2132 stidp
= &stp
->st_stateid
;
2134 if (stateid
->si_generation
> stidp
->si_generation
)
2138 status
= nfserr_old_stateid
;
2139 if (stateid
->si_generation
< stidp
->si_generation
)
2142 if ((status
= nfs4_check_openmode(stp
,flags
)))
2144 renew_client(stp
->st_stateowner
->so_client
);
2146 *filpp
= stp
->st_vfs_file
;
2148 if ((status
= nfs4_check_delegmode(dp
, flags
)))
2150 renew_client(dp
->dl_client
);
2151 if (flags
& DELEG_RET
)
2152 unhash_delegation(dp
);
2154 *filpp
= dp
->dl_vfs_file
;
2164 return (type
== NFS4_READW_LT
|| type
== NFS4_READ_LT
) ?
2165 RD_STATE
: WR_STATE
;
2169 * Checks for sequence id mutating operations.
2172 nfs4_preprocess_seqid_op(struct svc_fh
*current_fh
, u32 seqid
, stateid_t
*stateid
, int flags
, struct nfs4_stateowner
**sopp
, struct nfs4_stateid
**stpp
, struct nfsd4_lock
*lock
)
2174 struct nfs4_stateid
*stp
;
2175 struct nfs4_stateowner
*sop
;
2177 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2178 "stateid = (%08x/%08x/%08x/%08x)\n", seqid
,
2179 stateid
->si_boot
, stateid
->si_stateownerid
, stateid
->si_fileid
,
2180 stateid
->si_generation
);
2185 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
)) {
2186 printk("NFSD: preprocess_seqid_op: magic stateid!\n");
2187 return nfserr_bad_stateid
;
2190 if (STALE_STATEID(stateid
))
2191 return nfserr_stale_stateid
;
2193 * We return BAD_STATEID if filehandle doesn't match stateid,
2194 * the confirmed flag is incorrecly set, or the generation
2195 * number is incorrect.
2197 stp
= find_stateid(stateid
, flags
);
2200 * Also, we should make sure this isn't just the result of
2203 sop
= search_close_lru(stateid
->si_stateownerid
, flags
);
2205 return nfserr_bad_stateid
;
2211 struct nfs4_stateowner
*sop
= stp
->st_stateowner
;
2212 clientid_t
*lockclid
= &lock
->v
.new.clientid
;
2213 struct nfs4_client
*clp
= sop
->so_client
;
2217 lkflg
= setlkflg(lock
->lk_type
);
2219 if (lock
->lk_is_new
) {
2220 if (!sop
->so_is_open_owner
)
2221 return nfserr_bad_stateid
;
2222 if (!cmp_clid(&clp
->cl_clientid
, lockclid
))
2223 return nfserr_bad_stateid
;
2224 /* stp is the open stateid */
2225 status
= nfs4_check_openmode(stp
, lkflg
);
2229 /* stp is the lock stateid */
2230 status
= nfs4_check_openmode(stp
->st_openstp
, lkflg
);
2237 if ((flags
& CHECK_FH
) && nfs4_check_fh(current_fh
, stp
)) {
2238 printk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
2239 return nfserr_bad_stateid
;
2243 *sopp
= sop
= stp
->st_stateowner
;
2246 * We now validate the seqid and stateid generation numbers.
2247 * For the moment, we ignore the possibility of
2248 * generation number wraparound.
2250 if (seqid
!= sop
->so_seqid
)
2253 if (sop
->so_confirmed
&& flags
& CONFIRM
) {
2254 printk("NFSD: preprocess_seqid_op: expected"
2255 " unconfirmed stateowner!\n");
2256 return nfserr_bad_stateid
;
2258 if (!sop
->so_confirmed
&& !(flags
& CONFIRM
)) {
2259 printk("NFSD: preprocess_seqid_op: stateowner not"
2260 " confirmed yet!\n");
2261 return nfserr_bad_stateid
;
2263 if (stateid
->si_generation
> stp
->st_stateid
.si_generation
) {
2264 printk("NFSD: preprocess_seqid_op: future stateid?!\n");
2265 return nfserr_bad_stateid
;
2268 if (stateid
->si_generation
< stp
->st_stateid
.si_generation
) {
2269 printk("NFSD: preprocess_seqid_op: old stateid!\n");
2270 return nfserr_old_stateid
;
2272 renew_client(sop
->so_client
);
2276 if (seqid
== sop
->so_seqid
- 1) {
2277 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
2278 /* indicate replay to calling function */
2279 return NFSERR_REPLAY_ME
;
2281 printk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
2282 sop
->so_seqid
, seqid
);
2284 return nfserr_bad_seqid
;
2288 nfsd4_open_confirm(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open_confirm
*oc
, struct nfs4_stateowner
**replay_owner
)
2291 struct nfs4_stateowner
*sop
;
2292 struct nfs4_stateid
*stp
;
2294 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
2295 (int)current_fh
->fh_dentry
->d_name
.len
,
2296 current_fh
->fh_dentry
->d_name
.name
);
2298 if ((status
= fh_verify(rqstp
, current_fh
, S_IFREG
, 0)))
2303 if ((status
= nfs4_preprocess_seqid_op(current_fh
, oc
->oc_seqid
,
2304 &oc
->oc_req_stateid
,
2305 CHECK_FH
| CONFIRM
| OPEN_STATE
,
2306 &oc
->oc_stateowner
, &stp
, NULL
)))
2309 sop
= oc
->oc_stateowner
;
2310 sop
->so_confirmed
= 1;
2311 update_stateid(&stp
->st_stateid
);
2312 memcpy(&oc
->oc_resp_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2313 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
2314 "stateid=(%08x/%08x/%08x/%08x)\n", oc
->oc_seqid
,
2315 stp
->st_stateid
.si_boot
,
2316 stp
->st_stateid
.si_stateownerid
,
2317 stp
->st_stateid
.si_fileid
,
2318 stp
->st_stateid
.si_generation
);
2320 nfsd4_create_clid_dir(sop
->so_client
);
2322 if (oc
->oc_stateowner
) {
2323 nfs4_get_stateowner(oc
->oc_stateowner
);
2324 *replay_owner
= oc
->oc_stateowner
;
2326 nfs4_unlock_state();
2332 * unset all bits in union bitmap (bmap) that
2333 * do not exist in share (from successful OPEN_DOWNGRADE)
2336 reset_union_bmap_access(unsigned long access
, unsigned long *bmap
)
2339 for (i
= 1; i
< 4; i
++) {
2340 if ((i
& access
) != i
)
2341 __clear_bit(i
, bmap
);
2346 reset_union_bmap_deny(unsigned long deny
, unsigned long *bmap
)
2349 for (i
= 0; i
< 4; i
++) {
2350 if ((i
& deny
) != i
)
2351 __clear_bit(i
, bmap
);
2356 nfsd4_open_downgrade(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open_downgrade
*od
, struct nfs4_stateowner
**replay_owner
)
2359 struct nfs4_stateid
*stp
;
2360 unsigned int share_access
;
2362 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
2363 (int)current_fh
->fh_dentry
->d_name
.len
,
2364 current_fh
->fh_dentry
->d_name
.name
);
2366 if (!TEST_ACCESS(od
->od_share_access
) || !TEST_DENY(od
->od_share_deny
))
2367 return nfserr_inval
;
2370 if ((status
= nfs4_preprocess_seqid_op(current_fh
, od
->od_seqid
,
2372 CHECK_FH
| OPEN_STATE
,
2373 &od
->od_stateowner
, &stp
, NULL
)))
2376 status
= nfserr_inval
;
2377 if (!test_bit(od
->od_share_access
, &stp
->st_access_bmap
)) {
2378 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2379 stp
->st_access_bmap
, od
->od_share_access
);
2382 if (!test_bit(od
->od_share_deny
, &stp
->st_deny_bmap
)) {
2383 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2384 stp
->st_deny_bmap
, od
->od_share_deny
);
2387 set_access(&share_access
, stp
->st_access_bmap
);
2388 nfs4_file_downgrade(stp
->st_vfs_file
,
2389 share_access
& ~od
->od_share_access
);
2391 reset_union_bmap_access(od
->od_share_access
, &stp
->st_access_bmap
);
2392 reset_union_bmap_deny(od
->od_share_deny
, &stp
->st_deny_bmap
);
2394 update_stateid(&stp
->st_stateid
);
2395 memcpy(&od
->od_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2398 if (od
->od_stateowner
) {
2399 nfs4_get_stateowner(od
->od_stateowner
);
2400 *replay_owner
= od
->od_stateowner
;
2402 nfs4_unlock_state();
2407 * nfs4_unlock_state() called after encode
2410 nfsd4_close(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_close
*close
, struct nfs4_stateowner
**replay_owner
)
2413 struct nfs4_stateid
*stp
;
2415 dprintk("NFSD: nfsd4_close on file %.*s\n",
2416 (int)current_fh
->fh_dentry
->d_name
.len
,
2417 current_fh
->fh_dentry
->d_name
.name
);
2420 /* check close_lru for replay */
2421 if ((status
= nfs4_preprocess_seqid_op(current_fh
, close
->cl_seqid
,
2423 CHECK_FH
| OPEN_STATE
| CLOSE_STATE
,
2424 &close
->cl_stateowner
, &stp
, NULL
)))
2427 * Return success, but first update the stateid.
2430 update_stateid(&stp
->st_stateid
);
2431 memcpy(&close
->cl_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2433 /* release_state_owner() calls nfsd_close() if needed */
2434 release_state_owner(stp
, OPEN_STATE
);
2436 if (close
->cl_stateowner
) {
2437 nfs4_get_stateowner(close
->cl_stateowner
);
2438 *replay_owner
= close
->cl_stateowner
;
2440 nfs4_unlock_state();
2445 nfsd4_delegreturn(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_delegreturn
*dr
)
2449 if ((status
= fh_verify(rqstp
, current_fh
, S_IFREG
, 0)))
2453 status
= nfs4_preprocess_stateid_op(current_fh
, &dr
->dr_stateid
, DELEG_RET
, NULL
);
2454 nfs4_unlock_state();
2461 * Lock owner state (byte-range locks)
2463 #define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
2464 #define LOCK_HASH_BITS 8
2465 #define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
2466 #define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
2468 #define lockownerid_hashval(id) \
2469 ((id) & LOCK_HASH_MASK)
2471 static inline unsigned int
2472 lock_ownerstr_hashval(struct inode
*inode
, u32 cl_id
,
2473 struct xdr_netobj
*ownername
)
2475 return (file_hashval(inode
) + cl_id
2476 + opaque_hashval(ownername
->data
, ownername
->len
))
2480 static struct list_head lock_ownerid_hashtbl
[LOCK_HASH_SIZE
];
2481 static struct list_head lock_ownerstr_hashtbl
[LOCK_HASH_SIZE
];
2482 static struct list_head lockstateid_hashtbl
[STATEID_HASH_SIZE
];
2484 static struct nfs4_stateid
*
2485 find_stateid(stateid_t
*stid
, int flags
)
2487 struct nfs4_stateid
*local
= NULL
;
2488 u32 st_id
= stid
->si_stateownerid
;
2489 u32 f_id
= stid
->si_fileid
;
2490 unsigned int hashval
;
2492 dprintk("NFSD: find_stateid flags 0x%x\n",flags
);
2493 if ((flags
& LOCK_STATE
) || (flags
& RD_STATE
) || (flags
& WR_STATE
)) {
2494 hashval
= stateid_hashval(st_id
, f_id
);
2495 list_for_each_entry(local
, &lockstateid_hashtbl
[hashval
], st_hash
) {
2496 if ((local
->st_stateid
.si_stateownerid
== st_id
) &&
2497 (local
->st_stateid
.si_fileid
== f_id
))
2501 if ((flags
& OPEN_STATE
) || (flags
& RD_STATE
) || (flags
& WR_STATE
)) {
2502 hashval
= stateid_hashval(st_id
, f_id
);
2503 list_for_each_entry(local
, &stateid_hashtbl
[hashval
], st_hash
) {
2504 if ((local
->st_stateid
.si_stateownerid
== st_id
) &&
2505 (local
->st_stateid
.si_fileid
== f_id
))
2512 static struct nfs4_delegation
*
2513 find_delegation_stateid(struct inode
*ino
, stateid_t
*stid
)
2515 struct nfs4_file
*fp
;
2516 struct nfs4_delegation
*dl
;
2518 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2519 stid
->si_boot
, stid
->si_stateownerid
,
2520 stid
->si_fileid
, stid
->si_generation
);
2522 fp
= find_file(ino
);
2525 dl
= find_delegation_file(fp
, stid
);
2531 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2532 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2533 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
2534 * locking, this prevents us from being completely protocol-compliant. The
2535 * real solution to this problem is to start using unsigned file offsets in
2536 * the VFS, but this is a very deep change!
2539 nfs4_transform_lock_offset(struct file_lock
*lock
)
2541 if (lock
->fl_start
< 0)
2542 lock
->fl_start
= OFFSET_MAX
;
2543 if (lock
->fl_end
< 0)
2544 lock
->fl_end
= OFFSET_MAX
;
2548 nfs4_verify_lock_stateowner(struct nfs4_stateowner
*sop
, unsigned int hashval
)
2550 struct nfs4_stateowner
*local
= NULL
;
2553 if (hashval
>= LOCK_HASH_SIZE
)
2555 list_for_each_entry(local
, &lock_ownerid_hashtbl
[hashval
], so_idhash
) {
2567 nfs4_set_lock_denied(struct file_lock
*fl
, struct nfsd4_lock_denied
*deny
)
2569 struct nfs4_stateowner
*sop
= (struct nfs4_stateowner
*) fl
->fl_owner
;
2570 unsigned int hval
= lockownerid_hashval(sop
->so_id
);
2572 deny
->ld_sop
= NULL
;
2573 if (nfs4_verify_lock_stateowner(sop
, hval
)) {
2574 kref_get(&sop
->so_ref
);
2576 deny
->ld_clientid
= sop
->so_client
->cl_clientid
;
2578 deny
->ld_start
= fl
->fl_start
;
2579 deny
->ld_length
= ~(u64
)0;
2580 if (fl
->fl_end
!= ~(u64
)0)
2581 deny
->ld_length
= fl
->fl_end
- fl
->fl_start
+ 1;
2582 deny
->ld_type
= NFS4_READ_LT
;
2583 if (fl
->fl_type
!= F_RDLCK
)
2584 deny
->ld_type
= NFS4_WRITE_LT
;
2587 static struct nfs4_stateowner
*
2588 find_lockstateowner_str(struct inode
*inode
, clientid_t
*clid
,
2589 struct xdr_netobj
*owner
)
2591 unsigned int hashval
= lock_ownerstr_hashval(inode
, clid
->cl_id
, owner
);
2592 struct nfs4_stateowner
*op
;
2594 list_for_each_entry(op
, &lock_ownerstr_hashtbl
[hashval
], so_strhash
) {
2595 if (cmp_owner_str(op
, owner
, clid
))
2602 * Alloc a lock owner structure.
2603 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
2606 * strhashval = lock_ownerstr_hashval
2609 static struct nfs4_stateowner
*
2610 alloc_init_lock_stateowner(unsigned int strhashval
, struct nfs4_client
*clp
, struct nfs4_stateid
*open_stp
, struct nfsd4_lock
*lock
) {
2611 struct nfs4_stateowner
*sop
;
2612 struct nfs4_replay
*rp
;
2613 unsigned int idhashval
;
2615 if (!(sop
= alloc_stateowner(&lock
->lk_new_owner
)))
2617 idhashval
= lockownerid_hashval(current_ownerid
);
2618 INIT_LIST_HEAD(&sop
->so_idhash
);
2619 INIT_LIST_HEAD(&sop
->so_strhash
);
2620 INIT_LIST_HEAD(&sop
->so_perclient
);
2621 INIT_LIST_HEAD(&sop
->so_stateids
);
2622 INIT_LIST_HEAD(&sop
->so_perstateid
);
2623 INIT_LIST_HEAD(&sop
->so_close_lru
); /* not used */
2625 list_add(&sop
->so_idhash
, &lock_ownerid_hashtbl
[idhashval
]);
2626 list_add(&sop
->so_strhash
, &lock_ownerstr_hashtbl
[strhashval
]);
2627 list_add(&sop
->so_perstateid
, &open_stp
->st_lockowners
);
2628 sop
->so_is_open_owner
= 0;
2629 sop
->so_id
= current_ownerid
++;
2630 sop
->so_client
= clp
;
2631 /* It is the openowner seqid that will be incremented in encode in the
2632 * case of new lockowners; so increment the lock seqid manually: */
2633 sop
->so_seqid
= lock
->lk_new_lock_seqid
+ 1;
2634 sop
->so_confirmed
= 1;
2635 rp
= &sop
->so_replay
;
2636 rp
->rp_status
= NFSERR_SERVERFAULT
;
2638 rp
->rp_buf
= rp
->rp_ibuf
;
2642 static struct nfs4_stateid
*
2643 alloc_init_lock_stateid(struct nfs4_stateowner
*sop
, struct nfs4_file
*fp
, struct nfs4_stateid
*open_stp
)
2645 struct nfs4_stateid
*stp
;
2646 unsigned int hashval
= stateid_hashval(sop
->so_id
, fp
->fi_id
);
2648 stp
= nfs4_alloc_stateid();
2651 INIT_LIST_HEAD(&stp
->st_hash
);
2652 INIT_LIST_HEAD(&stp
->st_perfile
);
2653 INIT_LIST_HEAD(&stp
->st_perstateowner
);
2654 INIT_LIST_HEAD(&stp
->st_lockowners
); /* not used */
2655 list_add(&stp
->st_hash
, &lockstateid_hashtbl
[hashval
]);
2656 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
2657 list_add(&stp
->st_perstateowner
, &sop
->so_stateids
);
2658 stp
->st_stateowner
= sop
;
2661 stp
->st_stateid
.si_boot
= boot_time
;
2662 stp
->st_stateid
.si_stateownerid
= sop
->so_id
;
2663 stp
->st_stateid
.si_fileid
= fp
->fi_id
;
2664 stp
->st_stateid
.si_generation
= 0;
2665 stp
->st_vfs_file
= open_stp
->st_vfs_file
; /* FIXME refcount?? */
2666 stp
->st_access_bmap
= open_stp
->st_access_bmap
;
2667 stp
->st_deny_bmap
= open_stp
->st_deny_bmap
;
2668 stp
->st_openstp
= open_stp
;
2675 check_lock_length(u64 offset
, u64 length
)
2677 return ((length
== 0) || ((length
!= ~(u64
)0) &&
2678 LOFF_OVERFLOW(offset
, length
)));
2685 nfsd4_lock(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_lock
*lock
, struct nfs4_stateowner
**replay_owner
)
2687 struct nfs4_stateowner
*open_sop
= NULL
;
2688 struct nfs4_stateowner
*lock_sop
= NULL
;
2689 struct nfs4_stateid
*lock_stp
;
2691 struct file_lock file_lock
;
2692 struct file_lock
*conflock
;
2694 unsigned int strhashval
;
2696 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2697 (long long) lock
->lk_offset
,
2698 (long long) lock
->lk_length
);
2700 if (check_lock_length(lock
->lk_offset
, lock
->lk_length
))
2701 return nfserr_inval
;
2705 if (lock
->lk_is_new
) {
2707 * Client indicates that this is a new lockowner.
2708 * Use open owner and open stateid to create lock owner and
2711 struct nfs4_stateid
*open_stp
= NULL
;
2712 struct nfs4_file
*fp
;
2714 status
= nfserr_stale_clientid
;
2715 if (STALE_CLIENTID(&lock
->lk_new_clientid
))
2718 /* validate and update open stateid and open seqid */
2719 status
= nfs4_preprocess_seqid_op(current_fh
,
2720 lock
->lk_new_open_seqid
,
2721 &lock
->lk_new_open_stateid
,
2722 CHECK_FH
| OPEN_STATE
,
2723 &lock
->lk_stateowner
, &open_stp
,
2727 open_sop
= lock
->lk_stateowner
;
2728 /* create lockowner and lock stateid */
2729 fp
= open_stp
->st_file
;
2730 strhashval
= lock_ownerstr_hashval(fp
->fi_inode
,
2731 open_sop
->so_client
->cl_clientid
.cl_id
,
2732 &lock
->v
.new.owner
);
2733 /* XXX: Do we need to check for duplicate stateowners on
2734 * the same file, or should they just be allowed (and
2735 * create new stateids)? */
2736 status
= nfserr_resource
;
2737 lock_sop
= alloc_init_lock_stateowner(strhashval
,
2738 open_sop
->so_client
, open_stp
, lock
);
2739 if (lock_sop
== NULL
)
2741 lock_stp
= alloc_init_lock_stateid(lock_sop
, fp
, open_stp
);
2742 if (lock_stp
== NULL
) {
2743 release_stateowner(lock_sop
);
2747 /* lock (lock owner + lock stateid) already exists */
2748 status
= nfs4_preprocess_seqid_op(current_fh
,
2749 lock
->lk_old_lock_seqid
,
2750 &lock
->lk_old_lock_stateid
,
2751 CHECK_FH
| LOCK_STATE
,
2752 &lock
->lk_stateowner
, &lock_stp
, lock
);
2755 lock_sop
= lock
->lk_stateowner
;
2757 /* lock->lk_stateowner and lock_stp have been created or found */
2758 filp
= lock_stp
->st_vfs_file
;
2760 if ((status
= fh_verify(rqstp
, current_fh
, S_IFREG
, MAY_LOCK
))) {
2761 dprintk("NFSD: nfsd4_lock: permission denied!\n");
2765 status
= nfserr_grace
;
2766 if (nfs4_in_grace() && !lock
->lk_reclaim
)
2768 status
= nfserr_no_grace
;
2769 if (!nfs4_in_grace() && lock
->lk_reclaim
)
2772 locks_init_lock(&file_lock
);
2773 switch (lock
->lk_type
) {
2776 file_lock
.fl_type
= F_RDLCK
;
2779 case NFS4_WRITEW_LT
:
2780 file_lock
.fl_type
= F_WRLCK
;
2783 status
= nfserr_inval
;
2786 file_lock
.fl_owner
= (fl_owner_t
)lock_sop
;
2787 file_lock
.fl_pid
= current
->tgid
;
2788 file_lock
.fl_file
= filp
;
2789 file_lock
.fl_flags
= FL_POSIX
;
2791 file_lock
.fl_start
= lock
->lk_offset
;
2792 if ((lock
->lk_length
== ~(u64
)0) ||
2793 LOFF_OVERFLOW(lock
->lk_offset
, lock
->lk_length
))
2794 file_lock
.fl_end
= ~(u64
)0;
2796 file_lock
.fl_end
= lock
->lk_offset
+ lock
->lk_length
- 1;
2797 nfs4_transform_lock_offset(&file_lock
);
2800 * Try to lock the file in the VFS.
2801 * Note: locks.c uses the BKL to protect the inode's lock list.
2804 status
= posix_lock_file(filp
, &file_lock
);
2805 if (file_lock
.fl_ops
&& file_lock
.fl_ops
->fl_release_private
)
2806 file_lock
.fl_ops
->fl_release_private(&file_lock
);
2807 dprintk("NFSD: nfsd4_lock: posix_lock_file status %d\n",status
);
2809 case 0: /* success! */
2810 update_stateid(&lock_stp
->st_stateid
);
2811 memcpy(&lock
->lk_resp_stateid
, &lock_stp
->st_stateid
,
2815 goto conflicting_lock
;
2817 status
= nfserr_deadlock
;
2819 dprintk("NFSD: nfsd4_lock: posix_lock_file() failed! status %d\n",status
);
2820 goto out_destroy_new_stateid
;
2824 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2825 status
= nfserr_denied
;
2826 /* XXX There is a race here. Future patch needed to provide
2827 * an atomic posix_lock_and_test_file
2829 if (!(conflock
= posix_test_lock(filp
, &file_lock
))) {
2830 status
= nfserr_serverfault
;
2833 nfs4_set_lock_denied(conflock
, &lock
->lk_denied
);
2835 out_destroy_new_stateid
:
2836 if (lock
->lk_is_new
) {
2837 dprintk("NFSD: nfsd4_lock: destroy new stateid!\n");
2839 * An error encountered after instantiation of the new
2840 * stateid has forced us to destroy it.
2842 release_state_owner(lock_stp
, LOCK_STATE
);
2845 if (lock
->lk_stateowner
) {
2846 nfs4_get_stateowner(lock
->lk_stateowner
);
2847 *replay_owner
= lock
->lk_stateowner
;
2849 nfs4_unlock_state();
2857 nfsd4_lockt(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_lockt
*lockt
)
2859 struct inode
*inode
;
2861 struct file_lock file_lock
;
2862 struct file_lock
*conflicting_lock
;
2865 if (nfs4_in_grace())
2866 return nfserr_grace
;
2868 if (check_lock_length(lockt
->lt_offset
, lockt
->lt_length
))
2869 return nfserr_inval
;
2871 lockt
->lt_stateowner
= NULL
;
2874 status
= nfserr_stale_clientid
;
2875 if (STALE_CLIENTID(&lockt
->lt_clientid
))
2878 if ((status
= fh_verify(rqstp
, current_fh
, S_IFREG
, 0))) {
2879 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
2880 if (status
== nfserr_symlink
)
2881 status
= nfserr_inval
;
2885 inode
= current_fh
->fh_dentry
->d_inode
;
2886 locks_init_lock(&file_lock
);
2887 switch (lockt
->lt_type
) {
2890 file_lock
.fl_type
= F_RDLCK
;
2893 case NFS4_WRITEW_LT
:
2894 file_lock
.fl_type
= F_WRLCK
;
2897 printk("NFSD: nfs4_lockt: bad lock type!\n");
2898 status
= nfserr_inval
;
2902 lockt
->lt_stateowner
= find_lockstateowner_str(inode
,
2903 &lockt
->lt_clientid
, &lockt
->lt_owner
);
2904 if (lockt
->lt_stateowner
)
2905 file_lock
.fl_owner
= (fl_owner_t
)lockt
->lt_stateowner
;
2906 file_lock
.fl_pid
= current
->tgid
;
2907 file_lock
.fl_flags
= FL_POSIX
;
2909 file_lock
.fl_start
= lockt
->lt_offset
;
2910 if ((lockt
->lt_length
== ~(u64
)0) || LOFF_OVERFLOW(lockt
->lt_offset
, lockt
->lt_length
))
2911 file_lock
.fl_end
= ~(u64
)0;
2913 file_lock
.fl_end
= lockt
->lt_offset
+ lockt
->lt_length
- 1;
2915 nfs4_transform_lock_offset(&file_lock
);
2917 /* posix_test_lock uses the struct file _only_ to resolve the inode.
2918 * since LOCKT doesn't require an OPEN, and therefore a struct
2919 * file may not exist, pass posix_test_lock a struct file with
2920 * only the dentry:inode set.
2922 memset(&file
, 0, sizeof (struct file
));
2923 file
.f_dentry
= current_fh
->fh_dentry
;
2926 conflicting_lock
= posix_test_lock(&file
, &file_lock
);
2927 if (conflicting_lock
) {
2928 status
= nfserr_denied
;
2929 nfs4_set_lock_denied(conflicting_lock
, &lockt
->lt_denied
);
2932 nfs4_unlock_state();
2937 nfsd4_locku(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_locku
*locku
, struct nfs4_stateowner
**replay_owner
)
2939 struct nfs4_stateid
*stp
;
2940 struct file
*filp
= NULL
;
2941 struct file_lock file_lock
;
2944 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2945 (long long) locku
->lu_offset
,
2946 (long long) locku
->lu_length
);
2948 if (check_lock_length(locku
->lu_offset
, locku
->lu_length
))
2949 return nfserr_inval
;
2953 if ((status
= nfs4_preprocess_seqid_op(current_fh
,
2956 CHECK_FH
| LOCK_STATE
,
2957 &locku
->lu_stateowner
, &stp
, NULL
)))
2960 filp
= stp
->st_vfs_file
;
2962 locks_init_lock(&file_lock
);
2963 file_lock
.fl_type
= F_UNLCK
;
2964 file_lock
.fl_owner
= (fl_owner_t
) locku
->lu_stateowner
;
2965 file_lock
.fl_pid
= current
->tgid
;
2966 file_lock
.fl_file
= filp
;
2967 file_lock
.fl_flags
= FL_POSIX
;
2968 file_lock
.fl_start
= locku
->lu_offset
;
2970 if ((locku
->lu_length
== ~(u64
)0) || LOFF_OVERFLOW(locku
->lu_offset
, locku
->lu_length
))
2971 file_lock
.fl_end
= ~(u64
)0;
2973 file_lock
.fl_end
= locku
->lu_offset
+ locku
->lu_length
- 1;
2974 nfs4_transform_lock_offset(&file_lock
);
2977 * Try to unlock the file in the VFS.
2979 status
= posix_lock_file(filp
, &file_lock
);
2980 if (file_lock
.fl_ops
&& file_lock
.fl_ops
->fl_release_private
)
2981 file_lock
.fl_ops
->fl_release_private(&file_lock
);
2983 dprintk("NFSD: nfs4_locku: posix_lock_file failed!\n");
2987 * OK, unlock succeeded; the only thing left to do is update the stateid.
2989 update_stateid(&stp
->st_stateid
);
2990 memcpy(&locku
->lu_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2993 if (locku
->lu_stateowner
) {
2994 nfs4_get_stateowner(locku
->lu_stateowner
);
2995 *replay_owner
= locku
->lu_stateowner
;
2997 nfs4_unlock_state();
3001 status
= nfserrno(status
);
3007 * 1: locks held by lockowner
3008 * 0: no locks held by lockowner
3011 check_for_locks(struct file
*filp
, struct nfs4_stateowner
*lowner
)
3013 struct file_lock
**flpp
;
3014 struct inode
*inode
= filp
->f_dentry
->d_inode
;
3018 for (flpp
= &inode
->i_flock
; *flpp
!= NULL
; flpp
= &(*flpp
)->fl_next
) {
3019 if ((*flpp
)->fl_owner
== (fl_owner_t
)lowner
)
3029 nfsd4_release_lockowner(struct svc_rqst
*rqstp
, struct nfsd4_release_lockowner
*rlockowner
)
3031 clientid_t
*clid
= &rlockowner
->rl_clientid
;
3032 struct nfs4_stateowner
*sop
;
3033 struct nfs4_stateid
*stp
;
3034 struct xdr_netobj
*owner
= &rlockowner
->rl_owner
;
3035 struct list_head matches
;
3039 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3040 clid
->cl_boot
, clid
->cl_id
);
3042 /* XXX check for lease expiration */
3044 status
= nfserr_stale_clientid
;
3045 if (STALE_CLIENTID(clid
))
3050 status
= nfserr_locks_held
;
3051 /* XXX: we're doing a linear search through all the lockowners.
3052 * Yipes! For now we'll just hope clients aren't really using
3053 * release_lockowner much, but eventually we have to fix these
3054 * data structures. */
3055 INIT_LIST_HEAD(&matches
);
3056 for (i
= 0; i
< LOCK_HASH_SIZE
; i
++) {
3057 list_for_each_entry(sop
, &lock_ownerid_hashtbl
[i
], so_idhash
) {
3058 if (!cmp_owner_str(sop
, owner
, clid
))
3060 list_for_each_entry(stp
, &sop
->so_stateids
,
3062 if (check_for_locks(stp
->st_vfs_file
, sop
))
3064 /* Note: so_perclient unused for lockowners,
3065 * so it's OK to fool with here. */
3066 list_add(&sop
->so_perclient
, &matches
);
3070 /* Clients probably won't expect us to return with some (but not all)
3071 * of the lockowner state released; so don't release any until all
3072 * have been checked. */
3074 while (!list_empty(&matches
)) {
3075 sop
= list_entry(matches
.next
, struct nfs4_stateowner
,
3077 /* unhash_stateowner deletes so_perclient only
3078 * for openowners. */
3079 list_del(&sop
->so_perclient
);
3080 release_stateowner(sop
);
3083 nfs4_unlock_state();
3087 static inline struct nfs4_client_reclaim
*
3090 return kmalloc(sizeof(struct nfs4_client_reclaim
), GFP_KERNEL
);
3094 nfs4_has_reclaimed_state(const char *name
)
3096 unsigned int strhashval
= clientstr_hashval(name
);
3097 struct nfs4_client
*clp
;
3099 clp
= find_confirmed_client_by_str(name
, strhashval
);
3104 * failure => all reset bets are off, nfserr_no_grace...
3107 nfs4_client_to_reclaim(const char *name
)
3109 unsigned int strhashval
;
3110 struct nfs4_client_reclaim
*crp
= NULL
;
3112 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN
, name
);
3113 crp
= alloc_reclaim();
3116 strhashval
= clientstr_hashval(name
);
3117 INIT_LIST_HEAD(&crp
->cr_strhash
);
3118 list_add(&crp
->cr_strhash
, &reclaim_str_hashtbl
[strhashval
]);
3119 memcpy(crp
->cr_recdir
, name
, HEXDIR_LEN
);
3120 reclaim_str_hashtbl_size
++;
3125 nfs4_release_reclaim(void)
3127 struct nfs4_client_reclaim
*crp
= NULL
;
3130 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
3131 while (!list_empty(&reclaim_str_hashtbl
[i
])) {
3132 crp
= list_entry(reclaim_str_hashtbl
[i
].next
,
3133 struct nfs4_client_reclaim
, cr_strhash
);
3134 list_del(&crp
->cr_strhash
);
3136 reclaim_str_hashtbl_size
--;
3139 BUG_ON(reclaim_str_hashtbl_size
);
3143 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
3144 static struct nfs4_client_reclaim
*
3145 nfs4_find_reclaim_client(clientid_t
*clid
)
3147 unsigned int strhashval
;
3148 struct nfs4_client
*clp
;
3149 struct nfs4_client_reclaim
*crp
= NULL
;
3152 /* find clientid in conf_id_hashtbl */
3153 clp
= find_confirmed_client(clid
);
3157 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3158 clp
->cl_name
.len
, clp
->cl_name
.data
,
3161 /* find clp->cl_name in reclaim_str_hashtbl */
3162 strhashval
= clientstr_hashval(clp
->cl_recdir
);
3163 list_for_each_entry(crp
, &reclaim_str_hashtbl
[strhashval
], cr_strhash
) {
3164 if (same_name(crp
->cr_recdir
, clp
->cl_recdir
)) {
3172 * Called from OPEN. Look for clientid in reclaim list.
3175 nfs4_check_open_reclaim(clientid_t
*clid
)
3177 return nfs4_find_reclaim_client(clid
) ? nfs_ok
: nfserr_reclaim_bad
;
3180 /* initialization to perform at module load time: */
3183 nfs4_state_init(void)
3187 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
3188 INIT_LIST_HEAD(&conf_id_hashtbl
[i
]);
3189 INIT_LIST_HEAD(&conf_str_hashtbl
[i
]);
3190 INIT_LIST_HEAD(&unconf_str_hashtbl
[i
]);
3191 INIT_LIST_HEAD(&unconf_id_hashtbl
[i
]);
3193 for (i
= 0; i
< FILE_HASH_SIZE
; i
++) {
3194 INIT_LIST_HEAD(&file_hashtbl
[i
]);
3196 for (i
= 0; i
< OWNER_HASH_SIZE
; i
++) {
3197 INIT_LIST_HEAD(&ownerstr_hashtbl
[i
]);
3198 INIT_LIST_HEAD(&ownerid_hashtbl
[i
]);
3200 for (i
= 0; i
< STATEID_HASH_SIZE
; i
++) {
3201 INIT_LIST_HEAD(&stateid_hashtbl
[i
]);
3202 INIT_LIST_HEAD(&lockstateid_hashtbl
[i
]);
3204 for (i
= 0; i
< LOCK_HASH_SIZE
; i
++) {
3205 INIT_LIST_HEAD(&lock_ownerid_hashtbl
[i
]);
3206 INIT_LIST_HEAD(&lock_ownerstr_hashtbl
[i
]);
3208 memset(&onestateid
, ~0, sizeof(stateid_t
));
3209 INIT_LIST_HEAD(&close_lru
);
3210 INIT_LIST_HEAD(&client_lru
);
3211 INIT_LIST_HEAD(&del_recall_lru
);
3212 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++)
3213 INIT_LIST_HEAD(&reclaim_str_hashtbl
[i
]);
3214 reclaim_str_hashtbl_size
= 0;
3218 nfsd4_load_reboot_recovery_data(void)
3223 nfsd4_init_recdir(user_recovery_dirname
);
3224 status
= nfsd4_recdir_load();
3225 nfs4_unlock_state();
3227 printk("NFSD: Failure reading reboot recovery data\n");
3230 /* initialization to perform when the nfsd service is started: */
3233 __nfs4_state_start(void)
3237 boot_time
= get_seconds();
3238 grace_time
= max(user_lease_time
, lease_time
);
3239 lease_time
= user_lease_time
;
3241 printk("NFSD: starting %ld-second grace period\n", grace_time
);
3242 laundry_wq
= create_singlethread_workqueue("nfsd4");
3243 queue_delayed_work(laundry_wq
, &laundromat_work
, grace_time
*HZ
);
3247 nfs4_state_start(void)
3253 status
= nfsd4_init_slabs();
3256 nfsd4_load_reboot_recovery_data();
3257 __nfs4_state_start();
3269 nfs4_lease_time(void)
3275 __nfs4_state_shutdown(void)
3278 struct nfs4_client
*clp
= NULL
;
3279 struct nfs4_delegation
*dp
= NULL
;
3280 struct nfs4_stateowner
*sop
= NULL
;
3281 struct list_head
*pos
, *next
, reaplist
;
3283 list_for_each_safe(pos
, next
, &close_lru
) {
3284 sop
= list_entry(pos
, struct nfs4_stateowner
, so_close_lru
);
3285 list_del(&sop
->so_close_lru
);
3286 nfs4_put_stateowner(sop
);
3289 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
3290 while (!list_empty(&conf_id_hashtbl
[i
])) {
3291 clp
= list_entry(conf_id_hashtbl
[i
].next
, struct nfs4_client
, cl_idhash
);
3294 while (!list_empty(&unconf_str_hashtbl
[i
])) {
3295 clp
= list_entry(unconf_str_hashtbl
[i
].next
, struct nfs4_client
, cl_strhash
);
3299 INIT_LIST_HEAD(&reaplist
);
3300 spin_lock(&recall_lock
);
3301 list_for_each_safe(pos
, next
, &del_recall_lru
) {
3302 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
3303 list_move(&dp
->dl_recall_lru
, &reaplist
);
3305 spin_unlock(&recall_lock
);
3306 list_for_each_safe(pos
, next
, &reaplist
) {
3307 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
3308 list_del_init(&dp
->dl_recall_lru
);
3309 unhash_delegation(dp
);
3312 cancel_delayed_work(&laundromat_work
);
3313 flush_workqueue(laundry_wq
);
3314 destroy_workqueue(laundry_wq
);
3315 nfsd4_shutdown_recdir();
3320 nfs4_state_shutdown(void)
3323 nfs4_release_reclaim();
3324 __nfs4_state_shutdown();
3326 nfs4_unlock_state();
3330 nfs4_set_recdir(char *recdir
)
3333 strcpy(user_recovery_dirname
, recdir
);
3334 nfs4_unlock_state();
3338 * Change the NFSv4 recovery directory to recdir.
3341 nfs4_reset_recoverydir(char *recdir
)
3344 struct nameidata nd
;
3346 status
= path_lookup(recdir
, LOOKUP_FOLLOW
, &nd
);
3350 if (S_ISDIR(nd
.dentry
->d_inode
->i_mode
)) {
3351 nfs4_set_recdir(recdir
);
3359 * Called when leasetime is changed.
3361 * The only way the protocol gives us to handle on-the-fly lease changes is to
3362 * simulate a reboot. Instead of doing that, we just wait till the next time
3363 * we start to register any changes in lease time. If the administrator
3364 * really wants to change the lease time *now*, they can go ahead and bring
3365 * nfsd down and then back up again after changing the lease time.
3368 nfs4_reset_lease(time_t leasetime
)
3371 user_lease_time
= leasetime
;