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>
52 #include <linux/mutex.h>
54 #define NFSDDBG_FACILITY NFSDDBG_PROC
57 static time_t lease_time
= 90; /* default lease time */
58 static time_t user_lease_time
= 90;
59 static time_t boot_time
;
60 static int in_grace
= 1;
61 static u32 current_clientid
= 1;
62 static u32 current_ownerid
= 1;
63 static u32 current_fileid
= 1;
64 static u32 current_delegid
= 1;
66 static stateid_t zerostateid
; /* bits all 0 */
67 static stateid_t onestateid
; /* bits all 1 */
69 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
70 #define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
72 /* forward declarations */
73 static struct nfs4_stateid
* find_stateid(stateid_t
*stid
, int flags
);
74 static struct nfs4_delegation
* find_delegation_stateid(struct inode
*ino
, stateid_t
*stid
);
75 static void release_stateid_lockowners(struct nfs4_stateid
*open_stp
);
76 static char user_recovery_dirname
[PATH_MAX
] = "/var/lib/nfs/v4recovery";
77 static void nfs4_set_recdir(char *recdir
);
82 * protects clientid_hashtbl[], clientstr_hashtbl[],
83 * unconfstr_hashtbl[], uncofid_hashtbl[].
85 static DEFINE_MUTEX(client_mutex
);
87 static kmem_cache_t
*stateowner_slab
= NULL
;
88 static kmem_cache_t
*file_slab
= NULL
;
89 static kmem_cache_t
*stateid_slab
= NULL
;
90 static kmem_cache_t
*deleg_slab
= NULL
;
95 mutex_lock(&client_mutex
);
99 nfs4_unlock_state(void)
101 mutex_unlock(&client_mutex
);
105 opaque_hashval(const void *ptr
, int nbytes
)
107 unsigned char *cptr
= (unsigned char *) ptr
;
117 /* forward declarations */
118 static void release_stateowner(struct nfs4_stateowner
*sop
);
119 static void release_stateid(struct nfs4_stateid
*stp
, int flags
);
125 /* recall_lock protects the del_recall_lru */
126 static spinlock_t recall_lock
= SPIN_LOCK_UNLOCKED
;
127 static struct list_head del_recall_lru
;
130 free_nfs4_file(struct kref
*kref
)
132 struct nfs4_file
*fp
= container_of(kref
, struct nfs4_file
, fi_ref
);
133 list_del(&fp
->fi_hash
);
135 kmem_cache_free(file_slab
, fp
);
139 put_nfs4_file(struct nfs4_file
*fi
)
141 kref_put(&fi
->fi_ref
, free_nfs4_file
);
145 get_nfs4_file(struct nfs4_file
*fi
)
147 kref_get(&fi
->fi_ref
);
150 static int num_delegations
;
153 * Open owner state (share locks)
156 /* hash tables for nfs4_stateowner */
157 #define OWNER_HASH_BITS 8
158 #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
159 #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
161 #define ownerid_hashval(id) \
162 ((id) & OWNER_HASH_MASK)
163 #define ownerstr_hashval(clientid, ownername) \
164 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
166 static struct list_head ownerid_hashtbl
[OWNER_HASH_SIZE
];
167 static struct list_head ownerstr_hashtbl
[OWNER_HASH_SIZE
];
169 /* hash table for nfs4_file */
170 #define FILE_HASH_BITS 8
171 #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
172 #define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
173 /* hash table for (open)nfs4_stateid */
174 #define STATEID_HASH_BITS 10
175 #define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
176 #define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
178 #define file_hashval(x) \
179 hash_ptr(x, FILE_HASH_BITS)
180 #define stateid_hashval(owner_id, file_id) \
181 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
183 static struct list_head file_hashtbl
[FILE_HASH_SIZE
];
184 static struct list_head stateid_hashtbl
[STATEID_HASH_SIZE
];
186 static struct nfs4_delegation
*
187 alloc_init_deleg(struct nfs4_client
*clp
, struct nfs4_stateid
*stp
, struct svc_fh
*current_fh
, u32 type
)
189 struct nfs4_delegation
*dp
;
190 struct nfs4_file
*fp
= stp
->st_file
;
191 struct nfs4_callback
*cb
= &stp
->st_stateowner
->so_client
->cl_callback
;
193 dprintk("NFSD alloc_init_deleg\n");
194 if (num_delegations
> STATEID_HASH_SIZE
* 4)
196 dp
= kmem_cache_alloc(deleg_slab
, GFP_KERNEL
);
200 INIT_LIST_HEAD(&dp
->dl_perfile
);
201 INIT_LIST_HEAD(&dp
->dl_perclnt
);
202 INIT_LIST_HEAD(&dp
->dl_recall_lru
);
207 get_file(stp
->st_vfs_file
);
208 dp
->dl_vfs_file
= stp
->st_vfs_file
;
210 dp
->dl_recall
.cbr_dp
= NULL
;
211 dp
->dl_recall
.cbr_ident
= cb
->cb_ident
;
212 dp
->dl_recall
.cbr_trunc
= 0;
213 dp
->dl_stateid
.si_boot
= boot_time
;
214 dp
->dl_stateid
.si_stateownerid
= current_delegid
++;
215 dp
->dl_stateid
.si_fileid
= 0;
216 dp
->dl_stateid
.si_generation
= 0;
217 dp
->dl_fhlen
= current_fh
->fh_handle
.fh_size
;
218 memcpy(dp
->dl_fhval
, ¤t_fh
->fh_handle
.fh_base
,
219 current_fh
->fh_handle
.fh_size
);
221 atomic_set(&dp
->dl_count
, 1);
222 list_add(&dp
->dl_perfile
, &fp
->fi_delegations
);
223 list_add(&dp
->dl_perclnt
, &clp
->cl_delegations
);
228 nfs4_put_delegation(struct nfs4_delegation
*dp
)
230 if (atomic_dec_and_test(&dp
->dl_count
)) {
231 dprintk("NFSD: freeing dp %p\n",dp
);
232 put_nfs4_file(dp
->dl_file
);
233 kmem_cache_free(deleg_slab
, dp
);
238 /* Remove the associated file_lock first, then remove the delegation.
239 * lease_modify() is called to remove the FS_LEASE file_lock from
240 * the i_flock list, eventually calling nfsd's lock_manager
241 * fl_release_callback.
244 nfs4_close_delegation(struct nfs4_delegation
*dp
)
246 struct file
*filp
= dp
->dl_vfs_file
;
248 dprintk("NFSD: close_delegation dp %p\n",dp
);
249 dp
->dl_vfs_file
= NULL
;
250 /* The following nfsd_close may not actually close the file,
251 * but we want to remove the lease in any case. */
253 setlease(filp
, F_UNLCK
, &dp
->dl_flock
);
257 /* Called under the state lock. */
259 unhash_delegation(struct nfs4_delegation
*dp
)
261 list_del_init(&dp
->dl_perfile
);
262 list_del_init(&dp
->dl_perclnt
);
263 spin_lock(&recall_lock
);
264 list_del_init(&dp
->dl_recall_lru
);
265 spin_unlock(&recall_lock
);
266 nfs4_close_delegation(dp
);
267 nfs4_put_delegation(dp
);
274 /* Hash tables for nfs4_clientid state */
275 #define CLIENT_HASH_BITS 4
276 #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
277 #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
279 #define clientid_hashval(id) \
280 ((id) & CLIENT_HASH_MASK)
281 #define clientstr_hashval(name) \
282 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
284 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
285 * used in reboot/reset lease grace period processing
287 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
288 * setclientid_confirmed info.
290 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
293 * client_lru holds client queue ordered by nfs4_client.cl_time
296 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
297 * for last close replay.
299 static struct list_head reclaim_str_hashtbl
[CLIENT_HASH_SIZE
];
300 static int reclaim_str_hashtbl_size
= 0;
301 static struct list_head conf_id_hashtbl
[CLIENT_HASH_SIZE
];
302 static struct list_head conf_str_hashtbl
[CLIENT_HASH_SIZE
];
303 static struct list_head unconf_str_hashtbl
[CLIENT_HASH_SIZE
];
304 static struct list_head unconf_id_hashtbl
[CLIENT_HASH_SIZE
];
305 static struct list_head client_lru
;
306 static struct list_head close_lru
;
309 renew_client(struct nfs4_client
*clp
)
312 * Move client to the end to the LRU list.
314 dprintk("renewing client (clientid %08x/%08x)\n",
315 clp
->cl_clientid
.cl_boot
,
316 clp
->cl_clientid
.cl_id
);
317 list_move_tail(&clp
->cl_lru
, &client_lru
);
318 clp
->cl_time
= get_seconds();
321 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
323 STALE_CLIENTID(clientid_t
*clid
)
325 if (clid
->cl_boot
== boot_time
)
327 dprintk("NFSD stale clientid (%08x/%08x)\n",
328 clid
->cl_boot
, clid
->cl_id
);
333 * XXX Should we use a slab cache ?
334 * This type of memory management is somewhat inefficient, but we use it
335 * anyway since SETCLIENTID is not a common operation.
337 static inline struct nfs4_client
*
338 alloc_client(struct xdr_netobj name
)
340 struct nfs4_client
*clp
;
342 if ((clp
= kmalloc(sizeof(struct nfs4_client
), GFP_KERNEL
))!= NULL
) {
343 memset(clp
, 0, sizeof(*clp
));
344 if ((clp
->cl_name
.data
= kmalloc(name
.len
, GFP_KERNEL
)) != NULL
) {
345 memcpy(clp
->cl_name
.data
, name
.data
, name
.len
);
346 clp
->cl_name
.len
= name
.len
;
357 free_client(struct nfs4_client
*clp
)
359 if (clp
->cl_cred
.cr_group_info
)
360 put_group_info(clp
->cl_cred
.cr_group_info
);
361 kfree(clp
->cl_name
.data
);
366 put_nfs4_client(struct nfs4_client
*clp
)
368 if (atomic_dec_and_test(&clp
->cl_count
))
373 shutdown_callback_client(struct nfs4_client
*clp
)
375 struct rpc_clnt
*clnt
= clp
->cl_callback
.cb_client
;
377 /* shutdown rpc client, ending any outstanding recall rpcs */
379 clp
->cl_callback
.cb_client
= NULL
;
380 rpc_shutdown_client(clnt
);
386 expire_client(struct nfs4_client
*clp
)
388 struct nfs4_stateowner
*sop
;
389 struct nfs4_delegation
*dp
;
390 struct list_head reaplist
;
392 dprintk("NFSD: expire_client cl_count %d\n",
393 atomic_read(&clp
->cl_count
));
395 shutdown_callback_client(clp
);
397 INIT_LIST_HEAD(&reaplist
);
398 spin_lock(&recall_lock
);
399 while (!list_empty(&clp
->cl_delegations
)) {
400 dp
= list_entry(clp
->cl_delegations
.next
, struct nfs4_delegation
, dl_perclnt
);
401 dprintk("NFSD: expire client. dp %p, fp %p\n", dp
,
403 list_del_init(&dp
->dl_perclnt
);
404 list_move(&dp
->dl_recall_lru
, &reaplist
);
406 spin_unlock(&recall_lock
);
407 while (!list_empty(&reaplist
)) {
408 dp
= list_entry(reaplist
.next
, struct nfs4_delegation
, dl_recall_lru
);
409 list_del_init(&dp
->dl_recall_lru
);
410 unhash_delegation(dp
);
412 list_del(&clp
->cl_idhash
);
413 list_del(&clp
->cl_strhash
);
414 list_del(&clp
->cl_lru
);
415 while (!list_empty(&clp
->cl_openowners
)) {
416 sop
= list_entry(clp
->cl_openowners
.next
, struct nfs4_stateowner
, so_perclient
);
417 release_stateowner(sop
);
419 put_nfs4_client(clp
);
422 static struct nfs4_client
*
423 create_client(struct xdr_netobj name
, char *recdir
) {
424 struct nfs4_client
*clp
;
426 if (!(clp
= alloc_client(name
)))
428 memcpy(clp
->cl_recdir
, recdir
, HEXDIR_LEN
);
429 atomic_set(&clp
->cl_count
, 1);
430 atomic_set(&clp
->cl_callback
.cb_set
, 0);
431 INIT_LIST_HEAD(&clp
->cl_idhash
);
432 INIT_LIST_HEAD(&clp
->cl_strhash
);
433 INIT_LIST_HEAD(&clp
->cl_openowners
);
434 INIT_LIST_HEAD(&clp
->cl_delegations
);
435 INIT_LIST_HEAD(&clp
->cl_lru
);
441 copy_verf(struct nfs4_client
*target
, nfs4_verifier
*source
) {
442 memcpy(target
->cl_verifier
.data
, source
->data
, sizeof(target
->cl_verifier
.data
));
446 copy_clid(struct nfs4_client
*target
, struct nfs4_client
*source
) {
447 target
->cl_clientid
.cl_boot
= source
->cl_clientid
.cl_boot
;
448 target
->cl_clientid
.cl_id
= source
->cl_clientid
.cl_id
;
452 copy_cred(struct svc_cred
*target
, struct svc_cred
*source
) {
454 target
->cr_uid
= source
->cr_uid
;
455 target
->cr_gid
= source
->cr_gid
;
456 target
->cr_group_info
= source
->cr_group_info
;
457 get_group_info(target
->cr_group_info
);
461 same_name(const char *n1
, const char *n2
) {
462 return 0 == memcmp(n1
, n2
, HEXDIR_LEN
);
466 cmp_verf(nfs4_verifier
*v1
, nfs4_verifier
*v2
) {
467 return(!memcmp(v1
->data
,v2
->data
,sizeof(v1
->data
)));
471 cmp_clid(clientid_t
* cl1
, clientid_t
* cl2
) {
472 return((cl1
->cl_boot
== cl2
->cl_boot
) &&
473 (cl1
->cl_id
== cl2
->cl_id
));
476 /* XXX what about NGROUP */
478 cmp_creds(struct svc_cred
*cr1
, struct svc_cred
*cr2
){
479 return(cr1
->cr_uid
== cr2
->cr_uid
);
484 gen_clid(struct nfs4_client
*clp
) {
485 clp
->cl_clientid
.cl_boot
= boot_time
;
486 clp
->cl_clientid
.cl_id
= current_clientid
++;
490 gen_confirm(struct nfs4_client
*clp
) {
495 p
= (u32
*)clp
->cl_confirm
.data
;
501 check_name(struct xdr_netobj name
) {
505 if (name
.len
> NFS4_OPAQUE_LIMIT
) {
506 printk("NFSD: check_name: name too long(%d)!\n", name
.len
);
513 add_to_unconfirmed(struct nfs4_client
*clp
, unsigned int strhashval
)
515 unsigned int idhashval
;
517 list_add(&clp
->cl_strhash
, &unconf_str_hashtbl
[strhashval
]);
518 idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
519 list_add(&clp
->cl_idhash
, &unconf_id_hashtbl
[idhashval
]);
520 list_add_tail(&clp
->cl_lru
, &client_lru
);
521 clp
->cl_time
= get_seconds();
525 move_to_confirmed(struct nfs4_client
*clp
)
527 unsigned int idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
528 unsigned int strhashval
;
530 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp
);
531 list_del_init(&clp
->cl_strhash
);
532 list_del_init(&clp
->cl_idhash
);
533 list_add(&clp
->cl_idhash
, &conf_id_hashtbl
[idhashval
]);
534 strhashval
= clientstr_hashval(clp
->cl_recdir
);
535 list_add(&clp
->cl_strhash
, &conf_str_hashtbl
[strhashval
]);
539 static struct nfs4_client
*
540 find_confirmed_client(clientid_t
*clid
)
542 struct nfs4_client
*clp
;
543 unsigned int idhashval
= clientid_hashval(clid
->cl_id
);
545 list_for_each_entry(clp
, &conf_id_hashtbl
[idhashval
], cl_idhash
) {
546 if (cmp_clid(&clp
->cl_clientid
, clid
))
552 static struct nfs4_client
*
553 find_unconfirmed_client(clientid_t
*clid
)
555 struct nfs4_client
*clp
;
556 unsigned int idhashval
= clientid_hashval(clid
->cl_id
);
558 list_for_each_entry(clp
, &unconf_id_hashtbl
[idhashval
], cl_idhash
) {
559 if (cmp_clid(&clp
->cl_clientid
, clid
))
565 static struct nfs4_client
*
566 find_confirmed_client_by_str(const char *dname
, unsigned int hashval
)
568 struct nfs4_client
*clp
;
570 list_for_each_entry(clp
, &conf_str_hashtbl
[hashval
], cl_strhash
) {
571 if (same_name(clp
->cl_recdir
, dname
))
577 static struct nfs4_client
*
578 find_unconfirmed_client_by_str(const char *dname
, unsigned int hashval
)
580 struct nfs4_client
*clp
;
582 list_for_each_entry(clp
, &unconf_str_hashtbl
[hashval
], cl_strhash
) {
583 if (same_name(clp
->cl_recdir
, dname
))
589 /* a helper function for parse_callback */
591 parse_octet(unsigned int *lenp
, char **addrp
)
593 unsigned int len
= *lenp
;
605 if ((c
< '0') || (c
> '9')) {
611 n
= (n
* 10) + (c
- '0');
622 /* parse and set the setclientid ipv4 callback address */
624 parse_ipv4(unsigned int addr_len
, char *addr_val
, unsigned int *cbaddrp
, unsigned short *cbportp
)
629 u32 addrlen
= addr_len
;
630 char *addr
= addr_val
;
635 for(i
= 4; i
> 0 ; i
--) {
636 if ((temp
= parse_octet(&addrlen
, &addr
)) < 0) {
639 cbaddr
|= (temp
<< shift
);
647 for(i
= 2; i
> 0 ; i
--) {
648 if ((temp
= parse_octet(&addrlen
, &addr
)) < 0) {
651 cbport
|= (temp
<< shift
);
660 gen_callback(struct nfs4_client
*clp
, struct nfsd4_setclientid
*se
)
662 struct nfs4_callback
*cb
= &clp
->cl_callback
;
664 /* Currently, we only support tcp for the callback channel */
665 if ((se
->se_callback_netid_len
!= 3) || memcmp((char *)se
->se_callback_netid_val
, "tcp", 3))
668 if ( !(parse_ipv4(se
->se_callback_addr_len
, se
->se_callback_addr_val
,
669 &cb
->cb_addr
, &cb
->cb_port
)))
671 cb
->cb_prog
= se
->se_callback_prog
;
672 cb
->cb_ident
= se
->se_callback_ident
;
675 dprintk(KERN_INFO
"NFSD: this client (clientid %08x/%08x) "
676 "will not receive delegations\n",
677 clp
->cl_clientid
.cl_boot
, clp
->cl_clientid
.cl_id
);
683 * RFC 3010 has a complex implmentation description of processing a
684 * SETCLIENTID request consisting of 5 bullets, labeled as
685 * CASE0 - CASE4 below.
688 * callback information will be processed in a future patch
690 * an unconfirmed record is added when:
691 * NORMAL (part of CASE 4): there is no confirmed nor unconfirmed record.
692 * CASE 1: confirmed record found with matching name, principal,
693 * verifier, and clientid.
694 * CASE 2: confirmed record found with matching name, principal,
695 * and there is no unconfirmed record with matching
698 * an unconfirmed record is replaced when:
699 * CASE 3: confirmed record found with matching name, principal,
700 * and an unconfirmed record is found with matching
701 * name, principal, and with clientid and
702 * confirm that does not match the confirmed record.
703 * CASE 4: there is no confirmed record with matching name and
704 * principal. there is an unconfirmed record with
705 * matching name, principal.
707 * an unconfirmed record is deleted when:
708 * CASE 1: an unconfirmed record that matches input name, verifier,
709 * and confirmed clientid.
710 * CASE 4: any unconfirmed records with matching name and principal
711 * that exist after an unconfirmed record has been replaced
712 * as described above.
716 nfsd4_setclientid(struct svc_rqst
*rqstp
, struct nfsd4_setclientid
*setclid
)
718 u32 ip_addr
= rqstp
->rq_addr
.sin_addr
.s_addr
;
719 struct xdr_netobj clname
= {
720 .len
= setclid
->se_namelen
,
721 .data
= setclid
->se_name
,
723 nfs4_verifier clverifier
= setclid
->se_verf
;
724 unsigned int strhashval
;
725 struct nfs4_client
*conf
, *unconf
, *new;
727 char dname
[HEXDIR_LEN
];
729 if (!check_name(clname
))
732 status
= nfs4_make_rec_clidname(dname
, &clname
);
737 * XXX The Duplicate Request Cache (DRC) has been checked (??)
738 * We get here on a DRC miss.
741 strhashval
= clientstr_hashval(dname
);
744 conf
= find_confirmed_client_by_str(dname
, strhashval
);
748 * clname match, confirmed, different principal
749 * or different ip_address
751 status
= nfserr_clid_inuse
;
752 if (!cmp_creds(&conf
->cl_cred
, &rqstp
->rq_cred
)
753 || conf
->cl_addr
!= ip_addr
) {
754 printk("NFSD: setclientid: string in use by client"
755 "(clientid %08x/%08x)\n",
756 conf
->cl_clientid
.cl_boot
, conf
->cl_clientid
.cl_id
);
760 unconf
= find_unconfirmed_client_by_str(dname
, strhashval
);
761 status
= nfserr_resource
;
765 * placed first, because it is the normal case.
768 expire_client(unconf
);
769 new = create_client(clname
, dname
);
772 copy_verf(new, &clverifier
);
773 new->cl_addr
= ip_addr
;
774 copy_cred(&new->cl_cred
,&rqstp
->rq_cred
);
777 gen_callback(new, setclid
);
778 add_to_unconfirmed(new, strhashval
);
779 } else if (cmp_verf(&conf
->cl_verifier
, &clverifier
)) {
782 * cl_name match, confirmed, principal match
783 * verifier match: probable callback update
785 * remove any unconfirmed nfs4_client with
786 * matching cl_name, cl_verifier, and cl_clientid
788 * create and insert an unconfirmed nfs4_client with same
789 * cl_name, cl_verifier, and cl_clientid as existing
790 * nfs4_client, but with the new callback info and a
794 /* Note this is removing unconfirmed {*x***},
795 * which is stronger than RFC recommended {vxc**}.
796 * This has the advantage that there is at most
797 * one {*x***} in either list at any time.
799 expire_client(unconf
);
801 new = create_client(clname
, dname
);
804 copy_verf(new,&conf
->cl_verifier
);
805 new->cl_addr
= ip_addr
;
806 copy_cred(&new->cl_cred
,&rqstp
->rq_cred
);
807 copy_clid(new, conf
);
809 gen_callback(new, setclid
);
810 add_to_unconfirmed(new,strhashval
);
811 } else if (!unconf
) {
814 * clname match, confirmed, principal match
815 * verfier does not match
816 * no unconfirmed. create a new unconfirmed nfs4_client
817 * using input clverifier, clname, and callback info
818 * and generate a new cl_clientid and cl_confirm.
820 new = create_client(clname
, dname
);
823 copy_verf(new,&clverifier
);
824 new->cl_addr
= ip_addr
;
825 copy_cred(&new->cl_cred
,&rqstp
->rq_cred
);
828 gen_callback(new, setclid
);
829 add_to_unconfirmed(new, strhashval
);
830 } else if (!cmp_verf(&conf
->cl_confirm
, &unconf
->cl_confirm
)) {
833 * confirmed found (name, principal match)
834 * confirmed verifier does not match input clverifier
836 * unconfirmed found (name match)
837 * confirmed->cl_confirm != unconfirmed->cl_confirm
839 * remove unconfirmed.
841 * create an unconfirmed nfs4_client
842 * with same cl_name as existing confirmed nfs4_client,
843 * but with new callback info, new cl_clientid,
844 * new cl_verifier and a new cl_confirm
846 expire_client(unconf
);
847 new = create_client(clname
, dname
);
850 copy_verf(new,&clverifier
);
851 new->cl_addr
= ip_addr
;
852 copy_cred(&new->cl_cred
,&rqstp
->rq_cred
);
855 gen_callback(new, setclid
);
856 add_to_unconfirmed(new, strhashval
);
858 /* No cases hit !!! */
859 status
= nfserr_inval
;
863 setclid
->se_clientid
.cl_boot
= new->cl_clientid
.cl_boot
;
864 setclid
->se_clientid
.cl_id
= new->cl_clientid
.cl_id
;
865 memcpy(setclid
->se_confirm
.data
, new->cl_confirm
.data
, sizeof(setclid
->se_confirm
.data
));
874 * RFC 3010 has a complex implmentation description of processing a
875 * SETCLIENTID_CONFIRM request consisting of 4 bullets describing
876 * processing on a DRC miss, labeled as CASE1 - CASE4 below.
878 * NOTE: callback information will be processed here in a future patch
881 nfsd4_setclientid_confirm(struct svc_rqst
*rqstp
, struct nfsd4_setclientid_confirm
*setclientid_confirm
)
883 u32 ip_addr
= rqstp
->rq_addr
.sin_addr
.s_addr
;
884 struct nfs4_client
*conf
, *unconf
;
885 nfs4_verifier confirm
= setclientid_confirm
->sc_confirm
;
886 clientid_t
* clid
= &setclientid_confirm
->sc_clientid
;
889 if (STALE_CLIENTID(clid
))
890 return nfserr_stale_clientid
;
892 * XXX The Duplicate Request Cache (DRC) has been checked (??)
893 * We get here on a DRC miss.
898 conf
= find_confirmed_client(clid
);
899 unconf
= find_unconfirmed_client(clid
);
901 status
= nfserr_clid_inuse
;
902 if (conf
&& conf
->cl_addr
!= ip_addr
)
904 if (unconf
&& unconf
->cl_addr
!= ip_addr
)
907 if ((conf
&& unconf
) &&
908 (cmp_verf(&unconf
->cl_confirm
, &confirm
)) &&
909 (cmp_verf(&conf
->cl_verifier
, &unconf
->cl_verifier
)) &&
910 (same_name(conf
->cl_recdir
,unconf
->cl_recdir
)) &&
911 (!cmp_verf(&conf
->cl_confirm
, &unconf
->cl_confirm
))) {
913 * unconf record that matches input clientid and input confirm.
914 * conf record that matches input clientid.
915 * conf and unconf records match names, verifiers
917 if (!cmp_creds(&conf
->cl_cred
, &unconf
->cl_cred
))
918 status
= nfserr_clid_inuse
;
920 /* XXX: We just turn off callbacks until we can handle
921 * change request correctly. */
922 atomic_set(&conf
->cl_callback
.cb_set
, 0);
924 nfsd4_remove_clid_dir(unconf
);
925 expire_client(unconf
);
929 } else if ((conf
&& !unconf
) ||
931 (!cmp_verf(&conf
->cl_verifier
, &unconf
->cl_verifier
) ||
932 !same_name(conf
->cl_recdir
, unconf
->cl_recdir
)))) {
934 * conf record that matches input clientid.
935 * if unconf record matches input clientid, then
936 * unconf->cl_name or unconf->cl_verifier don't match the
939 if (!cmp_creds(&conf
->cl_cred
,&rqstp
->rq_cred
))
940 status
= nfserr_clid_inuse
;
943 } else if (!conf
&& unconf
944 && cmp_verf(&unconf
->cl_confirm
, &confirm
)) {
946 * conf record not found.
947 * unconf record found.
948 * unconf->cl_confirm matches input confirm
950 if (!cmp_creds(&unconf
->cl_cred
, &rqstp
->rq_cred
)) {
951 status
= nfserr_clid_inuse
;
954 clientstr_hashval(unconf
->cl_recdir
);
955 conf
= find_confirmed_client_by_str(unconf
->cl_recdir
,
958 nfsd4_remove_clid_dir(conf
);
961 move_to_confirmed(unconf
);
965 } else if ((!conf
|| (conf
&& !cmp_verf(&conf
->cl_confirm
, &confirm
)))
966 && (!unconf
|| (unconf
&& !cmp_verf(&unconf
->cl_confirm
,
969 * conf record not found, or if conf, conf->cl_confirm does not
970 * match input confirm.
971 * unconf record not found, or if unconf, unconf->cl_confirm
972 * does not match input confirm.
974 status
= nfserr_stale_clientid
;
976 /* check that we have hit one of the cases...*/
977 status
= nfserr_clid_inuse
;
981 nfsd4_probe_callback(conf
);
986 /* OPEN Share state helper functions */
987 static inline struct nfs4_file
*
988 alloc_init_file(struct inode
*ino
)
990 struct nfs4_file
*fp
;
991 unsigned int hashval
= file_hashval(ino
);
993 fp
= kmem_cache_alloc(file_slab
, GFP_KERNEL
);
995 kref_init(&fp
->fi_ref
);
996 INIT_LIST_HEAD(&fp
->fi_hash
);
997 INIT_LIST_HEAD(&fp
->fi_stateids
);
998 INIT_LIST_HEAD(&fp
->fi_delegations
);
999 list_add(&fp
->fi_hash
, &file_hashtbl
[hashval
]);
1000 fp
->fi_inode
= igrab(ino
);
1001 fp
->fi_id
= current_fileid
++;
1008 nfsd4_free_slab(kmem_cache_t
**slab
)
1014 status
= kmem_cache_destroy(*slab
);
1020 nfsd4_free_slabs(void)
1022 nfsd4_free_slab(&stateowner_slab
);
1023 nfsd4_free_slab(&file_slab
);
1024 nfsd4_free_slab(&stateid_slab
);
1025 nfsd4_free_slab(&deleg_slab
);
1029 nfsd4_init_slabs(void)
1031 stateowner_slab
= kmem_cache_create("nfsd4_stateowners",
1032 sizeof(struct nfs4_stateowner
), 0, 0, NULL
, NULL
);
1033 if (stateowner_slab
== NULL
)
1035 file_slab
= kmem_cache_create("nfsd4_files",
1036 sizeof(struct nfs4_file
), 0, 0, NULL
, NULL
);
1037 if (file_slab
== NULL
)
1039 stateid_slab
= kmem_cache_create("nfsd4_stateids",
1040 sizeof(struct nfs4_stateid
), 0, 0, NULL
, NULL
);
1041 if (stateid_slab
== NULL
)
1043 deleg_slab
= kmem_cache_create("nfsd4_delegations",
1044 sizeof(struct nfs4_delegation
), 0, 0, NULL
, NULL
);
1045 if (deleg_slab
== NULL
)
1050 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1055 nfs4_free_stateowner(struct kref
*kref
)
1057 struct nfs4_stateowner
*sop
=
1058 container_of(kref
, struct nfs4_stateowner
, so_ref
);
1059 kfree(sop
->so_owner
.data
);
1060 kmem_cache_free(stateowner_slab
, sop
);
1063 static inline struct nfs4_stateowner
*
1064 alloc_stateowner(struct xdr_netobj
*owner
)
1066 struct nfs4_stateowner
*sop
;
1068 if ((sop
= kmem_cache_alloc(stateowner_slab
, GFP_KERNEL
))) {
1069 if ((sop
->so_owner
.data
= kmalloc(owner
->len
, GFP_KERNEL
))) {
1070 memcpy(sop
->so_owner
.data
, owner
->data
, owner
->len
);
1071 sop
->so_owner
.len
= owner
->len
;
1072 kref_init(&sop
->so_ref
);
1075 kmem_cache_free(stateowner_slab
, sop
);
1080 static struct nfs4_stateowner
*
1081 alloc_init_open_stateowner(unsigned int strhashval
, struct nfs4_client
*clp
, struct nfsd4_open
*open
) {
1082 struct nfs4_stateowner
*sop
;
1083 struct nfs4_replay
*rp
;
1084 unsigned int idhashval
;
1086 if (!(sop
= alloc_stateowner(&open
->op_owner
)))
1088 idhashval
= ownerid_hashval(current_ownerid
);
1089 INIT_LIST_HEAD(&sop
->so_idhash
);
1090 INIT_LIST_HEAD(&sop
->so_strhash
);
1091 INIT_LIST_HEAD(&sop
->so_perclient
);
1092 INIT_LIST_HEAD(&sop
->so_stateids
);
1093 INIT_LIST_HEAD(&sop
->so_perstateid
); /* not used */
1094 INIT_LIST_HEAD(&sop
->so_close_lru
);
1096 list_add(&sop
->so_idhash
, &ownerid_hashtbl
[idhashval
]);
1097 list_add(&sop
->so_strhash
, &ownerstr_hashtbl
[strhashval
]);
1098 list_add(&sop
->so_perclient
, &clp
->cl_openowners
);
1099 sop
->so_is_open_owner
= 1;
1100 sop
->so_id
= current_ownerid
++;
1101 sop
->so_client
= clp
;
1102 sop
->so_seqid
= open
->op_seqid
;
1103 sop
->so_confirmed
= 0;
1104 rp
= &sop
->so_replay
;
1105 rp
->rp_status
= nfserr_serverfault
;
1107 rp
->rp_buf
= rp
->rp_ibuf
;
1112 release_stateid_lockowners(struct nfs4_stateid
*open_stp
)
1114 struct nfs4_stateowner
*lock_sop
;
1116 while (!list_empty(&open_stp
->st_lockowners
)) {
1117 lock_sop
= list_entry(open_stp
->st_lockowners
.next
,
1118 struct nfs4_stateowner
, so_perstateid
);
1119 /* list_del(&open_stp->st_lockowners); */
1120 BUG_ON(lock_sop
->so_is_open_owner
);
1121 release_stateowner(lock_sop
);
1126 unhash_stateowner(struct nfs4_stateowner
*sop
)
1128 struct nfs4_stateid
*stp
;
1130 list_del(&sop
->so_idhash
);
1131 list_del(&sop
->so_strhash
);
1132 if (sop
->so_is_open_owner
)
1133 list_del(&sop
->so_perclient
);
1134 list_del(&sop
->so_perstateid
);
1135 while (!list_empty(&sop
->so_stateids
)) {
1136 stp
= list_entry(sop
->so_stateids
.next
,
1137 struct nfs4_stateid
, st_perstateowner
);
1138 if (sop
->so_is_open_owner
)
1139 release_stateid(stp
, OPEN_STATE
);
1141 release_stateid(stp
, LOCK_STATE
);
1146 release_stateowner(struct nfs4_stateowner
*sop
)
1148 unhash_stateowner(sop
);
1149 list_del(&sop
->so_close_lru
);
1150 nfs4_put_stateowner(sop
);
1154 init_stateid(struct nfs4_stateid
*stp
, struct nfs4_file
*fp
, struct nfsd4_open
*open
) {
1155 struct nfs4_stateowner
*sop
= open
->op_stateowner
;
1156 unsigned int hashval
= stateid_hashval(sop
->so_id
, fp
->fi_id
);
1158 INIT_LIST_HEAD(&stp
->st_hash
);
1159 INIT_LIST_HEAD(&stp
->st_perstateowner
);
1160 INIT_LIST_HEAD(&stp
->st_lockowners
);
1161 INIT_LIST_HEAD(&stp
->st_perfile
);
1162 list_add(&stp
->st_hash
, &stateid_hashtbl
[hashval
]);
1163 list_add(&stp
->st_perstateowner
, &sop
->so_stateids
);
1164 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
1165 stp
->st_stateowner
= sop
;
1168 stp
->st_stateid
.si_boot
= boot_time
;
1169 stp
->st_stateid
.si_stateownerid
= sop
->so_id
;
1170 stp
->st_stateid
.si_fileid
= fp
->fi_id
;
1171 stp
->st_stateid
.si_generation
= 0;
1172 stp
->st_access_bmap
= 0;
1173 stp
->st_deny_bmap
= 0;
1174 __set_bit(open
->op_share_access
, &stp
->st_access_bmap
);
1175 __set_bit(open
->op_share_deny
, &stp
->st_deny_bmap
);
1176 stp
->st_openstp
= NULL
;
1180 release_stateid(struct nfs4_stateid
*stp
, int flags
)
1182 struct file
*filp
= stp
->st_vfs_file
;
1184 list_del(&stp
->st_hash
);
1185 list_del(&stp
->st_perfile
);
1186 list_del(&stp
->st_perstateowner
);
1187 if (flags
& OPEN_STATE
) {
1188 release_stateid_lockowners(stp
);
1189 stp
->st_vfs_file
= NULL
;
1191 } else if (flags
& LOCK_STATE
)
1192 locks_remove_posix(filp
, (fl_owner_t
) stp
->st_stateowner
);
1193 put_nfs4_file(stp
->st_file
);
1194 kmem_cache_free(stateid_slab
, stp
);
1198 move_to_close_lru(struct nfs4_stateowner
*sop
)
1200 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop
);
1202 unhash_stateowner(sop
);
1203 list_add_tail(&sop
->so_close_lru
, &close_lru
);
1204 sop
->so_time
= get_seconds();
1208 cmp_owner_str(struct nfs4_stateowner
*sop
, struct xdr_netobj
*owner
, clientid_t
*clid
) {
1209 return ((sop
->so_owner
.len
== owner
->len
) &&
1210 !memcmp(sop
->so_owner
.data
, owner
->data
, owner
->len
) &&
1211 (sop
->so_client
->cl_clientid
.cl_id
== clid
->cl_id
));
1214 static struct nfs4_stateowner
*
1215 find_openstateowner_str(unsigned int hashval
, struct nfsd4_open
*open
)
1217 struct nfs4_stateowner
*so
= NULL
;
1219 list_for_each_entry(so
, &ownerstr_hashtbl
[hashval
], so_strhash
) {
1220 if (cmp_owner_str(so
, &open
->op_owner
, &open
->op_clientid
))
1226 /* search file_hashtbl[] for file */
1227 static struct nfs4_file
*
1228 find_file(struct inode
*ino
)
1230 unsigned int hashval
= file_hashval(ino
);
1231 struct nfs4_file
*fp
;
1233 list_for_each_entry(fp
, &file_hashtbl
[hashval
], fi_hash
) {
1234 if (fp
->fi_inode
== ino
) {
1242 #define TEST_ACCESS(x) ((x > 0 || x < 4)?1:0)
1243 #define TEST_DENY(x) ((x >= 0 || x < 5)?1:0)
1246 set_access(unsigned int *access
, unsigned long bmap
) {
1250 for (i
= 1; i
< 4; i
++) {
1251 if (test_bit(i
, &bmap
))
1257 set_deny(unsigned int *deny
, unsigned long bmap
) {
1261 for (i
= 0; i
< 4; i
++) {
1262 if (test_bit(i
, &bmap
))
1268 test_share(struct nfs4_stateid
*stp
, struct nfsd4_open
*open
) {
1269 unsigned int access
, deny
;
1271 set_access(&access
, stp
->st_access_bmap
);
1272 set_deny(&deny
, stp
->st_deny_bmap
);
1273 if ((access
& open
->op_share_deny
) || (deny
& open
->op_share_access
))
1279 * Called to check deny when READ with all zero stateid or
1280 * WRITE with all zero or all one stateid
1283 nfs4_share_conflict(struct svc_fh
*current_fh
, unsigned int deny_type
)
1285 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
1286 struct nfs4_file
*fp
;
1287 struct nfs4_stateid
*stp
;
1290 dprintk("NFSD: nfs4_share_conflict\n");
1292 fp
= find_file(ino
);
1295 ret
= nfserr_locked
;
1296 /* Search for conflicting share reservations */
1297 list_for_each_entry(stp
, &fp
->fi_stateids
, st_perfile
) {
1298 if (test_bit(deny_type
, &stp
->st_deny_bmap
) ||
1299 test_bit(NFS4_SHARE_DENY_BOTH
, &stp
->st_deny_bmap
))
1309 nfs4_file_downgrade(struct file
*filp
, unsigned int share_access
)
1311 if (share_access
& NFS4_SHARE_ACCESS_WRITE
) {
1312 put_write_access(filp
->f_dentry
->d_inode
);
1313 filp
->f_mode
= (filp
->f_mode
| FMODE_READ
) & ~FMODE_WRITE
;
1318 * Recall a delegation
1321 do_recall(void *__dp
)
1323 struct nfs4_delegation
*dp
= __dp
;
1325 daemonize("nfsv4-recall");
1327 nfsd4_cb_recall(dp
);
1332 * Spawn a thread to perform a recall on the delegation represented
1333 * by the lease (file_lock)
1335 * Called from break_lease() with lock_kernel() held.
1336 * Note: we assume break_lease will only call this *once* for any given
1340 void nfsd_break_deleg_cb(struct file_lock
*fl
)
1342 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)fl
->fl_owner
;
1343 struct task_struct
*t
;
1345 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp
,fl
);
1349 /* We're assuming the state code never drops its reference
1350 * without first removing the lease. Since we're in this lease
1351 * callback (and since the lease code is serialized by the kernel
1352 * lock) we know the server hasn't removed the lease yet, we know
1353 * it's safe to take a reference: */
1354 atomic_inc(&dp
->dl_count
);
1356 spin_lock(&recall_lock
);
1357 list_add_tail(&dp
->dl_recall_lru
, &del_recall_lru
);
1358 spin_unlock(&recall_lock
);
1360 /* only place dl_time is set. protected by lock_kernel*/
1361 dp
->dl_time
= get_seconds();
1363 /* XXX need to merge NFSD_LEASE_TIME with fs/locks.c:lease_break_time */
1364 fl
->fl_break_time
= jiffies
+ NFSD_LEASE_TIME
* HZ
;
1366 t
= kthread_run(do_recall
, dp
, "%s", "nfs4_cb_recall");
1368 struct nfs4_client
*clp
= dp
->dl_client
;
1370 printk(KERN_INFO
"NFSD: Callback thread failed for "
1371 "for client (clientid %08x/%08x)\n",
1372 clp
->cl_clientid
.cl_boot
, clp
->cl_clientid
.cl_id
);
1373 nfs4_put_delegation(dp
);
1378 * The file_lock is being reapd.
1380 * Called by locks_free_lock() with lock_kernel() held.
1383 void nfsd_release_deleg_cb(struct file_lock
*fl
)
1385 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)fl
->fl_owner
;
1387 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl
,dp
, atomic_read(&dp
->dl_count
));
1389 if (!(fl
->fl_flags
& FL_LEASE
) || !dp
)
1391 dp
->dl_flock
= NULL
;
1395 * Set the delegation file_lock back pointer.
1397 * Called from __setlease() with lock_kernel() held.
1400 void nfsd_copy_lock_deleg_cb(struct file_lock
*new, struct file_lock
*fl
)
1402 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)new->fl_owner
;
1404 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp
);
1411 * Called from __setlease() with lock_kernel() held
1414 int nfsd_same_client_deleg_cb(struct file_lock
*onlist
, struct file_lock
*try)
1416 struct nfs4_delegation
*onlistd
=
1417 (struct nfs4_delegation
*)onlist
->fl_owner
;
1418 struct nfs4_delegation
*tryd
=
1419 (struct nfs4_delegation
*)try->fl_owner
;
1421 if (onlist
->fl_lmops
!= try->fl_lmops
)
1424 return onlistd
->dl_client
== tryd
->dl_client
;
1429 int nfsd_change_deleg_cb(struct file_lock
**onlist
, int arg
)
1432 return lease_modify(onlist
, arg
);
1437 static struct lock_manager_operations nfsd_lease_mng_ops
= {
1438 .fl_break
= nfsd_break_deleg_cb
,
1439 .fl_release_private
= nfsd_release_deleg_cb
,
1440 .fl_copy_lock
= nfsd_copy_lock_deleg_cb
,
1441 .fl_mylease
= nfsd_same_client_deleg_cb
,
1442 .fl_change
= nfsd_change_deleg_cb
,
1447 nfsd4_process_open1(struct nfsd4_open
*open
)
1449 clientid_t
*clientid
= &open
->op_clientid
;
1450 struct nfs4_client
*clp
= NULL
;
1451 unsigned int strhashval
;
1452 struct nfs4_stateowner
*sop
= NULL
;
1454 if (!check_name(open
->op_owner
))
1455 return nfserr_inval
;
1457 if (STALE_CLIENTID(&open
->op_clientid
))
1458 return nfserr_stale_clientid
;
1460 strhashval
= ownerstr_hashval(clientid
->cl_id
, open
->op_owner
);
1461 sop
= find_openstateowner_str(strhashval
, open
);
1462 open
->op_stateowner
= sop
;
1464 /* Make sure the client's lease hasn't expired. */
1465 clp
= find_confirmed_client(clientid
);
1467 return nfserr_expired
;
1470 if (!sop
->so_confirmed
) {
1471 /* Replace unconfirmed owners without checking for replay. */
1472 clp
= sop
->so_client
;
1473 release_stateowner(sop
);
1474 open
->op_stateowner
= NULL
;
1477 if (open
->op_seqid
== sop
->so_seqid
- 1) {
1478 if (sop
->so_replay
.rp_buflen
)
1479 return NFSERR_REPLAY_ME
;
1480 /* The original OPEN failed so spectacularly
1481 * that we don't even have replay data saved!
1482 * Therefore, we have no choice but to continue
1483 * processing this OPEN; presumably, we'll
1484 * fail again for the same reason.
1486 dprintk("nfsd4_process_open1: replay with no replay cache\n");
1489 if (open
->op_seqid
!= sop
->so_seqid
)
1490 return nfserr_bad_seqid
;
1492 if (open
->op_stateowner
== NULL
) {
1493 sop
= alloc_init_open_stateowner(strhashval
, clp
, open
);
1495 return nfserr_resource
;
1496 open
->op_stateowner
= sop
;
1498 list_del_init(&sop
->so_close_lru
);
1499 renew_client(sop
->so_client
);
1504 nfs4_check_delegmode(struct nfs4_delegation
*dp
, int flags
)
1506 if ((flags
& WR_STATE
) && (dp
->dl_type
== NFS4_OPEN_DELEGATE_READ
))
1507 return nfserr_openmode
;
1512 static struct nfs4_delegation
*
1513 find_delegation_file(struct nfs4_file
*fp
, stateid_t
*stid
)
1515 struct nfs4_delegation
*dp
;
1517 list_for_each_entry(dp
, &fp
->fi_delegations
, dl_perfile
) {
1518 if (dp
->dl_stateid
.si_stateownerid
== stid
->si_stateownerid
)
1525 nfs4_check_deleg(struct nfs4_file
*fp
, struct nfsd4_open
*open
,
1526 struct nfs4_delegation
**dp
)
1529 int status
= nfserr_bad_stateid
;
1531 *dp
= find_delegation_file(fp
, &open
->op_delegate_stateid
);
1534 flags
= open
->op_share_access
== NFS4_SHARE_ACCESS_READ
?
1535 RD_STATE
: WR_STATE
;
1536 status
= nfs4_check_delegmode(*dp
, flags
);
1540 if (open
->op_claim_type
!= NFS4_OPEN_CLAIM_DELEGATE_CUR
)
1544 open
->op_stateowner
->so_confirmed
= 1;
1549 nfs4_check_open(struct nfs4_file
*fp
, struct nfsd4_open
*open
, struct nfs4_stateid
**stpp
)
1551 struct nfs4_stateid
*local
;
1552 int status
= nfserr_share_denied
;
1553 struct nfs4_stateowner
*sop
= open
->op_stateowner
;
1555 list_for_each_entry(local
, &fp
->fi_stateids
, st_perfile
) {
1556 /* ignore lock owners */
1557 if (local
->st_stateowner
->so_is_open_owner
== 0)
1559 /* remember if we have seen this open owner */
1560 if (local
->st_stateowner
== sop
)
1562 /* check for conflicting share reservations */
1563 if (!test_share(local
, open
))
1571 static inline struct nfs4_stateid
*
1572 nfs4_alloc_stateid(void)
1574 return kmem_cache_alloc(stateid_slab
, GFP_KERNEL
);
1578 nfs4_new_open(struct svc_rqst
*rqstp
, struct nfs4_stateid
**stpp
,
1579 struct nfs4_delegation
*dp
,
1580 struct svc_fh
*cur_fh
, int flags
)
1582 struct nfs4_stateid
*stp
;
1584 stp
= nfs4_alloc_stateid();
1586 return nfserr_resource
;
1589 get_file(dp
->dl_vfs_file
);
1590 stp
->st_vfs_file
= dp
->dl_vfs_file
;
1593 status
= nfsd_open(rqstp
, cur_fh
, S_IFREG
, flags
,
1596 if (status
== nfserr_dropit
)
1597 status
= nfserr_jukebox
;
1598 kmem_cache_free(stateid_slab
, stp
);
1607 nfsd4_truncate(struct svc_rqst
*rqstp
, struct svc_fh
*fh
,
1608 struct nfsd4_open
*open
)
1610 struct iattr iattr
= {
1611 .ia_valid
= ATTR_SIZE
,
1614 if (!open
->op_truncate
)
1616 if (!(open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
))
1617 return nfserr_inval
;
1618 return nfsd_setattr(rqstp
, fh
, &iattr
, 0, (time_t)0);
1622 nfs4_upgrade_open(struct svc_rqst
*rqstp
, struct svc_fh
*cur_fh
, struct nfs4_stateid
*stp
, struct nfsd4_open
*open
)
1624 struct file
*filp
= stp
->st_vfs_file
;
1625 struct inode
*inode
= filp
->f_dentry
->d_inode
;
1626 unsigned int share_access
, new_writer
;
1629 set_access(&share_access
, stp
->st_access_bmap
);
1630 new_writer
= (~share_access
) & open
->op_share_access
1631 & NFS4_SHARE_ACCESS_WRITE
;
1634 status
= get_write_access(inode
);
1636 return nfserrno(status
);
1638 status
= nfsd4_truncate(rqstp
, cur_fh
, open
);
1641 put_write_access(inode
);
1644 /* remember the open */
1645 filp
->f_mode
|= open
->op_share_access
;
1646 set_bit(open
->op_share_access
, &stp
->st_access_bmap
);
1647 set_bit(open
->op_share_deny
, &stp
->st_deny_bmap
);
1654 nfs4_set_claim_prev(struct nfsd4_open
*open
)
1656 open
->op_stateowner
->so_confirmed
= 1;
1657 open
->op_stateowner
->so_client
->cl_firststate
= 1;
1661 * Attempt to hand out a delegation.
1664 nfs4_open_delegation(struct svc_fh
*fh
, struct nfsd4_open
*open
, struct nfs4_stateid
*stp
)
1666 struct nfs4_delegation
*dp
;
1667 struct nfs4_stateowner
*sop
= stp
->st_stateowner
;
1668 struct nfs4_callback
*cb
= &sop
->so_client
->cl_callback
;
1669 struct file_lock fl
, *flp
= &fl
;
1670 int status
, flag
= 0;
1672 flag
= NFS4_OPEN_DELEGATE_NONE
;
1673 open
->op_recall
= 0;
1674 switch (open
->op_claim_type
) {
1675 case NFS4_OPEN_CLAIM_PREVIOUS
:
1676 if (!atomic_read(&cb
->cb_set
))
1677 open
->op_recall
= 1;
1678 flag
= open
->op_delegate_type
;
1679 if (flag
== NFS4_OPEN_DELEGATE_NONE
)
1682 case NFS4_OPEN_CLAIM_NULL
:
1683 /* Let's not give out any delegations till everyone's
1684 * had the chance to reclaim theirs.... */
1685 if (nfs4_in_grace())
1687 if (!atomic_read(&cb
->cb_set
) || !sop
->so_confirmed
)
1689 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
1690 flag
= NFS4_OPEN_DELEGATE_WRITE
;
1692 flag
= NFS4_OPEN_DELEGATE_READ
;
1698 dp
= alloc_init_deleg(sop
->so_client
, stp
, fh
, flag
);
1700 flag
= NFS4_OPEN_DELEGATE_NONE
;
1703 locks_init_lock(&fl
);
1704 fl
.fl_lmops
= &nfsd_lease_mng_ops
;
1705 fl
.fl_flags
= FL_LEASE
;
1706 fl
.fl_end
= OFFSET_MAX
;
1707 fl
.fl_owner
= (fl_owner_t
)dp
;
1708 fl
.fl_file
= stp
->st_vfs_file
;
1709 fl
.fl_pid
= current
->tgid
;
1711 /* setlease checks to see if delegation should be handed out.
1712 * the lock_manager callbacks fl_mylease and fl_change are used
1714 if ((status
= setlease(stp
->st_vfs_file
,
1715 flag
== NFS4_OPEN_DELEGATE_READ
? F_RDLCK
: F_WRLCK
, &flp
))) {
1716 dprintk("NFSD: setlease failed [%d], no delegation\n", status
);
1717 unhash_delegation(dp
);
1718 flag
= NFS4_OPEN_DELEGATE_NONE
;
1722 memcpy(&open
->op_delegate_stateid
, &dp
->dl_stateid
, sizeof(dp
->dl_stateid
));
1724 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1725 dp
->dl_stateid
.si_boot
,
1726 dp
->dl_stateid
.si_stateownerid
,
1727 dp
->dl_stateid
.si_fileid
,
1728 dp
->dl_stateid
.si_generation
);
1730 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
1731 && flag
== NFS4_OPEN_DELEGATE_NONE
1732 && open
->op_delegate_type
!= NFS4_OPEN_DELEGATE_NONE
)
1733 printk("NFSD: WARNING: refusing delegation reclaim\n");
1734 open
->op_delegate_type
= flag
;
1738 * called with nfs4_lock_state() held.
1741 nfsd4_process_open2(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open
*open
)
1743 struct nfs4_file
*fp
= NULL
;
1744 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
1745 struct nfs4_stateid
*stp
= NULL
;
1746 struct nfs4_delegation
*dp
= NULL
;
1749 status
= nfserr_inval
;
1750 if (!TEST_ACCESS(open
->op_share_access
) || !TEST_DENY(open
->op_share_deny
))
1753 * Lookup file; if found, lookup stateid and check open request,
1754 * and check for delegations in the process of being recalled.
1755 * If not found, create the nfs4_file struct
1757 fp
= find_file(ino
);
1759 if ((status
= nfs4_check_open(fp
, open
, &stp
)))
1761 status
= nfs4_check_deleg(fp
, open
, &dp
);
1765 status
= nfserr_bad_stateid
;
1766 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_DELEGATE_CUR
)
1768 status
= nfserr_resource
;
1769 fp
= alloc_init_file(ino
);
1775 * OPEN the file, or upgrade an existing OPEN.
1776 * If truncate fails, the OPEN fails.
1779 /* Stateid was found, this is an OPEN upgrade */
1780 status
= nfs4_upgrade_open(rqstp
, current_fh
, stp
, open
);
1783 update_stateid(&stp
->st_stateid
);
1785 /* Stateid was not found, this is a new OPEN */
1787 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
1791 status
= nfs4_new_open(rqstp
, &stp
, dp
, current_fh
, flags
);
1794 init_stateid(stp
, fp
, open
);
1795 status
= nfsd4_truncate(rqstp
, current_fh
, open
);
1797 release_stateid(stp
, OPEN_STATE
);
1801 memcpy(&open
->op_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
1804 * Attempt to hand out a delegation. No error return, because the
1805 * OPEN succeeds even if we fail.
1807 nfs4_open_delegation(current_fh
, open
, stp
);
1811 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1812 stp
->st_stateid
.si_boot
, stp
->st_stateid
.si_stateownerid
,
1813 stp
->st_stateid
.si_fileid
, stp
->st_stateid
.si_generation
);
1817 if (status
== 0 && open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
)
1818 nfs4_set_claim_prev(open
);
1820 * To finish the open response, we just need to set the rflags.
1822 open
->op_rflags
= NFS4_OPEN_RESULT_LOCKTYPE_POSIX
;
1823 if (!open
->op_stateowner
->so_confirmed
)
1824 open
->op_rflags
|= NFS4_OPEN_RESULT_CONFIRM
;
1829 static struct workqueue_struct
*laundry_wq
;
1830 static struct work_struct laundromat_work
;
1831 static void laundromat_main(void *);
1832 static DECLARE_WORK(laundromat_work
, laundromat_main
, NULL
);
1835 nfsd4_renew(clientid_t
*clid
)
1837 struct nfs4_client
*clp
;
1841 dprintk("process_renew(%08x/%08x): starting\n",
1842 clid
->cl_boot
, clid
->cl_id
);
1843 status
= nfserr_stale_clientid
;
1844 if (STALE_CLIENTID(clid
))
1846 clp
= find_confirmed_client(clid
);
1847 status
= nfserr_expired
;
1849 /* We assume the client took too long to RENEW. */
1850 dprintk("nfsd4_renew: clientid not found!\n");
1854 status
= nfserr_cb_path_down
;
1855 if (!list_empty(&clp
->cl_delegations
)
1856 && !atomic_read(&clp
->cl_callback
.cb_set
))
1860 nfs4_unlock_state();
1867 dprintk("NFSD: end of grace period\n");
1868 nfsd4_recdir_purge_old();
1873 nfs4_laundromat(void)
1875 struct nfs4_client
*clp
;
1876 struct nfs4_stateowner
*sop
;
1877 struct nfs4_delegation
*dp
;
1878 struct list_head
*pos
, *next
, reaplist
;
1879 time_t cutoff
= get_seconds() - NFSD_LEASE_TIME
;
1880 time_t t
, clientid_val
= NFSD_LEASE_TIME
;
1881 time_t u
, test_val
= NFSD_LEASE_TIME
;
1885 dprintk("NFSD: laundromat service - starting\n");
1888 list_for_each_safe(pos
, next
, &client_lru
) {
1889 clp
= list_entry(pos
, struct nfs4_client
, cl_lru
);
1890 if (time_after((unsigned long)clp
->cl_time
, (unsigned long)cutoff
)) {
1891 t
= clp
->cl_time
- cutoff
;
1892 if (clientid_val
> t
)
1896 dprintk("NFSD: purging unused client (clientid %08x)\n",
1897 clp
->cl_clientid
.cl_id
);
1898 nfsd4_remove_clid_dir(clp
);
1901 INIT_LIST_HEAD(&reaplist
);
1902 spin_lock(&recall_lock
);
1903 list_for_each_safe(pos
, next
, &del_recall_lru
) {
1904 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
1905 if (time_after((unsigned long)dp
->dl_time
, (unsigned long)cutoff
)) {
1906 u
= dp
->dl_time
- cutoff
;
1911 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1913 list_move(&dp
->dl_recall_lru
, &reaplist
);
1915 spin_unlock(&recall_lock
);
1916 list_for_each_safe(pos
, next
, &reaplist
) {
1917 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
1918 list_del_init(&dp
->dl_recall_lru
);
1919 unhash_delegation(dp
);
1921 test_val
= NFSD_LEASE_TIME
;
1922 list_for_each_safe(pos
, next
, &close_lru
) {
1923 sop
= list_entry(pos
, struct nfs4_stateowner
, so_close_lru
);
1924 if (time_after((unsigned long)sop
->so_time
, (unsigned long)cutoff
)) {
1925 u
= sop
->so_time
- cutoff
;
1930 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1932 list_del(&sop
->so_close_lru
);
1933 nfs4_put_stateowner(sop
);
1935 if (clientid_val
< NFSD_LAUNDROMAT_MINTIMEOUT
)
1936 clientid_val
= NFSD_LAUNDROMAT_MINTIMEOUT
;
1937 nfs4_unlock_state();
1938 return clientid_val
;
1942 laundromat_main(void *not_used
)
1946 t
= nfs4_laundromat();
1947 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t
);
1948 queue_delayed_work(laundry_wq
, &laundromat_work
, t
*HZ
);
1951 static struct nfs4_stateowner
*
1952 search_close_lru(u32 st_id
, int flags
)
1954 struct nfs4_stateowner
*local
= NULL
;
1956 if (flags
& CLOSE_STATE
) {
1957 list_for_each_entry(local
, &close_lru
, so_close_lru
) {
1958 if (local
->so_id
== st_id
)
1966 nfs4_check_fh(struct svc_fh
*fhp
, struct nfs4_stateid
*stp
)
1968 return fhp
->fh_dentry
->d_inode
!= stp
->st_vfs_file
->f_dentry
->d_inode
;
1972 STALE_STATEID(stateid_t
*stateid
)
1974 if (stateid
->si_boot
== boot_time
)
1976 dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
1977 stateid
->si_boot
, stateid
->si_stateownerid
, stateid
->si_fileid
,
1978 stateid
->si_generation
);
1983 access_permit_read(unsigned long access_bmap
)
1985 return test_bit(NFS4_SHARE_ACCESS_READ
, &access_bmap
) ||
1986 test_bit(NFS4_SHARE_ACCESS_BOTH
, &access_bmap
) ||
1987 test_bit(NFS4_SHARE_ACCESS_WRITE
, &access_bmap
);
1991 access_permit_write(unsigned long access_bmap
)
1993 return test_bit(NFS4_SHARE_ACCESS_WRITE
, &access_bmap
) ||
1994 test_bit(NFS4_SHARE_ACCESS_BOTH
, &access_bmap
);
1998 int nfs4_check_openmode(struct nfs4_stateid
*stp
, int flags
)
2000 int status
= nfserr_openmode
;
2002 if ((flags
& WR_STATE
) && (!access_permit_write(stp
->st_access_bmap
)))
2004 if ((flags
& RD_STATE
) && (!access_permit_read(stp
->st_access_bmap
)))
2012 check_special_stateids(svc_fh
*current_fh
, stateid_t
*stateid
, int flags
)
2014 /* Trying to call delegreturn with a special stateid? Yuch: */
2015 if (!(flags
& (RD_STATE
| WR_STATE
)))
2016 return nfserr_bad_stateid
;
2017 else if (ONE_STATEID(stateid
) && (flags
& RD_STATE
))
2019 else if (nfs4_in_grace()) {
2020 /* Answer in remaining cases depends on existance of
2021 * conflicting state; so we must wait out the grace period. */
2022 return nfserr_grace
;
2023 } else if (flags
& WR_STATE
)
2024 return nfs4_share_conflict(current_fh
,
2025 NFS4_SHARE_DENY_WRITE
);
2026 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2027 return nfs4_share_conflict(current_fh
,
2028 NFS4_SHARE_DENY_READ
);
2032 * Allow READ/WRITE during grace period on recovered state only for files
2033 * that are not able to provide mandatory locking.
2036 io_during_grace_disallowed(struct inode
*inode
, int flags
)
2038 return nfs4_in_grace() && (flags
& (RD_STATE
| WR_STATE
))
2039 && MANDATORY_LOCK(inode
);
2043 * Checks for stateid operations
2046 nfs4_preprocess_stateid_op(struct svc_fh
*current_fh
, stateid_t
*stateid
, int flags
, struct file
**filpp
)
2048 struct nfs4_stateid
*stp
= NULL
;
2049 struct nfs4_delegation
*dp
= NULL
;
2051 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
2054 dprintk("NFSD: preprocess_stateid_op: stateid = (%08x/%08x/%08x/%08x)\n",
2055 stateid
->si_boot
, stateid
->si_stateownerid
,
2056 stateid
->si_fileid
, stateid
->si_generation
);
2060 if (io_during_grace_disallowed(ino
, flags
))
2061 return nfserr_grace
;
2063 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
))
2064 return check_special_stateids(current_fh
, stateid
, flags
);
2067 status
= nfserr_stale_stateid
;
2068 if (STALE_STATEID(stateid
))
2072 status
= nfserr_bad_stateid
;
2073 if (!stateid
->si_fileid
) { /* delegation stateid */
2074 if(!(dp
= find_delegation_stateid(ino
, stateid
))) {
2075 dprintk("NFSD: delegation stateid not found\n");
2076 if (nfs4_in_grace())
2077 status
= nfserr_grace
;
2080 stidp
= &dp
->dl_stateid
;
2081 } else { /* open or lock stateid */
2082 if (!(stp
= find_stateid(stateid
, flags
))) {
2083 dprintk("NFSD: open or lock stateid not found\n");
2084 if (nfs4_in_grace())
2085 status
= nfserr_grace
;
2088 if ((flags
& CHECK_FH
) && nfs4_check_fh(current_fh
, stp
))
2090 if (!stp
->st_stateowner
->so_confirmed
)
2092 stidp
= &stp
->st_stateid
;
2094 if (stateid
->si_generation
> stidp
->si_generation
)
2098 status
= nfserr_old_stateid
;
2099 if (stateid
->si_generation
< stidp
->si_generation
)
2102 if ((status
= nfs4_check_openmode(stp
,flags
)))
2104 renew_client(stp
->st_stateowner
->so_client
);
2106 *filpp
= stp
->st_vfs_file
;
2108 if ((status
= nfs4_check_delegmode(dp
, flags
)))
2110 renew_client(dp
->dl_client
);
2111 if (flags
& DELEG_RET
)
2112 unhash_delegation(dp
);
2114 *filpp
= dp
->dl_vfs_file
;
2124 return (type
== NFS4_READW_LT
|| type
== NFS4_READ_LT
) ?
2125 RD_STATE
: WR_STATE
;
2129 * Checks for sequence id mutating operations.
2132 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
)
2134 struct nfs4_stateid
*stp
;
2135 struct nfs4_stateowner
*sop
;
2137 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2138 "stateid = (%08x/%08x/%08x/%08x)\n", seqid
,
2139 stateid
->si_boot
, stateid
->si_stateownerid
, stateid
->si_fileid
,
2140 stateid
->si_generation
);
2145 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
)) {
2146 printk("NFSD: preprocess_seqid_op: magic stateid!\n");
2147 return nfserr_bad_stateid
;
2150 if (STALE_STATEID(stateid
))
2151 return nfserr_stale_stateid
;
2153 * We return BAD_STATEID if filehandle doesn't match stateid,
2154 * the confirmed flag is incorrecly set, or the generation
2155 * number is incorrect.
2157 stp
= find_stateid(stateid
, flags
);
2160 * Also, we should make sure this isn't just the result of
2163 sop
= search_close_lru(stateid
->si_stateownerid
, flags
);
2165 return nfserr_bad_stateid
;
2171 struct nfs4_stateowner
*sop
= stp
->st_stateowner
;
2172 clientid_t
*lockclid
= &lock
->v
.new.clientid
;
2173 struct nfs4_client
*clp
= sop
->so_client
;
2177 lkflg
= setlkflg(lock
->lk_type
);
2179 if (lock
->lk_is_new
) {
2180 if (!sop
->so_is_open_owner
)
2181 return nfserr_bad_stateid
;
2182 if (!cmp_clid(&clp
->cl_clientid
, lockclid
))
2183 return nfserr_bad_stateid
;
2184 /* stp is the open stateid */
2185 status
= nfs4_check_openmode(stp
, lkflg
);
2189 /* stp is the lock stateid */
2190 status
= nfs4_check_openmode(stp
->st_openstp
, lkflg
);
2197 if ((flags
& CHECK_FH
) && nfs4_check_fh(current_fh
, stp
)) {
2198 printk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
2199 return nfserr_bad_stateid
;
2203 *sopp
= sop
= stp
->st_stateowner
;
2206 * We now validate the seqid and stateid generation numbers.
2207 * For the moment, we ignore the possibility of
2208 * generation number wraparound.
2210 if (seqid
!= sop
->so_seqid
)
2213 if (sop
->so_confirmed
&& flags
& CONFIRM
) {
2214 printk("NFSD: preprocess_seqid_op: expected"
2215 " unconfirmed stateowner!\n");
2216 return nfserr_bad_stateid
;
2218 if (!sop
->so_confirmed
&& !(flags
& CONFIRM
)) {
2219 printk("NFSD: preprocess_seqid_op: stateowner not"
2220 " confirmed yet!\n");
2221 return nfserr_bad_stateid
;
2223 if (stateid
->si_generation
> stp
->st_stateid
.si_generation
) {
2224 printk("NFSD: preprocess_seqid_op: future stateid?!\n");
2225 return nfserr_bad_stateid
;
2228 if (stateid
->si_generation
< stp
->st_stateid
.si_generation
) {
2229 printk("NFSD: preprocess_seqid_op: old stateid!\n");
2230 return nfserr_old_stateid
;
2232 renew_client(sop
->so_client
);
2236 if (seqid
== sop
->so_seqid
- 1) {
2237 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
2238 /* indicate replay to calling function */
2239 return NFSERR_REPLAY_ME
;
2241 printk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
2242 sop
->so_seqid
, seqid
);
2244 return nfserr_bad_seqid
;
2248 nfsd4_open_confirm(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open_confirm
*oc
, struct nfs4_stateowner
**replay_owner
)
2251 struct nfs4_stateowner
*sop
;
2252 struct nfs4_stateid
*stp
;
2254 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
2255 (int)current_fh
->fh_dentry
->d_name
.len
,
2256 current_fh
->fh_dentry
->d_name
.name
);
2258 if ((status
= fh_verify(rqstp
, current_fh
, S_IFREG
, 0)))
2263 if ((status
= nfs4_preprocess_seqid_op(current_fh
, oc
->oc_seqid
,
2264 &oc
->oc_req_stateid
,
2265 CHECK_FH
| CONFIRM
| OPEN_STATE
,
2266 &oc
->oc_stateowner
, &stp
, NULL
)))
2269 sop
= oc
->oc_stateowner
;
2270 sop
->so_confirmed
= 1;
2271 update_stateid(&stp
->st_stateid
);
2272 memcpy(&oc
->oc_resp_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2273 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
2274 "stateid=(%08x/%08x/%08x/%08x)\n", oc
->oc_seqid
,
2275 stp
->st_stateid
.si_boot
,
2276 stp
->st_stateid
.si_stateownerid
,
2277 stp
->st_stateid
.si_fileid
,
2278 stp
->st_stateid
.si_generation
);
2280 nfsd4_create_clid_dir(sop
->so_client
);
2282 if (oc
->oc_stateowner
) {
2283 nfs4_get_stateowner(oc
->oc_stateowner
);
2284 *replay_owner
= oc
->oc_stateowner
;
2286 nfs4_unlock_state();
2292 * unset all bits in union bitmap (bmap) that
2293 * do not exist in share (from successful OPEN_DOWNGRADE)
2296 reset_union_bmap_access(unsigned long access
, unsigned long *bmap
)
2299 for (i
= 1; i
< 4; i
++) {
2300 if ((i
& access
) != i
)
2301 __clear_bit(i
, bmap
);
2306 reset_union_bmap_deny(unsigned long deny
, unsigned long *bmap
)
2309 for (i
= 0; i
< 4; i
++) {
2310 if ((i
& deny
) != i
)
2311 __clear_bit(i
, bmap
);
2316 nfsd4_open_downgrade(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open_downgrade
*od
, struct nfs4_stateowner
**replay_owner
)
2319 struct nfs4_stateid
*stp
;
2320 unsigned int share_access
;
2322 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
2323 (int)current_fh
->fh_dentry
->d_name
.len
,
2324 current_fh
->fh_dentry
->d_name
.name
);
2326 if (!TEST_ACCESS(od
->od_share_access
) || !TEST_DENY(od
->od_share_deny
))
2327 return nfserr_inval
;
2330 if ((status
= nfs4_preprocess_seqid_op(current_fh
, od
->od_seqid
,
2332 CHECK_FH
| OPEN_STATE
,
2333 &od
->od_stateowner
, &stp
, NULL
)))
2336 status
= nfserr_inval
;
2337 if (!test_bit(od
->od_share_access
, &stp
->st_access_bmap
)) {
2338 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2339 stp
->st_access_bmap
, od
->od_share_access
);
2342 if (!test_bit(od
->od_share_deny
, &stp
->st_deny_bmap
)) {
2343 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2344 stp
->st_deny_bmap
, od
->od_share_deny
);
2347 set_access(&share_access
, stp
->st_access_bmap
);
2348 nfs4_file_downgrade(stp
->st_vfs_file
,
2349 share_access
& ~od
->od_share_access
);
2351 reset_union_bmap_access(od
->od_share_access
, &stp
->st_access_bmap
);
2352 reset_union_bmap_deny(od
->od_share_deny
, &stp
->st_deny_bmap
);
2354 update_stateid(&stp
->st_stateid
);
2355 memcpy(&od
->od_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2358 if (od
->od_stateowner
) {
2359 nfs4_get_stateowner(od
->od_stateowner
);
2360 *replay_owner
= od
->od_stateowner
;
2362 nfs4_unlock_state();
2367 * nfs4_unlock_state() called after encode
2370 nfsd4_close(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_close
*close
, struct nfs4_stateowner
**replay_owner
)
2373 struct nfs4_stateid
*stp
;
2375 dprintk("NFSD: nfsd4_close on file %.*s\n",
2376 (int)current_fh
->fh_dentry
->d_name
.len
,
2377 current_fh
->fh_dentry
->d_name
.name
);
2380 /* check close_lru for replay */
2381 if ((status
= nfs4_preprocess_seqid_op(current_fh
, close
->cl_seqid
,
2383 CHECK_FH
| OPEN_STATE
| CLOSE_STATE
,
2384 &close
->cl_stateowner
, &stp
, NULL
)))
2387 update_stateid(&stp
->st_stateid
);
2388 memcpy(&close
->cl_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2390 /* release_stateid() calls nfsd_close() if needed */
2391 release_stateid(stp
, OPEN_STATE
);
2393 /* place unused nfs4_stateowners on so_close_lru list to be
2394 * released by the laundromat service after the lease period
2395 * to enable us to handle CLOSE replay
2397 if (list_empty(&close
->cl_stateowner
->so_stateids
))
2398 move_to_close_lru(close
->cl_stateowner
);
2400 if (close
->cl_stateowner
) {
2401 nfs4_get_stateowner(close
->cl_stateowner
);
2402 *replay_owner
= close
->cl_stateowner
;
2404 nfs4_unlock_state();
2409 nfsd4_delegreturn(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_delegreturn
*dr
)
2413 if ((status
= fh_verify(rqstp
, current_fh
, S_IFREG
, 0)))
2417 status
= nfs4_preprocess_stateid_op(current_fh
, &dr
->dr_stateid
, DELEG_RET
, NULL
);
2418 nfs4_unlock_state();
2425 * Lock owner state (byte-range locks)
2427 #define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
2428 #define LOCK_HASH_BITS 8
2429 #define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
2430 #define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
2432 #define lockownerid_hashval(id) \
2433 ((id) & LOCK_HASH_MASK)
2435 static inline unsigned int
2436 lock_ownerstr_hashval(struct inode
*inode
, u32 cl_id
,
2437 struct xdr_netobj
*ownername
)
2439 return (file_hashval(inode
) + cl_id
2440 + opaque_hashval(ownername
->data
, ownername
->len
))
2444 static struct list_head lock_ownerid_hashtbl
[LOCK_HASH_SIZE
];
2445 static struct list_head lock_ownerstr_hashtbl
[LOCK_HASH_SIZE
];
2446 static struct list_head lockstateid_hashtbl
[STATEID_HASH_SIZE
];
2448 static struct nfs4_stateid
*
2449 find_stateid(stateid_t
*stid
, int flags
)
2451 struct nfs4_stateid
*local
= NULL
;
2452 u32 st_id
= stid
->si_stateownerid
;
2453 u32 f_id
= stid
->si_fileid
;
2454 unsigned int hashval
;
2456 dprintk("NFSD: find_stateid flags 0x%x\n",flags
);
2457 if ((flags
& LOCK_STATE
) || (flags
& RD_STATE
) || (flags
& WR_STATE
)) {
2458 hashval
= stateid_hashval(st_id
, f_id
);
2459 list_for_each_entry(local
, &lockstateid_hashtbl
[hashval
], st_hash
) {
2460 if ((local
->st_stateid
.si_stateownerid
== st_id
) &&
2461 (local
->st_stateid
.si_fileid
== f_id
))
2465 if ((flags
& OPEN_STATE
) || (flags
& RD_STATE
) || (flags
& WR_STATE
)) {
2466 hashval
= stateid_hashval(st_id
, f_id
);
2467 list_for_each_entry(local
, &stateid_hashtbl
[hashval
], st_hash
) {
2468 if ((local
->st_stateid
.si_stateownerid
== st_id
) &&
2469 (local
->st_stateid
.si_fileid
== f_id
))
2476 static struct nfs4_delegation
*
2477 find_delegation_stateid(struct inode
*ino
, stateid_t
*stid
)
2479 struct nfs4_file
*fp
;
2480 struct nfs4_delegation
*dl
;
2482 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2483 stid
->si_boot
, stid
->si_stateownerid
,
2484 stid
->si_fileid
, stid
->si_generation
);
2486 fp
= find_file(ino
);
2489 dl
= find_delegation_file(fp
, stid
);
2495 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2496 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2497 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
2498 * locking, this prevents us from being completely protocol-compliant. The
2499 * real solution to this problem is to start using unsigned file offsets in
2500 * the VFS, but this is a very deep change!
2503 nfs4_transform_lock_offset(struct file_lock
*lock
)
2505 if (lock
->fl_start
< 0)
2506 lock
->fl_start
= OFFSET_MAX
;
2507 if (lock
->fl_end
< 0)
2508 lock
->fl_end
= OFFSET_MAX
;
2511 /* Hack!: For now, we're defining this just so we can use a pointer to it
2512 * as a unique cookie to identify our (NFSv4's) posix locks. */
2513 static struct lock_manager_operations nfsd_posix_mng_ops
= {
2517 nfs4_set_lock_denied(struct file_lock
*fl
, struct nfsd4_lock_denied
*deny
)
2519 struct nfs4_stateowner
*sop
;
2522 if (fl
->fl_lmops
== &nfsd_posix_mng_ops
) {
2523 sop
= (struct nfs4_stateowner
*) fl
->fl_owner
;
2524 hval
= lockownerid_hashval(sop
->so_id
);
2525 kref_get(&sop
->so_ref
);
2527 deny
->ld_clientid
= sop
->so_client
->cl_clientid
;
2529 deny
->ld_sop
= NULL
;
2530 deny
->ld_clientid
.cl_boot
= 0;
2531 deny
->ld_clientid
.cl_id
= 0;
2533 deny
->ld_start
= fl
->fl_start
;
2534 deny
->ld_length
= ~(u64
)0;
2535 if (fl
->fl_end
!= ~(u64
)0)
2536 deny
->ld_length
= fl
->fl_end
- fl
->fl_start
+ 1;
2537 deny
->ld_type
= NFS4_READ_LT
;
2538 if (fl
->fl_type
!= F_RDLCK
)
2539 deny
->ld_type
= NFS4_WRITE_LT
;
2542 static struct nfs4_stateowner
*
2543 find_lockstateowner_str(struct inode
*inode
, clientid_t
*clid
,
2544 struct xdr_netobj
*owner
)
2546 unsigned int hashval
= lock_ownerstr_hashval(inode
, clid
->cl_id
, owner
);
2547 struct nfs4_stateowner
*op
;
2549 list_for_each_entry(op
, &lock_ownerstr_hashtbl
[hashval
], so_strhash
) {
2550 if (cmp_owner_str(op
, owner
, clid
))
2557 * Alloc a lock owner structure.
2558 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
2561 * strhashval = lock_ownerstr_hashval
2564 static struct nfs4_stateowner
*
2565 alloc_init_lock_stateowner(unsigned int strhashval
, struct nfs4_client
*clp
, struct nfs4_stateid
*open_stp
, struct nfsd4_lock
*lock
) {
2566 struct nfs4_stateowner
*sop
;
2567 struct nfs4_replay
*rp
;
2568 unsigned int idhashval
;
2570 if (!(sop
= alloc_stateowner(&lock
->lk_new_owner
)))
2572 idhashval
= lockownerid_hashval(current_ownerid
);
2573 INIT_LIST_HEAD(&sop
->so_idhash
);
2574 INIT_LIST_HEAD(&sop
->so_strhash
);
2575 INIT_LIST_HEAD(&sop
->so_perclient
);
2576 INIT_LIST_HEAD(&sop
->so_stateids
);
2577 INIT_LIST_HEAD(&sop
->so_perstateid
);
2578 INIT_LIST_HEAD(&sop
->so_close_lru
); /* not used */
2580 list_add(&sop
->so_idhash
, &lock_ownerid_hashtbl
[idhashval
]);
2581 list_add(&sop
->so_strhash
, &lock_ownerstr_hashtbl
[strhashval
]);
2582 list_add(&sop
->so_perstateid
, &open_stp
->st_lockowners
);
2583 sop
->so_is_open_owner
= 0;
2584 sop
->so_id
= current_ownerid
++;
2585 sop
->so_client
= clp
;
2586 /* It is the openowner seqid that will be incremented in encode in the
2587 * case of new lockowners; so increment the lock seqid manually: */
2588 sop
->so_seqid
= lock
->lk_new_lock_seqid
+ 1;
2589 sop
->so_confirmed
= 1;
2590 rp
= &sop
->so_replay
;
2591 rp
->rp_status
= nfserr_serverfault
;
2593 rp
->rp_buf
= rp
->rp_ibuf
;
2597 static struct nfs4_stateid
*
2598 alloc_init_lock_stateid(struct nfs4_stateowner
*sop
, struct nfs4_file
*fp
, struct nfs4_stateid
*open_stp
)
2600 struct nfs4_stateid
*stp
;
2601 unsigned int hashval
= stateid_hashval(sop
->so_id
, fp
->fi_id
);
2603 stp
= nfs4_alloc_stateid();
2606 INIT_LIST_HEAD(&stp
->st_hash
);
2607 INIT_LIST_HEAD(&stp
->st_perfile
);
2608 INIT_LIST_HEAD(&stp
->st_perstateowner
);
2609 INIT_LIST_HEAD(&stp
->st_lockowners
); /* not used */
2610 list_add(&stp
->st_hash
, &lockstateid_hashtbl
[hashval
]);
2611 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
2612 list_add(&stp
->st_perstateowner
, &sop
->so_stateids
);
2613 stp
->st_stateowner
= sop
;
2616 stp
->st_stateid
.si_boot
= boot_time
;
2617 stp
->st_stateid
.si_stateownerid
= sop
->so_id
;
2618 stp
->st_stateid
.si_fileid
= fp
->fi_id
;
2619 stp
->st_stateid
.si_generation
= 0;
2620 stp
->st_vfs_file
= open_stp
->st_vfs_file
; /* FIXME refcount?? */
2621 stp
->st_access_bmap
= open_stp
->st_access_bmap
;
2622 stp
->st_deny_bmap
= open_stp
->st_deny_bmap
;
2623 stp
->st_openstp
= open_stp
;
2630 check_lock_length(u64 offset
, u64 length
)
2632 return ((length
== 0) || ((length
!= ~(u64
)0) &&
2633 LOFF_OVERFLOW(offset
, length
)));
2640 nfsd4_lock(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_lock
*lock
, struct nfs4_stateowner
**replay_owner
)
2642 struct nfs4_stateowner
*open_sop
= NULL
;
2643 struct nfs4_stateowner
*lock_sop
= NULL
;
2644 struct nfs4_stateid
*lock_stp
;
2646 struct file_lock file_lock
;
2647 struct file_lock conflock
;
2649 unsigned int strhashval
;
2651 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2652 (long long) lock
->lk_offset
,
2653 (long long) lock
->lk_length
);
2655 if (check_lock_length(lock
->lk_offset
, lock
->lk_length
))
2656 return nfserr_inval
;
2658 if ((status
= fh_verify(rqstp
, current_fh
, S_IFREG
, MAY_LOCK
))) {
2659 dprintk("NFSD: nfsd4_lock: permission denied!\n");
2665 if (lock
->lk_is_new
) {
2667 * Client indicates that this is a new lockowner.
2668 * Use open owner and open stateid to create lock owner and
2671 struct nfs4_stateid
*open_stp
= NULL
;
2672 struct nfs4_file
*fp
;
2674 status
= nfserr_stale_clientid
;
2675 if (STALE_CLIENTID(&lock
->lk_new_clientid
))
2678 /* validate and update open stateid and open seqid */
2679 status
= nfs4_preprocess_seqid_op(current_fh
,
2680 lock
->lk_new_open_seqid
,
2681 &lock
->lk_new_open_stateid
,
2682 CHECK_FH
| OPEN_STATE
,
2683 &lock
->lk_replay_owner
, &open_stp
,
2687 open_sop
= lock
->lk_replay_owner
;
2688 /* create lockowner and lock stateid */
2689 fp
= open_stp
->st_file
;
2690 strhashval
= lock_ownerstr_hashval(fp
->fi_inode
,
2691 open_sop
->so_client
->cl_clientid
.cl_id
,
2692 &lock
->v
.new.owner
);
2693 /* XXX: Do we need to check for duplicate stateowners on
2694 * the same file, or should they just be allowed (and
2695 * create new stateids)? */
2696 status
= nfserr_resource
;
2697 lock_sop
= alloc_init_lock_stateowner(strhashval
,
2698 open_sop
->so_client
, open_stp
, lock
);
2699 if (lock_sop
== NULL
)
2701 lock_stp
= alloc_init_lock_stateid(lock_sop
, fp
, open_stp
);
2702 if (lock_stp
== NULL
)
2705 /* lock (lock owner + lock stateid) already exists */
2706 status
= nfs4_preprocess_seqid_op(current_fh
,
2707 lock
->lk_old_lock_seqid
,
2708 &lock
->lk_old_lock_stateid
,
2709 CHECK_FH
| LOCK_STATE
,
2710 &lock
->lk_replay_owner
, &lock_stp
, lock
);
2713 lock_sop
= lock
->lk_replay_owner
;
2715 /* lock->lk_replay_owner and lock_stp have been created or found */
2716 filp
= lock_stp
->st_vfs_file
;
2718 status
= nfserr_grace
;
2719 if (nfs4_in_grace() && !lock
->lk_reclaim
)
2721 status
= nfserr_no_grace
;
2722 if (!nfs4_in_grace() && lock
->lk_reclaim
)
2725 locks_init_lock(&file_lock
);
2726 switch (lock
->lk_type
) {
2729 file_lock
.fl_type
= F_RDLCK
;
2732 case NFS4_WRITEW_LT
:
2733 file_lock
.fl_type
= F_WRLCK
;
2736 status
= nfserr_inval
;
2739 file_lock
.fl_owner
= (fl_owner_t
)lock_sop
;
2740 file_lock
.fl_pid
= current
->tgid
;
2741 file_lock
.fl_file
= filp
;
2742 file_lock
.fl_flags
= FL_POSIX
;
2743 file_lock
.fl_lmops
= &nfsd_posix_mng_ops
;
2745 file_lock
.fl_start
= lock
->lk_offset
;
2746 if ((lock
->lk_length
== ~(u64
)0) ||
2747 LOFF_OVERFLOW(lock
->lk_offset
, lock
->lk_length
))
2748 file_lock
.fl_end
= ~(u64
)0;
2750 file_lock
.fl_end
= lock
->lk_offset
+ lock
->lk_length
- 1;
2751 nfs4_transform_lock_offset(&file_lock
);
2754 * Try to lock the file in the VFS.
2755 * Note: locks.c uses the BKL to protect the inode's lock list.
2758 /* XXX?: Just to divert the locks_release_private at the start of
2759 * locks_copy_lock: */
2760 conflock
.fl_ops
= NULL
;
2761 conflock
.fl_lmops
= NULL
;
2762 status
= posix_lock_file_conf(filp
, &file_lock
, &conflock
);
2763 dprintk("NFSD: nfsd4_lock: posix_lock_file_conf status %d\n",status
);
2765 case 0: /* success! */
2766 update_stateid(&lock_stp
->st_stateid
);
2767 memcpy(&lock
->lk_resp_stateid
, &lock_stp
->st_stateid
,
2770 case (EAGAIN
): /* conflock holds conflicting lock */
2771 status
= nfserr_denied
;
2772 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2773 nfs4_set_lock_denied(&conflock
, &lock
->lk_denied
);
2776 status
= nfserr_deadlock
;
2779 dprintk("NFSD: nfsd4_lock: posix_lock_file_conf() failed! status %d\n",status
);
2780 status
= nfserr_resource
;
2784 if (status
&& lock
->lk_is_new
&& lock_sop
)
2785 release_stateowner(lock_sop
);
2786 if (lock
->lk_replay_owner
) {
2787 nfs4_get_stateowner(lock
->lk_replay_owner
);
2788 *replay_owner
= lock
->lk_replay_owner
;
2790 nfs4_unlock_state();
2798 nfsd4_lockt(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_lockt
*lockt
)
2800 struct inode
*inode
;
2802 struct file_lock file_lock
;
2803 struct file_lock conflock
;
2806 if (nfs4_in_grace())
2807 return nfserr_grace
;
2809 if (check_lock_length(lockt
->lt_offset
, lockt
->lt_length
))
2810 return nfserr_inval
;
2812 lockt
->lt_stateowner
= NULL
;
2815 status
= nfserr_stale_clientid
;
2816 if (STALE_CLIENTID(&lockt
->lt_clientid
))
2819 if ((status
= fh_verify(rqstp
, current_fh
, S_IFREG
, 0))) {
2820 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
2821 if (status
== nfserr_symlink
)
2822 status
= nfserr_inval
;
2826 inode
= current_fh
->fh_dentry
->d_inode
;
2827 locks_init_lock(&file_lock
);
2828 switch (lockt
->lt_type
) {
2831 file_lock
.fl_type
= F_RDLCK
;
2834 case NFS4_WRITEW_LT
:
2835 file_lock
.fl_type
= F_WRLCK
;
2838 printk("NFSD: nfs4_lockt: bad lock type!\n");
2839 status
= nfserr_inval
;
2843 lockt
->lt_stateowner
= find_lockstateowner_str(inode
,
2844 &lockt
->lt_clientid
, &lockt
->lt_owner
);
2845 if (lockt
->lt_stateowner
)
2846 file_lock
.fl_owner
= (fl_owner_t
)lockt
->lt_stateowner
;
2847 file_lock
.fl_pid
= current
->tgid
;
2848 file_lock
.fl_flags
= FL_POSIX
;
2849 file_lock
.fl_lmops
= &nfsd_posix_mng_ops
;
2851 file_lock
.fl_start
= lockt
->lt_offset
;
2852 if ((lockt
->lt_length
== ~(u64
)0) || LOFF_OVERFLOW(lockt
->lt_offset
, lockt
->lt_length
))
2853 file_lock
.fl_end
= ~(u64
)0;
2855 file_lock
.fl_end
= lockt
->lt_offset
+ lockt
->lt_length
- 1;
2857 nfs4_transform_lock_offset(&file_lock
);
2859 /* posix_test_lock uses the struct file _only_ to resolve the inode.
2860 * since LOCKT doesn't require an OPEN, and therefore a struct
2861 * file may not exist, pass posix_test_lock a struct file with
2862 * only the dentry:inode set.
2864 memset(&file
, 0, sizeof (struct file
));
2865 file
.f_dentry
= current_fh
->fh_dentry
;
2868 if (posix_test_lock(&file
, &file_lock
, &conflock
)) {
2869 status
= nfserr_denied
;
2870 nfs4_set_lock_denied(&conflock
, &lockt
->lt_denied
);
2873 nfs4_unlock_state();
2878 nfsd4_locku(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_locku
*locku
, struct nfs4_stateowner
**replay_owner
)
2880 struct nfs4_stateid
*stp
;
2881 struct file
*filp
= NULL
;
2882 struct file_lock file_lock
;
2885 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2886 (long long) locku
->lu_offset
,
2887 (long long) locku
->lu_length
);
2889 if (check_lock_length(locku
->lu_offset
, locku
->lu_length
))
2890 return nfserr_inval
;
2894 if ((status
= nfs4_preprocess_seqid_op(current_fh
,
2897 CHECK_FH
| LOCK_STATE
,
2898 &locku
->lu_stateowner
, &stp
, NULL
)))
2901 filp
= stp
->st_vfs_file
;
2903 locks_init_lock(&file_lock
);
2904 file_lock
.fl_type
= F_UNLCK
;
2905 file_lock
.fl_owner
= (fl_owner_t
) locku
->lu_stateowner
;
2906 file_lock
.fl_pid
= current
->tgid
;
2907 file_lock
.fl_file
= filp
;
2908 file_lock
.fl_flags
= FL_POSIX
;
2909 file_lock
.fl_lmops
= &nfsd_posix_mng_ops
;
2910 file_lock
.fl_start
= locku
->lu_offset
;
2912 if ((locku
->lu_length
== ~(u64
)0) || LOFF_OVERFLOW(locku
->lu_offset
, locku
->lu_length
))
2913 file_lock
.fl_end
= ~(u64
)0;
2915 file_lock
.fl_end
= locku
->lu_offset
+ locku
->lu_length
- 1;
2916 nfs4_transform_lock_offset(&file_lock
);
2919 * Try to unlock the file in the VFS.
2921 status
= posix_lock_file(filp
, &file_lock
);
2923 dprintk("NFSD: nfs4_locku: posix_lock_file failed!\n");
2927 * OK, unlock succeeded; the only thing left to do is update the stateid.
2929 update_stateid(&stp
->st_stateid
);
2930 memcpy(&locku
->lu_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2933 if (locku
->lu_stateowner
) {
2934 nfs4_get_stateowner(locku
->lu_stateowner
);
2935 *replay_owner
= locku
->lu_stateowner
;
2937 nfs4_unlock_state();
2941 status
= nfserrno(status
);
2947 * 1: locks held by lockowner
2948 * 0: no locks held by lockowner
2951 check_for_locks(struct file
*filp
, struct nfs4_stateowner
*lowner
)
2953 struct file_lock
**flpp
;
2954 struct inode
*inode
= filp
->f_dentry
->d_inode
;
2958 for (flpp
= &inode
->i_flock
; *flpp
!= NULL
; flpp
= &(*flpp
)->fl_next
) {
2959 if ((*flpp
)->fl_owner
== (fl_owner_t
)lowner
) {
2970 nfsd4_release_lockowner(struct svc_rqst
*rqstp
, struct nfsd4_release_lockowner
*rlockowner
)
2972 clientid_t
*clid
= &rlockowner
->rl_clientid
;
2973 struct nfs4_stateowner
*sop
;
2974 struct nfs4_stateid
*stp
;
2975 struct xdr_netobj
*owner
= &rlockowner
->rl_owner
;
2976 struct list_head matches
;
2980 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
2981 clid
->cl_boot
, clid
->cl_id
);
2983 /* XXX check for lease expiration */
2985 status
= nfserr_stale_clientid
;
2986 if (STALE_CLIENTID(clid
))
2991 status
= nfserr_locks_held
;
2992 /* XXX: we're doing a linear search through all the lockowners.
2993 * Yipes! For now we'll just hope clients aren't really using
2994 * release_lockowner much, but eventually we have to fix these
2995 * data structures. */
2996 INIT_LIST_HEAD(&matches
);
2997 for (i
= 0; i
< LOCK_HASH_SIZE
; i
++) {
2998 list_for_each_entry(sop
, &lock_ownerid_hashtbl
[i
], so_idhash
) {
2999 if (!cmp_owner_str(sop
, owner
, clid
))
3001 list_for_each_entry(stp
, &sop
->so_stateids
,
3003 if (check_for_locks(stp
->st_vfs_file
, sop
))
3005 /* Note: so_perclient unused for lockowners,
3006 * so it's OK to fool with here. */
3007 list_add(&sop
->so_perclient
, &matches
);
3011 /* Clients probably won't expect us to return with some (but not all)
3012 * of the lockowner state released; so don't release any until all
3013 * have been checked. */
3015 while (!list_empty(&matches
)) {
3016 sop
= list_entry(matches
.next
, struct nfs4_stateowner
,
3018 /* unhash_stateowner deletes so_perclient only
3019 * for openowners. */
3020 list_del(&sop
->so_perclient
);
3021 release_stateowner(sop
);
3024 nfs4_unlock_state();
3028 static inline struct nfs4_client_reclaim
*
3031 return kmalloc(sizeof(struct nfs4_client_reclaim
), GFP_KERNEL
);
3035 nfs4_has_reclaimed_state(const char *name
)
3037 unsigned int strhashval
= clientstr_hashval(name
);
3038 struct nfs4_client
*clp
;
3040 clp
= find_confirmed_client_by_str(name
, strhashval
);
3045 * failure => all reset bets are off, nfserr_no_grace...
3048 nfs4_client_to_reclaim(const char *name
)
3050 unsigned int strhashval
;
3051 struct nfs4_client_reclaim
*crp
= NULL
;
3053 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN
, name
);
3054 crp
= alloc_reclaim();
3057 strhashval
= clientstr_hashval(name
);
3058 INIT_LIST_HEAD(&crp
->cr_strhash
);
3059 list_add(&crp
->cr_strhash
, &reclaim_str_hashtbl
[strhashval
]);
3060 memcpy(crp
->cr_recdir
, name
, HEXDIR_LEN
);
3061 reclaim_str_hashtbl_size
++;
3066 nfs4_release_reclaim(void)
3068 struct nfs4_client_reclaim
*crp
= NULL
;
3071 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
3072 while (!list_empty(&reclaim_str_hashtbl
[i
])) {
3073 crp
= list_entry(reclaim_str_hashtbl
[i
].next
,
3074 struct nfs4_client_reclaim
, cr_strhash
);
3075 list_del(&crp
->cr_strhash
);
3077 reclaim_str_hashtbl_size
--;
3080 BUG_ON(reclaim_str_hashtbl_size
);
3084 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
3085 static struct nfs4_client_reclaim
*
3086 nfs4_find_reclaim_client(clientid_t
*clid
)
3088 unsigned int strhashval
;
3089 struct nfs4_client
*clp
;
3090 struct nfs4_client_reclaim
*crp
= NULL
;
3093 /* find clientid in conf_id_hashtbl */
3094 clp
= find_confirmed_client(clid
);
3098 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3099 clp
->cl_name
.len
, clp
->cl_name
.data
,
3102 /* find clp->cl_name in reclaim_str_hashtbl */
3103 strhashval
= clientstr_hashval(clp
->cl_recdir
);
3104 list_for_each_entry(crp
, &reclaim_str_hashtbl
[strhashval
], cr_strhash
) {
3105 if (same_name(crp
->cr_recdir
, clp
->cl_recdir
)) {
3113 * Called from OPEN. Look for clientid in reclaim list.
3116 nfs4_check_open_reclaim(clientid_t
*clid
)
3118 return nfs4_find_reclaim_client(clid
) ? nfs_ok
: nfserr_reclaim_bad
;
3121 /* initialization to perform at module load time: */
3124 nfs4_state_init(void)
3128 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
3129 INIT_LIST_HEAD(&conf_id_hashtbl
[i
]);
3130 INIT_LIST_HEAD(&conf_str_hashtbl
[i
]);
3131 INIT_LIST_HEAD(&unconf_str_hashtbl
[i
]);
3132 INIT_LIST_HEAD(&unconf_id_hashtbl
[i
]);
3134 for (i
= 0; i
< FILE_HASH_SIZE
; i
++) {
3135 INIT_LIST_HEAD(&file_hashtbl
[i
]);
3137 for (i
= 0; i
< OWNER_HASH_SIZE
; i
++) {
3138 INIT_LIST_HEAD(&ownerstr_hashtbl
[i
]);
3139 INIT_LIST_HEAD(&ownerid_hashtbl
[i
]);
3141 for (i
= 0; i
< STATEID_HASH_SIZE
; i
++) {
3142 INIT_LIST_HEAD(&stateid_hashtbl
[i
]);
3143 INIT_LIST_HEAD(&lockstateid_hashtbl
[i
]);
3145 for (i
= 0; i
< LOCK_HASH_SIZE
; i
++) {
3146 INIT_LIST_HEAD(&lock_ownerid_hashtbl
[i
]);
3147 INIT_LIST_HEAD(&lock_ownerstr_hashtbl
[i
]);
3149 memset(&onestateid
, ~0, sizeof(stateid_t
));
3150 INIT_LIST_HEAD(&close_lru
);
3151 INIT_LIST_HEAD(&client_lru
);
3152 INIT_LIST_HEAD(&del_recall_lru
);
3153 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++)
3154 INIT_LIST_HEAD(&reclaim_str_hashtbl
[i
]);
3155 reclaim_str_hashtbl_size
= 0;
3159 nfsd4_load_reboot_recovery_data(void)
3164 nfsd4_init_recdir(user_recovery_dirname
);
3165 status
= nfsd4_recdir_load();
3166 nfs4_unlock_state();
3168 printk("NFSD: Failure reading reboot recovery data\n");
3171 /* initialization to perform when the nfsd service is started: */
3174 __nfs4_state_start(void)
3178 boot_time
= get_seconds();
3179 grace_time
= max(user_lease_time
, lease_time
);
3180 lease_time
= user_lease_time
;
3182 printk("NFSD: starting %ld-second grace period\n", grace_time
);
3183 laundry_wq
= create_singlethread_workqueue("nfsd4");
3184 queue_delayed_work(laundry_wq
, &laundromat_work
, grace_time
*HZ
);
3188 nfs4_state_start(void)
3194 status
= nfsd4_init_slabs();
3197 nfsd4_load_reboot_recovery_data();
3198 __nfs4_state_start();
3210 nfs4_lease_time(void)
3216 __nfs4_state_shutdown(void)
3219 struct nfs4_client
*clp
= NULL
;
3220 struct nfs4_delegation
*dp
= NULL
;
3221 struct nfs4_stateowner
*sop
= NULL
;
3222 struct list_head
*pos
, *next
, reaplist
;
3224 list_for_each_safe(pos
, next
, &close_lru
) {
3225 sop
= list_entry(pos
, struct nfs4_stateowner
, so_close_lru
);
3226 list_del(&sop
->so_close_lru
);
3227 nfs4_put_stateowner(sop
);
3230 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
3231 while (!list_empty(&conf_id_hashtbl
[i
])) {
3232 clp
= list_entry(conf_id_hashtbl
[i
].next
, struct nfs4_client
, cl_idhash
);
3235 while (!list_empty(&unconf_str_hashtbl
[i
])) {
3236 clp
= list_entry(unconf_str_hashtbl
[i
].next
, struct nfs4_client
, cl_strhash
);
3240 INIT_LIST_HEAD(&reaplist
);
3241 spin_lock(&recall_lock
);
3242 list_for_each_safe(pos
, next
, &del_recall_lru
) {
3243 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
3244 list_move(&dp
->dl_recall_lru
, &reaplist
);
3246 spin_unlock(&recall_lock
);
3247 list_for_each_safe(pos
, next
, &reaplist
) {
3248 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
3249 list_del_init(&dp
->dl_recall_lru
);
3250 unhash_delegation(dp
);
3253 cancel_delayed_work(&laundromat_work
);
3254 nfsd4_shutdown_recdir();
3259 nfs4_state_shutdown(void)
3261 cancel_rearming_delayed_workqueue(laundry_wq
, &laundromat_work
);
3262 destroy_workqueue(laundry_wq
);
3264 nfs4_release_reclaim();
3265 __nfs4_state_shutdown();
3267 nfs4_unlock_state();
3271 nfs4_set_recdir(char *recdir
)
3274 strcpy(user_recovery_dirname
, recdir
);
3275 nfs4_unlock_state();
3279 * Change the NFSv4 recovery directory to recdir.
3282 nfs4_reset_recoverydir(char *recdir
)
3285 struct nameidata nd
;
3287 status
= path_lookup(recdir
, LOOKUP_FOLLOW
, &nd
);
3291 if (S_ISDIR(nd
.dentry
->d_inode
->i_mode
)) {
3292 nfs4_set_recdir(recdir
);
3300 * Called when leasetime is changed.
3302 * The only way the protocol gives us to handle on-the-fly lease changes is to
3303 * simulate a reboot. Instead of doing that, we just wait till the next time
3304 * we start to register any changes in lease time. If the administrator
3305 * really wants to change the lease time *now*, they can go ahead and bring
3306 * nfsd down and then back up again after changing the lease time.
3309 nfs4_reset_lease(time_t leasetime
)
3312 user_lease_time
= leasetime
;