2 * Copyright (c) 2001 The Regents of the University of Michigan.
5 * Kendrick Smith <kmsmith@umich.edu>
6 * Andy Adamson <kandros@umich.edu>
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include <linux/file.h>
36 #include <linux/smp_lock.h>
37 #include <linux/slab.h>
38 #include <linux/namei.h>
39 #include <linux/swap.h>
40 #include <linux/sunrpc/svcauth_gss.h>
41 #include <linux/sunrpc/clnt.h>
45 #define NFSDDBG_FACILITY NFSDDBG_PROC
48 static time_t lease_time
= 90; /* default lease time */
49 static time_t user_lease_time
= 90;
50 static time_t boot_time
;
51 static u32 current_ownerid
= 1;
52 static u32 current_fileid
= 1;
53 static u32 current_delegid
= 1;
55 static stateid_t zerostateid
; /* bits all 0 */
56 static stateid_t onestateid
; /* bits all 1 */
57 static u64 current_sessionid
= 1;
59 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
60 #define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
62 /* forward declarations */
63 static struct nfs4_stateid
* find_stateid(stateid_t
*stid
, int flags
);
64 static struct nfs4_delegation
* find_delegation_stateid(struct inode
*ino
, stateid_t
*stid
);
65 static char user_recovery_dirname
[PATH_MAX
] = "/var/lib/nfs/v4recovery";
66 static void nfs4_set_recdir(char *recdir
);
70 /* Currently used for almost all code touching nfsv4 state: */
71 static DEFINE_MUTEX(client_mutex
);
74 * Currently used for the del_recall_lru and file hash table. In an
75 * effort to decrease the scope of the client_mutex, this spinlock may
76 * eventually cover more:
78 static DEFINE_SPINLOCK(recall_lock
);
80 static struct kmem_cache
*stateowner_slab
= NULL
;
81 static struct kmem_cache
*file_slab
= NULL
;
82 static struct kmem_cache
*stateid_slab
= NULL
;
83 static struct kmem_cache
*deleg_slab
= NULL
;
88 mutex_lock(&client_mutex
);
92 nfs4_unlock_state(void)
94 mutex_unlock(&client_mutex
);
98 opaque_hashval(const void *ptr
, int nbytes
)
100 unsigned char *cptr
= (unsigned char *) ptr
;
110 static struct list_head del_recall_lru
;
113 put_nfs4_file(struct nfs4_file
*fi
)
115 if (atomic_dec_and_lock(&fi
->fi_ref
, &recall_lock
)) {
116 list_del(&fi
->fi_hash
);
117 spin_unlock(&recall_lock
);
119 kmem_cache_free(file_slab
, fi
);
124 get_nfs4_file(struct nfs4_file
*fi
)
126 atomic_inc(&fi
->fi_ref
);
129 static int num_delegations
;
130 unsigned int max_delegations
;
133 * Open owner state (share locks)
136 /* hash tables for nfs4_stateowner */
137 #define OWNER_HASH_BITS 8
138 #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
139 #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
141 #define ownerid_hashval(id) \
142 ((id) & OWNER_HASH_MASK)
143 #define ownerstr_hashval(clientid, ownername) \
144 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
146 static struct list_head ownerid_hashtbl
[OWNER_HASH_SIZE
];
147 static struct list_head ownerstr_hashtbl
[OWNER_HASH_SIZE
];
149 /* hash table for nfs4_file */
150 #define FILE_HASH_BITS 8
151 #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
152 #define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
153 /* hash table for (open)nfs4_stateid */
154 #define STATEID_HASH_BITS 10
155 #define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
156 #define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
158 #define file_hashval(x) \
159 hash_ptr(x, FILE_HASH_BITS)
160 #define stateid_hashval(owner_id, file_id) \
161 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
163 static struct list_head file_hashtbl
[FILE_HASH_SIZE
];
164 static struct list_head stateid_hashtbl
[STATEID_HASH_SIZE
];
166 static struct nfs4_delegation
*
167 alloc_init_deleg(struct nfs4_client
*clp
, struct nfs4_stateid
*stp
, struct svc_fh
*current_fh
, u32 type
)
169 struct nfs4_delegation
*dp
;
170 struct nfs4_file
*fp
= stp
->st_file
;
171 struct nfs4_cb_conn
*cb
= &stp
->st_stateowner
->so_client
->cl_cb_conn
;
173 dprintk("NFSD alloc_init_deleg\n");
174 if (fp
->fi_had_conflict
)
176 if (num_delegations
> max_delegations
)
178 dp
= kmem_cache_alloc(deleg_slab
, GFP_KERNEL
);
182 INIT_LIST_HEAD(&dp
->dl_perfile
);
183 INIT_LIST_HEAD(&dp
->dl_perclnt
);
184 INIT_LIST_HEAD(&dp
->dl_recall_lru
);
189 get_file(stp
->st_vfs_file
);
190 dp
->dl_vfs_file
= stp
->st_vfs_file
;
192 dp
->dl_ident
= cb
->cb_ident
;
193 dp
->dl_stateid
.si_boot
= get_seconds();
194 dp
->dl_stateid
.si_stateownerid
= current_delegid
++;
195 dp
->dl_stateid
.si_fileid
= 0;
196 dp
->dl_stateid
.si_generation
= 0;
197 fh_copy_shallow(&dp
->dl_fh
, ¤t_fh
->fh_handle
);
199 atomic_set(&dp
->dl_count
, 1);
200 list_add(&dp
->dl_perfile
, &fp
->fi_delegations
);
201 list_add(&dp
->dl_perclnt
, &clp
->cl_delegations
);
206 nfs4_put_delegation(struct nfs4_delegation
*dp
)
208 if (atomic_dec_and_test(&dp
->dl_count
)) {
209 dprintk("NFSD: freeing dp %p\n",dp
);
210 put_nfs4_file(dp
->dl_file
);
211 kmem_cache_free(deleg_slab
, dp
);
216 /* Remove the associated file_lock first, then remove the delegation.
217 * lease_modify() is called to remove the FS_LEASE file_lock from
218 * the i_flock list, eventually calling nfsd's lock_manager
219 * fl_release_callback.
222 nfs4_close_delegation(struct nfs4_delegation
*dp
)
224 struct file
*filp
= dp
->dl_vfs_file
;
226 dprintk("NFSD: close_delegation dp %p\n",dp
);
227 dp
->dl_vfs_file
= NULL
;
228 /* The following nfsd_close may not actually close the file,
229 * but we want to remove the lease in any case. */
231 vfs_setlease(filp
, F_UNLCK
, &dp
->dl_flock
);
235 /* Called under the state lock. */
237 unhash_delegation(struct nfs4_delegation
*dp
)
239 list_del_init(&dp
->dl_perfile
);
240 list_del_init(&dp
->dl_perclnt
);
241 spin_lock(&recall_lock
);
242 list_del_init(&dp
->dl_recall_lru
);
243 spin_unlock(&recall_lock
);
244 nfs4_close_delegation(dp
);
245 nfs4_put_delegation(dp
);
252 /* Hash tables for nfs4_clientid state */
253 #define CLIENT_HASH_BITS 4
254 #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
255 #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
257 #define clientid_hashval(id) \
258 ((id) & CLIENT_HASH_MASK)
259 #define clientstr_hashval(name) \
260 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
262 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
263 * used in reboot/reset lease grace period processing
265 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
266 * setclientid_confirmed info.
268 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
271 * client_lru holds client queue ordered by nfs4_client.cl_time
274 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
275 * for last close replay.
277 static struct list_head reclaim_str_hashtbl
[CLIENT_HASH_SIZE
];
278 static int reclaim_str_hashtbl_size
= 0;
279 static struct list_head conf_id_hashtbl
[CLIENT_HASH_SIZE
];
280 static struct list_head conf_str_hashtbl
[CLIENT_HASH_SIZE
];
281 static struct list_head unconf_str_hashtbl
[CLIENT_HASH_SIZE
];
282 static struct list_head unconf_id_hashtbl
[CLIENT_HASH_SIZE
];
283 static struct list_head client_lru
;
284 static struct list_head close_lru
;
286 static void unhash_generic_stateid(struct nfs4_stateid
*stp
)
288 list_del(&stp
->st_hash
);
289 list_del(&stp
->st_perfile
);
290 list_del(&stp
->st_perstateowner
);
293 static void free_generic_stateid(struct nfs4_stateid
*stp
)
295 put_nfs4_file(stp
->st_file
);
296 kmem_cache_free(stateid_slab
, stp
);
299 static void release_lock_stateid(struct nfs4_stateid
*stp
)
301 unhash_generic_stateid(stp
);
302 locks_remove_posix(stp
->st_vfs_file
, (fl_owner_t
)stp
->st_stateowner
);
303 free_generic_stateid(stp
);
306 static void unhash_lockowner(struct nfs4_stateowner
*sop
)
308 struct nfs4_stateid
*stp
;
310 list_del(&sop
->so_idhash
);
311 list_del(&sop
->so_strhash
);
312 list_del(&sop
->so_perstateid
);
313 while (!list_empty(&sop
->so_stateids
)) {
314 stp
= list_first_entry(&sop
->so_stateids
,
315 struct nfs4_stateid
, st_perstateowner
);
316 release_lock_stateid(stp
);
320 static void release_lockowner(struct nfs4_stateowner
*sop
)
322 unhash_lockowner(sop
);
323 nfs4_put_stateowner(sop
);
327 release_stateid_lockowners(struct nfs4_stateid
*open_stp
)
329 struct nfs4_stateowner
*lock_sop
;
331 while (!list_empty(&open_stp
->st_lockowners
)) {
332 lock_sop
= list_entry(open_stp
->st_lockowners
.next
,
333 struct nfs4_stateowner
, so_perstateid
);
334 /* list_del(&open_stp->st_lockowners); */
335 BUG_ON(lock_sop
->so_is_open_owner
);
336 release_lockowner(lock_sop
);
340 static void release_open_stateid(struct nfs4_stateid
*stp
)
342 unhash_generic_stateid(stp
);
343 release_stateid_lockowners(stp
);
344 nfsd_close(stp
->st_vfs_file
);
345 free_generic_stateid(stp
);
348 static void unhash_openowner(struct nfs4_stateowner
*sop
)
350 struct nfs4_stateid
*stp
;
352 list_del(&sop
->so_idhash
);
353 list_del(&sop
->so_strhash
);
354 list_del(&sop
->so_perclient
);
355 list_del(&sop
->so_perstateid
); /* XXX: necessary? */
356 while (!list_empty(&sop
->so_stateids
)) {
357 stp
= list_first_entry(&sop
->so_stateids
,
358 struct nfs4_stateid
, st_perstateowner
);
359 release_open_stateid(stp
);
363 static void release_openowner(struct nfs4_stateowner
*sop
)
365 unhash_openowner(sop
);
366 list_del(&sop
->so_close_lru
);
367 nfs4_put_stateowner(sop
);
370 static DEFINE_SPINLOCK(sessionid_lock
);
371 #define SESSION_HASH_SIZE 512
372 static struct list_head sessionid_hashtbl
[SESSION_HASH_SIZE
];
375 hash_sessionid(struct nfs4_sessionid
*sessionid
)
377 struct nfsd4_sessionid
*sid
= (struct nfsd4_sessionid
*)sessionid
;
379 return sid
->sequence
% SESSION_HASH_SIZE
;
383 dump_sessionid(const char *fn
, struct nfs4_sessionid
*sessionid
)
385 u32
*ptr
= (u32
*)(&sessionid
->data
[0]);
386 dprintk("%s: %u:%u:%u:%u\n", fn
, ptr
[0], ptr
[1], ptr
[2], ptr
[3]);
390 gen_sessionid(struct nfsd4_session
*ses
)
392 struct nfs4_client
*clp
= ses
->se_client
;
393 struct nfsd4_sessionid
*sid
;
395 sid
= (struct nfsd4_sessionid
*)ses
->se_sessionid
.data
;
396 sid
->clientid
= clp
->cl_clientid
;
397 sid
->sequence
= current_sessionid
++;
402 * The protocol defines ca_maxresponssize_cached to include the size of
403 * the rpc header, but all we need to cache is the data starting after
404 * the end of the initial SEQUENCE operation--the rest we regenerate
405 * each time. Therefore we can advertise a ca_maxresponssize_cached
406 * value that is the number of bytes in our cache plus a few additional
407 * bytes. In order to stay on the safe side, and not promise more than
408 * we can cache, those additional bytes must be the minimum possible: 24
409 * bytes of rpc header (xid through accept state, with AUTH_NULL
410 * verifier), 12 for the compound header (with zero-length tag), and 44
411 * for the SEQUENCE op response:
413 #define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
416 * Give the client the number of ca_maxresponsesize_cached slots it
417 * requests, of size bounded by NFSD_SLOT_CACHE_SIZE,
418 * NFSD_MAX_MEM_PER_SESSION, and nfsd_drc_max_mem. Do not allow more
419 * than NFSD_MAX_SLOTS_PER_SESSION.
421 * If we run out of reserved DRC memory we should (up to a point)
422 * re-negotiate active sessions and reduce their slot usage to make
423 * rooom for new connections. For now we just fail the create session.
425 static int set_forechannel_drc_size(struct nfsd4_channel_attrs
*fchan
)
427 int mem
, size
= fchan
->maxresp_cached
;
429 if (fchan
->maxreqs
< 1)
432 if (size
< NFSD_MIN_HDR_SEQ_SZ
)
433 size
= NFSD_MIN_HDR_SEQ_SZ
;
434 size
-= NFSD_MIN_HDR_SEQ_SZ
;
435 if (size
> NFSD_SLOT_CACHE_SIZE
)
436 size
= NFSD_SLOT_CACHE_SIZE
;
438 /* bound the maxreqs by NFSD_MAX_MEM_PER_SESSION */
439 mem
= fchan
->maxreqs
* size
;
440 if (mem
> NFSD_MAX_MEM_PER_SESSION
) {
441 fchan
->maxreqs
= NFSD_MAX_MEM_PER_SESSION
/ size
;
442 if (fchan
->maxreqs
> NFSD_MAX_SLOTS_PER_SESSION
)
443 fchan
->maxreqs
= NFSD_MAX_SLOTS_PER_SESSION
;
444 mem
= fchan
->maxreqs
* size
;
447 spin_lock(&nfsd_drc_lock
);
448 /* bound the total session drc memory ussage */
449 if (mem
+ nfsd_drc_mem_used
> nfsd_drc_max_mem
) {
450 fchan
->maxreqs
= (nfsd_drc_max_mem
- nfsd_drc_mem_used
) / size
;
451 mem
= fchan
->maxreqs
* size
;
453 nfsd_drc_mem_used
+= mem
;
454 spin_unlock(&nfsd_drc_lock
);
456 if (fchan
->maxreqs
== 0)
457 return nfserr_serverfault
;
459 fchan
->maxresp_cached
= size
+ NFSD_MIN_HDR_SEQ_SZ
;
464 * fchan holds the client values on input, and the server values on output
465 * sv_max_mesg is the maximum payload plus one page for overhead.
467 static int init_forechannel_attrs(struct svc_rqst
*rqstp
,
468 struct nfsd4_channel_attrs
*session_fchan
,
469 struct nfsd4_channel_attrs
*fchan
)
472 __u32 maxcount
= nfsd_serv
->sv_max_mesg
;
474 /* headerpadsz set to zero in encode routine */
476 /* Use the client's max request and max response size if possible */
477 if (fchan
->maxreq_sz
> maxcount
)
478 fchan
->maxreq_sz
= maxcount
;
479 session_fchan
->maxreq_sz
= fchan
->maxreq_sz
;
481 if (fchan
->maxresp_sz
> maxcount
)
482 fchan
->maxresp_sz
= maxcount
;
483 session_fchan
->maxresp_sz
= fchan
->maxresp_sz
;
485 /* Use the client's maxops if possible */
486 if (fchan
->maxops
> NFSD_MAX_OPS_PER_COMPOUND
)
487 fchan
->maxops
= NFSD_MAX_OPS_PER_COMPOUND
;
488 session_fchan
->maxops
= fchan
->maxops
;
490 /* FIXME: Error means no more DRC pages so the server should
491 * recover pages from existing sessions. For now fail session
494 status
= set_forechannel_drc_size(fchan
);
496 session_fchan
->maxresp_cached
= fchan
->maxresp_cached
;
497 session_fchan
->maxreqs
= fchan
->maxreqs
;
499 dprintk("%s status %d\n", __func__
, status
);
504 free_session_slots(struct nfsd4_session
*ses
)
508 for (i
= 0; i
< ses
->se_fchannel
.maxreqs
; i
++)
509 kfree(ses
->se_slots
[i
]);
513 * We don't actually need to cache the rpc and session headers, so we
514 * can allocate a little less for each slot:
516 static inline int slot_bytes(struct nfsd4_channel_attrs
*ca
)
518 return ca
->maxresp_cached
- NFSD_MIN_HDR_SEQ_SZ
;
522 alloc_init_session(struct svc_rqst
*rqstp
, struct nfs4_client
*clp
,
523 struct nfsd4_create_session
*cses
)
525 struct nfsd4_session
*new, tmp
;
526 struct nfsd4_slot
*sp
;
527 int idx
, slotsize
, cachesize
, i
;
530 memset(&tmp
, 0, sizeof(tmp
));
532 /* FIXME: For now, we just accept the client back channel attributes. */
533 tmp
.se_bchannel
= cses
->back_channel
;
534 status
= init_forechannel_attrs(rqstp
, &tmp
.se_fchannel
,
535 &cses
->fore_channel
);
539 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION
* sizeof(struct nfsd4_slot
)
540 + sizeof(struct nfsd4_session
) > PAGE_SIZE
);
542 status
= nfserr_serverfault
;
543 /* allocate struct nfsd4_session and slot table pointers in one piece */
544 slotsize
= tmp
.se_fchannel
.maxreqs
* sizeof(struct nfsd4_slot
*);
545 new = kzalloc(sizeof(*new) + slotsize
, GFP_KERNEL
);
549 memcpy(new, &tmp
, sizeof(*new));
551 /* allocate each struct nfsd4_slot and data cache in one piece */
552 cachesize
= slot_bytes(&new->se_fchannel
);
553 for (i
= 0; i
< new->se_fchannel
.maxreqs
; i
++) {
554 sp
= kzalloc(sizeof(*sp
) + cachesize
, GFP_KERNEL
);
557 new->se_slots
[i
] = sp
;
560 new->se_client
= clp
;
562 idx
= hash_sessionid(&new->se_sessionid
);
563 memcpy(clp
->cl_sessionid
.data
, new->se_sessionid
.data
,
564 NFS4_MAX_SESSIONID_LEN
);
566 new->se_flags
= cses
->flags
;
567 kref_init(&new->se_ref
);
568 spin_lock(&sessionid_lock
);
569 list_add(&new->se_hash
, &sessionid_hashtbl
[idx
]);
570 list_add(&new->se_perclnt
, &clp
->cl_sessions
);
571 spin_unlock(&sessionid_lock
);
577 free_session_slots(new);
582 /* caller must hold sessionid_lock */
583 static struct nfsd4_session
*
584 find_in_sessionid_hashtbl(struct nfs4_sessionid
*sessionid
)
586 struct nfsd4_session
*elem
;
589 dump_sessionid(__func__
, sessionid
);
590 idx
= hash_sessionid(sessionid
);
591 dprintk("%s: idx is %d\n", __func__
, idx
);
592 /* Search in the appropriate list */
593 list_for_each_entry(elem
, &sessionid_hashtbl
[idx
], se_hash
) {
594 dump_sessionid("list traversal", &elem
->se_sessionid
);
595 if (!memcmp(elem
->se_sessionid
.data
, sessionid
->data
,
596 NFS4_MAX_SESSIONID_LEN
)) {
601 dprintk("%s: session not found\n", __func__
);
605 /* caller must hold sessionid_lock */
607 unhash_session(struct nfsd4_session
*ses
)
609 list_del(&ses
->se_hash
);
610 list_del(&ses
->se_perclnt
);
614 release_session(struct nfsd4_session
*ses
)
616 spin_lock(&sessionid_lock
);
618 spin_unlock(&sessionid_lock
);
619 nfsd4_put_session(ses
);
623 free_session(struct kref
*kref
)
625 struct nfsd4_session
*ses
;
628 ses
= container_of(kref
, struct nfsd4_session
, se_ref
);
629 spin_lock(&nfsd_drc_lock
);
630 mem
= ses
->se_fchannel
.maxreqs
* slot_bytes(&ses
->se_fchannel
);
631 nfsd_drc_mem_used
-= mem
;
632 spin_unlock(&nfsd_drc_lock
);
633 free_session_slots(ses
);
638 renew_client(struct nfs4_client
*clp
)
641 * Move client to the end to the LRU list.
643 dprintk("renewing client (clientid %08x/%08x)\n",
644 clp
->cl_clientid
.cl_boot
,
645 clp
->cl_clientid
.cl_id
);
646 list_move_tail(&clp
->cl_lru
, &client_lru
);
647 clp
->cl_time
= get_seconds();
650 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
652 STALE_CLIENTID(clientid_t
*clid
)
654 if (clid
->cl_boot
== boot_time
)
656 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
657 clid
->cl_boot
, clid
->cl_id
, boot_time
);
662 * XXX Should we use a slab cache ?
663 * This type of memory management is somewhat inefficient, but we use it
664 * anyway since SETCLIENTID is not a common operation.
666 static struct nfs4_client
*alloc_client(struct xdr_netobj name
)
668 struct nfs4_client
*clp
;
670 clp
= kzalloc(sizeof(struct nfs4_client
), GFP_KERNEL
);
673 clp
->cl_name
.data
= kmalloc(name
.len
, GFP_KERNEL
);
674 if (clp
->cl_name
.data
== NULL
) {
678 memcpy(clp
->cl_name
.data
, name
.data
, name
.len
);
679 clp
->cl_name
.len
= name
.len
;
684 shutdown_callback_client(struct nfs4_client
*clp
)
686 struct rpc_clnt
*clnt
= clp
->cl_cb_conn
.cb_client
;
690 * Callback threads take a reference on the client, so there
691 * should be no outstanding callbacks at this point.
693 clp
->cl_cb_conn
.cb_client
= NULL
;
694 rpc_shutdown_client(clnt
);
699 free_client(struct nfs4_client
*clp
)
701 shutdown_callback_client(clp
);
703 svc_xprt_put(clp
->cl_cb_xprt
);
704 if (clp
->cl_cred
.cr_group_info
)
705 put_group_info(clp
->cl_cred
.cr_group_info
);
706 kfree(clp
->cl_principal
);
707 kfree(clp
->cl_name
.data
);
712 put_nfs4_client(struct nfs4_client
*clp
)
714 if (atomic_dec_and_test(&clp
->cl_count
))
719 expire_client(struct nfs4_client
*clp
)
721 struct nfs4_stateowner
*sop
;
722 struct nfs4_delegation
*dp
;
723 struct list_head reaplist
;
725 dprintk("NFSD: expire_client cl_count %d\n",
726 atomic_read(&clp
->cl_count
));
728 INIT_LIST_HEAD(&reaplist
);
729 spin_lock(&recall_lock
);
730 while (!list_empty(&clp
->cl_delegations
)) {
731 dp
= list_entry(clp
->cl_delegations
.next
, struct nfs4_delegation
, dl_perclnt
);
732 dprintk("NFSD: expire client. dp %p, fp %p\n", dp
,
734 list_del_init(&dp
->dl_perclnt
);
735 list_move(&dp
->dl_recall_lru
, &reaplist
);
737 spin_unlock(&recall_lock
);
738 while (!list_empty(&reaplist
)) {
739 dp
= list_entry(reaplist
.next
, struct nfs4_delegation
, dl_recall_lru
);
740 list_del_init(&dp
->dl_recall_lru
);
741 unhash_delegation(dp
);
743 list_del(&clp
->cl_idhash
);
744 list_del(&clp
->cl_strhash
);
745 list_del(&clp
->cl_lru
);
746 while (!list_empty(&clp
->cl_openowners
)) {
747 sop
= list_entry(clp
->cl_openowners
.next
, struct nfs4_stateowner
, so_perclient
);
748 release_openowner(sop
);
750 while (!list_empty(&clp
->cl_sessions
)) {
751 struct nfsd4_session
*ses
;
752 ses
= list_entry(clp
->cl_sessions
.next
, struct nfsd4_session
,
754 release_session(ses
);
756 put_nfs4_client(clp
);
759 static void copy_verf(struct nfs4_client
*target
, nfs4_verifier
*source
)
761 memcpy(target
->cl_verifier
.data
, source
->data
,
762 sizeof(target
->cl_verifier
.data
));
765 static void copy_clid(struct nfs4_client
*target
, struct nfs4_client
*source
)
767 target
->cl_clientid
.cl_boot
= source
->cl_clientid
.cl_boot
;
768 target
->cl_clientid
.cl_id
= source
->cl_clientid
.cl_id
;
771 static void copy_cred(struct svc_cred
*target
, struct svc_cred
*source
)
773 target
->cr_uid
= source
->cr_uid
;
774 target
->cr_gid
= source
->cr_gid
;
775 target
->cr_group_info
= source
->cr_group_info
;
776 get_group_info(target
->cr_group_info
);
779 static int same_name(const char *n1
, const char *n2
)
781 return 0 == memcmp(n1
, n2
, HEXDIR_LEN
);
785 same_verf(nfs4_verifier
*v1
, nfs4_verifier
*v2
)
787 return 0 == memcmp(v1
->data
, v2
->data
, sizeof(v1
->data
));
791 same_clid(clientid_t
*cl1
, clientid_t
*cl2
)
793 return (cl1
->cl_boot
== cl2
->cl_boot
) && (cl1
->cl_id
== cl2
->cl_id
);
796 /* XXX what about NGROUP */
798 same_creds(struct svc_cred
*cr1
, struct svc_cred
*cr2
)
800 return cr1
->cr_uid
== cr2
->cr_uid
;
803 static void gen_clid(struct nfs4_client
*clp
)
805 static u32 current_clientid
= 1;
807 clp
->cl_clientid
.cl_boot
= boot_time
;
808 clp
->cl_clientid
.cl_id
= current_clientid
++;
811 static void gen_confirm(struct nfs4_client
*clp
)
816 p
= (u32
*)clp
->cl_confirm
.data
;
817 *p
++ = get_seconds();
821 static struct nfs4_client
*create_client(struct xdr_netobj name
, char *recdir
,
822 struct svc_rqst
*rqstp
, nfs4_verifier
*verf
)
824 struct nfs4_client
*clp
;
825 struct sockaddr
*sa
= svc_addr(rqstp
);
828 clp
= alloc_client(name
);
832 princ
= svc_gss_principal(rqstp
);
834 clp
->cl_principal
= kstrdup(princ
, GFP_KERNEL
);
835 if (clp
->cl_principal
== NULL
) {
841 memcpy(clp
->cl_recdir
, recdir
, HEXDIR_LEN
);
842 atomic_set(&clp
->cl_count
, 1);
843 atomic_set(&clp
->cl_cb_conn
.cb_set
, 0);
844 INIT_LIST_HEAD(&clp
->cl_idhash
);
845 INIT_LIST_HEAD(&clp
->cl_strhash
);
846 INIT_LIST_HEAD(&clp
->cl_openowners
);
847 INIT_LIST_HEAD(&clp
->cl_delegations
);
848 INIT_LIST_HEAD(&clp
->cl_sessions
);
849 INIT_LIST_HEAD(&clp
->cl_lru
);
850 clear_bit(0, &clp
->cl_cb_slot_busy
);
851 rpc_init_wait_queue(&clp
->cl_cb_waitq
, "Backchannel slot table");
852 copy_verf(clp
, verf
);
853 rpc_copy_addr((struct sockaddr
*) &clp
->cl_addr
, sa
);
854 clp
->cl_flavor
= rqstp
->rq_flavor
;
855 copy_cred(&clp
->cl_cred
, &rqstp
->rq_cred
);
861 static int check_name(struct xdr_netobj name
)
865 if (name
.len
> NFS4_OPAQUE_LIMIT
) {
866 dprintk("NFSD: check_name: name too long(%d)!\n", name
.len
);
873 add_to_unconfirmed(struct nfs4_client
*clp
, unsigned int strhashval
)
875 unsigned int idhashval
;
877 list_add(&clp
->cl_strhash
, &unconf_str_hashtbl
[strhashval
]);
878 idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
879 list_add(&clp
->cl_idhash
, &unconf_id_hashtbl
[idhashval
]);
880 list_add_tail(&clp
->cl_lru
, &client_lru
);
881 clp
->cl_time
= get_seconds();
885 move_to_confirmed(struct nfs4_client
*clp
)
887 unsigned int idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
888 unsigned int strhashval
;
890 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp
);
891 list_del_init(&clp
->cl_strhash
);
892 list_move(&clp
->cl_idhash
, &conf_id_hashtbl
[idhashval
]);
893 strhashval
= clientstr_hashval(clp
->cl_recdir
);
894 list_add(&clp
->cl_strhash
, &conf_str_hashtbl
[strhashval
]);
898 static struct nfs4_client
*
899 find_confirmed_client(clientid_t
*clid
)
901 struct nfs4_client
*clp
;
902 unsigned int idhashval
= clientid_hashval(clid
->cl_id
);
904 list_for_each_entry(clp
, &conf_id_hashtbl
[idhashval
], cl_idhash
) {
905 if (same_clid(&clp
->cl_clientid
, clid
))
911 static struct nfs4_client
*
912 find_unconfirmed_client(clientid_t
*clid
)
914 struct nfs4_client
*clp
;
915 unsigned int idhashval
= clientid_hashval(clid
->cl_id
);
917 list_for_each_entry(clp
, &unconf_id_hashtbl
[idhashval
], cl_idhash
) {
918 if (same_clid(&clp
->cl_clientid
, clid
))
925 * Return 1 iff clp's clientid establishment method matches the use_exchange_id
926 * parameter. Matching is based on the fact the at least one of the
927 * EXCHGID4_FLAG_USE_{NON_PNFS,PNFS_MDS,PNFS_DS} flags must be set for v4.1
929 * FIXME: we need to unify the clientid namespaces for nfsv4.x
930 * and correctly deal with client upgrade/downgrade in EXCHANGE_ID
931 * and SET_CLIENTID{,_CONFIRM}
934 match_clientid_establishment(struct nfs4_client
*clp
, bool use_exchange_id
)
936 bool has_exchange_flags
= (clp
->cl_exchange_flags
!= 0);
937 return use_exchange_id
== has_exchange_flags
;
940 static struct nfs4_client
*
941 find_confirmed_client_by_str(const char *dname
, unsigned int hashval
,
942 bool use_exchange_id
)
944 struct nfs4_client
*clp
;
946 list_for_each_entry(clp
, &conf_str_hashtbl
[hashval
], cl_strhash
) {
947 if (same_name(clp
->cl_recdir
, dname
) &&
948 match_clientid_establishment(clp
, use_exchange_id
))
954 static struct nfs4_client
*
955 find_unconfirmed_client_by_str(const char *dname
, unsigned int hashval
,
956 bool use_exchange_id
)
958 struct nfs4_client
*clp
;
960 list_for_each_entry(clp
, &unconf_str_hashtbl
[hashval
], cl_strhash
) {
961 if (same_name(clp
->cl_recdir
, dname
) &&
962 match_clientid_establishment(clp
, use_exchange_id
))
969 gen_callback(struct nfs4_client
*clp
, struct nfsd4_setclientid
*se
, u32 scopeid
)
971 struct nfs4_cb_conn
*cb
= &clp
->cl_cb_conn
;
972 unsigned short expected_family
;
974 /* Currently, we only support tcp and tcp6 for the callback channel */
975 if (se
->se_callback_netid_len
== 3 &&
976 !memcmp(se
->se_callback_netid_val
, "tcp", 3))
977 expected_family
= AF_INET
;
978 else if (se
->se_callback_netid_len
== 4 &&
979 !memcmp(se
->se_callback_netid_val
, "tcp6", 4))
980 expected_family
= AF_INET6
;
984 cb
->cb_addrlen
= rpc_uaddr2sockaddr(se
->se_callback_addr_val
,
985 se
->se_callback_addr_len
,
986 (struct sockaddr
*) &cb
->cb_addr
,
987 sizeof(cb
->cb_addr
));
989 if (!cb
->cb_addrlen
|| cb
->cb_addr
.ss_family
!= expected_family
)
992 if (cb
->cb_addr
.ss_family
== AF_INET6
)
993 ((struct sockaddr_in6
*) &cb
->cb_addr
)->sin6_scope_id
= scopeid
;
995 cb
->cb_minorversion
= 0;
996 cb
->cb_prog
= se
->se_callback_prog
;
997 cb
->cb_ident
= se
->se_callback_ident
;
1000 cb
->cb_addr
.ss_family
= AF_UNSPEC
;
1002 dprintk(KERN_INFO
"NFSD: this client (clientid %08x/%08x) "
1003 "will not receive delegations\n",
1004 clp
->cl_clientid
.cl_boot
, clp
->cl_clientid
.cl_id
);
1010 * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
1013 nfsd4_store_cache_entry(struct nfsd4_compoundres
*resp
)
1015 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
1018 dprintk("--> %s slot %p\n", __func__
, slot
);
1020 slot
->sl_opcnt
= resp
->opcnt
;
1021 slot
->sl_status
= resp
->cstate
.status
;
1023 if (nfsd4_not_cached(resp
)) {
1024 slot
->sl_datalen
= 0;
1027 slot
->sl_datalen
= (char *)resp
->p
- (char *)resp
->cstate
.datap
;
1028 base
= (char *)resp
->cstate
.datap
-
1029 (char *)resp
->xbuf
->head
[0].iov_base
;
1030 if (read_bytes_from_xdr_buf(resp
->xbuf
, base
, slot
->sl_data
,
1032 WARN("%s: sessions DRC could not cache compound\n", __func__
);
1037 * Encode the replay sequence operation from the slot values.
1038 * If cachethis is FALSE encode the uncached rep error on the next
1039 * operation which sets resp->p and increments resp->opcnt for
1040 * nfs4svc_encode_compoundres.
1044 nfsd4_enc_sequence_replay(struct nfsd4_compoundargs
*args
,
1045 struct nfsd4_compoundres
*resp
)
1047 struct nfsd4_op
*op
;
1048 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
1050 dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__
,
1051 resp
->opcnt
, resp
->cstate
.slot
->sl_cachethis
);
1053 /* Encode the replayed sequence operation */
1054 op
= &args
->ops
[resp
->opcnt
- 1];
1055 nfsd4_encode_operation(resp
, op
);
1057 /* Return nfserr_retry_uncached_rep in next operation. */
1058 if (args
->opcnt
> 1 && slot
->sl_cachethis
== 0) {
1059 op
= &args
->ops
[resp
->opcnt
++];
1060 op
->status
= nfserr_retry_uncached_rep
;
1061 nfsd4_encode_operation(resp
, op
);
1067 * The sequence operation is not cached because we can use the slot and
1071 nfsd4_replay_cache_entry(struct nfsd4_compoundres
*resp
,
1072 struct nfsd4_sequence
*seq
)
1074 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
1077 dprintk("--> %s slot %p\n", __func__
, slot
);
1079 /* Either returns 0 or nfserr_retry_uncached */
1080 status
= nfsd4_enc_sequence_replay(resp
->rqstp
->rq_argp
, resp
);
1081 if (status
== nfserr_retry_uncached_rep
)
1084 /* The sequence operation has been encoded, cstate->datap set. */
1085 memcpy(resp
->cstate
.datap
, slot
->sl_data
, slot
->sl_datalen
);
1087 resp
->opcnt
= slot
->sl_opcnt
;
1088 resp
->p
= resp
->cstate
.datap
+ XDR_QUADLEN(slot
->sl_datalen
);
1089 status
= slot
->sl_status
;
1095 * Set the exchange_id flags returned by the server.
1098 nfsd4_set_ex_flags(struct nfs4_client
*new, struct nfsd4_exchange_id
*clid
)
1100 /* pNFS is not supported */
1101 new->cl_exchange_flags
|= EXCHGID4_FLAG_USE_NON_PNFS
;
1103 /* Referrals are supported, Migration is not. */
1104 new->cl_exchange_flags
|= EXCHGID4_FLAG_SUPP_MOVED_REFER
;
1106 /* set the wire flags to return to client. */
1107 clid
->flags
= new->cl_exchange_flags
;
1111 nfsd4_exchange_id(struct svc_rqst
*rqstp
,
1112 struct nfsd4_compound_state
*cstate
,
1113 struct nfsd4_exchange_id
*exid
)
1115 struct nfs4_client
*unconf
, *conf
, *new;
1117 unsigned int strhashval
;
1118 char dname
[HEXDIR_LEN
];
1119 char addr_str
[INET6_ADDRSTRLEN
];
1120 nfs4_verifier verf
= exid
->verifier
;
1121 struct sockaddr
*sa
= svc_addr(rqstp
);
1123 rpc_ntop(sa
, addr_str
, sizeof(addr_str
));
1124 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
1125 "ip_addr=%s flags %x, spa_how %d\n",
1126 __func__
, rqstp
, exid
, exid
->clname
.len
, exid
->clname
.data
,
1127 addr_str
, exid
->flags
, exid
->spa_how
);
1129 if (!check_name(exid
->clname
) || (exid
->flags
& ~EXCHGID4_FLAG_MASK_A
))
1130 return nfserr_inval
;
1132 /* Currently only support SP4_NONE */
1133 switch (exid
->spa_how
) {
1137 return nfserr_encr_alg_unsupp
;
1139 BUG(); /* checked by xdr code */
1141 return nfserr_serverfault
; /* no excuse :-/ */
1144 status
= nfs4_make_rec_clidname(dname
, &exid
->clname
);
1149 strhashval
= clientstr_hashval(dname
);
1154 conf
= find_confirmed_client_by_str(dname
, strhashval
, true);
1156 if (!same_verf(&verf
, &conf
->cl_verifier
)) {
1157 /* 18.35.4 case 8 */
1158 if (exid
->flags
& EXCHGID4_FLAG_UPD_CONFIRMED_REC_A
) {
1159 status
= nfserr_not_same
;
1162 /* Client reboot: destroy old state */
1163 expire_client(conf
);
1166 if (!same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
)) {
1167 /* 18.35.4 case 9 */
1168 if (exid
->flags
& EXCHGID4_FLAG_UPD_CONFIRMED_REC_A
) {
1169 status
= nfserr_perm
;
1172 expire_client(conf
);
1176 * Set bit when the owner id and verifier map to an already
1177 * confirmed client id (18.35.3).
1179 exid
->flags
|= EXCHGID4_FLAG_CONFIRMED_R
;
1182 * Falling into 18.35.4 case 2, possible router replay.
1183 * Leave confirmed record intact and return same result.
1185 copy_verf(conf
, &verf
);
1190 /* 18.35.4 case 7 */
1191 if (exid
->flags
& EXCHGID4_FLAG_UPD_CONFIRMED_REC_A
) {
1192 status
= nfserr_noent
;
1196 unconf
= find_unconfirmed_client_by_str(dname
, strhashval
, true);
1199 * Possible retry or client restart. Per 18.35.4 case 4,
1200 * a new unconfirmed record should be generated regardless
1201 * of whether any properties have changed.
1203 expire_client(unconf
);
1208 new = create_client(exid
->clname
, dname
, rqstp
, &verf
);
1210 status
= nfserr_serverfault
;
1215 add_to_unconfirmed(new, strhashval
);
1217 exid
->clientid
.cl_boot
= new->cl_clientid
.cl_boot
;
1218 exid
->clientid
.cl_id
= new->cl_clientid
.cl_id
;
1221 nfsd4_set_ex_flags(new, exid
);
1223 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
1224 new->cl_cs_slot
.sl_seqid
, new->cl_exchange_flags
);
1228 nfs4_unlock_state();
1230 dprintk("nfsd4_exchange_id returns %d\n", ntohl(status
));
1235 check_slot_seqid(u32 seqid
, u32 slot_seqid
, int slot_inuse
)
1237 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__
, seqid
,
1240 /* The slot is in use, and no response has been sent. */
1242 if (seqid
== slot_seqid
)
1243 return nfserr_jukebox
;
1245 return nfserr_seq_misordered
;
1248 if (likely(seqid
== slot_seqid
+ 1))
1251 if (seqid
== slot_seqid
)
1252 return nfserr_replay_cache
;
1254 if (seqid
== 1 && (slot_seqid
+ 1) == 0)
1256 /* Misordered replay or misordered new request */
1257 return nfserr_seq_misordered
;
1261 * Cache the create session result into the create session single DRC
1262 * slot cache by saving the xdr structure. sl_seqid has been set.
1263 * Do this for solo or embedded create session operations.
1266 nfsd4_cache_create_session(struct nfsd4_create_session
*cr_ses
,
1267 struct nfsd4_clid_slot
*slot
, int nfserr
)
1269 slot
->sl_status
= nfserr
;
1270 memcpy(&slot
->sl_cr_ses
, cr_ses
, sizeof(*cr_ses
));
1274 nfsd4_replay_create_session(struct nfsd4_create_session
*cr_ses
,
1275 struct nfsd4_clid_slot
*slot
)
1277 memcpy(cr_ses
, &slot
->sl_cr_ses
, sizeof(*cr_ses
));
1278 return slot
->sl_status
;
1282 nfsd4_create_session(struct svc_rqst
*rqstp
,
1283 struct nfsd4_compound_state
*cstate
,
1284 struct nfsd4_create_session
*cr_ses
)
1286 struct sockaddr
*sa
= svc_addr(rqstp
);
1287 struct nfs4_client
*conf
, *unconf
;
1288 struct nfsd4_clid_slot
*cs_slot
= NULL
;
1292 unconf
= find_unconfirmed_client(&cr_ses
->clientid
);
1293 conf
= find_confirmed_client(&cr_ses
->clientid
);
1296 cs_slot
= &conf
->cl_cs_slot
;
1297 status
= check_slot_seqid(cr_ses
->seqid
, cs_slot
->sl_seqid
, 0);
1298 if (status
== nfserr_replay_cache
) {
1299 dprintk("Got a create_session replay! seqid= %d\n",
1301 /* Return the cached reply status */
1302 status
= nfsd4_replay_create_session(cr_ses
, cs_slot
);
1304 } else if (cr_ses
->seqid
!= cs_slot
->sl_seqid
+ 1) {
1305 status
= nfserr_seq_misordered
;
1306 dprintk("Sequence misordered!\n");
1307 dprintk("Expected seqid= %d but got seqid= %d\n",
1308 cs_slot
->sl_seqid
, cr_ses
->seqid
);
1311 cs_slot
->sl_seqid
++;
1312 } else if (unconf
) {
1313 if (!same_creds(&unconf
->cl_cred
, &rqstp
->rq_cred
) ||
1314 !rpc_cmp_addr(sa
, (struct sockaddr
*) &unconf
->cl_addr
)) {
1315 status
= nfserr_clid_inuse
;
1319 cs_slot
= &unconf
->cl_cs_slot
;
1320 status
= check_slot_seqid(cr_ses
->seqid
, cs_slot
->sl_seqid
, 0);
1322 /* an unconfirmed replay returns misordered */
1323 status
= nfserr_seq_misordered
;
1327 cs_slot
->sl_seqid
++; /* from 0 to 1 */
1328 move_to_confirmed(unconf
);
1331 * We do not support RDMA or persistent sessions
1333 cr_ses
->flags
&= ~SESSION4_PERSIST
;
1334 cr_ses
->flags
&= ~SESSION4_RDMA
;
1336 if (cr_ses
->flags
& SESSION4_BACK_CHAN
) {
1337 unconf
->cl_cb_xprt
= rqstp
->rq_xprt
;
1338 svc_xprt_get(unconf
->cl_cb_xprt
);
1340 (struct sockaddr
*)&unconf
->cl_cb_conn
.cb_addr
,
1342 unconf
->cl_cb_conn
.cb_addrlen
= svc_addr_len(sa
);
1343 unconf
->cl_cb_conn
.cb_minorversion
=
1344 cstate
->minorversion
;
1345 unconf
->cl_cb_conn
.cb_prog
= cr_ses
->callback_prog
;
1346 unconf
->cl_cb_seq_nr
= 1;
1347 nfsd4_probe_callback(unconf
);
1351 status
= nfserr_stale_clientid
;
1355 status
= alloc_init_session(rqstp
, conf
, cr_ses
);
1359 memcpy(cr_ses
->sessionid
.data
, conf
->cl_sessionid
.data
,
1360 NFS4_MAX_SESSIONID_LEN
);
1361 cr_ses
->seqid
= cs_slot
->sl_seqid
;
1364 /* cache solo and embedded create sessions under the state lock */
1365 nfsd4_cache_create_session(cr_ses
, cs_slot
, status
);
1367 nfs4_unlock_state();
1368 dprintk("%s returns %d\n", __func__
, ntohl(status
));
1373 nfsd4_destroy_session(struct svc_rqst
*r
,
1374 struct nfsd4_compound_state
*cstate
,
1375 struct nfsd4_destroy_session
*sessionid
)
1377 struct nfsd4_session
*ses
;
1378 u32 status
= nfserr_badsession
;
1381 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1382 * - Should we return nfserr_back_chan_busy if waiting for
1383 * callbacks on to-be-destroyed session?
1384 * - Do we need to clear any callback info from previous session?
1387 dump_sessionid(__func__
, &sessionid
->sessionid
);
1388 spin_lock(&sessionid_lock
);
1389 ses
= find_in_sessionid_hashtbl(&sessionid
->sessionid
);
1391 spin_unlock(&sessionid_lock
);
1395 unhash_session(ses
);
1396 spin_unlock(&sessionid_lock
);
1398 /* wait for callbacks */
1399 shutdown_callback_client(ses
->se_client
);
1400 nfsd4_put_session(ses
);
1403 dprintk("%s returns %d\n", __func__
, ntohl(status
));
1408 nfsd4_sequence(struct svc_rqst
*rqstp
,
1409 struct nfsd4_compound_state
*cstate
,
1410 struct nfsd4_sequence
*seq
)
1412 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
1413 struct nfsd4_session
*session
;
1414 struct nfsd4_slot
*slot
;
1417 if (resp
->opcnt
!= 1)
1418 return nfserr_sequence_pos
;
1420 spin_lock(&sessionid_lock
);
1421 status
= nfserr_badsession
;
1422 session
= find_in_sessionid_hashtbl(&seq
->sessionid
);
1426 status
= nfserr_badslot
;
1427 if (seq
->slotid
>= session
->se_fchannel
.maxreqs
)
1430 slot
= session
->se_slots
[seq
->slotid
];
1431 dprintk("%s: slotid %d\n", __func__
, seq
->slotid
);
1433 /* We do not negotiate the number of slots yet, so set the
1434 * maxslots to the session maxreqs which is used to encode
1435 * sr_highest_slotid and the sr_target_slot id to maxslots */
1436 seq
->maxslots
= session
->se_fchannel
.maxreqs
;
1438 status
= check_slot_seqid(seq
->seqid
, slot
->sl_seqid
, slot
->sl_inuse
);
1439 if (status
== nfserr_replay_cache
) {
1440 cstate
->slot
= slot
;
1441 cstate
->session
= session
;
1442 /* Return the cached reply status and set cstate->status
1443 * for nfsd4_proc_compound processing */
1444 status
= nfsd4_replay_cache_entry(resp
, seq
);
1445 cstate
->status
= nfserr_replay_cache
;
1451 /* Success! bump slot seqid */
1452 slot
->sl_inuse
= true;
1453 slot
->sl_seqid
= seq
->seqid
;
1454 slot
->sl_cachethis
= seq
->cachethis
;
1456 cstate
->slot
= slot
;
1457 cstate
->session
= session
;
1459 /* Hold a session reference until done processing the compound:
1460 * nfsd4_put_session called only if the cstate slot is set.
1462 nfsd4_get_session(session
);
1464 spin_unlock(&sessionid_lock
);
1465 /* Renew the clientid on success and on replay */
1466 if (cstate
->session
) {
1468 renew_client(session
->se_client
);
1469 nfs4_unlock_state();
1471 dprintk("%s: return %d\n", __func__
, ntohl(status
));
1476 nfsd4_setclientid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
1477 struct nfsd4_setclientid
*setclid
)
1479 struct sockaddr
*sa
= svc_addr(rqstp
);
1480 struct xdr_netobj clname
= {
1481 .len
= setclid
->se_namelen
,
1482 .data
= setclid
->se_name
,
1484 nfs4_verifier clverifier
= setclid
->se_verf
;
1485 unsigned int strhashval
;
1486 struct nfs4_client
*conf
, *unconf
, *new;
1488 char dname
[HEXDIR_LEN
];
1490 if (!check_name(clname
))
1491 return nfserr_inval
;
1493 status
= nfs4_make_rec_clidname(dname
, &clname
);
1498 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1499 * We get here on a DRC miss.
1502 strhashval
= clientstr_hashval(dname
);
1505 conf
= find_confirmed_client_by_str(dname
, strhashval
, false);
1507 /* RFC 3530 14.2.33 CASE 0: */
1508 status
= nfserr_clid_inuse
;
1509 if (!same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
)) {
1510 char addr_str
[INET6_ADDRSTRLEN
];
1511 rpc_ntop((struct sockaddr
*) &conf
->cl_addr
, addr_str
,
1513 dprintk("NFSD: setclientid: string in use by client "
1514 "at %s\n", addr_str
);
1519 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
1520 * has a description of SETCLIENTID request processing consisting
1521 * of 5 bullet points, labeled as CASE0 - CASE4 below.
1523 unconf
= find_unconfirmed_client_by_str(dname
, strhashval
, false);
1524 status
= nfserr_resource
;
1527 * RFC 3530 14.2.33 CASE 4:
1528 * placed first, because it is the normal case
1531 expire_client(unconf
);
1532 new = create_client(clname
, dname
, rqstp
, &clverifier
);
1536 } else if (same_verf(&conf
->cl_verifier
, &clverifier
)) {
1538 * RFC 3530 14.2.33 CASE 1:
1539 * probable callback update
1542 /* Note this is removing unconfirmed {*x***},
1543 * which is stronger than RFC recommended {vxc**}.
1544 * This has the advantage that there is at most
1545 * one {*x***} in either list at any time.
1547 expire_client(unconf
);
1549 new = create_client(clname
, dname
, rqstp
, &clverifier
);
1552 copy_clid(new, conf
);
1553 } else if (!unconf
) {
1555 * RFC 3530 14.2.33 CASE 2:
1556 * probable client reboot; state will be removed if
1559 new = create_client(clname
, dname
, rqstp
, &clverifier
);
1565 * RFC 3530 14.2.33 CASE 3:
1566 * probable client reboot; state will be removed if
1569 expire_client(unconf
);
1570 new = create_client(clname
, dname
, rqstp
, &clverifier
);
1575 gen_callback(new, setclid
, rpc_get_scope_id(sa
));
1576 add_to_unconfirmed(new, strhashval
);
1577 setclid
->se_clientid
.cl_boot
= new->cl_clientid
.cl_boot
;
1578 setclid
->se_clientid
.cl_id
= new->cl_clientid
.cl_id
;
1579 memcpy(setclid
->se_confirm
.data
, new->cl_confirm
.data
, sizeof(setclid
->se_confirm
.data
));
1582 nfs4_unlock_state();
1588 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
1589 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
1590 * bullets, labeled as CASE1 - CASE4 below.
1593 nfsd4_setclientid_confirm(struct svc_rqst
*rqstp
,
1594 struct nfsd4_compound_state
*cstate
,
1595 struct nfsd4_setclientid_confirm
*setclientid_confirm
)
1597 struct sockaddr
*sa
= svc_addr(rqstp
);
1598 struct nfs4_client
*conf
, *unconf
;
1599 nfs4_verifier confirm
= setclientid_confirm
->sc_confirm
;
1600 clientid_t
* clid
= &setclientid_confirm
->sc_clientid
;
1603 if (STALE_CLIENTID(clid
))
1604 return nfserr_stale_clientid
;
1606 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1607 * We get here on a DRC miss.
1612 conf
= find_confirmed_client(clid
);
1613 unconf
= find_unconfirmed_client(clid
);
1615 status
= nfserr_clid_inuse
;
1616 if (conf
&& !rpc_cmp_addr((struct sockaddr
*) &conf
->cl_addr
, sa
))
1618 if (unconf
&& !rpc_cmp_addr((struct sockaddr
*) &unconf
->cl_addr
, sa
))
1622 * section 14.2.34 of RFC 3530 has a description of
1623 * SETCLIENTID_CONFIRM request processing consisting
1624 * of 4 bullet points, labeled as CASE1 - CASE4 below.
1626 if (conf
&& unconf
&& same_verf(&confirm
, &unconf
->cl_confirm
)) {
1628 * RFC 3530 14.2.34 CASE 1:
1631 if (!same_creds(&conf
->cl_cred
, &unconf
->cl_cred
))
1632 status
= nfserr_clid_inuse
;
1634 /* XXX: We just turn off callbacks until we can handle
1635 * change request correctly. */
1636 atomic_set(&conf
->cl_cb_conn
.cb_set
, 0);
1637 expire_client(unconf
);
1641 } else if (conf
&& !unconf
) {
1643 * RFC 3530 14.2.34 CASE 2:
1644 * probable retransmitted request; play it safe and
1647 if (!same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
))
1648 status
= nfserr_clid_inuse
;
1651 } else if (!conf
&& unconf
1652 && same_verf(&unconf
->cl_confirm
, &confirm
)) {
1654 * RFC 3530 14.2.34 CASE 3:
1655 * Normal case; new or rebooted client:
1657 if (!same_creds(&unconf
->cl_cred
, &rqstp
->rq_cred
)) {
1658 status
= nfserr_clid_inuse
;
1661 clientstr_hashval(unconf
->cl_recdir
);
1662 conf
= find_confirmed_client_by_str(unconf
->cl_recdir
,
1665 nfsd4_remove_clid_dir(conf
);
1666 expire_client(conf
);
1668 move_to_confirmed(unconf
);
1670 nfsd4_probe_callback(conf
);
1673 } else if ((!conf
|| (conf
&& !same_verf(&conf
->cl_confirm
, &confirm
)))
1674 && (!unconf
|| (unconf
&& !same_verf(&unconf
->cl_confirm
,
1677 * RFC 3530 14.2.34 CASE 4:
1678 * Client probably hasn't noticed that we rebooted yet.
1680 status
= nfserr_stale_clientid
;
1682 /* check that we have hit one of the cases...*/
1683 status
= nfserr_clid_inuse
;
1686 nfs4_unlock_state();
1690 /* OPEN Share state helper functions */
1691 static inline struct nfs4_file
*
1692 alloc_init_file(struct inode
*ino
)
1694 struct nfs4_file
*fp
;
1695 unsigned int hashval
= file_hashval(ino
);
1697 fp
= kmem_cache_alloc(file_slab
, GFP_KERNEL
);
1699 atomic_set(&fp
->fi_ref
, 1);
1700 INIT_LIST_HEAD(&fp
->fi_hash
);
1701 INIT_LIST_HEAD(&fp
->fi_stateids
);
1702 INIT_LIST_HEAD(&fp
->fi_delegations
);
1703 spin_lock(&recall_lock
);
1704 list_add(&fp
->fi_hash
, &file_hashtbl
[hashval
]);
1705 spin_unlock(&recall_lock
);
1706 fp
->fi_inode
= igrab(ino
);
1707 fp
->fi_id
= current_fileid
++;
1708 fp
->fi_had_conflict
= false;
1715 nfsd4_free_slab(struct kmem_cache
**slab
)
1719 kmem_cache_destroy(*slab
);
1724 nfsd4_free_slabs(void)
1726 nfsd4_free_slab(&stateowner_slab
);
1727 nfsd4_free_slab(&file_slab
);
1728 nfsd4_free_slab(&stateid_slab
);
1729 nfsd4_free_slab(&deleg_slab
);
1733 nfsd4_init_slabs(void)
1735 stateowner_slab
= kmem_cache_create("nfsd4_stateowners",
1736 sizeof(struct nfs4_stateowner
), 0, 0, NULL
);
1737 if (stateowner_slab
== NULL
)
1739 file_slab
= kmem_cache_create("nfsd4_files",
1740 sizeof(struct nfs4_file
), 0, 0, NULL
);
1741 if (file_slab
== NULL
)
1743 stateid_slab
= kmem_cache_create("nfsd4_stateids",
1744 sizeof(struct nfs4_stateid
), 0, 0, NULL
);
1745 if (stateid_slab
== NULL
)
1747 deleg_slab
= kmem_cache_create("nfsd4_delegations",
1748 sizeof(struct nfs4_delegation
), 0, 0, NULL
);
1749 if (deleg_slab
== NULL
)
1754 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1759 nfs4_free_stateowner(struct kref
*kref
)
1761 struct nfs4_stateowner
*sop
=
1762 container_of(kref
, struct nfs4_stateowner
, so_ref
);
1763 kfree(sop
->so_owner
.data
);
1764 kmem_cache_free(stateowner_slab
, sop
);
1767 static inline struct nfs4_stateowner
*
1768 alloc_stateowner(struct xdr_netobj
*owner
)
1770 struct nfs4_stateowner
*sop
;
1772 if ((sop
= kmem_cache_alloc(stateowner_slab
, GFP_KERNEL
))) {
1773 if ((sop
->so_owner
.data
= kmalloc(owner
->len
, GFP_KERNEL
))) {
1774 memcpy(sop
->so_owner
.data
, owner
->data
, owner
->len
);
1775 sop
->so_owner
.len
= owner
->len
;
1776 kref_init(&sop
->so_ref
);
1779 kmem_cache_free(stateowner_slab
, sop
);
1784 static struct nfs4_stateowner
*
1785 alloc_init_open_stateowner(unsigned int strhashval
, struct nfs4_client
*clp
, struct nfsd4_open
*open
) {
1786 struct nfs4_stateowner
*sop
;
1787 struct nfs4_replay
*rp
;
1788 unsigned int idhashval
;
1790 if (!(sop
= alloc_stateowner(&open
->op_owner
)))
1792 idhashval
= ownerid_hashval(current_ownerid
);
1793 INIT_LIST_HEAD(&sop
->so_idhash
);
1794 INIT_LIST_HEAD(&sop
->so_strhash
);
1795 INIT_LIST_HEAD(&sop
->so_perclient
);
1796 INIT_LIST_HEAD(&sop
->so_stateids
);
1797 INIT_LIST_HEAD(&sop
->so_perstateid
); /* not used */
1798 INIT_LIST_HEAD(&sop
->so_close_lru
);
1800 list_add(&sop
->so_idhash
, &ownerid_hashtbl
[idhashval
]);
1801 list_add(&sop
->so_strhash
, &ownerstr_hashtbl
[strhashval
]);
1802 list_add(&sop
->so_perclient
, &clp
->cl_openowners
);
1803 sop
->so_is_open_owner
= 1;
1804 sop
->so_id
= current_ownerid
++;
1805 sop
->so_client
= clp
;
1806 sop
->so_seqid
= open
->op_seqid
;
1807 sop
->so_confirmed
= 0;
1808 rp
= &sop
->so_replay
;
1809 rp
->rp_status
= nfserr_serverfault
;
1811 rp
->rp_buf
= rp
->rp_ibuf
;
1816 init_stateid(struct nfs4_stateid
*stp
, struct nfs4_file
*fp
, struct nfsd4_open
*open
) {
1817 struct nfs4_stateowner
*sop
= open
->op_stateowner
;
1818 unsigned int hashval
= stateid_hashval(sop
->so_id
, fp
->fi_id
);
1820 INIT_LIST_HEAD(&stp
->st_hash
);
1821 INIT_LIST_HEAD(&stp
->st_perstateowner
);
1822 INIT_LIST_HEAD(&stp
->st_lockowners
);
1823 INIT_LIST_HEAD(&stp
->st_perfile
);
1824 list_add(&stp
->st_hash
, &stateid_hashtbl
[hashval
]);
1825 list_add(&stp
->st_perstateowner
, &sop
->so_stateids
);
1826 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
1827 stp
->st_stateowner
= sop
;
1830 stp
->st_stateid
.si_boot
= get_seconds();
1831 stp
->st_stateid
.si_stateownerid
= sop
->so_id
;
1832 stp
->st_stateid
.si_fileid
= fp
->fi_id
;
1833 stp
->st_stateid
.si_generation
= 0;
1834 stp
->st_access_bmap
= 0;
1835 stp
->st_deny_bmap
= 0;
1836 __set_bit(open
->op_share_access
& ~NFS4_SHARE_WANT_MASK
,
1837 &stp
->st_access_bmap
);
1838 __set_bit(open
->op_share_deny
, &stp
->st_deny_bmap
);
1839 stp
->st_openstp
= NULL
;
1843 move_to_close_lru(struct nfs4_stateowner
*sop
)
1845 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop
);
1847 list_move_tail(&sop
->so_close_lru
, &close_lru
);
1848 sop
->so_time
= get_seconds();
1852 same_owner_str(struct nfs4_stateowner
*sop
, struct xdr_netobj
*owner
,
1855 return (sop
->so_owner
.len
== owner
->len
) &&
1856 0 == memcmp(sop
->so_owner
.data
, owner
->data
, owner
->len
) &&
1857 (sop
->so_client
->cl_clientid
.cl_id
== clid
->cl_id
);
1860 static struct nfs4_stateowner
*
1861 find_openstateowner_str(unsigned int hashval
, struct nfsd4_open
*open
)
1863 struct nfs4_stateowner
*so
= NULL
;
1865 list_for_each_entry(so
, &ownerstr_hashtbl
[hashval
], so_strhash
) {
1866 if (same_owner_str(so
, &open
->op_owner
, &open
->op_clientid
))
1872 /* search file_hashtbl[] for file */
1873 static struct nfs4_file
*
1874 find_file(struct inode
*ino
)
1876 unsigned int hashval
= file_hashval(ino
);
1877 struct nfs4_file
*fp
;
1879 spin_lock(&recall_lock
);
1880 list_for_each_entry(fp
, &file_hashtbl
[hashval
], fi_hash
) {
1881 if (fp
->fi_inode
== ino
) {
1883 spin_unlock(&recall_lock
);
1887 spin_unlock(&recall_lock
);
1891 static inline int access_valid(u32 x
, u32 minorversion
)
1893 if ((x
& NFS4_SHARE_ACCESS_MASK
) < NFS4_SHARE_ACCESS_READ
)
1895 if ((x
& NFS4_SHARE_ACCESS_MASK
) > NFS4_SHARE_ACCESS_BOTH
)
1897 x
&= ~NFS4_SHARE_ACCESS_MASK
;
1898 if (minorversion
&& x
) {
1899 if ((x
& NFS4_SHARE_WANT_MASK
) > NFS4_SHARE_WANT_CANCEL
)
1901 if ((x
& NFS4_SHARE_WHEN_MASK
) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED
)
1903 x
&= ~(NFS4_SHARE_WANT_MASK
| NFS4_SHARE_WHEN_MASK
);
1910 static inline int deny_valid(u32 x
)
1912 /* Note: unlike access bits, deny bits may be zero. */
1913 return x
<= NFS4_SHARE_DENY_BOTH
;
1917 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1918 * st_{access,deny}_bmap field of the stateid, in order to track not
1919 * only what share bits are currently in force, but also what
1920 * combinations of share bits previous opens have used. This allows us
1921 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1922 * return an error if the client attempt to downgrade to a combination
1923 * of share bits not explicable by closing some of its previous opens.
1925 * XXX: This enforcement is actually incomplete, since we don't keep
1926 * track of access/deny bit combinations; so, e.g., we allow:
1928 * OPEN allow read, deny write
1929 * OPEN allow both, deny none
1930 * DOWNGRADE allow read, deny none
1932 * which we should reject.
1935 set_access(unsigned int *access
, unsigned long bmap
) {
1939 for (i
= 1; i
< 4; i
++) {
1940 if (test_bit(i
, &bmap
))
1946 set_deny(unsigned int *deny
, unsigned long bmap
) {
1950 for (i
= 0; i
< 4; i
++) {
1951 if (test_bit(i
, &bmap
))
1957 test_share(struct nfs4_stateid
*stp
, struct nfsd4_open
*open
) {
1958 unsigned int access
, deny
;
1960 set_access(&access
, stp
->st_access_bmap
);
1961 set_deny(&deny
, stp
->st_deny_bmap
);
1962 if ((access
& open
->op_share_deny
) || (deny
& open
->op_share_access
))
1968 * Called to check deny when READ with all zero stateid or
1969 * WRITE with all zero or all one stateid
1972 nfs4_share_conflict(struct svc_fh
*current_fh
, unsigned int deny_type
)
1974 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
1975 struct nfs4_file
*fp
;
1976 struct nfs4_stateid
*stp
;
1979 dprintk("NFSD: nfs4_share_conflict\n");
1981 fp
= find_file(ino
);
1984 ret
= nfserr_locked
;
1985 /* Search for conflicting share reservations */
1986 list_for_each_entry(stp
, &fp
->fi_stateids
, st_perfile
) {
1987 if (test_bit(deny_type
, &stp
->st_deny_bmap
) ||
1988 test_bit(NFS4_SHARE_DENY_BOTH
, &stp
->st_deny_bmap
))
1998 nfs4_file_downgrade(struct file
*filp
, unsigned int share_access
)
2000 if (share_access
& NFS4_SHARE_ACCESS_WRITE
) {
2001 drop_file_write_access(filp
);
2002 spin_lock(&filp
->f_lock
);
2003 filp
->f_mode
= (filp
->f_mode
| FMODE_READ
) & ~FMODE_WRITE
;
2004 spin_unlock(&filp
->f_lock
);
2009 * Spawn a thread to perform a recall on the delegation represented
2010 * by the lease (file_lock)
2012 * Called from break_lease() with lock_kernel() held.
2013 * Note: we assume break_lease will only call this *once* for any given
2017 void nfsd_break_deleg_cb(struct file_lock
*fl
)
2019 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)fl
->fl_owner
;
2021 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp
,fl
);
2025 /* We're assuming the state code never drops its reference
2026 * without first removing the lease. Since we're in this lease
2027 * callback (and since the lease code is serialized by the kernel
2028 * lock) we know the server hasn't removed the lease yet, we know
2029 * it's safe to take a reference: */
2030 atomic_inc(&dp
->dl_count
);
2031 atomic_inc(&dp
->dl_client
->cl_count
);
2033 spin_lock(&recall_lock
);
2034 list_add_tail(&dp
->dl_recall_lru
, &del_recall_lru
);
2035 spin_unlock(&recall_lock
);
2037 /* only place dl_time is set. protected by lock_kernel*/
2038 dp
->dl_time
= get_seconds();
2041 * We don't want the locks code to timeout the lease for us;
2042 * we'll remove it ourself if the delegation isn't returned
2045 fl
->fl_break_time
= 0;
2047 dp
->dl_file
->fi_had_conflict
= true;
2048 nfsd4_cb_recall(dp
);
2052 * The file_lock is being reapd.
2054 * Called by locks_free_lock() with lock_kernel() held.
2057 void nfsd_release_deleg_cb(struct file_lock
*fl
)
2059 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)fl
->fl_owner
;
2061 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl
,dp
, atomic_read(&dp
->dl_count
));
2063 if (!(fl
->fl_flags
& FL_LEASE
) || !dp
)
2065 dp
->dl_flock
= NULL
;
2069 * Set the delegation file_lock back pointer.
2071 * Called from setlease() with lock_kernel() held.
2074 void nfsd_copy_lock_deleg_cb(struct file_lock
*new, struct file_lock
*fl
)
2076 struct nfs4_delegation
*dp
= (struct nfs4_delegation
*)new->fl_owner
;
2078 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp
);
2085 * Called from setlease() with lock_kernel() held
2088 int nfsd_same_client_deleg_cb(struct file_lock
*onlist
, struct file_lock
*try)
2090 struct nfs4_delegation
*onlistd
=
2091 (struct nfs4_delegation
*)onlist
->fl_owner
;
2092 struct nfs4_delegation
*tryd
=
2093 (struct nfs4_delegation
*)try->fl_owner
;
2095 if (onlist
->fl_lmops
!= try->fl_lmops
)
2098 return onlistd
->dl_client
== tryd
->dl_client
;
2103 int nfsd_change_deleg_cb(struct file_lock
**onlist
, int arg
)
2106 return lease_modify(onlist
, arg
);
2111 static const struct lock_manager_operations nfsd_lease_mng_ops
= {
2112 .fl_break
= nfsd_break_deleg_cb
,
2113 .fl_release_private
= nfsd_release_deleg_cb
,
2114 .fl_copy_lock
= nfsd_copy_lock_deleg_cb
,
2115 .fl_mylease
= nfsd_same_client_deleg_cb
,
2116 .fl_change
= nfsd_change_deleg_cb
,
2121 nfsd4_process_open1(struct nfsd4_compound_state
*cstate
,
2122 struct nfsd4_open
*open
)
2124 clientid_t
*clientid
= &open
->op_clientid
;
2125 struct nfs4_client
*clp
= NULL
;
2126 unsigned int strhashval
;
2127 struct nfs4_stateowner
*sop
= NULL
;
2129 if (!check_name(open
->op_owner
))
2130 return nfserr_inval
;
2132 if (STALE_CLIENTID(&open
->op_clientid
))
2133 return nfserr_stale_clientid
;
2135 strhashval
= ownerstr_hashval(clientid
->cl_id
, open
->op_owner
);
2136 sop
= find_openstateowner_str(strhashval
, open
);
2137 open
->op_stateowner
= sop
;
2139 /* Make sure the client's lease hasn't expired. */
2140 clp
= find_confirmed_client(clientid
);
2142 return nfserr_expired
;
2145 /* When sessions are used, skip open sequenceid processing */
2146 if (nfsd4_has_session(cstate
))
2148 if (!sop
->so_confirmed
) {
2149 /* Replace unconfirmed owners without checking for replay. */
2150 clp
= sop
->so_client
;
2151 release_openowner(sop
);
2152 open
->op_stateowner
= NULL
;
2155 if (open
->op_seqid
== sop
->so_seqid
- 1) {
2156 if (sop
->so_replay
.rp_buflen
)
2157 return nfserr_replay_me
;
2158 /* The original OPEN failed so spectacularly
2159 * that we don't even have replay data saved!
2160 * Therefore, we have no choice but to continue
2161 * processing this OPEN; presumably, we'll
2162 * fail again for the same reason.
2164 dprintk("nfsd4_process_open1: replay with no replay cache\n");
2167 if (open
->op_seqid
!= sop
->so_seqid
)
2168 return nfserr_bad_seqid
;
2170 if (open
->op_stateowner
== NULL
) {
2171 sop
= alloc_init_open_stateowner(strhashval
, clp
, open
);
2173 return nfserr_resource
;
2174 open
->op_stateowner
= sop
;
2176 list_del_init(&sop
->so_close_lru
);
2177 renew_client(sop
->so_client
);
2181 static inline __be32
2182 nfs4_check_delegmode(struct nfs4_delegation
*dp
, int flags
)
2184 if ((flags
& WR_STATE
) && (dp
->dl_type
== NFS4_OPEN_DELEGATE_READ
))
2185 return nfserr_openmode
;
2190 static struct nfs4_delegation
*
2191 find_delegation_file(struct nfs4_file
*fp
, stateid_t
*stid
)
2193 struct nfs4_delegation
*dp
;
2195 list_for_each_entry(dp
, &fp
->fi_delegations
, dl_perfile
) {
2196 if (dp
->dl_stateid
.si_stateownerid
== stid
->si_stateownerid
)
2203 nfs4_check_deleg(struct nfs4_file
*fp
, struct nfsd4_open
*open
,
2204 struct nfs4_delegation
**dp
)
2207 __be32 status
= nfserr_bad_stateid
;
2209 *dp
= find_delegation_file(fp
, &open
->op_delegate_stateid
);
2212 flags
= open
->op_share_access
== NFS4_SHARE_ACCESS_READ
?
2213 RD_STATE
: WR_STATE
;
2214 status
= nfs4_check_delegmode(*dp
, flags
);
2218 if (open
->op_claim_type
!= NFS4_OPEN_CLAIM_DELEGATE_CUR
)
2222 open
->op_stateowner
->so_confirmed
= 1;
2227 nfs4_check_open(struct nfs4_file
*fp
, struct nfsd4_open
*open
, struct nfs4_stateid
**stpp
)
2229 struct nfs4_stateid
*local
;
2230 __be32 status
= nfserr_share_denied
;
2231 struct nfs4_stateowner
*sop
= open
->op_stateowner
;
2233 list_for_each_entry(local
, &fp
->fi_stateids
, st_perfile
) {
2234 /* ignore lock owners */
2235 if (local
->st_stateowner
->so_is_open_owner
== 0)
2237 /* remember if we have seen this open owner */
2238 if (local
->st_stateowner
== sop
)
2240 /* check for conflicting share reservations */
2241 if (!test_share(local
, open
))
2249 static inline struct nfs4_stateid
*
2250 nfs4_alloc_stateid(void)
2252 return kmem_cache_alloc(stateid_slab
, GFP_KERNEL
);
2256 nfs4_new_open(struct svc_rqst
*rqstp
, struct nfs4_stateid
**stpp
,
2257 struct nfs4_delegation
*dp
,
2258 struct svc_fh
*cur_fh
, int flags
)
2260 struct nfs4_stateid
*stp
;
2262 stp
= nfs4_alloc_stateid();
2264 return nfserr_resource
;
2267 get_file(dp
->dl_vfs_file
);
2268 stp
->st_vfs_file
= dp
->dl_vfs_file
;
2271 status
= nfsd_open(rqstp
, cur_fh
, S_IFREG
, flags
,
2274 if (status
== nfserr_dropit
)
2275 status
= nfserr_jukebox
;
2276 kmem_cache_free(stateid_slab
, stp
);
2284 static inline __be32
2285 nfsd4_truncate(struct svc_rqst
*rqstp
, struct svc_fh
*fh
,
2286 struct nfsd4_open
*open
)
2288 struct iattr iattr
= {
2289 .ia_valid
= ATTR_SIZE
,
2292 if (!open
->op_truncate
)
2294 if (!(open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
))
2295 return nfserr_inval
;
2296 return nfsd_setattr(rqstp
, fh
, &iattr
, 0, (time_t)0);
2300 nfs4_upgrade_open(struct svc_rqst
*rqstp
, struct svc_fh
*cur_fh
, struct nfs4_stateid
*stp
, struct nfsd4_open
*open
)
2302 struct file
*filp
= stp
->st_vfs_file
;
2303 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
2304 unsigned int share_access
, new_writer
;
2307 set_access(&share_access
, stp
->st_access_bmap
);
2308 new_writer
= (~share_access
) & open
->op_share_access
2309 & NFS4_SHARE_ACCESS_WRITE
;
2312 int err
= get_write_access(inode
);
2314 return nfserrno(err
);
2315 err
= mnt_want_write(cur_fh
->fh_export
->ex_path
.mnt
);
2317 return nfserrno(err
);
2318 file_take_write(filp
);
2320 status
= nfsd4_truncate(rqstp
, cur_fh
, open
);
2323 put_write_access(inode
);
2326 /* remember the open */
2327 filp
->f_mode
|= open
->op_share_access
;
2328 __set_bit(open
->op_share_access
, &stp
->st_access_bmap
);
2329 __set_bit(open
->op_share_deny
, &stp
->st_deny_bmap
);
2336 nfs4_set_claim_prev(struct nfsd4_open
*open
)
2338 open
->op_stateowner
->so_confirmed
= 1;
2339 open
->op_stateowner
->so_client
->cl_firststate
= 1;
2343 * Attempt to hand out a delegation.
2346 nfs4_open_delegation(struct svc_fh
*fh
, struct nfsd4_open
*open
, struct nfs4_stateid
*stp
)
2348 struct nfs4_delegation
*dp
;
2349 struct nfs4_stateowner
*sop
= stp
->st_stateowner
;
2350 struct nfs4_cb_conn
*cb
= &sop
->so_client
->cl_cb_conn
;
2351 struct file_lock fl
, *flp
= &fl
;
2352 int status
, flag
= 0;
2354 flag
= NFS4_OPEN_DELEGATE_NONE
;
2355 open
->op_recall
= 0;
2356 switch (open
->op_claim_type
) {
2357 case NFS4_OPEN_CLAIM_PREVIOUS
:
2358 if (!atomic_read(&cb
->cb_set
))
2359 open
->op_recall
= 1;
2360 flag
= open
->op_delegate_type
;
2361 if (flag
== NFS4_OPEN_DELEGATE_NONE
)
2364 case NFS4_OPEN_CLAIM_NULL
:
2365 /* Let's not give out any delegations till everyone's
2366 * had the chance to reclaim theirs.... */
2367 if (locks_in_grace())
2369 if (!atomic_read(&cb
->cb_set
) || !sop
->so_confirmed
)
2371 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
2372 flag
= NFS4_OPEN_DELEGATE_WRITE
;
2374 flag
= NFS4_OPEN_DELEGATE_READ
;
2380 dp
= alloc_init_deleg(sop
->so_client
, stp
, fh
, flag
);
2382 flag
= NFS4_OPEN_DELEGATE_NONE
;
2385 locks_init_lock(&fl
);
2386 fl
.fl_lmops
= &nfsd_lease_mng_ops
;
2387 fl
.fl_flags
= FL_LEASE
;
2388 fl
.fl_type
= flag
== NFS4_OPEN_DELEGATE_READ
? F_RDLCK
: F_WRLCK
;
2389 fl
.fl_end
= OFFSET_MAX
;
2390 fl
.fl_owner
= (fl_owner_t
)dp
;
2391 fl
.fl_file
= stp
->st_vfs_file
;
2392 fl
.fl_pid
= current
->tgid
;
2394 /* vfs_setlease checks to see if delegation should be handed out.
2395 * the lock_manager callbacks fl_mylease and fl_change are used
2397 if ((status
= vfs_setlease(stp
->st_vfs_file
, fl
.fl_type
, &flp
))) {
2398 dprintk("NFSD: setlease failed [%d], no delegation\n", status
);
2399 unhash_delegation(dp
);
2400 flag
= NFS4_OPEN_DELEGATE_NONE
;
2404 memcpy(&open
->op_delegate_stateid
, &dp
->dl_stateid
, sizeof(dp
->dl_stateid
));
2406 dprintk("NFSD: delegation stateid=" STATEID_FMT
"\n",
2407 STATEID_VAL(&dp
->dl_stateid
));
2409 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
2410 && flag
== NFS4_OPEN_DELEGATE_NONE
2411 && open
->op_delegate_type
!= NFS4_OPEN_DELEGATE_NONE
)
2412 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
2413 open
->op_delegate_type
= flag
;
2417 * called with nfs4_lock_state() held.
2420 nfsd4_process_open2(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open
*open
)
2422 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
2423 struct nfs4_file
*fp
= NULL
;
2424 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
2425 struct nfs4_stateid
*stp
= NULL
;
2426 struct nfs4_delegation
*dp
= NULL
;
2429 status
= nfserr_inval
;
2430 if (!access_valid(open
->op_share_access
, resp
->cstate
.minorversion
)
2431 || !deny_valid(open
->op_share_deny
))
2434 * Lookup file; if found, lookup stateid and check open request,
2435 * and check for delegations in the process of being recalled.
2436 * If not found, create the nfs4_file struct
2438 fp
= find_file(ino
);
2440 if ((status
= nfs4_check_open(fp
, open
, &stp
)))
2442 status
= nfs4_check_deleg(fp
, open
, &dp
);
2446 status
= nfserr_bad_stateid
;
2447 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_DELEGATE_CUR
)
2449 status
= nfserr_resource
;
2450 fp
= alloc_init_file(ino
);
2456 * OPEN the file, or upgrade an existing OPEN.
2457 * If truncate fails, the OPEN fails.
2460 /* Stateid was found, this is an OPEN upgrade */
2461 status
= nfs4_upgrade_open(rqstp
, current_fh
, stp
, open
);
2464 update_stateid(&stp
->st_stateid
);
2466 /* Stateid was not found, this is a new OPEN */
2468 if (open
->op_share_access
& NFS4_SHARE_ACCESS_READ
)
2469 flags
|= NFSD_MAY_READ
;
2470 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
2471 flags
|= NFSD_MAY_WRITE
;
2472 status
= nfs4_new_open(rqstp
, &stp
, dp
, current_fh
, flags
);
2475 init_stateid(stp
, fp
, open
);
2476 status
= nfsd4_truncate(rqstp
, current_fh
, open
);
2478 release_open_stateid(stp
);
2481 if (nfsd4_has_session(&resp
->cstate
))
2482 update_stateid(&stp
->st_stateid
);
2484 memcpy(&open
->op_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
2486 if (nfsd4_has_session(&resp
->cstate
)) {
2487 open
->op_stateowner
->so_confirmed
= 1;
2488 nfsd4_create_clid_dir(open
->op_stateowner
->so_client
);
2492 * Attempt to hand out a delegation. No error return, because the
2493 * OPEN succeeds even if we fail.
2495 nfs4_open_delegation(current_fh
, open
, stp
);
2499 dprintk("%s: stateid=" STATEID_FMT
"\n", __func__
,
2500 STATEID_VAL(&stp
->st_stateid
));
2504 if (status
== 0 && open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
)
2505 nfs4_set_claim_prev(open
);
2507 * To finish the open response, we just need to set the rflags.
2509 open
->op_rflags
= NFS4_OPEN_RESULT_LOCKTYPE_POSIX
;
2510 if (!open
->op_stateowner
->so_confirmed
&&
2511 !nfsd4_has_session(&resp
->cstate
))
2512 open
->op_rflags
|= NFS4_OPEN_RESULT_CONFIRM
;
2518 nfsd4_renew(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
2521 struct nfs4_client
*clp
;
2525 dprintk("process_renew(%08x/%08x): starting\n",
2526 clid
->cl_boot
, clid
->cl_id
);
2527 status
= nfserr_stale_clientid
;
2528 if (STALE_CLIENTID(clid
))
2530 clp
= find_confirmed_client(clid
);
2531 status
= nfserr_expired
;
2533 /* We assume the client took too long to RENEW. */
2534 dprintk("nfsd4_renew: clientid not found!\n");
2538 status
= nfserr_cb_path_down
;
2539 if (!list_empty(&clp
->cl_delegations
)
2540 && !atomic_read(&clp
->cl_cb_conn
.cb_set
))
2544 nfs4_unlock_state();
2548 struct lock_manager nfsd4_manager
= {
2552 nfsd4_end_grace(void)
2554 dprintk("NFSD: end of grace period\n");
2555 nfsd4_recdir_purge_old();
2556 locks_end_grace(&nfsd4_manager
);
2560 nfs4_laundromat(void)
2562 struct nfs4_client
*clp
;
2563 struct nfs4_stateowner
*sop
;
2564 struct nfs4_delegation
*dp
;
2565 struct list_head
*pos
, *next
, reaplist
;
2566 time_t cutoff
= get_seconds() - NFSD_LEASE_TIME
;
2567 time_t t
, clientid_val
= NFSD_LEASE_TIME
;
2568 time_t u
, test_val
= NFSD_LEASE_TIME
;
2572 dprintk("NFSD: laundromat service - starting\n");
2573 if (locks_in_grace())
2575 list_for_each_safe(pos
, next
, &client_lru
) {
2576 clp
= list_entry(pos
, struct nfs4_client
, cl_lru
);
2577 if (time_after((unsigned long)clp
->cl_time
, (unsigned long)cutoff
)) {
2578 t
= clp
->cl_time
- cutoff
;
2579 if (clientid_val
> t
)
2583 dprintk("NFSD: purging unused client (clientid %08x)\n",
2584 clp
->cl_clientid
.cl_id
);
2585 nfsd4_remove_clid_dir(clp
);
2588 INIT_LIST_HEAD(&reaplist
);
2589 spin_lock(&recall_lock
);
2590 list_for_each_safe(pos
, next
, &del_recall_lru
) {
2591 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
2592 if (time_after((unsigned long)dp
->dl_time
, (unsigned long)cutoff
)) {
2593 u
= dp
->dl_time
- cutoff
;
2598 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
2600 list_move(&dp
->dl_recall_lru
, &reaplist
);
2602 spin_unlock(&recall_lock
);
2603 list_for_each_safe(pos
, next
, &reaplist
) {
2604 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
2605 list_del_init(&dp
->dl_recall_lru
);
2606 unhash_delegation(dp
);
2608 test_val
= NFSD_LEASE_TIME
;
2609 list_for_each_safe(pos
, next
, &close_lru
) {
2610 sop
= list_entry(pos
, struct nfs4_stateowner
, so_close_lru
);
2611 if (time_after((unsigned long)sop
->so_time
, (unsigned long)cutoff
)) {
2612 u
= sop
->so_time
- cutoff
;
2617 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
2619 release_openowner(sop
);
2621 if (clientid_val
< NFSD_LAUNDROMAT_MINTIMEOUT
)
2622 clientid_val
= NFSD_LAUNDROMAT_MINTIMEOUT
;
2623 nfs4_unlock_state();
2624 return clientid_val
;
2627 static struct workqueue_struct
*laundry_wq
;
2628 static void laundromat_main(struct work_struct
*);
2629 static DECLARE_DELAYED_WORK(laundromat_work
, laundromat_main
);
2632 laundromat_main(struct work_struct
*not_used
)
2636 t
= nfs4_laundromat();
2637 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t
);
2638 queue_delayed_work(laundry_wq
, &laundromat_work
, t
*HZ
);
2641 static struct nfs4_stateowner
*
2642 search_close_lru(u32 st_id
, int flags
)
2644 struct nfs4_stateowner
*local
= NULL
;
2646 if (flags
& CLOSE_STATE
) {
2647 list_for_each_entry(local
, &close_lru
, so_close_lru
) {
2648 if (local
->so_id
== st_id
)
2656 nfs4_check_fh(struct svc_fh
*fhp
, struct nfs4_stateid
*stp
)
2658 return fhp
->fh_dentry
->d_inode
!= stp
->st_vfs_file
->f_path
.dentry
->d_inode
;
2662 STALE_STATEID(stateid_t
*stateid
)
2664 if (time_after((unsigned long)boot_time
,
2665 (unsigned long)stateid
->si_boot
)) {
2666 dprintk("NFSD: stale stateid " STATEID_FMT
"!\n",
2667 STATEID_VAL(stateid
));
2674 EXPIRED_STATEID(stateid_t
*stateid
)
2676 if (time_before((unsigned long)boot_time
,
2677 ((unsigned long)stateid
->si_boot
)) &&
2678 time_before((unsigned long)(stateid
->si_boot
+ lease_time
), get_seconds())) {
2679 dprintk("NFSD: expired stateid " STATEID_FMT
"!\n",
2680 STATEID_VAL(stateid
));
2687 stateid_error_map(stateid_t
*stateid
)
2689 if (STALE_STATEID(stateid
))
2690 return nfserr_stale_stateid
;
2691 if (EXPIRED_STATEID(stateid
))
2692 return nfserr_expired
;
2694 dprintk("NFSD: bad stateid " STATEID_FMT
"!\n",
2695 STATEID_VAL(stateid
));
2696 return nfserr_bad_stateid
;
2700 access_permit_read(unsigned long access_bmap
)
2702 return test_bit(NFS4_SHARE_ACCESS_READ
, &access_bmap
) ||
2703 test_bit(NFS4_SHARE_ACCESS_BOTH
, &access_bmap
) ||
2704 test_bit(NFS4_SHARE_ACCESS_WRITE
, &access_bmap
);
2708 access_permit_write(unsigned long access_bmap
)
2710 return test_bit(NFS4_SHARE_ACCESS_WRITE
, &access_bmap
) ||
2711 test_bit(NFS4_SHARE_ACCESS_BOTH
, &access_bmap
);
2715 __be32
nfs4_check_openmode(struct nfs4_stateid
*stp
, int flags
)
2717 __be32 status
= nfserr_openmode
;
2719 if ((flags
& WR_STATE
) && (!access_permit_write(stp
->st_access_bmap
)))
2721 if ((flags
& RD_STATE
) && (!access_permit_read(stp
->st_access_bmap
)))
2728 static inline __be32
2729 check_special_stateids(svc_fh
*current_fh
, stateid_t
*stateid
, int flags
)
2731 if (ONE_STATEID(stateid
) && (flags
& RD_STATE
))
2733 else if (locks_in_grace()) {
2734 /* Answer in remaining cases depends on existance of
2735 * conflicting state; so we must wait out the grace period. */
2736 return nfserr_grace
;
2737 } else if (flags
& WR_STATE
)
2738 return nfs4_share_conflict(current_fh
,
2739 NFS4_SHARE_DENY_WRITE
);
2740 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2741 return nfs4_share_conflict(current_fh
,
2742 NFS4_SHARE_DENY_READ
);
2746 * Allow READ/WRITE during grace period on recovered state only for files
2747 * that are not able to provide mandatory locking.
2750 grace_disallows_io(struct inode
*inode
)
2752 return locks_in_grace() && mandatory_lock(inode
);
2755 static int check_stateid_generation(stateid_t
*in
, stateid_t
*ref
, int flags
)
2758 * When sessions are used the stateid generation number is ignored
2761 if ((flags
& HAS_SESSION
) && in
->si_generation
== 0)
2764 /* If the client sends us a stateid from the future, it's buggy: */
2765 if (in
->si_generation
> ref
->si_generation
)
2766 return nfserr_bad_stateid
;
2768 * The following, however, can happen. For example, if the
2769 * client sends an open and some IO at the same time, the open
2770 * may bump si_generation while the IO is still in flight.
2771 * Thanks to hard links and renames, the client never knows what
2772 * file an open will affect. So it could avoid that situation
2773 * only by serializing all opens and IO from the same open
2774 * owner. To recover from the old_stateid error, the client
2775 * will just have to retry the IO:
2777 if (in
->si_generation
< ref
->si_generation
)
2778 return nfserr_old_stateid
;
2783 static int is_delegation_stateid(stateid_t
*stateid
)
2785 return stateid
->si_fileid
== 0;
2789 * Checks for stateid operations
2792 nfs4_preprocess_stateid_op(struct nfsd4_compound_state
*cstate
,
2793 stateid_t
*stateid
, int flags
, struct file
**filpp
)
2795 struct nfs4_stateid
*stp
= NULL
;
2796 struct nfs4_delegation
*dp
= NULL
;
2797 struct svc_fh
*current_fh
= &cstate
->current_fh
;
2798 struct inode
*ino
= current_fh
->fh_dentry
->d_inode
;
2804 if (grace_disallows_io(ino
))
2805 return nfserr_grace
;
2807 if (nfsd4_has_session(cstate
))
2808 flags
|= HAS_SESSION
;
2810 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
))
2811 return check_special_stateids(current_fh
, stateid
, flags
);
2813 status
= nfserr_stale_stateid
;
2814 if (STALE_STATEID(stateid
))
2817 status
= nfserr_bad_stateid
;
2818 if (is_delegation_stateid(stateid
)) {
2819 dp
= find_delegation_stateid(ino
, stateid
);
2821 status
= stateid_error_map(stateid
);
2824 status
= check_stateid_generation(stateid
, &dp
->dl_stateid
,
2828 status
= nfs4_check_delegmode(dp
, flags
);
2831 renew_client(dp
->dl_client
);
2833 *filpp
= dp
->dl_vfs_file
;
2834 } else { /* open or lock stateid */
2835 stp
= find_stateid(stateid
, flags
);
2837 status
= stateid_error_map(stateid
);
2840 if (nfs4_check_fh(current_fh
, stp
))
2842 if (!stp
->st_stateowner
->so_confirmed
)
2844 status
= check_stateid_generation(stateid
, &stp
->st_stateid
,
2848 status
= nfs4_check_openmode(stp
, flags
);
2851 renew_client(stp
->st_stateowner
->so_client
);
2853 *filpp
= stp
->st_vfs_file
;
2863 return (type
== NFS4_READW_LT
|| type
== NFS4_READ_LT
) ?
2864 RD_STATE
: WR_STATE
;
2868 * Checks for sequence id mutating operations.
2871 nfs4_preprocess_seqid_op(struct nfsd4_compound_state
*cstate
, u32 seqid
,
2872 stateid_t
*stateid
, int flags
,
2873 struct nfs4_stateowner
**sopp
,
2874 struct nfs4_stateid
**stpp
, struct nfsd4_lock
*lock
)
2876 struct nfs4_stateid
*stp
;
2877 struct nfs4_stateowner
*sop
;
2878 struct svc_fh
*current_fh
= &cstate
->current_fh
;
2881 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT
"\n", __func__
,
2882 seqid
, STATEID_VAL(stateid
));
2887 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
)) {
2888 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
2889 return nfserr_bad_stateid
;
2892 if (STALE_STATEID(stateid
))
2893 return nfserr_stale_stateid
;
2895 if (nfsd4_has_session(cstate
))
2896 flags
|= HAS_SESSION
;
2899 * We return BAD_STATEID if filehandle doesn't match stateid,
2900 * the confirmed flag is incorrecly set, or the generation
2901 * number is incorrect.
2903 stp
= find_stateid(stateid
, flags
);
2906 * Also, we should make sure this isn't just the result of
2909 sop
= search_close_lru(stateid
->si_stateownerid
, flags
);
2911 return stateid_error_map(stateid
);
2917 *sopp
= sop
= stp
->st_stateowner
;
2920 clientid_t
*lockclid
= &lock
->v
.new.clientid
;
2921 struct nfs4_client
*clp
= sop
->so_client
;
2925 lkflg
= setlkflg(lock
->lk_type
);
2927 if (lock
->lk_is_new
) {
2928 if (!sop
->so_is_open_owner
)
2929 return nfserr_bad_stateid
;
2930 if (!(flags
& HAS_SESSION
) &&
2931 !same_clid(&clp
->cl_clientid
, lockclid
))
2932 return nfserr_bad_stateid
;
2933 /* stp is the open stateid */
2934 status
= nfs4_check_openmode(stp
, lkflg
);
2938 /* stp is the lock stateid */
2939 status
= nfs4_check_openmode(stp
->st_openstp
, lkflg
);
2945 if (nfs4_check_fh(current_fh
, stp
)) {
2946 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
2947 return nfserr_bad_stateid
;
2951 * We now validate the seqid and stateid generation numbers.
2952 * For the moment, we ignore the possibility of
2953 * generation number wraparound.
2955 if (!(flags
& HAS_SESSION
) && seqid
!= sop
->so_seqid
)
2958 if (sop
->so_confirmed
&& flags
& CONFIRM
) {
2959 dprintk("NFSD: preprocess_seqid_op: expected"
2960 " unconfirmed stateowner!\n");
2961 return nfserr_bad_stateid
;
2963 if (!sop
->so_confirmed
&& !(flags
& CONFIRM
)) {
2964 dprintk("NFSD: preprocess_seqid_op: stateowner not"
2965 " confirmed yet!\n");
2966 return nfserr_bad_stateid
;
2968 status
= check_stateid_generation(stateid
, &stp
->st_stateid
, flags
);
2971 renew_client(sop
->so_client
);
2975 if (seqid
== sop
->so_seqid
- 1) {
2976 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
2977 /* indicate replay to calling function */
2978 return nfserr_replay_me
;
2980 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
2981 sop
->so_seqid
, seqid
);
2983 return nfserr_bad_seqid
;
2987 nfsd4_open_confirm(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
2988 struct nfsd4_open_confirm
*oc
)
2991 struct nfs4_stateowner
*sop
;
2992 struct nfs4_stateid
*stp
;
2994 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
2995 (int)cstate
->current_fh
.fh_dentry
->d_name
.len
,
2996 cstate
->current_fh
.fh_dentry
->d_name
.name
);
2998 status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0);
3004 if ((status
= nfs4_preprocess_seqid_op(cstate
,
3005 oc
->oc_seqid
, &oc
->oc_req_stateid
,
3006 CONFIRM
| OPEN_STATE
,
3007 &oc
->oc_stateowner
, &stp
, NULL
)))
3010 sop
= oc
->oc_stateowner
;
3011 sop
->so_confirmed
= 1;
3012 update_stateid(&stp
->st_stateid
);
3013 memcpy(&oc
->oc_resp_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
3014 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT
"\n",
3015 __func__
, oc
->oc_seqid
, STATEID_VAL(&stp
->st_stateid
));
3017 nfsd4_create_clid_dir(sop
->so_client
);
3019 if (oc
->oc_stateowner
) {
3020 nfs4_get_stateowner(oc
->oc_stateowner
);
3021 cstate
->replay_owner
= oc
->oc_stateowner
;
3023 nfs4_unlock_state();
3029 * unset all bits in union bitmap (bmap) that
3030 * do not exist in share (from successful OPEN_DOWNGRADE)
3033 reset_union_bmap_access(unsigned long access
, unsigned long *bmap
)
3036 for (i
= 1; i
< 4; i
++) {
3037 if ((i
& access
) != i
)
3038 __clear_bit(i
, bmap
);
3043 reset_union_bmap_deny(unsigned long deny
, unsigned long *bmap
)
3046 for (i
= 0; i
< 4; i
++) {
3047 if ((i
& deny
) != i
)
3048 __clear_bit(i
, bmap
);
3053 nfsd4_open_downgrade(struct svc_rqst
*rqstp
,
3054 struct nfsd4_compound_state
*cstate
,
3055 struct nfsd4_open_downgrade
*od
)
3058 struct nfs4_stateid
*stp
;
3059 unsigned int share_access
;
3061 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
3062 (int)cstate
->current_fh
.fh_dentry
->d_name
.len
,
3063 cstate
->current_fh
.fh_dentry
->d_name
.name
);
3065 if (!access_valid(od
->od_share_access
, cstate
->minorversion
)
3066 || !deny_valid(od
->od_share_deny
))
3067 return nfserr_inval
;
3070 if ((status
= nfs4_preprocess_seqid_op(cstate
,
3074 &od
->od_stateowner
, &stp
, NULL
)))
3077 status
= nfserr_inval
;
3078 if (!test_bit(od
->od_share_access
, &stp
->st_access_bmap
)) {
3079 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
3080 stp
->st_access_bmap
, od
->od_share_access
);
3083 if (!test_bit(od
->od_share_deny
, &stp
->st_deny_bmap
)) {
3084 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3085 stp
->st_deny_bmap
, od
->od_share_deny
);
3088 set_access(&share_access
, stp
->st_access_bmap
);
3089 nfs4_file_downgrade(stp
->st_vfs_file
,
3090 share_access
& ~od
->od_share_access
);
3092 reset_union_bmap_access(od
->od_share_access
, &stp
->st_access_bmap
);
3093 reset_union_bmap_deny(od
->od_share_deny
, &stp
->st_deny_bmap
);
3095 update_stateid(&stp
->st_stateid
);
3096 memcpy(&od
->od_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
3099 if (od
->od_stateowner
) {
3100 nfs4_get_stateowner(od
->od_stateowner
);
3101 cstate
->replay_owner
= od
->od_stateowner
;
3103 nfs4_unlock_state();
3108 * nfs4_unlock_state() called after encode
3111 nfsd4_close(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
3112 struct nfsd4_close
*close
)
3115 struct nfs4_stateid
*stp
;
3117 dprintk("NFSD: nfsd4_close on file %.*s\n",
3118 (int)cstate
->current_fh
.fh_dentry
->d_name
.len
,
3119 cstate
->current_fh
.fh_dentry
->d_name
.name
);
3122 /* check close_lru for replay */
3123 if ((status
= nfs4_preprocess_seqid_op(cstate
,
3126 OPEN_STATE
| CLOSE_STATE
,
3127 &close
->cl_stateowner
, &stp
, NULL
)))
3130 update_stateid(&stp
->st_stateid
);
3131 memcpy(&close
->cl_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
3133 /* release_stateid() calls nfsd_close() if needed */
3134 release_open_stateid(stp
);
3136 /* place unused nfs4_stateowners on so_close_lru list to be
3137 * released by the laundromat service after the lease period
3138 * to enable us to handle CLOSE replay
3140 if (list_empty(&close
->cl_stateowner
->so_stateids
))
3141 move_to_close_lru(close
->cl_stateowner
);
3143 if (close
->cl_stateowner
) {
3144 nfs4_get_stateowner(close
->cl_stateowner
);
3145 cstate
->replay_owner
= close
->cl_stateowner
;
3147 nfs4_unlock_state();
3152 nfsd4_delegreturn(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
3153 struct nfsd4_delegreturn
*dr
)
3155 struct nfs4_delegation
*dp
;
3156 stateid_t
*stateid
= &dr
->dr_stateid
;
3157 struct inode
*inode
;
3161 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0)))
3163 inode
= cstate
->current_fh
.fh_dentry
->d_inode
;
3165 if (nfsd4_has_session(cstate
))
3166 flags
|= HAS_SESSION
;
3168 status
= nfserr_bad_stateid
;
3169 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
))
3171 status
= nfserr_stale_stateid
;
3172 if (STALE_STATEID(stateid
))
3174 status
= nfserr_bad_stateid
;
3175 if (!is_delegation_stateid(stateid
))
3177 dp
= find_delegation_stateid(inode
, stateid
);
3179 status
= stateid_error_map(stateid
);
3182 status
= check_stateid_generation(stateid
, &dp
->dl_stateid
, flags
);
3185 renew_client(dp
->dl_client
);
3187 unhash_delegation(dp
);
3189 nfs4_unlock_state();
3196 * Lock owner state (byte-range locks)
3198 #define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
3199 #define LOCK_HASH_BITS 8
3200 #define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
3201 #define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
3204 end_offset(u64 start
, u64 len
)
3209 return end
>= start
? end
: NFS4_MAX_UINT64
;
3212 /* last octet in a range */
3214 last_byte_offset(u64 start
, u64 len
)
3220 return end
> start
? end
- 1: NFS4_MAX_UINT64
;
3223 #define lockownerid_hashval(id) \
3224 ((id) & LOCK_HASH_MASK)
3226 static inline unsigned int
3227 lock_ownerstr_hashval(struct inode
*inode
, u32 cl_id
,
3228 struct xdr_netobj
*ownername
)
3230 return (file_hashval(inode
) + cl_id
3231 + opaque_hashval(ownername
->data
, ownername
->len
))
3235 static struct list_head lock_ownerid_hashtbl
[LOCK_HASH_SIZE
];
3236 static struct list_head lock_ownerstr_hashtbl
[LOCK_HASH_SIZE
];
3237 static struct list_head lockstateid_hashtbl
[STATEID_HASH_SIZE
];
3239 static struct nfs4_stateid
*
3240 find_stateid(stateid_t
*stid
, int flags
)
3242 struct nfs4_stateid
*local
;
3243 u32 st_id
= stid
->si_stateownerid
;
3244 u32 f_id
= stid
->si_fileid
;
3245 unsigned int hashval
;
3247 dprintk("NFSD: find_stateid flags 0x%x\n",flags
);
3248 if (flags
& (LOCK_STATE
| RD_STATE
| WR_STATE
)) {
3249 hashval
= stateid_hashval(st_id
, f_id
);
3250 list_for_each_entry(local
, &lockstateid_hashtbl
[hashval
], st_hash
) {
3251 if ((local
->st_stateid
.si_stateownerid
== st_id
) &&
3252 (local
->st_stateid
.si_fileid
== f_id
))
3257 if (flags
& (OPEN_STATE
| RD_STATE
| WR_STATE
)) {
3258 hashval
= stateid_hashval(st_id
, f_id
);
3259 list_for_each_entry(local
, &stateid_hashtbl
[hashval
], st_hash
) {
3260 if ((local
->st_stateid
.si_stateownerid
== st_id
) &&
3261 (local
->st_stateid
.si_fileid
== f_id
))
3268 static struct nfs4_delegation
*
3269 find_delegation_stateid(struct inode
*ino
, stateid_t
*stid
)
3271 struct nfs4_file
*fp
;
3272 struct nfs4_delegation
*dl
;
3274 dprintk("NFSD: %s: stateid=" STATEID_FMT
"\n", __func__
,
3277 fp
= find_file(ino
);
3280 dl
= find_delegation_file(fp
, stid
);
3286 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3287 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3288 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3289 * locking, this prevents us from being completely protocol-compliant. The
3290 * real solution to this problem is to start using unsigned file offsets in
3291 * the VFS, but this is a very deep change!
3294 nfs4_transform_lock_offset(struct file_lock
*lock
)
3296 if (lock
->fl_start
< 0)
3297 lock
->fl_start
= OFFSET_MAX
;
3298 if (lock
->fl_end
< 0)
3299 lock
->fl_end
= OFFSET_MAX
;
3302 /* Hack!: For now, we're defining this just so we can use a pointer to it
3303 * as a unique cookie to identify our (NFSv4's) posix locks. */
3304 static const struct lock_manager_operations nfsd_posix_mng_ops
= {
3308 nfs4_set_lock_denied(struct file_lock
*fl
, struct nfsd4_lock_denied
*deny
)
3310 struct nfs4_stateowner
*sop
;
3313 if (fl
->fl_lmops
== &nfsd_posix_mng_ops
) {
3314 sop
= (struct nfs4_stateowner
*) fl
->fl_owner
;
3315 hval
= lockownerid_hashval(sop
->so_id
);
3316 kref_get(&sop
->so_ref
);
3318 deny
->ld_clientid
= sop
->so_client
->cl_clientid
;
3320 deny
->ld_sop
= NULL
;
3321 deny
->ld_clientid
.cl_boot
= 0;
3322 deny
->ld_clientid
.cl_id
= 0;
3324 deny
->ld_start
= fl
->fl_start
;
3325 deny
->ld_length
= NFS4_MAX_UINT64
;
3326 if (fl
->fl_end
!= NFS4_MAX_UINT64
)
3327 deny
->ld_length
= fl
->fl_end
- fl
->fl_start
+ 1;
3328 deny
->ld_type
= NFS4_READ_LT
;
3329 if (fl
->fl_type
!= F_RDLCK
)
3330 deny
->ld_type
= NFS4_WRITE_LT
;
3333 static struct nfs4_stateowner
*
3334 find_lockstateowner_str(struct inode
*inode
, clientid_t
*clid
,
3335 struct xdr_netobj
*owner
)
3337 unsigned int hashval
= lock_ownerstr_hashval(inode
, clid
->cl_id
, owner
);
3338 struct nfs4_stateowner
*op
;
3340 list_for_each_entry(op
, &lock_ownerstr_hashtbl
[hashval
], so_strhash
) {
3341 if (same_owner_str(op
, owner
, clid
))
3348 * Alloc a lock owner structure.
3349 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
3352 * strhashval = lock_ownerstr_hashval
3355 static struct nfs4_stateowner
*
3356 alloc_init_lock_stateowner(unsigned int strhashval
, struct nfs4_client
*clp
, struct nfs4_stateid
*open_stp
, struct nfsd4_lock
*lock
) {
3357 struct nfs4_stateowner
*sop
;
3358 struct nfs4_replay
*rp
;
3359 unsigned int idhashval
;
3361 if (!(sop
= alloc_stateowner(&lock
->lk_new_owner
)))
3363 idhashval
= lockownerid_hashval(current_ownerid
);
3364 INIT_LIST_HEAD(&sop
->so_idhash
);
3365 INIT_LIST_HEAD(&sop
->so_strhash
);
3366 INIT_LIST_HEAD(&sop
->so_perclient
);
3367 INIT_LIST_HEAD(&sop
->so_stateids
);
3368 INIT_LIST_HEAD(&sop
->so_perstateid
);
3369 INIT_LIST_HEAD(&sop
->so_close_lru
); /* not used */
3371 list_add(&sop
->so_idhash
, &lock_ownerid_hashtbl
[idhashval
]);
3372 list_add(&sop
->so_strhash
, &lock_ownerstr_hashtbl
[strhashval
]);
3373 list_add(&sop
->so_perstateid
, &open_stp
->st_lockowners
);
3374 sop
->so_is_open_owner
= 0;
3375 sop
->so_id
= current_ownerid
++;
3376 sop
->so_client
= clp
;
3377 /* It is the openowner seqid that will be incremented in encode in the
3378 * case of new lockowners; so increment the lock seqid manually: */
3379 sop
->so_seqid
= lock
->lk_new_lock_seqid
+ 1;
3380 sop
->so_confirmed
= 1;
3381 rp
= &sop
->so_replay
;
3382 rp
->rp_status
= nfserr_serverfault
;
3384 rp
->rp_buf
= rp
->rp_ibuf
;
3388 static struct nfs4_stateid
*
3389 alloc_init_lock_stateid(struct nfs4_stateowner
*sop
, struct nfs4_file
*fp
, struct nfs4_stateid
*open_stp
)
3391 struct nfs4_stateid
*stp
;
3392 unsigned int hashval
= stateid_hashval(sop
->so_id
, fp
->fi_id
);
3394 stp
= nfs4_alloc_stateid();
3397 INIT_LIST_HEAD(&stp
->st_hash
);
3398 INIT_LIST_HEAD(&stp
->st_perfile
);
3399 INIT_LIST_HEAD(&stp
->st_perstateowner
);
3400 INIT_LIST_HEAD(&stp
->st_lockowners
); /* not used */
3401 list_add(&stp
->st_hash
, &lockstateid_hashtbl
[hashval
]);
3402 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
3403 list_add(&stp
->st_perstateowner
, &sop
->so_stateids
);
3404 stp
->st_stateowner
= sop
;
3407 stp
->st_stateid
.si_boot
= get_seconds();
3408 stp
->st_stateid
.si_stateownerid
= sop
->so_id
;
3409 stp
->st_stateid
.si_fileid
= fp
->fi_id
;
3410 stp
->st_stateid
.si_generation
= 0;
3411 stp
->st_vfs_file
= open_stp
->st_vfs_file
; /* FIXME refcount?? */
3412 stp
->st_access_bmap
= open_stp
->st_access_bmap
;
3413 stp
->st_deny_bmap
= open_stp
->st_deny_bmap
;
3414 stp
->st_openstp
= open_stp
;
3421 check_lock_length(u64 offset
, u64 length
)
3423 return ((length
== 0) || ((length
!= NFS4_MAX_UINT64
) &&
3424 LOFF_OVERFLOW(offset
, length
)));
3431 nfsd4_lock(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
3432 struct nfsd4_lock
*lock
)
3434 struct nfs4_stateowner
*open_sop
= NULL
;
3435 struct nfs4_stateowner
*lock_sop
= NULL
;
3436 struct nfs4_stateid
*lock_stp
;
3438 struct file_lock file_lock
;
3439 struct file_lock conflock
;
3441 unsigned int strhashval
;
3445 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3446 (long long) lock
->lk_offset
,
3447 (long long) lock
->lk_length
);
3449 if (check_lock_length(lock
->lk_offset
, lock
->lk_length
))
3450 return nfserr_inval
;
3452 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
,
3453 S_IFREG
, NFSD_MAY_LOCK
))) {
3454 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3460 if (lock
->lk_is_new
) {
3462 * Client indicates that this is a new lockowner.
3463 * Use open owner and open stateid to create lock owner and
3466 struct nfs4_stateid
*open_stp
= NULL
;
3467 struct nfs4_file
*fp
;
3469 status
= nfserr_stale_clientid
;
3470 if (!nfsd4_has_session(cstate
) &&
3471 STALE_CLIENTID(&lock
->lk_new_clientid
))
3474 /* validate and update open stateid and open seqid */
3475 status
= nfs4_preprocess_seqid_op(cstate
,
3476 lock
->lk_new_open_seqid
,
3477 &lock
->lk_new_open_stateid
,
3479 &lock
->lk_replay_owner
, &open_stp
,
3483 open_sop
= lock
->lk_replay_owner
;
3484 /* create lockowner and lock stateid */
3485 fp
= open_stp
->st_file
;
3486 strhashval
= lock_ownerstr_hashval(fp
->fi_inode
,
3487 open_sop
->so_client
->cl_clientid
.cl_id
,
3488 &lock
->v
.new.owner
);
3489 /* XXX: Do we need to check for duplicate stateowners on
3490 * the same file, or should they just be allowed (and
3491 * create new stateids)? */
3492 status
= nfserr_resource
;
3493 lock_sop
= alloc_init_lock_stateowner(strhashval
,
3494 open_sop
->so_client
, open_stp
, lock
);
3495 if (lock_sop
== NULL
)
3497 lock_stp
= alloc_init_lock_stateid(lock_sop
, fp
, open_stp
);
3498 if (lock_stp
== NULL
)
3501 /* lock (lock owner + lock stateid) already exists */
3502 status
= nfs4_preprocess_seqid_op(cstate
,
3503 lock
->lk_old_lock_seqid
,
3504 &lock
->lk_old_lock_stateid
,
3506 &lock
->lk_replay_owner
, &lock_stp
, lock
);
3509 lock_sop
= lock
->lk_replay_owner
;
3511 /* lock->lk_replay_owner and lock_stp have been created or found */
3512 filp
= lock_stp
->st_vfs_file
;
3514 status
= nfserr_grace
;
3515 if (locks_in_grace() && !lock
->lk_reclaim
)
3517 status
= nfserr_no_grace
;
3518 if (!locks_in_grace() && lock
->lk_reclaim
)
3521 locks_init_lock(&file_lock
);
3522 switch (lock
->lk_type
) {
3525 file_lock
.fl_type
= F_RDLCK
;
3529 case NFS4_WRITEW_LT
:
3530 file_lock
.fl_type
= F_WRLCK
;
3534 status
= nfserr_inval
;
3537 file_lock
.fl_owner
= (fl_owner_t
)lock_sop
;
3538 file_lock
.fl_pid
= current
->tgid
;
3539 file_lock
.fl_file
= filp
;
3540 file_lock
.fl_flags
= FL_POSIX
;
3541 file_lock
.fl_lmops
= &nfsd_posix_mng_ops
;
3543 file_lock
.fl_start
= lock
->lk_offset
;
3544 file_lock
.fl_end
= last_byte_offset(lock
->lk_offset
, lock
->lk_length
);
3545 nfs4_transform_lock_offset(&file_lock
);
3548 * Try to lock the file in the VFS.
3549 * Note: locks.c uses the BKL to protect the inode's lock list.
3552 err
= vfs_lock_file(filp
, cmd
, &file_lock
, &conflock
);
3554 case 0: /* success! */
3555 update_stateid(&lock_stp
->st_stateid
);
3556 memcpy(&lock
->lk_resp_stateid
, &lock_stp
->st_stateid
,
3560 case (EAGAIN
): /* conflock holds conflicting lock */
3561 status
= nfserr_denied
;
3562 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
3563 nfs4_set_lock_denied(&conflock
, &lock
->lk_denied
);
3566 status
= nfserr_deadlock
;
3569 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err
);
3570 status
= nfserr_resource
;
3574 if (status
&& lock
->lk_is_new
&& lock_sop
)
3575 release_lockowner(lock_sop
);
3576 if (lock
->lk_replay_owner
) {
3577 nfs4_get_stateowner(lock
->lk_replay_owner
);
3578 cstate
->replay_owner
= lock
->lk_replay_owner
;
3580 nfs4_unlock_state();
3585 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
3586 * so we do a temporary open here just to get an open file to pass to
3587 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
3590 static int nfsd_test_lock(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file_lock
*lock
)
3595 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, NFSD_MAY_READ
, &file
);
3598 err
= vfs_test_lock(file
, lock
);
3607 nfsd4_lockt(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
3608 struct nfsd4_lockt
*lockt
)
3610 struct inode
*inode
;
3611 struct file_lock file_lock
;
3615 if (locks_in_grace())
3616 return nfserr_grace
;
3618 if (check_lock_length(lockt
->lt_offset
, lockt
->lt_length
))
3619 return nfserr_inval
;
3621 lockt
->lt_stateowner
= NULL
;
3624 status
= nfserr_stale_clientid
;
3625 if (!nfsd4_has_session(cstate
) && STALE_CLIENTID(&lockt
->lt_clientid
))
3628 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0))) {
3629 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
3630 if (status
== nfserr_symlink
)
3631 status
= nfserr_inval
;
3635 inode
= cstate
->current_fh
.fh_dentry
->d_inode
;
3636 locks_init_lock(&file_lock
);
3637 switch (lockt
->lt_type
) {
3640 file_lock
.fl_type
= F_RDLCK
;
3643 case NFS4_WRITEW_LT
:
3644 file_lock
.fl_type
= F_WRLCK
;
3647 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
3648 status
= nfserr_inval
;
3652 lockt
->lt_stateowner
= find_lockstateowner_str(inode
,
3653 &lockt
->lt_clientid
, &lockt
->lt_owner
);
3654 if (lockt
->lt_stateowner
)
3655 file_lock
.fl_owner
= (fl_owner_t
)lockt
->lt_stateowner
;
3656 file_lock
.fl_pid
= current
->tgid
;
3657 file_lock
.fl_flags
= FL_POSIX
;
3659 file_lock
.fl_start
= lockt
->lt_offset
;
3660 file_lock
.fl_end
= last_byte_offset(lockt
->lt_offset
, lockt
->lt_length
);
3662 nfs4_transform_lock_offset(&file_lock
);
3665 error
= nfsd_test_lock(rqstp
, &cstate
->current_fh
, &file_lock
);
3667 status
= nfserrno(error
);
3670 if (file_lock
.fl_type
!= F_UNLCK
) {
3671 status
= nfserr_denied
;
3672 nfs4_set_lock_denied(&file_lock
, &lockt
->lt_denied
);
3675 nfs4_unlock_state();
3680 nfsd4_locku(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
3681 struct nfsd4_locku
*locku
)
3683 struct nfs4_stateid
*stp
;
3684 struct file
*filp
= NULL
;
3685 struct file_lock file_lock
;
3689 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
3690 (long long) locku
->lu_offset
,
3691 (long long) locku
->lu_length
);
3693 if (check_lock_length(locku
->lu_offset
, locku
->lu_length
))
3694 return nfserr_inval
;
3698 if ((status
= nfs4_preprocess_seqid_op(cstate
,
3702 &locku
->lu_stateowner
, &stp
, NULL
)))
3705 filp
= stp
->st_vfs_file
;
3707 locks_init_lock(&file_lock
);
3708 file_lock
.fl_type
= F_UNLCK
;
3709 file_lock
.fl_owner
= (fl_owner_t
) locku
->lu_stateowner
;
3710 file_lock
.fl_pid
= current
->tgid
;
3711 file_lock
.fl_file
= filp
;
3712 file_lock
.fl_flags
= FL_POSIX
;
3713 file_lock
.fl_lmops
= &nfsd_posix_mng_ops
;
3714 file_lock
.fl_start
= locku
->lu_offset
;
3716 file_lock
.fl_end
= last_byte_offset(locku
->lu_offset
, locku
->lu_length
);
3717 nfs4_transform_lock_offset(&file_lock
);
3720 * Try to unlock the file in the VFS.
3722 err
= vfs_lock_file(filp
, F_SETLK
, &file_lock
, NULL
);
3724 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
3728 * OK, unlock succeeded; the only thing left to do is update the stateid.
3730 update_stateid(&stp
->st_stateid
);
3731 memcpy(&locku
->lu_stateid
, &stp
->st_stateid
, sizeof(stateid_t
));
3734 if (locku
->lu_stateowner
) {
3735 nfs4_get_stateowner(locku
->lu_stateowner
);
3736 cstate
->replay_owner
= locku
->lu_stateowner
;
3738 nfs4_unlock_state();
3742 status
= nfserrno(err
);
3748 * 1: locks held by lockowner
3749 * 0: no locks held by lockowner
3752 check_for_locks(struct file
*filp
, struct nfs4_stateowner
*lowner
)
3754 struct file_lock
**flpp
;
3755 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
3759 for (flpp
= &inode
->i_flock
; *flpp
!= NULL
; flpp
= &(*flpp
)->fl_next
) {
3760 if ((*flpp
)->fl_owner
== (fl_owner_t
)lowner
) {
3771 nfsd4_release_lockowner(struct svc_rqst
*rqstp
,
3772 struct nfsd4_compound_state
*cstate
,
3773 struct nfsd4_release_lockowner
*rlockowner
)
3775 clientid_t
*clid
= &rlockowner
->rl_clientid
;
3776 struct nfs4_stateowner
*sop
;
3777 struct nfs4_stateid
*stp
;
3778 struct xdr_netobj
*owner
= &rlockowner
->rl_owner
;
3779 struct list_head matches
;
3783 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3784 clid
->cl_boot
, clid
->cl_id
);
3786 /* XXX check for lease expiration */
3788 status
= nfserr_stale_clientid
;
3789 if (STALE_CLIENTID(clid
))
3794 status
= nfserr_locks_held
;
3795 /* XXX: we're doing a linear search through all the lockowners.
3796 * Yipes! For now we'll just hope clients aren't really using
3797 * release_lockowner much, but eventually we have to fix these
3798 * data structures. */
3799 INIT_LIST_HEAD(&matches
);
3800 for (i
= 0; i
< LOCK_HASH_SIZE
; i
++) {
3801 list_for_each_entry(sop
, &lock_ownerid_hashtbl
[i
], so_idhash
) {
3802 if (!same_owner_str(sop
, owner
, clid
))
3804 list_for_each_entry(stp
, &sop
->so_stateids
,
3806 if (check_for_locks(stp
->st_vfs_file
, sop
))
3808 /* Note: so_perclient unused for lockowners,
3809 * so it's OK to fool with here. */
3810 list_add(&sop
->so_perclient
, &matches
);
3814 /* Clients probably won't expect us to return with some (but not all)
3815 * of the lockowner state released; so don't release any until all
3816 * have been checked. */
3818 while (!list_empty(&matches
)) {
3819 sop
= list_entry(matches
.next
, struct nfs4_stateowner
,
3821 /* unhash_stateowner deletes so_perclient only
3822 * for openowners. */
3823 list_del(&sop
->so_perclient
);
3824 release_lockowner(sop
);
3827 nfs4_unlock_state();
3831 static inline struct nfs4_client_reclaim
*
3834 return kmalloc(sizeof(struct nfs4_client_reclaim
), GFP_KERNEL
);
3838 nfs4_has_reclaimed_state(const char *name
, bool use_exchange_id
)
3840 unsigned int strhashval
= clientstr_hashval(name
);
3841 struct nfs4_client
*clp
;
3843 clp
= find_confirmed_client_by_str(name
, strhashval
, use_exchange_id
);
3848 * failure => all reset bets are off, nfserr_no_grace...
3851 nfs4_client_to_reclaim(const char *name
)
3853 unsigned int strhashval
;
3854 struct nfs4_client_reclaim
*crp
= NULL
;
3856 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN
, name
);
3857 crp
= alloc_reclaim();
3860 strhashval
= clientstr_hashval(name
);
3861 INIT_LIST_HEAD(&crp
->cr_strhash
);
3862 list_add(&crp
->cr_strhash
, &reclaim_str_hashtbl
[strhashval
]);
3863 memcpy(crp
->cr_recdir
, name
, HEXDIR_LEN
);
3864 reclaim_str_hashtbl_size
++;
3869 nfs4_release_reclaim(void)
3871 struct nfs4_client_reclaim
*crp
= NULL
;
3874 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
3875 while (!list_empty(&reclaim_str_hashtbl
[i
])) {
3876 crp
= list_entry(reclaim_str_hashtbl
[i
].next
,
3877 struct nfs4_client_reclaim
, cr_strhash
);
3878 list_del(&crp
->cr_strhash
);
3880 reclaim_str_hashtbl_size
--;
3883 BUG_ON(reclaim_str_hashtbl_size
);
3887 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
3888 static struct nfs4_client_reclaim
*
3889 nfs4_find_reclaim_client(clientid_t
*clid
)
3891 unsigned int strhashval
;
3892 struct nfs4_client
*clp
;
3893 struct nfs4_client_reclaim
*crp
= NULL
;
3896 /* find clientid in conf_id_hashtbl */
3897 clp
= find_confirmed_client(clid
);
3901 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3902 clp
->cl_name
.len
, clp
->cl_name
.data
,
3905 /* find clp->cl_name in reclaim_str_hashtbl */
3906 strhashval
= clientstr_hashval(clp
->cl_recdir
);
3907 list_for_each_entry(crp
, &reclaim_str_hashtbl
[strhashval
], cr_strhash
) {
3908 if (same_name(crp
->cr_recdir
, clp
->cl_recdir
)) {
3916 * Called from OPEN. Look for clientid in reclaim list.
3919 nfs4_check_open_reclaim(clientid_t
*clid
)
3921 return nfs4_find_reclaim_client(clid
) ? nfs_ok
: nfserr_reclaim_bad
;
3924 /* initialization to perform at module load time: */
3927 nfs4_state_init(void)
3931 status
= nfsd4_init_slabs();
3934 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
3935 INIT_LIST_HEAD(&conf_id_hashtbl
[i
]);
3936 INIT_LIST_HEAD(&conf_str_hashtbl
[i
]);
3937 INIT_LIST_HEAD(&unconf_str_hashtbl
[i
]);
3938 INIT_LIST_HEAD(&unconf_id_hashtbl
[i
]);
3939 INIT_LIST_HEAD(&reclaim_str_hashtbl
[i
]);
3941 for (i
= 0; i
< SESSION_HASH_SIZE
; i
++)
3942 INIT_LIST_HEAD(&sessionid_hashtbl
[i
]);
3943 for (i
= 0; i
< FILE_HASH_SIZE
; i
++) {
3944 INIT_LIST_HEAD(&file_hashtbl
[i
]);
3946 for (i
= 0; i
< OWNER_HASH_SIZE
; i
++) {
3947 INIT_LIST_HEAD(&ownerstr_hashtbl
[i
]);
3948 INIT_LIST_HEAD(&ownerid_hashtbl
[i
]);
3950 for (i
= 0; i
< STATEID_HASH_SIZE
; i
++) {
3951 INIT_LIST_HEAD(&stateid_hashtbl
[i
]);
3952 INIT_LIST_HEAD(&lockstateid_hashtbl
[i
]);
3954 for (i
= 0; i
< LOCK_HASH_SIZE
; i
++) {
3955 INIT_LIST_HEAD(&lock_ownerid_hashtbl
[i
]);
3956 INIT_LIST_HEAD(&lock_ownerstr_hashtbl
[i
]);
3958 memset(&onestateid
, ~0, sizeof(stateid_t
));
3959 INIT_LIST_HEAD(&close_lru
);
3960 INIT_LIST_HEAD(&client_lru
);
3961 INIT_LIST_HEAD(&del_recall_lru
);
3962 reclaim_str_hashtbl_size
= 0;
3967 nfsd4_load_reboot_recovery_data(void)
3972 nfsd4_init_recdir(user_recovery_dirname
);
3973 status
= nfsd4_recdir_load();
3974 nfs4_unlock_state();
3976 printk("NFSD: Failure reading reboot recovery data\n");
3980 get_nfs4_grace_period(void)
3982 return max(user_lease_time
, lease_time
) * HZ
;
3986 * Since the lifetime of a delegation isn't limited to that of an open, a
3987 * client may quite reasonably hang on to a delegation as long as it has
3988 * the inode cached. This becomes an obvious problem the first time a
3989 * client's inode cache approaches the size of the server's total memory.
3991 * For now we avoid this problem by imposing a hard limit on the number
3992 * of delegations, which varies according to the server's memory size.
3995 set_max_delegations(void)
3998 * Allow at most 4 delegations per megabyte of RAM. Quick
3999 * estimates suggest that in the worst case (where every delegation
4000 * is for a different inode), a delegation could take about 1.5K,
4001 * giving a worst case usage of about 6% of memory.
4003 max_delegations
= nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT
);
4006 /* initialization to perform when the nfsd service is started: */
4009 __nfs4_state_start(void)
4011 unsigned long grace_time
;
4013 boot_time
= get_seconds();
4014 grace_time
= get_nfs4_grace_period();
4015 lease_time
= user_lease_time
;
4016 locks_start_grace(&nfsd4_manager
);
4017 printk(KERN_INFO
"NFSD: starting %ld-second grace period\n",
4019 laundry_wq
= create_singlethread_workqueue("nfsd4");
4020 if (laundry_wq
== NULL
)
4022 queue_delayed_work(laundry_wq
, &laundromat_work
, grace_time
);
4023 set_max_delegations();
4024 return set_callback_cred();
4028 nfs4_state_start(void)
4034 nfsd4_load_reboot_recovery_data();
4035 ret
= __nfs4_state_start();
4043 nfs4_lease_time(void)
4049 __nfs4_state_shutdown(void)
4052 struct nfs4_client
*clp
= NULL
;
4053 struct nfs4_delegation
*dp
= NULL
;
4054 struct list_head
*pos
, *next
, reaplist
;
4056 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
4057 while (!list_empty(&conf_id_hashtbl
[i
])) {
4058 clp
= list_entry(conf_id_hashtbl
[i
].next
, struct nfs4_client
, cl_idhash
);
4061 while (!list_empty(&unconf_str_hashtbl
[i
])) {
4062 clp
= list_entry(unconf_str_hashtbl
[i
].next
, struct nfs4_client
, cl_strhash
);
4066 INIT_LIST_HEAD(&reaplist
);
4067 spin_lock(&recall_lock
);
4068 list_for_each_safe(pos
, next
, &del_recall_lru
) {
4069 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
4070 list_move(&dp
->dl_recall_lru
, &reaplist
);
4072 spin_unlock(&recall_lock
);
4073 list_for_each_safe(pos
, next
, &reaplist
) {
4074 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
4075 list_del_init(&dp
->dl_recall_lru
);
4076 unhash_delegation(dp
);
4079 nfsd4_shutdown_recdir();
4084 nfs4_state_shutdown(void)
4086 cancel_rearming_delayed_workqueue(laundry_wq
, &laundromat_work
);
4087 destroy_workqueue(laundry_wq
);
4088 locks_end_grace(&nfsd4_manager
);
4090 nfs4_release_reclaim();
4091 __nfs4_state_shutdown();
4092 nfs4_unlock_state();
4096 * user_recovery_dirname is protected by the nfsd_mutex since it's only
4097 * accessed when nfsd is starting.
4100 nfs4_set_recdir(char *recdir
)
4102 strcpy(user_recovery_dirname
, recdir
);
4106 * Change the NFSv4 recovery directory to recdir.
4109 nfs4_reset_recoverydir(char *recdir
)
4114 status
= kern_path(recdir
, LOOKUP_FOLLOW
, &path
);
4118 if (S_ISDIR(path
.dentry
->d_inode
->i_mode
)) {
4119 nfs4_set_recdir(recdir
);
4127 nfs4_recoverydir(void)
4129 return user_recovery_dirname
;
4133 * Called when leasetime is changed.
4135 * The only way the protocol gives us to handle on-the-fly lease changes is to
4136 * simulate a reboot. Instead of doing that, we just wait till the next time
4137 * we start to register any changes in lease time. If the administrator
4138 * really wants to change the lease time *now*, they can go ahead and bring
4139 * nfsd down and then back up again after changing the lease time.
4141 * user_lease_time is protected by nfsd_mutex since it's only really accessed
4142 * when nfsd is starting
4145 nfs4_reset_lease(time_t leasetime
)
4147 user_lease_time
= leasetime
;