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>
37 #include <linux/slab.h>
38 #include <linux/namei.h>
39 #include <linux/swap.h>
40 #include <linux/pagemap.h>
41 #include <linux/ratelimit.h>
42 #include <linux/sunrpc/svcauth_gss.h>
43 #include <linux/sunrpc/addr.h>
44 #include <linux/jhash.h>
48 #include "current_stateid.h"
53 #define NFSDDBG_FACILITY NFSDDBG_PROC
55 #define all_ones {{~0,~0},~0}
56 static const stateid_t one_stateid
= {
58 .si_opaque
= all_ones
,
60 static const stateid_t zero_stateid
= {
63 static const stateid_t currentstateid
= {
67 static u64 current_sessionid
= 1;
69 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
70 #define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
71 #define CURRENT_STATEID(stateid) (!memcmp((stateid), ¤tstateid, sizeof(stateid_t)))
73 /* forward declarations */
74 static bool check_for_locks(struct nfs4_file
*fp
, struct nfs4_lockowner
*lowner
);
75 static void nfs4_free_ol_stateid(struct nfs4_stid
*stid
);
80 * Currently used for the del_recall_lru and file hash table. In an
81 * effort to decrease the scope of the client_mutex, this spinlock may
82 * eventually cover more:
84 static DEFINE_SPINLOCK(state_lock
);
87 * A waitqueue for all in-progress 4.0 CLOSE operations that are waiting for
88 * the refcount on the open stateid to drop.
90 static DECLARE_WAIT_QUEUE_HEAD(close_wq
);
92 static struct kmem_cache
*openowner_slab
;
93 static struct kmem_cache
*lockowner_slab
;
94 static struct kmem_cache
*file_slab
;
95 static struct kmem_cache
*stateid_slab
;
96 static struct kmem_cache
*deleg_slab
;
97 static struct kmem_cache
*odstate_slab
;
99 static void free_session(struct nfsd4_session
*);
101 static const struct nfsd4_callback_ops nfsd4_cb_recall_ops
;
102 static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops
;
104 static bool is_session_dead(struct nfsd4_session
*ses
)
106 return ses
->se_flags
& NFS4_SESSION_DEAD
;
109 static __be32
mark_session_dead_locked(struct nfsd4_session
*ses
, int ref_held_by_me
)
111 if (atomic_read(&ses
->se_ref
) > ref_held_by_me
)
112 return nfserr_jukebox
;
113 ses
->se_flags
|= NFS4_SESSION_DEAD
;
117 static bool is_client_expired(struct nfs4_client
*clp
)
119 return clp
->cl_time
== 0;
122 static __be32
get_client_locked(struct nfs4_client
*clp
)
124 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
126 lockdep_assert_held(&nn
->client_lock
);
128 if (is_client_expired(clp
))
129 return nfserr_expired
;
130 atomic_inc(&clp
->cl_refcount
);
134 /* must be called under the client_lock */
136 renew_client_locked(struct nfs4_client
*clp
)
138 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
140 if (is_client_expired(clp
)) {
142 printk("%s: client (clientid %08x/%08x) already expired\n",
144 clp
->cl_clientid
.cl_boot
,
145 clp
->cl_clientid
.cl_id
);
149 dprintk("renewing client (clientid %08x/%08x)\n",
150 clp
->cl_clientid
.cl_boot
,
151 clp
->cl_clientid
.cl_id
);
152 list_move_tail(&clp
->cl_lru
, &nn
->client_lru
);
153 clp
->cl_time
= get_seconds();
156 static void put_client_renew_locked(struct nfs4_client
*clp
)
158 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
160 lockdep_assert_held(&nn
->client_lock
);
162 if (!atomic_dec_and_test(&clp
->cl_refcount
))
164 if (!is_client_expired(clp
))
165 renew_client_locked(clp
);
168 static void put_client_renew(struct nfs4_client
*clp
)
170 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
172 if (!atomic_dec_and_lock(&clp
->cl_refcount
, &nn
->client_lock
))
174 if (!is_client_expired(clp
))
175 renew_client_locked(clp
);
176 spin_unlock(&nn
->client_lock
);
179 static __be32
nfsd4_get_session_locked(struct nfsd4_session
*ses
)
183 if (is_session_dead(ses
))
184 return nfserr_badsession
;
185 status
= get_client_locked(ses
->se_client
);
188 atomic_inc(&ses
->se_ref
);
192 static void nfsd4_put_session_locked(struct nfsd4_session
*ses
)
194 struct nfs4_client
*clp
= ses
->se_client
;
195 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
197 lockdep_assert_held(&nn
->client_lock
);
199 if (atomic_dec_and_test(&ses
->se_ref
) && is_session_dead(ses
))
201 put_client_renew_locked(clp
);
204 static void nfsd4_put_session(struct nfsd4_session
*ses
)
206 struct nfs4_client
*clp
= ses
->se_client
;
207 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
209 spin_lock(&nn
->client_lock
);
210 nfsd4_put_session_locked(ses
);
211 spin_unlock(&nn
->client_lock
);
214 static struct nfsd4_blocked_lock
*
215 find_blocked_lock(struct nfs4_lockowner
*lo
, struct knfsd_fh
*fh
,
218 struct nfsd4_blocked_lock
*cur
, *found
= NULL
;
220 spin_lock(&nn
->blocked_locks_lock
);
221 list_for_each_entry(cur
, &lo
->lo_blocked
, nbl_list
) {
222 if (fh_match(fh
, &cur
->nbl_fh
)) {
223 list_del_init(&cur
->nbl_list
);
224 list_del_init(&cur
->nbl_lru
);
229 spin_unlock(&nn
->blocked_locks_lock
);
231 posix_unblock_lock(&found
->nbl_lock
);
235 static struct nfsd4_blocked_lock
*
236 find_or_allocate_block(struct nfs4_lockowner
*lo
, struct knfsd_fh
*fh
,
239 struct nfsd4_blocked_lock
*nbl
;
241 nbl
= find_blocked_lock(lo
, fh
, nn
);
243 nbl
= kmalloc(sizeof(*nbl
), GFP_KERNEL
);
245 fh_copy_shallow(&nbl
->nbl_fh
, fh
);
246 locks_init_lock(&nbl
->nbl_lock
);
247 nfsd4_init_cb(&nbl
->nbl_cb
, lo
->lo_owner
.so_client
,
248 &nfsd4_cb_notify_lock_ops
,
249 NFSPROC4_CLNT_CB_NOTIFY_LOCK
);
256 free_blocked_lock(struct nfsd4_blocked_lock
*nbl
)
258 locks_release_private(&nbl
->nbl_lock
);
263 nfsd4_cb_notify_lock_done(struct nfsd4_callback
*cb
, struct rpc_task
*task
)
266 * Since this is just an optimization, we don't try very hard if it
267 * turns out not to succeed. We'll requeue it on NFS4ERR_DELAY, and
268 * just quit trying on anything else.
270 switch (task
->tk_status
) {
272 rpc_delay(task
, 1 * HZ
);
280 nfsd4_cb_notify_lock_release(struct nfsd4_callback
*cb
)
282 struct nfsd4_blocked_lock
*nbl
= container_of(cb
,
283 struct nfsd4_blocked_lock
, nbl_cb
);
285 free_blocked_lock(nbl
);
288 static const struct nfsd4_callback_ops nfsd4_cb_notify_lock_ops
= {
289 .done
= nfsd4_cb_notify_lock_done
,
290 .release
= nfsd4_cb_notify_lock_release
,
293 static inline struct nfs4_stateowner
*
294 nfs4_get_stateowner(struct nfs4_stateowner
*sop
)
296 atomic_inc(&sop
->so_count
);
301 same_owner_str(struct nfs4_stateowner
*sop
, struct xdr_netobj
*owner
)
303 return (sop
->so_owner
.len
== owner
->len
) &&
304 0 == memcmp(sop
->so_owner
.data
, owner
->data
, owner
->len
);
307 static struct nfs4_openowner
*
308 find_openstateowner_str_locked(unsigned int hashval
, struct nfsd4_open
*open
,
309 struct nfs4_client
*clp
)
311 struct nfs4_stateowner
*so
;
313 lockdep_assert_held(&clp
->cl_lock
);
315 list_for_each_entry(so
, &clp
->cl_ownerstr_hashtbl
[hashval
],
317 if (!so
->so_is_open_owner
)
319 if (same_owner_str(so
, &open
->op_owner
))
320 return openowner(nfs4_get_stateowner(so
));
325 static struct nfs4_openowner
*
326 find_openstateowner_str(unsigned int hashval
, struct nfsd4_open
*open
,
327 struct nfs4_client
*clp
)
329 struct nfs4_openowner
*oo
;
331 spin_lock(&clp
->cl_lock
);
332 oo
= find_openstateowner_str_locked(hashval
, open
, clp
);
333 spin_unlock(&clp
->cl_lock
);
338 opaque_hashval(const void *ptr
, int nbytes
)
340 unsigned char *cptr
= (unsigned char *) ptr
;
350 static void nfsd4_free_file_rcu(struct rcu_head
*rcu
)
352 struct nfs4_file
*fp
= container_of(rcu
, struct nfs4_file
, fi_rcu
);
354 kmem_cache_free(file_slab
, fp
);
358 put_nfs4_file(struct nfs4_file
*fi
)
360 might_lock(&state_lock
);
362 if (atomic_dec_and_lock(&fi
->fi_ref
, &state_lock
)) {
363 hlist_del_rcu(&fi
->fi_hash
);
364 spin_unlock(&state_lock
);
365 WARN_ON_ONCE(!list_empty(&fi
->fi_clnt_odstate
));
366 WARN_ON_ONCE(!list_empty(&fi
->fi_delegations
));
367 call_rcu(&fi
->fi_rcu
, nfsd4_free_file_rcu
);
372 __nfs4_get_fd(struct nfs4_file
*f
, int oflag
)
374 if (f
->fi_fds
[oflag
])
375 return get_file(f
->fi_fds
[oflag
]);
380 find_writeable_file_locked(struct nfs4_file
*f
)
384 lockdep_assert_held(&f
->fi_lock
);
386 ret
= __nfs4_get_fd(f
, O_WRONLY
);
388 ret
= __nfs4_get_fd(f
, O_RDWR
);
393 find_writeable_file(struct nfs4_file
*f
)
397 spin_lock(&f
->fi_lock
);
398 ret
= find_writeable_file_locked(f
);
399 spin_unlock(&f
->fi_lock
);
404 static struct file
*find_readable_file_locked(struct nfs4_file
*f
)
408 lockdep_assert_held(&f
->fi_lock
);
410 ret
= __nfs4_get_fd(f
, O_RDONLY
);
412 ret
= __nfs4_get_fd(f
, O_RDWR
);
417 find_readable_file(struct nfs4_file
*f
)
421 spin_lock(&f
->fi_lock
);
422 ret
= find_readable_file_locked(f
);
423 spin_unlock(&f
->fi_lock
);
429 find_any_file(struct nfs4_file
*f
)
433 spin_lock(&f
->fi_lock
);
434 ret
= __nfs4_get_fd(f
, O_RDWR
);
436 ret
= __nfs4_get_fd(f
, O_WRONLY
);
438 ret
= __nfs4_get_fd(f
, O_RDONLY
);
440 spin_unlock(&f
->fi_lock
);
444 static atomic_long_t num_delegations
;
445 unsigned long max_delegations
;
448 * Open owner state (share locks)
451 /* hash tables for lock and open owners */
452 #define OWNER_HASH_BITS 8
453 #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
454 #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
456 static unsigned int ownerstr_hashval(struct xdr_netobj
*ownername
)
460 ret
= opaque_hashval(ownername
->data
, ownername
->len
);
461 return ret
& OWNER_HASH_MASK
;
464 /* hash table for nfs4_file */
465 #define FILE_HASH_BITS 8
466 #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
468 static unsigned int nfsd_fh_hashval(struct knfsd_fh
*fh
)
470 return jhash2(fh
->fh_base
.fh_pad
, XDR_QUADLEN(fh
->fh_size
), 0);
473 static unsigned int file_hashval(struct knfsd_fh
*fh
)
475 return nfsd_fh_hashval(fh
) & (FILE_HASH_SIZE
- 1);
478 static struct hlist_head file_hashtbl
[FILE_HASH_SIZE
];
481 __nfs4_file_get_access(struct nfs4_file
*fp
, u32 access
)
483 lockdep_assert_held(&fp
->fi_lock
);
485 if (access
& NFS4_SHARE_ACCESS_WRITE
)
486 atomic_inc(&fp
->fi_access
[O_WRONLY
]);
487 if (access
& NFS4_SHARE_ACCESS_READ
)
488 atomic_inc(&fp
->fi_access
[O_RDONLY
]);
492 nfs4_file_get_access(struct nfs4_file
*fp
, u32 access
)
494 lockdep_assert_held(&fp
->fi_lock
);
496 /* Does this access mode make sense? */
497 if (access
& ~NFS4_SHARE_ACCESS_BOTH
)
500 /* Does it conflict with a deny mode already set? */
501 if ((access
& fp
->fi_share_deny
) != 0)
502 return nfserr_share_denied
;
504 __nfs4_file_get_access(fp
, access
);
508 static __be32
nfs4_file_check_deny(struct nfs4_file
*fp
, u32 deny
)
510 /* Common case is that there is no deny mode. */
512 /* Does this deny mode make sense? */
513 if (deny
& ~NFS4_SHARE_DENY_BOTH
)
516 if ((deny
& NFS4_SHARE_DENY_READ
) &&
517 atomic_read(&fp
->fi_access
[O_RDONLY
]))
518 return nfserr_share_denied
;
520 if ((deny
& NFS4_SHARE_DENY_WRITE
) &&
521 atomic_read(&fp
->fi_access
[O_WRONLY
]))
522 return nfserr_share_denied
;
527 static void __nfs4_file_put_access(struct nfs4_file
*fp
, int oflag
)
529 might_lock(&fp
->fi_lock
);
531 if (atomic_dec_and_lock(&fp
->fi_access
[oflag
], &fp
->fi_lock
)) {
532 struct file
*f1
= NULL
;
533 struct file
*f2
= NULL
;
535 swap(f1
, fp
->fi_fds
[oflag
]);
536 if (atomic_read(&fp
->fi_access
[1 - oflag
]) == 0)
537 swap(f2
, fp
->fi_fds
[O_RDWR
]);
538 spin_unlock(&fp
->fi_lock
);
546 static void nfs4_file_put_access(struct nfs4_file
*fp
, u32 access
)
548 WARN_ON_ONCE(access
& ~NFS4_SHARE_ACCESS_BOTH
);
550 if (access
& NFS4_SHARE_ACCESS_WRITE
)
551 __nfs4_file_put_access(fp
, O_WRONLY
);
552 if (access
& NFS4_SHARE_ACCESS_READ
)
553 __nfs4_file_put_access(fp
, O_RDONLY
);
557 * Allocate a new open/delegation state counter. This is needed for
558 * pNFS for proper return on close semantics.
560 * Note that we only allocate it for pNFS-enabled exports, otherwise
561 * all pointers to struct nfs4_clnt_odstate are always NULL.
563 static struct nfs4_clnt_odstate
*
564 alloc_clnt_odstate(struct nfs4_client
*clp
)
566 struct nfs4_clnt_odstate
*co
;
568 co
= kmem_cache_zalloc(odstate_slab
, GFP_KERNEL
);
571 atomic_set(&co
->co_odcount
, 1);
577 hash_clnt_odstate_locked(struct nfs4_clnt_odstate
*co
)
579 struct nfs4_file
*fp
= co
->co_file
;
581 lockdep_assert_held(&fp
->fi_lock
);
582 list_add(&co
->co_perfile
, &fp
->fi_clnt_odstate
);
586 get_clnt_odstate(struct nfs4_clnt_odstate
*co
)
589 atomic_inc(&co
->co_odcount
);
593 put_clnt_odstate(struct nfs4_clnt_odstate
*co
)
595 struct nfs4_file
*fp
;
601 if (atomic_dec_and_lock(&co
->co_odcount
, &fp
->fi_lock
)) {
602 list_del(&co
->co_perfile
);
603 spin_unlock(&fp
->fi_lock
);
605 nfsd4_return_all_file_layouts(co
->co_client
, fp
);
606 kmem_cache_free(odstate_slab
, co
);
610 static struct nfs4_clnt_odstate
*
611 find_or_hash_clnt_odstate(struct nfs4_file
*fp
, struct nfs4_clnt_odstate
*new)
613 struct nfs4_clnt_odstate
*co
;
614 struct nfs4_client
*cl
;
621 spin_lock(&fp
->fi_lock
);
622 list_for_each_entry(co
, &fp
->fi_clnt_odstate
, co_perfile
) {
623 if (co
->co_client
== cl
) {
624 get_clnt_odstate(co
);
630 hash_clnt_odstate_locked(new);
632 spin_unlock(&fp
->fi_lock
);
636 struct nfs4_stid
*nfs4_alloc_stid(struct nfs4_client
*cl
,
637 struct kmem_cache
*slab
)
639 struct nfs4_stid
*stid
;
642 stid
= kmem_cache_zalloc(slab
, GFP_KERNEL
);
646 idr_preload(GFP_KERNEL
);
647 spin_lock(&cl
->cl_lock
);
648 new_id
= idr_alloc_cyclic(&cl
->cl_stateids
, stid
, 0, 0, GFP_NOWAIT
);
649 spin_unlock(&cl
->cl_lock
);
653 stid
->sc_client
= cl
;
654 stid
->sc_stateid
.si_opaque
.so_id
= new_id
;
655 stid
->sc_stateid
.si_opaque
.so_clid
= cl
->cl_clientid
;
656 /* Will be incremented before return to client: */
657 atomic_set(&stid
->sc_count
, 1);
658 spin_lock_init(&stid
->sc_lock
);
661 * It shouldn't be a problem to reuse an opaque stateid value.
662 * I don't think it is for 4.1. But with 4.0 I worry that, for
663 * example, a stray write retransmission could be accepted by
664 * the server when it should have been rejected. Therefore,
665 * adopt a trick from the sctp code to attempt to maximize the
666 * amount of time until an id is reused, by ensuring they always
667 * "increase" (mod INT_MAX):
671 kmem_cache_free(slab
, stid
);
675 static struct nfs4_ol_stateid
* nfs4_alloc_open_stateid(struct nfs4_client
*clp
)
677 struct nfs4_stid
*stid
;
678 struct nfs4_ol_stateid
*stp
;
680 stid
= nfs4_alloc_stid(clp
, stateid_slab
);
684 stp
= openlockstateid(stid
);
685 stp
->st_stid
.sc_free
= nfs4_free_ol_stateid
;
689 static void nfs4_free_deleg(struct nfs4_stid
*stid
)
691 kmem_cache_free(deleg_slab
, stid
);
692 atomic_long_dec(&num_delegations
);
696 * When we recall a delegation, we should be careful not to hand it
697 * out again straight away.
698 * To ensure this we keep a pair of bloom filters ('new' and 'old')
699 * in which the filehandles of recalled delegations are "stored".
700 * If a filehandle appear in either filter, a delegation is blocked.
701 * When a delegation is recalled, the filehandle is stored in the "new"
703 * Every 30 seconds we swap the filters and clear the "new" one,
704 * unless both are empty of course.
706 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
707 * low 3 bytes as hash-table indices.
709 * 'blocked_delegations_lock', which is always taken in block_delegations(),
710 * is used to manage concurrent access. Testing does not need the lock
711 * except when swapping the two filters.
713 static DEFINE_SPINLOCK(blocked_delegations_lock
);
714 static struct bloom_pair
{
715 int entries
, old_entries
;
717 int new; /* index into 'set' */
718 DECLARE_BITMAP(set
[2], 256);
719 } blocked_delegations
;
721 static int delegation_blocked(struct knfsd_fh
*fh
)
724 struct bloom_pair
*bd
= &blocked_delegations
;
726 if (bd
->entries
== 0)
728 if (seconds_since_boot() - bd
->swap_time
> 30) {
729 spin_lock(&blocked_delegations_lock
);
730 if (seconds_since_boot() - bd
->swap_time
> 30) {
731 bd
->entries
-= bd
->old_entries
;
732 bd
->old_entries
= bd
->entries
;
733 memset(bd
->set
[bd
->new], 0,
736 bd
->swap_time
= seconds_since_boot();
738 spin_unlock(&blocked_delegations_lock
);
740 hash
= jhash(&fh
->fh_base
, fh
->fh_size
, 0);
741 if (test_bit(hash
&255, bd
->set
[0]) &&
742 test_bit((hash
>>8)&255, bd
->set
[0]) &&
743 test_bit((hash
>>16)&255, bd
->set
[0]))
746 if (test_bit(hash
&255, bd
->set
[1]) &&
747 test_bit((hash
>>8)&255, bd
->set
[1]) &&
748 test_bit((hash
>>16)&255, bd
->set
[1]))
754 static void block_delegations(struct knfsd_fh
*fh
)
757 struct bloom_pair
*bd
= &blocked_delegations
;
759 hash
= jhash(&fh
->fh_base
, fh
->fh_size
, 0);
761 spin_lock(&blocked_delegations_lock
);
762 __set_bit(hash
&255, bd
->set
[bd
->new]);
763 __set_bit((hash
>>8)&255, bd
->set
[bd
->new]);
764 __set_bit((hash
>>16)&255, bd
->set
[bd
->new]);
765 if (bd
->entries
== 0)
766 bd
->swap_time
= seconds_since_boot();
768 spin_unlock(&blocked_delegations_lock
);
771 static struct nfs4_delegation
*
772 alloc_init_deleg(struct nfs4_client
*clp
, struct svc_fh
*current_fh
,
773 struct nfs4_clnt_odstate
*odstate
)
775 struct nfs4_delegation
*dp
;
778 dprintk("NFSD alloc_init_deleg\n");
779 n
= atomic_long_inc_return(&num_delegations
);
780 if (n
< 0 || n
> max_delegations
)
782 if (delegation_blocked(¤t_fh
->fh_handle
))
784 dp
= delegstateid(nfs4_alloc_stid(clp
, deleg_slab
));
788 dp
->dl_stid
.sc_free
= nfs4_free_deleg
;
790 * delegation seqid's are never incremented. The 4.1 special
791 * meaning of seqid 0 isn't meaningful, really, but let's avoid
792 * 0 anyway just for consistency and use 1:
794 dp
->dl_stid
.sc_stateid
.si_generation
= 1;
795 INIT_LIST_HEAD(&dp
->dl_perfile
);
796 INIT_LIST_HEAD(&dp
->dl_perclnt
);
797 INIT_LIST_HEAD(&dp
->dl_recall_lru
);
798 dp
->dl_clnt_odstate
= odstate
;
799 get_clnt_odstate(odstate
);
800 dp
->dl_type
= NFS4_OPEN_DELEGATE_READ
;
802 nfsd4_init_cb(&dp
->dl_recall
, dp
->dl_stid
.sc_client
,
803 &nfsd4_cb_recall_ops
, NFSPROC4_CLNT_CB_RECALL
);
806 atomic_long_dec(&num_delegations
);
811 nfs4_put_stid(struct nfs4_stid
*s
)
813 struct nfs4_file
*fp
= s
->sc_file
;
814 struct nfs4_client
*clp
= s
->sc_client
;
816 might_lock(&clp
->cl_lock
);
818 if (!atomic_dec_and_lock(&s
->sc_count
, &clp
->cl_lock
)) {
819 wake_up_all(&close_wq
);
822 idr_remove(&clp
->cl_stateids
, s
->sc_stateid
.si_opaque
.so_id
);
823 spin_unlock(&clp
->cl_lock
);
830 nfs4_inc_and_copy_stateid(stateid_t
*dst
, struct nfs4_stid
*stid
)
832 stateid_t
*src
= &stid
->sc_stateid
;
834 spin_lock(&stid
->sc_lock
);
835 if (unlikely(++src
->si_generation
== 0))
836 src
->si_generation
= 1;
837 memcpy(dst
, src
, sizeof(*dst
));
838 spin_unlock(&stid
->sc_lock
);
841 static void nfs4_put_deleg_lease(struct nfs4_file
*fp
)
843 struct file
*filp
= NULL
;
845 spin_lock(&fp
->fi_lock
);
846 if (fp
->fi_deleg_file
&& --fp
->fi_delegees
== 0)
847 swap(filp
, fp
->fi_deleg_file
);
848 spin_unlock(&fp
->fi_lock
);
851 vfs_setlease(filp
, F_UNLCK
, NULL
, (void **)&fp
);
856 void nfs4_unhash_stid(struct nfs4_stid
*s
)
862 * nfs4_get_existing_delegation - Discover if this delegation already exists
863 * @clp: a pointer to the nfs4_client we're granting a delegation to
864 * @fp: a pointer to the nfs4_file we're granting a delegation on
867 * On success: NULL if an existing delegation was not found.
869 * On error: -EAGAIN if one was previously granted to this nfs4_client
870 * for this nfs4_file.
875 nfs4_get_existing_delegation(struct nfs4_client
*clp
, struct nfs4_file
*fp
)
877 struct nfs4_delegation
*searchdp
= NULL
;
878 struct nfs4_client
*searchclp
= NULL
;
880 lockdep_assert_held(&state_lock
);
881 lockdep_assert_held(&fp
->fi_lock
);
883 list_for_each_entry(searchdp
, &fp
->fi_delegations
, dl_perfile
) {
884 searchclp
= searchdp
->dl_stid
.sc_client
;
885 if (clp
== searchclp
) {
893 * hash_delegation_locked - Add a delegation to the appropriate lists
894 * @dp: a pointer to the nfs4_delegation we are adding.
895 * @fp: a pointer to the nfs4_file we're granting a delegation on
898 * On success: NULL if the delegation was successfully hashed.
900 * On error: -EAGAIN if one was previously granted to this
901 * nfs4_client for this nfs4_file. Delegation is not hashed.
906 hash_delegation_locked(struct nfs4_delegation
*dp
, struct nfs4_file
*fp
)
909 struct nfs4_client
*clp
= dp
->dl_stid
.sc_client
;
911 lockdep_assert_held(&state_lock
);
912 lockdep_assert_held(&fp
->fi_lock
);
914 status
= nfs4_get_existing_delegation(clp
, fp
);
918 atomic_inc(&dp
->dl_stid
.sc_count
);
919 dp
->dl_stid
.sc_type
= NFS4_DELEG_STID
;
920 list_add(&dp
->dl_perfile
, &fp
->fi_delegations
);
921 list_add(&dp
->dl_perclnt
, &clp
->cl_delegations
);
926 unhash_delegation_locked(struct nfs4_delegation
*dp
)
928 struct nfs4_file
*fp
= dp
->dl_stid
.sc_file
;
930 lockdep_assert_held(&state_lock
);
932 if (list_empty(&dp
->dl_perfile
))
935 dp
->dl_stid
.sc_type
= NFS4_CLOSED_DELEG_STID
;
936 /* Ensure that deleg break won't try to requeue it */
938 spin_lock(&fp
->fi_lock
);
939 list_del_init(&dp
->dl_perclnt
);
940 list_del_init(&dp
->dl_recall_lru
);
941 list_del_init(&dp
->dl_perfile
);
942 spin_unlock(&fp
->fi_lock
);
946 static void destroy_delegation(struct nfs4_delegation
*dp
)
950 spin_lock(&state_lock
);
951 unhashed
= unhash_delegation_locked(dp
);
952 spin_unlock(&state_lock
);
954 put_clnt_odstate(dp
->dl_clnt_odstate
);
955 nfs4_put_deleg_lease(dp
->dl_stid
.sc_file
);
956 nfs4_put_stid(&dp
->dl_stid
);
960 static void revoke_delegation(struct nfs4_delegation
*dp
)
962 struct nfs4_client
*clp
= dp
->dl_stid
.sc_client
;
964 WARN_ON(!list_empty(&dp
->dl_recall_lru
));
966 put_clnt_odstate(dp
->dl_clnt_odstate
);
967 nfs4_put_deleg_lease(dp
->dl_stid
.sc_file
);
969 if (clp
->cl_minorversion
== 0)
970 nfs4_put_stid(&dp
->dl_stid
);
972 dp
->dl_stid
.sc_type
= NFS4_REVOKED_DELEG_STID
;
973 spin_lock(&clp
->cl_lock
);
974 list_add(&dp
->dl_recall_lru
, &clp
->cl_revoked
);
975 spin_unlock(&clp
->cl_lock
);
983 static unsigned int clientid_hashval(u32 id
)
985 return id
& CLIENT_HASH_MASK
;
988 static unsigned int clientstr_hashval(const char *name
)
990 return opaque_hashval(name
, 8) & CLIENT_HASH_MASK
;
994 * We store the NONE, READ, WRITE, and BOTH bits separately in the
995 * st_{access,deny}_bmap field of the stateid, in order to track not
996 * only what share bits are currently in force, but also what
997 * combinations of share bits previous opens have used. This allows us
998 * to enforce the recommendation of rfc 3530 14.2.19 that the server
999 * return an error if the client attempt to downgrade to a combination
1000 * of share bits not explicable by closing some of its previous opens.
1002 * XXX: This enforcement is actually incomplete, since we don't keep
1003 * track of access/deny bit combinations; so, e.g., we allow:
1005 * OPEN allow read, deny write
1006 * OPEN allow both, deny none
1007 * DOWNGRADE allow read, deny none
1009 * which we should reject.
1012 bmap_to_share_mode(unsigned long bmap
) {
1014 unsigned int access
= 0;
1016 for (i
= 1; i
< 4; i
++) {
1017 if (test_bit(i
, &bmap
))
1023 /* set share access for a given stateid */
1025 set_access(u32 access
, struct nfs4_ol_stateid
*stp
)
1027 unsigned char mask
= 1 << access
;
1029 WARN_ON_ONCE(access
> NFS4_SHARE_ACCESS_BOTH
);
1030 stp
->st_access_bmap
|= mask
;
1033 /* clear share access for a given stateid */
1035 clear_access(u32 access
, struct nfs4_ol_stateid
*stp
)
1037 unsigned char mask
= 1 << access
;
1039 WARN_ON_ONCE(access
> NFS4_SHARE_ACCESS_BOTH
);
1040 stp
->st_access_bmap
&= ~mask
;
1043 /* test whether a given stateid has access */
1045 test_access(u32 access
, struct nfs4_ol_stateid
*stp
)
1047 unsigned char mask
= 1 << access
;
1049 return (bool)(stp
->st_access_bmap
& mask
);
1052 /* set share deny for a given stateid */
1054 set_deny(u32 deny
, struct nfs4_ol_stateid
*stp
)
1056 unsigned char mask
= 1 << deny
;
1058 WARN_ON_ONCE(deny
> NFS4_SHARE_DENY_BOTH
);
1059 stp
->st_deny_bmap
|= mask
;
1062 /* clear share deny for a given stateid */
1064 clear_deny(u32 deny
, struct nfs4_ol_stateid
*stp
)
1066 unsigned char mask
= 1 << deny
;
1068 WARN_ON_ONCE(deny
> NFS4_SHARE_DENY_BOTH
);
1069 stp
->st_deny_bmap
&= ~mask
;
1072 /* test whether a given stateid is denying specific access */
1074 test_deny(u32 deny
, struct nfs4_ol_stateid
*stp
)
1076 unsigned char mask
= 1 << deny
;
1078 return (bool)(stp
->st_deny_bmap
& mask
);
1081 static int nfs4_access_to_omode(u32 access
)
1083 switch (access
& NFS4_SHARE_ACCESS_BOTH
) {
1084 case NFS4_SHARE_ACCESS_READ
:
1086 case NFS4_SHARE_ACCESS_WRITE
:
1088 case NFS4_SHARE_ACCESS_BOTH
:
1096 * A stateid that had a deny mode associated with it is being released
1097 * or downgraded. Recalculate the deny mode on the file.
1100 recalculate_deny_mode(struct nfs4_file
*fp
)
1102 struct nfs4_ol_stateid
*stp
;
1104 spin_lock(&fp
->fi_lock
);
1105 fp
->fi_share_deny
= 0;
1106 list_for_each_entry(stp
, &fp
->fi_stateids
, st_perfile
)
1107 fp
->fi_share_deny
|= bmap_to_share_mode(stp
->st_deny_bmap
);
1108 spin_unlock(&fp
->fi_lock
);
1112 reset_union_bmap_deny(u32 deny
, struct nfs4_ol_stateid
*stp
)
1115 bool change
= false;
1117 for (i
= 1; i
< 4; i
++) {
1118 if ((i
& deny
) != i
) {
1124 /* Recalculate per-file deny mode if there was a change */
1126 recalculate_deny_mode(stp
->st_stid
.sc_file
);
1129 /* release all access and file references for a given stateid */
1131 release_all_access(struct nfs4_ol_stateid
*stp
)
1134 struct nfs4_file
*fp
= stp
->st_stid
.sc_file
;
1136 if (fp
&& stp
->st_deny_bmap
!= 0)
1137 recalculate_deny_mode(fp
);
1139 for (i
= 1; i
< 4; i
++) {
1140 if (test_access(i
, stp
))
1141 nfs4_file_put_access(stp
->st_stid
.sc_file
, i
);
1142 clear_access(i
, stp
);
1146 static inline void nfs4_free_stateowner(struct nfs4_stateowner
*sop
)
1148 kfree(sop
->so_owner
.data
);
1149 sop
->so_ops
->so_free(sop
);
1152 static void nfs4_put_stateowner(struct nfs4_stateowner
*sop
)
1154 struct nfs4_client
*clp
= sop
->so_client
;
1156 might_lock(&clp
->cl_lock
);
1158 if (!atomic_dec_and_lock(&sop
->so_count
, &clp
->cl_lock
))
1160 sop
->so_ops
->so_unhash(sop
);
1161 spin_unlock(&clp
->cl_lock
);
1162 nfs4_free_stateowner(sop
);
1165 static bool unhash_ol_stateid(struct nfs4_ol_stateid
*stp
)
1167 struct nfs4_file
*fp
= stp
->st_stid
.sc_file
;
1169 lockdep_assert_held(&stp
->st_stateowner
->so_client
->cl_lock
);
1171 if (list_empty(&stp
->st_perfile
))
1174 spin_lock(&fp
->fi_lock
);
1175 list_del_init(&stp
->st_perfile
);
1176 spin_unlock(&fp
->fi_lock
);
1177 list_del(&stp
->st_perstateowner
);
1181 static void nfs4_free_ol_stateid(struct nfs4_stid
*stid
)
1183 struct nfs4_ol_stateid
*stp
= openlockstateid(stid
);
1185 put_clnt_odstate(stp
->st_clnt_odstate
);
1186 release_all_access(stp
);
1187 if (stp
->st_stateowner
)
1188 nfs4_put_stateowner(stp
->st_stateowner
);
1189 kmem_cache_free(stateid_slab
, stid
);
1192 static void nfs4_free_lock_stateid(struct nfs4_stid
*stid
)
1194 struct nfs4_ol_stateid
*stp
= openlockstateid(stid
);
1195 struct nfs4_lockowner
*lo
= lockowner(stp
->st_stateowner
);
1198 file
= find_any_file(stp
->st_stid
.sc_file
);
1200 filp_close(file
, (fl_owner_t
)lo
);
1201 nfs4_free_ol_stateid(stid
);
1205 * Put the persistent reference to an already unhashed generic stateid, while
1206 * holding the cl_lock. If it's the last reference, then put it onto the
1207 * reaplist for later destruction.
1209 static void put_ol_stateid_locked(struct nfs4_ol_stateid
*stp
,
1210 struct list_head
*reaplist
)
1212 struct nfs4_stid
*s
= &stp
->st_stid
;
1213 struct nfs4_client
*clp
= s
->sc_client
;
1215 lockdep_assert_held(&clp
->cl_lock
);
1217 WARN_ON_ONCE(!list_empty(&stp
->st_locks
));
1219 if (!atomic_dec_and_test(&s
->sc_count
)) {
1220 wake_up_all(&close_wq
);
1224 idr_remove(&clp
->cl_stateids
, s
->sc_stateid
.si_opaque
.so_id
);
1225 list_add(&stp
->st_locks
, reaplist
);
1228 static bool unhash_lock_stateid(struct nfs4_ol_stateid
*stp
)
1230 lockdep_assert_held(&stp
->st_stid
.sc_client
->cl_lock
);
1232 list_del_init(&stp
->st_locks
);
1233 nfs4_unhash_stid(&stp
->st_stid
);
1234 return unhash_ol_stateid(stp
);
1237 static void release_lock_stateid(struct nfs4_ol_stateid
*stp
)
1239 struct nfs4_client
*clp
= stp
->st_stid
.sc_client
;
1242 spin_lock(&clp
->cl_lock
);
1243 unhashed
= unhash_lock_stateid(stp
);
1244 spin_unlock(&clp
->cl_lock
);
1246 nfs4_put_stid(&stp
->st_stid
);
1249 static void unhash_lockowner_locked(struct nfs4_lockowner
*lo
)
1251 struct nfs4_client
*clp
= lo
->lo_owner
.so_client
;
1253 lockdep_assert_held(&clp
->cl_lock
);
1255 list_del_init(&lo
->lo_owner
.so_strhash
);
1259 * Free a list of generic stateids that were collected earlier after being
1263 free_ol_stateid_reaplist(struct list_head
*reaplist
)
1265 struct nfs4_ol_stateid
*stp
;
1266 struct nfs4_file
*fp
;
1270 while (!list_empty(reaplist
)) {
1271 stp
= list_first_entry(reaplist
, struct nfs4_ol_stateid
,
1273 list_del(&stp
->st_locks
);
1274 fp
= stp
->st_stid
.sc_file
;
1275 stp
->st_stid
.sc_free(&stp
->st_stid
);
1281 static void release_open_stateid_locks(struct nfs4_ol_stateid
*open_stp
,
1282 struct list_head
*reaplist
)
1284 struct nfs4_ol_stateid
*stp
;
1286 lockdep_assert_held(&open_stp
->st_stid
.sc_client
->cl_lock
);
1288 while (!list_empty(&open_stp
->st_locks
)) {
1289 stp
= list_entry(open_stp
->st_locks
.next
,
1290 struct nfs4_ol_stateid
, st_locks
);
1291 WARN_ON(!unhash_lock_stateid(stp
));
1292 put_ol_stateid_locked(stp
, reaplist
);
1296 static bool unhash_open_stateid(struct nfs4_ol_stateid
*stp
,
1297 struct list_head
*reaplist
)
1301 lockdep_assert_held(&stp
->st_stid
.sc_client
->cl_lock
);
1303 unhashed
= unhash_ol_stateid(stp
);
1304 release_open_stateid_locks(stp
, reaplist
);
1308 static void release_open_stateid(struct nfs4_ol_stateid
*stp
)
1310 LIST_HEAD(reaplist
);
1312 spin_lock(&stp
->st_stid
.sc_client
->cl_lock
);
1313 if (unhash_open_stateid(stp
, &reaplist
))
1314 put_ol_stateid_locked(stp
, &reaplist
);
1315 spin_unlock(&stp
->st_stid
.sc_client
->cl_lock
);
1316 free_ol_stateid_reaplist(&reaplist
);
1319 static void unhash_openowner_locked(struct nfs4_openowner
*oo
)
1321 struct nfs4_client
*clp
= oo
->oo_owner
.so_client
;
1323 lockdep_assert_held(&clp
->cl_lock
);
1325 list_del_init(&oo
->oo_owner
.so_strhash
);
1326 list_del_init(&oo
->oo_perclient
);
1329 static void release_last_closed_stateid(struct nfs4_openowner
*oo
)
1331 struct nfsd_net
*nn
= net_generic(oo
->oo_owner
.so_client
->net
,
1333 struct nfs4_ol_stateid
*s
;
1335 spin_lock(&nn
->client_lock
);
1336 s
= oo
->oo_last_closed_stid
;
1338 list_del_init(&oo
->oo_close_lru
);
1339 oo
->oo_last_closed_stid
= NULL
;
1341 spin_unlock(&nn
->client_lock
);
1343 nfs4_put_stid(&s
->st_stid
);
1346 static void release_openowner(struct nfs4_openowner
*oo
)
1348 struct nfs4_ol_stateid
*stp
;
1349 struct nfs4_client
*clp
= oo
->oo_owner
.so_client
;
1350 struct list_head reaplist
;
1352 INIT_LIST_HEAD(&reaplist
);
1354 spin_lock(&clp
->cl_lock
);
1355 unhash_openowner_locked(oo
);
1356 while (!list_empty(&oo
->oo_owner
.so_stateids
)) {
1357 stp
= list_first_entry(&oo
->oo_owner
.so_stateids
,
1358 struct nfs4_ol_stateid
, st_perstateowner
);
1359 if (unhash_open_stateid(stp
, &reaplist
))
1360 put_ol_stateid_locked(stp
, &reaplist
);
1362 spin_unlock(&clp
->cl_lock
);
1363 free_ol_stateid_reaplist(&reaplist
);
1364 release_last_closed_stateid(oo
);
1365 nfs4_put_stateowner(&oo
->oo_owner
);
1369 hash_sessionid(struct nfs4_sessionid
*sessionid
)
1371 struct nfsd4_sessionid
*sid
= (struct nfsd4_sessionid
*)sessionid
;
1373 return sid
->sequence
% SESSION_HASH_SIZE
;
1376 #ifdef CONFIG_SUNRPC_DEBUG
1378 dump_sessionid(const char *fn
, struct nfs4_sessionid
*sessionid
)
1380 u32
*ptr
= (u32
*)(&sessionid
->data
[0]);
1381 dprintk("%s: %u:%u:%u:%u\n", fn
, ptr
[0], ptr
[1], ptr
[2], ptr
[3]);
1385 dump_sessionid(const char *fn
, struct nfs4_sessionid
*sessionid
)
1391 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1392 * won't be used for replay.
1394 void nfsd4_bump_seqid(struct nfsd4_compound_state
*cstate
, __be32 nfserr
)
1396 struct nfs4_stateowner
*so
= cstate
->replay_owner
;
1398 if (nfserr
== nfserr_replay_me
)
1401 if (!seqid_mutating_err(ntohl(nfserr
))) {
1402 nfsd4_cstate_clear_replay(cstate
);
1407 if (so
->so_is_open_owner
)
1408 release_last_closed_stateid(openowner(so
));
1414 gen_sessionid(struct nfsd4_session
*ses
)
1416 struct nfs4_client
*clp
= ses
->se_client
;
1417 struct nfsd4_sessionid
*sid
;
1419 sid
= (struct nfsd4_sessionid
*)ses
->se_sessionid
.data
;
1420 sid
->clientid
= clp
->cl_clientid
;
1421 sid
->sequence
= current_sessionid
++;
1426 * The protocol defines ca_maxresponssize_cached to include the size of
1427 * the rpc header, but all we need to cache is the data starting after
1428 * the end of the initial SEQUENCE operation--the rest we regenerate
1429 * each time. Therefore we can advertise a ca_maxresponssize_cached
1430 * value that is the number of bytes in our cache plus a few additional
1431 * bytes. In order to stay on the safe side, and not promise more than
1432 * we can cache, those additional bytes must be the minimum possible: 24
1433 * bytes of rpc header (xid through accept state, with AUTH_NULL
1434 * verifier), 12 for the compound header (with zero-length tag), and 44
1435 * for the SEQUENCE op response:
1437 #define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1440 free_session_slots(struct nfsd4_session
*ses
)
1444 for (i
= 0; i
< ses
->se_fchannel
.maxreqs
; i
++)
1445 kfree(ses
->se_slots
[i
]);
1449 * We don't actually need to cache the rpc and session headers, so we
1450 * can allocate a little less for each slot:
1452 static inline u32
slot_bytes(struct nfsd4_channel_attrs
*ca
)
1456 if (ca
->maxresp_cached
< NFSD_MIN_HDR_SEQ_SZ
)
1459 size
= ca
->maxresp_cached
- NFSD_MIN_HDR_SEQ_SZ
;
1460 return size
+ sizeof(struct nfsd4_slot
);
1464 * XXX: If we run out of reserved DRC memory we could (up to a point)
1465 * re-negotiate active sessions and reduce their slot usage to make
1466 * room for new connections. For now we just fail the create session.
1468 static u32
nfsd4_get_drc_mem(struct nfsd4_channel_attrs
*ca
)
1470 u32 slotsize
= slot_bytes(ca
);
1471 u32 num
= ca
->maxreqs
;
1474 spin_lock(&nfsd_drc_lock
);
1475 avail
= min((unsigned long)NFSD_MAX_MEM_PER_SESSION
,
1476 nfsd_drc_max_mem
- nfsd_drc_mem_used
);
1477 num
= min_t(int, num
, avail
/ slotsize
);
1478 nfsd_drc_mem_used
+= num
* slotsize
;
1479 spin_unlock(&nfsd_drc_lock
);
1484 static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs
*ca
)
1486 int slotsize
= slot_bytes(ca
);
1488 spin_lock(&nfsd_drc_lock
);
1489 nfsd_drc_mem_used
-= slotsize
* ca
->maxreqs
;
1490 spin_unlock(&nfsd_drc_lock
);
1493 static struct nfsd4_session
*alloc_session(struct nfsd4_channel_attrs
*fattrs
,
1494 struct nfsd4_channel_attrs
*battrs
)
1496 int numslots
= fattrs
->maxreqs
;
1497 int slotsize
= slot_bytes(fattrs
);
1498 struct nfsd4_session
*new;
1501 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION
* sizeof(struct nfsd4_slot
*)
1502 + sizeof(struct nfsd4_session
) > PAGE_SIZE
);
1503 mem
= numslots
* sizeof(struct nfsd4_slot
*);
1505 new = kzalloc(sizeof(*new) + mem
, GFP_KERNEL
);
1508 /* allocate each struct nfsd4_slot and data cache in one piece */
1509 for (i
= 0; i
< numslots
; i
++) {
1510 new->se_slots
[i
] = kzalloc(slotsize
, GFP_KERNEL
);
1511 if (!new->se_slots
[i
])
1515 memcpy(&new->se_fchannel
, fattrs
, sizeof(struct nfsd4_channel_attrs
));
1516 memcpy(&new->se_bchannel
, battrs
, sizeof(struct nfsd4_channel_attrs
));
1521 kfree(new->se_slots
[i
]);
1526 static void free_conn(struct nfsd4_conn
*c
)
1528 svc_xprt_put(c
->cn_xprt
);
1532 static void nfsd4_conn_lost(struct svc_xpt_user
*u
)
1534 struct nfsd4_conn
*c
= container_of(u
, struct nfsd4_conn
, cn_xpt_user
);
1535 struct nfs4_client
*clp
= c
->cn_session
->se_client
;
1537 spin_lock(&clp
->cl_lock
);
1538 if (!list_empty(&c
->cn_persession
)) {
1539 list_del(&c
->cn_persession
);
1542 nfsd4_probe_callback(clp
);
1543 spin_unlock(&clp
->cl_lock
);
1546 static struct nfsd4_conn
*alloc_conn(struct svc_rqst
*rqstp
, u32 flags
)
1548 struct nfsd4_conn
*conn
;
1550 conn
= kmalloc(sizeof(struct nfsd4_conn
), GFP_KERNEL
);
1553 svc_xprt_get(rqstp
->rq_xprt
);
1554 conn
->cn_xprt
= rqstp
->rq_xprt
;
1555 conn
->cn_flags
= flags
;
1556 INIT_LIST_HEAD(&conn
->cn_xpt_user
.list
);
1560 static void __nfsd4_hash_conn(struct nfsd4_conn
*conn
, struct nfsd4_session
*ses
)
1562 conn
->cn_session
= ses
;
1563 list_add(&conn
->cn_persession
, &ses
->se_conns
);
1566 static void nfsd4_hash_conn(struct nfsd4_conn
*conn
, struct nfsd4_session
*ses
)
1568 struct nfs4_client
*clp
= ses
->se_client
;
1570 spin_lock(&clp
->cl_lock
);
1571 __nfsd4_hash_conn(conn
, ses
);
1572 spin_unlock(&clp
->cl_lock
);
1575 static int nfsd4_register_conn(struct nfsd4_conn
*conn
)
1577 conn
->cn_xpt_user
.callback
= nfsd4_conn_lost
;
1578 return register_xpt_user(conn
->cn_xprt
, &conn
->cn_xpt_user
);
1581 static void nfsd4_init_conn(struct svc_rqst
*rqstp
, struct nfsd4_conn
*conn
, struct nfsd4_session
*ses
)
1585 nfsd4_hash_conn(conn
, ses
);
1586 ret
= nfsd4_register_conn(conn
);
1588 /* oops; xprt is already down: */
1589 nfsd4_conn_lost(&conn
->cn_xpt_user
);
1590 /* We may have gained or lost a callback channel: */
1591 nfsd4_probe_callback_sync(ses
->se_client
);
1594 static struct nfsd4_conn
*alloc_conn_from_crses(struct svc_rqst
*rqstp
, struct nfsd4_create_session
*cses
)
1596 u32 dir
= NFS4_CDFC4_FORE
;
1598 if (cses
->flags
& SESSION4_BACK_CHAN
)
1599 dir
|= NFS4_CDFC4_BACK
;
1600 return alloc_conn(rqstp
, dir
);
1603 /* must be called under client_lock */
1604 static void nfsd4_del_conns(struct nfsd4_session
*s
)
1606 struct nfs4_client
*clp
= s
->se_client
;
1607 struct nfsd4_conn
*c
;
1609 spin_lock(&clp
->cl_lock
);
1610 while (!list_empty(&s
->se_conns
)) {
1611 c
= list_first_entry(&s
->se_conns
, struct nfsd4_conn
, cn_persession
);
1612 list_del_init(&c
->cn_persession
);
1613 spin_unlock(&clp
->cl_lock
);
1615 unregister_xpt_user(c
->cn_xprt
, &c
->cn_xpt_user
);
1618 spin_lock(&clp
->cl_lock
);
1620 spin_unlock(&clp
->cl_lock
);
1623 static void __free_session(struct nfsd4_session
*ses
)
1625 free_session_slots(ses
);
1629 static void free_session(struct nfsd4_session
*ses
)
1631 nfsd4_del_conns(ses
);
1632 nfsd4_put_drc_mem(&ses
->se_fchannel
);
1633 __free_session(ses
);
1636 static void init_session(struct svc_rqst
*rqstp
, struct nfsd4_session
*new, struct nfs4_client
*clp
, struct nfsd4_create_session
*cses
)
1639 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
1641 new->se_client
= clp
;
1644 INIT_LIST_HEAD(&new->se_conns
);
1646 new->se_cb_seq_nr
= 1;
1647 new->se_flags
= cses
->flags
;
1648 new->se_cb_prog
= cses
->callback_prog
;
1649 new->se_cb_sec
= cses
->cb_sec
;
1650 atomic_set(&new->se_ref
, 0);
1651 idx
= hash_sessionid(&new->se_sessionid
);
1652 list_add(&new->se_hash
, &nn
->sessionid_hashtbl
[idx
]);
1653 spin_lock(&clp
->cl_lock
);
1654 list_add(&new->se_perclnt
, &clp
->cl_sessions
);
1655 spin_unlock(&clp
->cl_lock
);
1658 struct sockaddr
*sa
= svc_addr(rqstp
);
1660 * This is a little silly; with sessions there's no real
1661 * use for the callback address. Use the peer address
1662 * as a reasonable default for now, but consider fixing
1663 * the rpc client not to require an address in the
1666 rpc_copy_addr((struct sockaddr
*)&clp
->cl_cb_conn
.cb_addr
, sa
);
1667 clp
->cl_cb_conn
.cb_addrlen
= svc_addr_len(sa
);
1671 /* caller must hold client_lock */
1672 static struct nfsd4_session
*
1673 __find_in_sessionid_hashtbl(struct nfs4_sessionid
*sessionid
, struct net
*net
)
1675 struct nfsd4_session
*elem
;
1677 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
1679 lockdep_assert_held(&nn
->client_lock
);
1681 dump_sessionid(__func__
, sessionid
);
1682 idx
= hash_sessionid(sessionid
);
1683 /* Search in the appropriate list */
1684 list_for_each_entry(elem
, &nn
->sessionid_hashtbl
[idx
], se_hash
) {
1685 if (!memcmp(elem
->se_sessionid
.data
, sessionid
->data
,
1686 NFS4_MAX_SESSIONID_LEN
)) {
1691 dprintk("%s: session not found\n", __func__
);
1695 static struct nfsd4_session
*
1696 find_in_sessionid_hashtbl(struct nfs4_sessionid
*sessionid
, struct net
*net
,
1699 struct nfsd4_session
*session
;
1700 __be32 status
= nfserr_badsession
;
1702 session
= __find_in_sessionid_hashtbl(sessionid
, net
);
1705 status
= nfsd4_get_session_locked(session
);
1713 /* caller must hold client_lock */
1715 unhash_session(struct nfsd4_session
*ses
)
1717 struct nfs4_client
*clp
= ses
->se_client
;
1718 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
1720 lockdep_assert_held(&nn
->client_lock
);
1722 list_del(&ses
->se_hash
);
1723 spin_lock(&ses
->se_client
->cl_lock
);
1724 list_del(&ses
->se_perclnt
);
1725 spin_unlock(&ses
->se_client
->cl_lock
);
1728 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1730 STALE_CLIENTID(clientid_t
*clid
, struct nfsd_net
*nn
)
1733 * We're assuming the clid was not given out from a boot
1734 * precisely 2^32 (about 136 years) before this one. That seems
1735 * a safe assumption:
1737 if (clid
->cl_boot
== (u32
)nn
->boot_time
)
1739 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
1740 clid
->cl_boot
, clid
->cl_id
, nn
->boot_time
);
1745 * XXX Should we use a slab cache ?
1746 * This type of memory management is somewhat inefficient, but we use it
1747 * anyway since SETCLIENTID is not a common operation.
1749 static struct nfs4_client
*alloc_client(struct xdr_netobj name
)
1751 struct nfs4_client
*clp
;
1754 clp
= kzalloc(sizeof(struct nfs4_client
), GFP_KERNEL
);
1757 clp
->cl_name
.data
= kmemdup(name
.data
, name
.len
, GFP_KERNEL
);
1758 if (clp
->cl_name
.data
== NULL
)
1760 clp
->cl_ownerstr_hashtbl
= kmalloc(sizeof(struct list_head
) *
1761 OWNER_HASH_SIZE
, GFP_KERNEL
);
1762 if (!clp
->cl_ownerstr_hashtbl
)
1763 goto err_no_hashtbl
;
1764 for (i
= 0; i
< OWNER_HASH_SIZE
; i
++)
1765 INIT_LIST_HEAD(&clp
->cl_ownerstr_hashtbl
[i
]);
1766 clp
->cl_name
.len
= name
.len
;
1767 INIT_LIST_HEAD(&clp
->cl_sessions
);
1768 idr_init(&clp
->cl_stateids
);
1769 atomic_set(&clp
->cl_refcount
, 0);
1770 clp
->cl_cb_state
= NFSD4_CB_UNKNOWN
;
1771 INIT_LIST_HEAD(&clp
->cl_idhash
);
1772 INIT_LIST_HEAD(&clp
->cl_openowners
);
1773 INIT_LIST_HEAD(&clp
->cl_delegations
);
1774 INIT_LIST_HEAD(&clp
->cl_lru
);
1775 INIT_LIST_HEAD(&clp
->cl_revoked
);
1776 #ifdef CONFIG_NFSD_PNFS
1777 INIT_LIST_HEAD(&clp
->cl_lo_states
);
1779 spin_lock_init(&clp
->cl_lock
);
1780 rpc_init_wait_queue(&clp
->cl_cb_waitq
, "Backchannel slot table");
1783 kfree(clp
->cl_name
.data
);
1790 free_client(struct nfs4_client
*clp
)
1792 while (!list_empty(&clp
->cl_sessions
)) {
1793 struct nfsd4_session
*ses
;
1794 ses
= list_entry(clp
->cl_sessions
.next
, struct nfsd4_session
,
1796 list_del(&ses
->se_perclnt
);
1797 WARN_ON_ONCE(atomic_read(&ses
->se_ref
));
1800 rpc_destroy_wait_queue(&clp
->cl_cb_waitq
);
1801 free_svc_cred(&clp
->cl_cred
);
1802 kfree(clp
->cl_ownerstr_hashtbl
);
1803 kfree(clp
->cl_name
.data
);
1804 idr_destroy(&clp
->cl_stateids
);
1808 /* must be called under the client_lock */
1810 unhash_client_locked(struct nfs4_client
*clp
)
1812 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
1813 struct nfsd4_session
*ses
;
1815 lockdep_assert_held(&nn
->client_lock
);
1817 /* Mark the client as expired! */
1819 /* Make it invisible */
1820 if (!list_empty(&clp
->cl_idhash
)) {
1821 list_del_init(&clp
->cl_idhash
);
1822 if (test_bit(NFSD4_CLIENT_CONFIRMED
, &clp
->cl_flags
))
1823 rb_erase(&clp
->cl_namenode
, &nn
->conf_name_tree
);
1825 rb_erase(&clp
->cl_namenode
, &nn
->unconf_name_tree
);
1827 list_del_init(&clp
->cl_lru
);
1828 spin_lock(&clp
->cl_lock
);
1829 list_for_each_entry(ses
, &clp
->cl_sessions
, se_perclnt
)
1830 list_del_init(&ses
->se_hash
);
1831 spin_unlock(&clp
->cl_lock
);
1835 unhash_client(struct nfs4_client
*clp
)
1837 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
1839 spin_lock(&nn
->client_lock
);
1840 unhash_client_locked(clp
);
1841 spin_unlock(&nn
->client_lock
);
1844 static __be32
mark_client_expired_locked(struct nfs4_client
*clp
)
1846 if (atomic_read(&clp
->cl_refcount
))
1847 return nfserr_jukebox
;
1848 unhash_client_locked(clp
);
1853 __destroy_client(struct nfs4_client
*clp
)
1855 struct nfs4_openowner
*oo
;
1856 struct nfs4_delegation
*dp
;
1857 struct list_head reaplist
;
1859 INIT_LIST_HEAD(&reaplist
);
1860 spin_lock(&state_lock
);
1861 while (!list_empty(&clp
->cl_delegations
)) {
1862 dp
= list_entry(clp
->cl_delegations
.next
, struct nfs4_delegation
, dl_perclnt
);
1863 WARN_ON(!unhash_delegation_locked(dp
));
1864 list_add(&dp
->dl_recall_lru
, &reaplist
);
1866 spin_unlock(&state_lock
);
1867 while (!list_empty(&reaplist
)) {
1868 dp
= list_entry(reaplist
.next
, struct nfs4_delegation
, dl_recall_lru
);
1869 list_del_init(&dp
->dl_recall_lru
);
1870 put_clnt_odstate(dp
->dl_clnt_odstate
);
1871 nfs4_put_deleg_lease(dp
->dl_stid
.sc_file
);
1872 nfs4_put_stid(&dp
->dl_stid
);
1874 while (!list_empty(&clp
->cl_revoked
)) {
1875 dp
= list_entry(clp
->cl_revoked
.next
, struct nfs4_delegation
, dl_recall_lru
);
1876 list_del_init(&dp
->dl_recall_lru
);
1877 nfs4_put_stid(&dp
->dl_stid
);
1879 while (!list_empty(&clp
->cl_openowners
)) {
1880 oo
= list_entry(clp
->cl_openowners
.next
, struct nfs4_openowner
, oo_perclient
);
1881 nfs4_get_stateowner(&oo
->oo_owner
);
1882 release_openowner(oo
);
1884 nfsd4_return_all_client_layouts(clp
);
1885 nfsd4_shutdown_callback(clp
);
1886 if (clp
->cl_cb_conn
.cb_xprt
)
1887 svc_xprt_put(clp
->cl_cb_conn
.cb_xprt
);
1892 destroy_client(struct nfs4_client
*clp
)
1895 __destroy_client(clp
);
1898 static void expire_client(struct nfs4_client
*clp
)
1901 nfsd4_client_record_remove(clp
);
1902 __destroy_client(clp
);
1905 static void copy_verf(struct nfs4_client
*target
, nfs4_verifier
*source
)
1907 memcpy(target
->cl_verifier
.data
, source
->data
,
1908 sizeof(target
->cl_verifier
.data
));
1911 static void copy_clid(struct nfs4_client
*target
, struct nfs4_client
*source
)
1913 target
->cl_clientid
.cl_boot
= source
->cl_clientid
.cl_boot
;
1914 target
->cl_clientid
.cl_id
= source
->cl_clientid
.cl_id
;
1917 int strdup_if_nonnull(char **target
, char *source
)
1920 *target
= kstrdup(source
, GFP_KERNEL
);
1928 static int copy_cred(struct svc_cred
*target
, struct svc_cred
*source
)
1932 ret
= strdup_if_nonnull(&target
->cr_principal
, source
->cr_principal
);
1935 ret
= strdup_if_nonnull(&target
->cr_raw_principal
,
1936 source
->cr_raw_principal
);
1939 target
->cr_flavor
= source
->cr_flavor
;
1940 target
->cr_uid
= source
->cr_uid
;
1941 target
->cr_gid
= source
->cr_gid
;
1942 target
->cr_group_info
= source
->cr_group_info
;
1943 get_group_info(target
->cr_group_info
);
1944 target
->cr_gss_mech
= source
->cr_gss_mech
;
1945 if (source
->cr_gss_mech
)
1946 gss_mech_get(source
->cr_gss_mech
);
1951 compare_blob(const struct xdr_netobj
*o1
, const struct xdr_netobj
*o2
)
1953 if (o1
->len
< o2
->len
)
1955 if (o1
->len
> o2
->len
)
1957 return memcmp(o1
->data
, o2
->data
, o1
->len
);
1960 static int same_name(const char *n1
, const char *n2
)
1962 return 0 == memcmp(n1
, n2
, HEXDIR_LEN
);
1966 same_verf(nfs4_verifier
*v1
, nfs4_verifier
*v2
)
1968 return 0 == memcmp(v1
->data
, v2
->data
, sizeof(v1
->data
));
1972 same_clid(clientid_t
*cl1
, clientid_t
*cl2
)
1974 return (cl1
->cl_boot
== cl2
->cl_boot
) && (cl1
->cl_id
== cl2
->cl_id
);
1977 static bool groups_equal(struct group_info
*g1
, struct group_info
*g2
)
1981 if (g1
->ngroups
!= g2
->ngroups
)
1983 for (i
=0; i
<g1
->ngroups
; i
++)
1984 if (!gid_eq(g1
->gid
[i
], g2
->gid
[i
]))
1990 * RFC 3530 language requires clid_inuse be returned when the
1991 * "principal" associated with a requests differs from that previously
1992 * used. We use uid, gid's, and gss principal string as our best
1993 * approximation. We also don't want to allow non-gss use of a client
1994 * established using gss: in theory cr_principal should catch that
1995 * change, but in practice cr_principal can be null even in the gss case
1996 * since gssd doesn't always pass down a principal string.
1998 static bool is_gss_cred(struct svc_cred
*cr
)
2000 /* Is cr_flavor one of the gss "pseudoflavors"?: */
2001 return (cr
->cr_flavor
> RPC_AUTH_MAXFLAVOR
);
2006 same_creds(struct svc_cred
*cr1
, struct svc_cred
*cr2
)
2008 if ((is_gss_cred(cr1
) != is_gss_cred(cr2
))
2009 || (!uid_eq(cr1
->cr_uid
, cr2
->cr_uid
))
2010 || (!gid_eq(cr1
->cr_gid
, cr2
->cr_gid
))
2011 || !groups_equal(cr1
->cr_group_info
, cr2
->cr_group_info
))
2013 if (cr1
->cr_principal
== cr2
->cr_principal
)
2015 if (!cr1
->cr_principal
|| !cr2
->cr_principal
)
2017 return 0 == strcmp(cr1
->cr_principal
, cr2
->cr_principal
);
2020 static bool svc_rqst_integrity_protected(struct svc_rqst
*rqstp
)
2022 struct svc_cred
*cr
= &rqstp
->rq_cred
;
2025 if (!cr
->cr_gss_mech
)
2027 service
= gss_pseudoflavor_to_service(cr
->cr_gss_mech
, cr
->cr_flavor
);
2028 return service
== RPC_GSS_SVC_INTEGRITY
||
2029 service
== RPC_GSS_SVC_PRIVACY
;
2032 bool nfsd4_mach_creds_match(struct nfs4_client
*cl
, struct svc_rqst
*rqstp
)
2034 struct svc_cred
*cr
= &rqstp
->rq_cred
;
2036 if (!cl
->cl_mach_cred
)
2038 if (cl
->cl_cred
.cr_gss_mech
!= cr
->cr_gss_mech
)
2040 if (!svc_rqst_integrity_protected(rqstp
))
2042 if (cl
->cl_cred
.cr_raw_principal
)
2043 return 0 == strcmp(cl
->cl_cred
.cr_raw_principal
,
2044 cr
->cr_raw_principal
);
2045 if (!cr
->cr_principal
)
2047 return 0 == strcmp(cl
->cl_cred
.cr_principal
, cr
->cr_principal
);
2050 static void gen_confirm(struct nfs4_client
*clp
, struct nfsd_net
*nn
)
2055 * This is opaque to client, so no need to byte-swap. Use
2056 * __force to keep sparse happy
2058 verf
[0] = (__force __be32
)get_seconds();
2059 verf
[1] = (__force __be32
)nn
->clverifier_counter
++;
2060 memcpy(clp
->cl_confirm
.data
, verf
, sizeof(clp
->cl_confirm
.data
));
2063 static void gen_clid(struct nfs4_client
*clp
, struct nfsd_net
*nn
)
2065 clp
->cl_clientid
.cl_boot
= nn
->boot_time
;
2066 clp
->cl_clientid
.cl_id
= nn
->clientid_counter
++;
2067 gen_confirm(clp
, nn
);
2070 static struct nfs4_stid
*
2071 find_stateid_locked(struct nfs4_client
*cl
, stateid_t
*t
)
2073 struct nfs4_stid
*ret
;
2075 ret
= idr_find(&cl
->cl_stateids
, t
->si_opaque
.so_id
);
2076 if (!ret
|| !ret
->sc_type
)
2081 static struct nfs4_stid
*
2082 find_stateid_by_type(struct nfs4_client
*cl
, stateid_t
*t
, char typemask
)
2084 struct nfs4_stid
*s
;
2086 spin_lock(&cl
->cl_lock
);
2087 s
= find_stateid_locked(cl
, t
);
2089 if (typemask
& s
->sc_type
)
2090 atomic_inc(&s
->sc_count
);
2094 spin_unlock(&cl
->cl_lock
);
2098 static struct nfs4_client
*create_client(struct xdr_netobj name
,
2099 struct svc_rqst
*rqstp
, nfs4_verifier
*verf
)
2101 struct nfs4_client
*clp
;
2102 struct sockaddr
*sa
= svc_addr(rqstp
);
2104 struct net
*net
= SVC_NET(rqstp
);
2106 clp
= alloc_client(name
);
2110 ret
= copy_cred(&clp
->cl_cred
, &rqstp
->rq_cred
);
2115 nfsd4_init_cb(&clp
->cl_cb_null
, clp
, NULL
, NFSPROC4_CLNT_CB_NULL
);
2116 clp
->cl_time
= get_seconds();
2117 clear_bit(0, &clp
->cl_cb_slot_busy
);
2118 copy_verf(clp
, verf
);
2119 rpc_copy_addr((struct sockaddr
*) &clp
->cl_addr
, sa
);
2120 clp
->cl_cb_session
= NULL
;
2126 add_clp_to_name_tree(struct nfs4_client
*new_clp
, struct rb_root
*root
)
2128 struct rb_node
**new = &(root
->rb_node
), *parent
= NULL
;
2129 struct nfs4_client
*clp
;
2132 clp
= rb_entry(*new, struct nfs4_client
, cl_namenode
);
2135 if (compare_blob(&clp
->cl_name
, &new_clp
->cl_name
) > 0)
2136 new = &((*new)->rb_left
);
2138 new = &((*new)->rb_right
);
2141 rb_link_node(&new_clp
->cl_namenode
, parent
, new);
2142 rb_insert_color(&new_clp
->cl_namenode
, root
);
2145 static struct nfs4_client
*
2146 find_clp_in_name_tree(struct xdr_netobj
*name
, struct rb_root
*root
)
2149 struct rb_node
*node
= root
->rb_node
;
2150 struct nfs4_client
*clp
;
2153 clp
= rb_entry(node
, struct nfs4_client
, cl_namenode
);
2154 cmp
= compare_blob(&clp
->cl_name
, name
);
2156 node
= node
->rb_left
;
2158 node
= node
->rb_right
;
2166 add_to_unconfirmed(struct nfs4_client
*clp
)
2168 unsigned int idhashval
;
2169 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
2171 lockdep_assert_held(&nn
->client_lock
);
2173 clear_bit(NFSD4_CLIENT_CONFIRMED
, &clp
->cl_flags
);
2174 add_clp_to_name_tree(clp
, &nn
->unconf_name_tree
);
2175 idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
2176 list_add(&clp
->cl_idhash
, &nn
->unconf_id_hashtbl
[idhashval
]);
2177 renew_client_locked(clp
);
2181 move_to_confirmed(struct nfs4_client
*clp
)
2183 unsigned int idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
2184 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
2186 lockdep_assert_held(&nn
->client_lock
);
2188 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp
);
2189 list_move(&clp
->cl_idhash
, &nn
->conf_id_hashtbl
[idhashval
]);
2190 rb_erase(&clp
->cl_namenode
, &nn
->unconf_name_tree
);
2191 add_clp_to_name_tree(clp
, &nn
->conf_name_tree
);
2192 set_bit(NFSD4_CLIENT_CONFIRMED
, &clp
->cl_flags
);
2193 renew_client_locked(clp
);
2196 static struct nfs4_client
*
2197 find_client_in_id_table(struct list_head
*tbl
, clientid_t
*clid
, bool sessions
)
2199 struct nfs4_client
*clp
;
2200 unsigned int idhashval
= clientid_hashval(clid
->cl_id
);
2202 list_for_each_entry(clp
, &tbl
[idhashval
], cl_idhash
) {
2203 if (same_clid(&clp
->cl_clientid
, clid
)) {
2204 if ((bool)clp
->cl_minorversion
!= sessions
)
2206 renew_client_locked(clp
);
2213 static struct nfs4_client
*
2214 find_confirmed_client(clientid_t
*clid
, bool sessions
, struct nfsd_net
*nn
)
2216 struct list_head
*tbl
= nn
->conf_id_hashtbl
;
2218 lockdep_assert_held(&nn
->client_lock
);
2219 return find_client_in_id_table(tbl
, clid
, sessions
);
2222 static struct nfs4_client
*
2223 find_unconfirmed_client(clientid_t
*clid
, bool sessions
, struct nfsd_net
*nn
)
2225 struct list_head
*tbl
= nn
->unconf_id_hashtbl
;
2227 lockdep_assert_held(&nn
->client_lock
);
2228 return find_client_in_id_table(tbl
, clid
, sessions
);
2231 static bool clp_used_exchangeid(struct nfs4_client
*clp
)
2233 return clp
->cl_exchange_flags
!= 0;
2236 static struct nfs4_client
*
2237 find_confirmed_client_by_name(struct xdr_netobj
*name
, struct nfsd_net
*nn
)
2239 lockdep_assert_held(&nn
->client_lock
);
2240 return find_clp_in_name_tree(name
, &nn
->conf_name_tree
);
2243 static struct nfs4_client
*
2244 find_unconfirmed_client_by_name(struct xdr_netobj
*name
, struct nfsd_net
*nn
)
2246 lockdep_assert_held(&nn
->client_lock
);
2247 return find_clp_in_name_tree(name
, &nn
->unconf_name_tree
);
2251 gen_callback(struct nfs4_client
*clp
, struct nfsd4_setclientid
*se
, struct svc_rqst
*rqstp
)
2253 struct nfs4_cb_conn
*conn
= &clp
->cl_cb_conn
;
2254 struct sockaddr
*sa
= svc_addr(rqstp
);
2255 u32 scopeid
= rpc_get_scope_id(sa
);
2256 unsigned short expected_family
;
2258 /* Currently, we only support tcp and tcp6 for the callback channel */
2259 if (se
->se_callback_netid_len
== 3 &&
2260 !memcmp(se
->se_callback_netid_val
, "tcp", 3))
2261 expected_family
= AF_INET
;
2262 else if (se
->se_callback_netid_len
== 4 &&
2263 !memcmp(se
->se_callback_netid_val
, "tcp6", 4))
2264 expected_family
= AF_INET6
;
2268 conn
->cb_addrlen
= rpc_uaddr2sockaddr(clp
->net
, se
->se_callback_addr_val
,
2269 se
->se_callback_addr_len
,
2270 (struct sockaddr
*)&conn
->cb_addr
,
2271 sizeof(conn
->cb_addr
));
2273 if (!conn
->cb_addrlen
|| conn
->cb_addr
.ss_family
!= expected_family
)
2276 if (conn
->cb_addr
.ss_family
== AF_INET6
)
2277 ((struct sockaddr_in6
*)&conn
->cb_addr
)->sin6_scope_id
= scopeid
;
2279 conn
->cb_prog
= se
->se_callback_prog
;
2280 conn
->cb_ident
= se
->se_callback_ident
;
2281 memcpy(&conn
->cb_saddr
, &rqstp
->rq_daddr
, rqstp
->rq_daddrlen
);
2284 conn
->cb_addr
.ss_family
= AF_UNSPEC
;
2285 conn
->cb_addrlen
= 0;
2286 dprintk(KERN_INFO
"NFSD: this client (clientid %08x/%08x) "
2287 "will not receive delegations\n",
2288 clp
->cl_clientid
.cl_boot
, clp
->cl_clientid
.cl_id
);
2294 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
2297 nfsd4_store_cache_entry(struct nfsd4_compoundres
*resp
)
2299 struct xdr_buf
*buf
= resp
->xdr
.buf
;
2300 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
2303 dprintk("--> %s slot %p\n", __func__
, slot
);
2305 slot
->sl_opcnt
= resp
->opcnt
;
2306 slot
->sl_status
= resp
->cstate
.status
;
2308 slot
->sl_flags
|= NFSD4_SLOT_INITIALIZED
;
2309 if (nfsd4_not_cached(resp
)) {
2310 slot
->sl_datalen
= 0;
2313 base
= resp
->cstate
.data_offset
;
2314 slot
->sl_datalen
= buf
->len
- base
;
2315 if (read_bytes_from_xdr_buf(buf
, base
, slot
->sl_data
, slot
->sl_datalen
))
2316 WARN(1, "%s: sessions DRC could not cache compound\n",
2322 * Encode the replay sequence operation from the slot values.
2323 * If cachethis is FALSE encode the uncached rep error on the next
2324 * operation which sets resp->p and increments resp->opcnt for
2325 * nfs4svc_encode_compoundres.
2329 nfsd4_enc_sequence_replay(struct nfsd4_compoundargs
*args
,
2330 struct nfsd4_compoundres
*resp
)
2332 struct nfsd4_op
*op
;
2333 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
2335 /* Encode the replayed sequence operation */
2336 op
= &args
->ops
[resp
->opcnt
- 1];
2337 nfsd4_encode_operation(resp
, op
);
2339 /* Return nfserr_retry_uncached_rep in next operation. */
2340 if (args
->opcnt
> 1 && !(slot
->sl_flags
& NFSD4_SLOT_CACHETHIS
)) {
2341 op
= &args
->ops
[resp
->opcnt
++];
2342 op
->status
= nfserr_retry_uncached_rep
;
2343 nfsd4_encode_operation(resp
, op
);
2349 * The sequence operation is not cached because we can use the slot and
2353 nfsd4_replay_cache_entry(struct nfsd4_compoundres
*resp
,
2354 struct nfsd4_sequence
*seq
)
2356 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
2357 struct xdr_stream
*xdr
= &resp
->xdr
;
2361 dprintk("--> %s slot %p\n", __func__
, slot
);
2363 status
= nfsd4_enc_sequence_replay(resp
->rqstp
->rq_argp
, resp
);
2367 p
= xdr_reserve_space(xdr
, slot
->sl_datalen
);
2370 return nfserr_serverfault
;
2372 xdr_encode_opaque_fixed(p
, slot
->sl_data
, slot
->sl_datalen
);
2373 xdr_commit_encode(xdr
);
2375 resp
->opcnt
= slot
->sl_opcnt
;
2376 return slot
->sl_status
;
2380 * Set the exchange_id flags returned by the server.
2383 nfsd4_set_ex_flags(struct nfs4_client
*new, struct nfsd4_exchange_id
*clid
)
2385 #ifdef CONFIG_NFSD_PNFS
2386 new->cl_exchange_flags
|= EXCHGID4_FLAG_USE_PNFS_MDS
;
2388 new->cl_exchange_flags
|= EXCHGID4_FLAG_USE_NON_PNFS
;
2391 /* Referrals are supported, Migration is not. */
2392 new->cl_exchange_flags
|= EXCHGID4_FLAG_SUPP_MOVED_REFER
;
2394 /* set the wire flags to return to client. */
2395 clid
->flags
= new->cl_exchange_flags
;
2398 static bool client_has_openowners(struct nfs4_client
*clp
)
2400 struct nfs4_openowner
*oo
;
2402 list_for_each_entry(oo
, &clp
->cl_openowners
, oo_perclient
) {
2403 if (!list_empty(&oo
->oo_owner
.so_stateids
))
2409 static bool client_has_state(struct nfs4_client
*clp
)
2411 return client_has_openowners(clp
)
2412 #ifdef CONFIG_NFSD_PNFS
2413 || !list_empty(&clp
->cl_lo_states
)
2415 || !list_empty(&clp
->cl_delegations
)
2416 || !list_empty(&clp
->cl_sessions
);
2420 nfsd4_exchange_id(struct svc_rqst
*rqstp
,
2421 struct nfsd4_compound_state
*cstate
,
2422 struct nfsd4_exchange_id
*exid
)
2424 struct nfs4_client
*conf
, *new;
2425 struct nfs4_client
*unconf
= NULL
;
2427 char addr_str
[INET6_ADDRSTRLEN
];
2428 nfs4_verifier verf
= exid
->verifier
;
2429 struct sockaddr
*sa
= svc_addr(rqstp
);
2430 bool update
= exid
->flags
& EXCHGID4_FLAG_UPD_CONFIRMED_REC_A
;
2431 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
2433 rpc_ntop(sa
, addr_str
, sizeof(addr_str
));
2434 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
2435 "ip_addr=%s flags %x, spa_how %d\n",
2436 __func__
, rqstp
, exid
, exid
->clname
.len
, exid
->clname
.data
,
2437 addr_str
, exid
->flags
, exid
->spa_how
);
2439 if (exid
->flags
& ~EXCHGID4_FLAG_MASK_A
)
2440 return nfserr_inval
;
2442 new = create_client(exid
->clname
, rqstp
, &verf
);
2444 return nfserr_jukebox
;
2446 switch (exid
->spa_how
) {
2448 exid
->spo_must_enforce
[0] = 0;
2449 exid
->spo_must_enforce
[1] = (
2450 1 << (OP_BIND_CONN_TO_SESSION
- 32) |
2451 1 << (OP_EXCHANGE_ID
- 32) |
2452 1 << (OP_CREATE_SESSION
- 32) |
2453 1 << (OP_DESTROY_SESSION
- 32) |
2454 1 << (OP_DESTROY_CLIENTID
- 32));
2456 exid
->spo_must_allow
[0] &= (1 << (OP_CLOSE
) |
2457 1 << (OP_OPEN_DOWNGRADE
) |
2459 1 << (OP_DELEGRETURN
));
2461 exid
->spo_must_allow
[1] &= (
2462 1 << (OP_TEST_STATEID
- 32) |
2463 1 << (OP_FREE_STATEID
- 32));
2464 if (!svc_rqst_integrity_protected(rqstp
)) {
2465 status
= nfserr_inval
;
2469 * Sometimes userspace doesn't give us a principal.
2470 * Which is a bug, really. Anyway, we can't enforce
2471 * MACH_CRED in that case, better to give up now:
2473 if (!new->cl_cred
.cr_principal
&&
2474 !new->cl_cred
.cr_raw_principal
) {
2475 status
= nfserr_serverfault
;
2478 new->cl_mach_cred
= true;
2481 default: /* checked by xdr code */
2484 status
= nfserr_encr_alg_unsupp
;
2488 /* Cases below refer to rfc 5661 section 18.35.4: */
2489 spin_lock(&nn
->client_lock
);
2490 conf
= find_confirmed_client_by_name(&exid
->clname
, nn
);
2492 bool creds_match
= same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
);
2493 bool verfs_match
= same_verf(&verf
, &conf
->cl_verifier
);
2496 if (!clp_used_exchangeid(conf
)) { /* buggy client */
2497 status
= nfserr_inval
;
2500 if (!nfsd4_mach_creds_match(conf
, rqstp
)) {
2501 status
= nfserr_wrong_cred
;
2504 if (!creds_match
) { /* case 9 */
2505 status
= nfserr_perm
;
2508 if (!verfs_match
) { /* case 8 */
2509 status
= nfserr_not_same
;
2513 exid
->flags
|= EXCHGID4_FLAG_CONFIRMED_R
;
2516 if (!creds_match
) { /* case 3 */
2517 if (client_has_state(conf
)) {
2518 status
= nfserr_clid_inuse
;
2523 if (verfs_match
) { /* case 2 */
2524 conf
->cl_exchange_flags
|= EXCHGID4_FLAG_CONFIRMED_R
;
2527 /* case 5, client reboot */
2532 if (update
) { /* case 7 */
2533 status
= nfserr_noent
;
2537 unconf
= find_unconfirmed_client_by_name(&exid
->clname
, nn
);
2538 if (unconf
) /* case 4, possible retry or client restart */
2539 unhash_client_locked(unconf
);
2541 /* case 1 (normal case) */
2544 status
= mark_client_expired_locked(conf
);
2548 new->cl_minorversion
= cstate
->minorversion
;
2549 new->cl_spo_must_allow
.u
.words
[0] = exid
->spo_must_allow
[0];
2550 new->cl_spo_must_allow
.u
.words
[1] = exid
->spo_must_allow
[1];
2553 add_to_unconfirmed(new);
2556 exid
->clientid
.cl_boot
= conf
->cl_clientid
.cl_boot
;
2557 exid
->clientid
.cl_id
= conf
->cl_clientid
.cl_id
;
2559 exid
->seqid
= conf
->cl_cs_slot
.sl_seqid
+ 1;
2560 nfsd4_set_ex_flags(conf
, exid
);
2562 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
2563 conf
->cl_cs_slot
.sl_seqid
, conf
->cl_exchange_flags
);
2567 spin_unlock(&nn
->client_lock
);
2572 expire_client(unconf
);
2577 check_slot_seqid(u32 seqid
, u32 slot_seqid
, int slot_inuse
)
2579 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__
, seqid
,
2582 /* The slot is in use, and no response has been sent. */
2584 if (seqid
== slot_seqid
)
2585 return nfserr_jukebox
;
2587 return nfserr_seq_misordered
;
2589 /* Note unsigned 32-bit arithmetic handles wraparound: */
2590 if (likely(seqid
== slot_seqid
+ 1))
2592 if (seqid
== slot_seqid
)
2593 return nfserr_replay_cache
;
2594 return nfserr_seq_misordered
;
2598 * Cache the create session result into the create session single DRC
2599 * slot cache by saving the xdr structure. sl_seqid has been set.
2600 * Do this for solo or embedded create session operations.
2603 nfsd4_cache_create_session(struct nfsd4_create_session
*cr_ses
,
2604 struct nfsd4_clid_slot
*slot
, __be32 nfserr
)
2606 slot
->sl_status
= nfserr
;
2607 memcpy(&slot
->sl_cr_ses
, cr_ses
, sizeof(*cr_ses
));
2611 nfsd4_replay_create_session(struct nfsd4_create_session
*cr_ses
,
2612 struct nfsd4_clid_slot
*slot
)
2614 memcpy(cr_ses
, &slot
->sl_cr_ses
, sizeof(*cr_ses
));
2615 return slot
->sl_status
;
2618 #define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2619 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2620 1 + /* MIN tag is length with zero, only length */ \
2621 3 + /* version, opcount, opcode */ \
2622 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2623 /* seqid, slotID, slotID, cache */ \
2624 4 ) * sizeof(__be32))
2626 #define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2627 2 + /* verifier: AUTH_NULL, length 0 */\
2629 1 + /* MIN tag is length with zero, only length */ \
2630 3 + /* opcount, opcode, opstatus*/ \
2631 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2632 /* seqid, slotID, slotID, slotID, status */ \
2633 5 ) * sizeof(__be32))
2635 static __be32
check_forechannel_attrs(struct nfsd4_channel_attrs
*ca
, struct nfsd_net
*nn
)
2637 u32 maxrpc
= nn
->nfsd_serv
->sv_max_mesg
;
2639 if (ca
->maxreq_sz
< NFSD_MIN_REQ_HDR_SEQ_SZ
)
2640 return nfserr_toosmall
;
2641 if (ca
->maxresp_sz
< NFSD_MIN_RESP_HDR_SEQ_SZ
)
2642 return nfserr_toosmall
;
2643 ca
->headerpadsz
= 0;
2644 ca
->maxreq_sz
= min_t(u32
, ca
->maxreq_sz
, maxrpc
);
2645 ca
->maxresp_sz
= min_t(u32
, ca
->maxresp_sz
, maxrpc
);
2646 ca
->maxops
= min_t(u32
, ca
->maxops
, NFSD_MAX_OPS_PER_COMPOUND
);
2647 ca
->maxresp_cached
= min_t(u32
, ca
->maxresp_cached
,
2648 NFSD_SLOT_CACHE_SIZE
+ NFSD_MIN_HDR_SEQ_SZ
);
2649 ca
->maxreqs
= min_t(u32
, ca
->maxreqs
, NFSD_MAX_SLOTS_PER_SESSION
);
2651 * Note decreasing slot size below client's request may make it
2652 * difficult for client to function correctly, whereas
2653 * decreasing the number of slots will (just?) affect
2654 * performance. When short on memory we therefore prefer to
2655 * decrease number of slots instead of their size. Clients that
2656 * request larger slots than they need will get poor results:
2658 ca
->maxreqs
= nfsd4_get_drc_mem(ca
);
2660 return nfserr_jukebox
;
2666 * Server's NFSv4.1 backchannel support is AUTH_SYS-only for now.
2667 * These are based on similar macros in linux/sunrpc/msg_prot.h .
2669 #define RPC_MAX_HEADER_WITH_AUTH_SYS \
2670 (RPC_CALLHDRSIZE + 2 * (2 + UNX_CALLSLACK))
2672 #define RPC_MAX_REPHEADER_WITH_AUTH_SYS \
2673 (RPC_REPHDRSIZE + (2 + NUL_REPLYSLACK))
2675 #define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
2676 RPC_MAX_HEADER_WITH_AUTH_SYS) * sizeof(__be32))
2677 #define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
2678 RPC_MAX_REPHEADER_WITH_AUTH_SYS) * \
2681 static __be32
check_backchannel_attrs(struct nfsd4_channel_attrs
*ca
)
2683 ca
->headerpadsz
= 0;
2685 if (ca
->maxreq_sz
< NFSD_CB_MAX_REQ_SZ
)
2686 return nfserr_toosmall
;
2687 if (ca
->maxresp_sz
< NFSD_CB_MAX_RESP_SZ
)
2688 return nfserr_toosmall
;
2689 ca
->maxresp_cached
= 0;
2691 return nfserr_toosmall
;
2696 static __be32
nfsd4_check_cb_sec(struct nfsd4_cb_sec
*cbs
)
2698 switch (cbs
->flavor
) {
2704 * GSS case: the spec doesn't allow us to return this
2705 * error. But it also doesn't allow us not to support
2707 * I'd rather this fail hard than return some error the
2708 * client might think it can already handle:
2710 return nfserr_encr_alg_unsupp
;
2715 nfsd4_create_session(struct svc_rqst
*rqstp
,
2716 struct nfsd4_compound_state
*cstate
,
2717 struct nfsd4_create_session
*cr_ses
)
2719 struct sockaddr
*sa
= svc_addr(rqstp
);
2720 struct nfs4_client
*conf
, *unconf
;
2721 struct nfs4_client
*old
= NULL
;
2722 struct nfsd4_session
*new;
2723 struct nfsd4_conn
*conn
;
2724 struct nfsd4_clid_slot
*cs_slot
= NULL
;
2726 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
2728 if (cr_ses
->flags
& ~SESSION4_FLAG_MASK_A
)
2729 return nfserr_inval
;
2730 status
= nfsd4_check_cb_sec(&cr_ses
->cb_sec
);
2733 status
= check_forechannel_attrs(&cr_ses
->fore_channel
, nn
);
2736 status
= check_backchannel_attrs(&cr_ses
->back_channel
);
2738 goto out_release_drc_mem
;
2739 status
= nfserr_jukebox
;
2740 new = alloc_session(&cr_ses
->fore_channel
, &cr_ses
->back_channel
);
2742 goto out_release_drc_mem
;
2743 conn
= alloc_conn_from_crses(rqstp
, cr_ses
);
2745 goto out_free_session
;
2747 spin_lock(&nn
->client_lock
);
2748 unconf
= find_unconfirmed_client(&cr_ses
->clientid
, true, nn
);
2749 conf
= find_confirmed_client(&cr_ses
->clientid
, true, nn
);
2750 WARN_ON_ONCE(conf
&& unconf
);
2753 status
= nfserr_wrong_cred
;
2754 if (!nfsd4_mach_creds_match(conf
, rqstp
))
2756 cs_slot
= &conf
->cl_cs_slot
;
2757 status
= check_slot_seqid(cr_ses
->seqid
, cs_slot
->sl_seqid
, 0);
2759 if (status
== nfserr_replay_cache
)
2760 status
= nfsd4_replay_create_session(cr_ses
, cs_slot
);
2763 } else if (unconf
) {
2764 if (!same_creds(&unconf
->cl_cred
, &rqstp
->rq_cred
) ||
2765 !rpc_cmp_addr(sa
, (struct sockaddr
*) &unconf
->cl_addr
)) {
2766 status
= nfserr_clid_inuse
;
2769 status
= nfserr_wrong_cred
;
2770 if (!nfsd4_mach_creds_match(unconf
, rqstp
))
2772 cs_slot
= &unconf
->cl_cs_slot
;
2773 status
= check_slot_seqid(cr_ses
->seqid
, cs_slot
->sl_seqid
, 0);
2775 /* an unconfirmed replay returns misordered */
2776 status
= nfserr_seq_misordered
;
2779 old
= find_confirmed_client_by_name(&unconf
->cl_name
, nn
);
2781 status
= mark_client_expired_locked(old
);
2787 move_to_confirmed(unconf
);
2790 status
= nfserr_stale_clientid
;
2794 /* Persistent sessions are not supported */
2795 cr_ses
->flags
&= ~SESSION4_PERSIST
;
2796 /* Upshifting from TCP to RDMA is not supported */
2797 cr_ses
->flags
&= ~SESSION4_RDMA
;
2799 init_session(rqstp
, new, conf
, cr_ses
);
2800 nfsd4_get_session_locked(new);
2802 memcpy(cr_ses
->sessionid
.data
, new->se_sessionid
.data
,
2803 NFS4_MAX_SESSIONID_LEN
);
2804 cs_slot
->sl_seqid
++;
2805 cr_ses
->seqid
= cs_slot
->sl_seqid
;
2807 /* cache solo and embedded create sessions under the client_lock */
2808 nfsd4_cache_create_session(cr_ses
, cs_slot
, status
);
2809 spin_unlock(&nn
->client_lock
);
2810 /* init connection and backchannel */
2811 nfsd4_init_conn(rqstp
, conn
, new);
2812 nfsd4_put_session(new);
2817 spin_unlock(&nn
->client_lock
);
2822 __free_session(new);
2823 out_release_drc_mem
:
2824 nfsd4_put_drc_mem(&cr_ses
->fore_channel
);
2828 static __be32
nfsd4_map_bcts_dir(u32
*dir
)
2831 case NFS4_CDFC4_FORE
:
2832 case NFS4_CDFC4_BACK
:
2834 case NFS4_CDFC4_FORE_OR_BOTH
:
2835 case NFS4_CDFC4_BACK_OR_BOTH
:
2836 *dir
= NFS4_CDFC4_BOTH
;
2839 return nfserr_inval
;
2842 __be32
nfsd4_backchannel_ctl(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
, struct nfsd4_backchannel_ctl
*bc
)
2844 struct nfsd4_session
*session
= cstate
->session
;
2845 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
2848 status
= nfsd4_check_cb_sec(&bc
->bc_cb_sec
);
2851 spin_lock(&nn
->client_lock
);
2852 session
->se_cb_prog
= bc
->bc_cb_program
;
2853 session
->se_cb_sec
= bc
->bc_cb_sec
;
2854 spin_unlock(&nn
->client_lock
);
2856 nfsd4_probe_callback(session
->se_client
);
2861 __be32
nfsd4_bind_conn_to_session(struct svc_rqst
*rqstp
,
2862 struct nfsd4_compound_state
*cstate
,
2863 struct nfsd4_bind_conn_to_session
*bcts
)
2866 struct nfsd4_conn
*conn
;
2867 struct nfsd4_session
*session
;
2868 struct net
*net
= SVC_NET(rqstp
);
2869 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
2871 if (!nfsd4_last_compound_op(rqstp
))
2872 return nfserr_not_only_op
;
2873 spin_lock(&nn
->client_lock
);
2874 session
= find_in_sessionid_hashtbl(&bcts
->sessionid
, net
, &status
);
2875 spin_unlock(&nn
->client_lock
);
2877 goto out_no_session
;
2878 status
= nfserr_wrong_cred
;
2879 if (!nfsd4_mach_creds_match(session
->se_client
, rqstp
))
2881 status
= nfsd4_map_bcts_dir(&bcts
->dir
);
2884 conn
= alloc_conn(rqstp
, bcts
->dir
);
2885 status
= nfserr_jukebox
;
2888 nfsd4_init_conn(rqstp
, conn
, session
);
2891 nfsd4_put_session(session
);
2896 static bool nfsd4_compound_in_session(struct nfsd4_session
*session
, struct nfs4_sessionid
*sid
)
2900 return !memcmp(sid
, &session
->se_sessionid
, sizeof(*sid
));
2904 nfsd4_destroy_session(struct svc_rqst
*r
,
2905 struct nfsd4_compound_state
*cstate
,
2906 struct nfsd4_destroy_session
*sessionid
)
2908 struct nfsd4_session
*ses
;
2910 int ref_held_by_me
= 0;
2911 struct net
*net
= SVC_NET(r
);
2912 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
2914 status
= nfserr_not_only_op
;
2915 if (nfsd4_compound_in_session(cstate
->session
, &sessionid
->sessionid
)) {
2916 if (!nfsd4_last_compound_op(r
))
2920 dump_sessionid(__func__
, &sessionid
->sessionid
);
2921 spin_lock(&nn
->client_lock
);
2922 ses
= find_in_sessionid_hashtbl(&sessionid
->sessionid
, net
, &status
);
2924 goto out_client_lock
;
2925 status
= nfserr_wrong_cred
;
2926 if (!nfsd4_mach_creds_match(ses
->se_client
, r
))
2927 goto out_put_session
;
2928 status
= mark_session_dead_locked(ses
, 1 + ref_held_by_me
);
2930 goto out_put_session
;
2931 unhash_session(ses
);
2932 spin_unlock(&nn
->client_lock
);
2934 nfsd4_probe_callback_sync(ses
->se_client
);
2936 spin_lock(&nn
->client_lock
);
2939 nfsd4_put_session_locked(ses
);
2941 spin_unlock(&nn
->client_lock
);
2946 static struct nfsd4_conn
*__nfsd4_find_conn(struct svc_xprt
*xpt
, struct nfsd4_session
*s
)
2948 struct nfsd4_conn
*c
;
2950 list_for_each_entry(c
, &s
->se_conns
, cn_persession
) {
2951 if (c
->cn_xprt
== xpt
) {
2958 static __be32
nfsd4_sequence_check_conn(struct nfsd4_conn
*new, struct nfsd4_session
*ses
)
2960 struct nfs4_client
*clp
= ses
->se_client
;
2961 struct nfsd4_conn
*c
;
2962 __be32 status
= nfs_ok
;
2965 spin_lock(&clp
->cl_lock
);
2966 c
= __nfsd4_find_conn(new->cn_xprt
, ses
);
2969 status
= nfserr_conn_not_bound_to_session
;
2970 if (clp
->cl_mach_cred
)
2972 __nfsd4_hash_conn(new, ses
);
2973 spin_unlock(&clp
->cl_lock
);
2974 ret
= nfsd4_register_conn(new);
2976 /* oops; xprt is already down: */
2977 nfsd4_conn_lost(&new->cn_xpt_user
);
2980 spin_unlock(&clp
->cl_lock
);
2985 static bool nfsd4_session_too_many_ops(struct svc_rqst
*rqstp
, struct nfsd4_session
*session
)
2987 struct nfsd4_compoundargs
*args
= rqstp
->rq_argp
;
2989 return args
->opcnt
> session
->se_fchannel
.maxops
;
2992 static bool nfsd4_request_too_big(struct svc_rqst
*rqstp
,
2993 struct nfsd4_session
*session
)
2995 struct xdr_buf
*xb
= &rqstp
->rq_arg
;
2997 return xb
->len
> session
->se_fchannel
.maxreq_sz
;
3001 nfsd4_sequence(struct svc_rqst
*rqstp
,
3002 struct nfsd4_compound_state
*cstate
,
3003 struct nfsd4_sequence
*seq
)
3005 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
3006 struct xdr_stream
*xdr
= &resp
->xdr
;
3007 struct nfsd4_session
*session
;
3008 struct nfs4_client
*clp
;
3009 struct nfsd4_slot
*slot
;
3010 struct nfsd4_conn
*conn
;
3013 struct net
*net
= SVC_NET(rqstp
);
3014 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
3016 if (resp
->opcnt
!= 1)
3017 return nfserr_sequence_pos
;
3020 * Will be either used or freed by nfsd4_sequence_check_conn
3023 conn
= alloc_conn(rqstp
, NFS4_CDFC4_FORE
);
3025 return nfserr_jukebox
;
3027 spin_lock(&nn
->client_lock
);
3028 session
= find_in_sessionid_hashtbl(&seq
->sessionid
, net
, &status
);
3030 goto out_no_session
;
3031 clp
= session
->se_client
;
3033 status
= nfserr_too_many_ops
;
3034 if (nfsd4_session_too_many_ops(rqstp
, session
))
3035 goto out_put_session
;
3037 status
= nfserr_req_too_big
;
3038 if (nfsd4_request_too_big(rqstp
, session
))
3039 goto out_put_session
;
3041 status
= nfserr_badslot
;
3042 if (seq
->slotid
>= session
->se_fchannel
.maxreqs
)
3043 goto out_put_session
;
3045 slot
= session
->se_slots
[seq
->slotid
];
3046 dprintk("%s: slotid %d\n", __func__
, seq
->slotid
);
3048 /* We do not negotiate the number of slots yet, so set the
3049 * maxslots to the session maxreqs which is used to encode
3050 * sr_highest_slotid and the sr_target_slot id to maxslots */
3051 seq
->maxslots
= session
->se_fchannel
.maxreqs
;
3053 status
= check_slot_seqid(seq
->seqid
, slot
->sl_seqid
,
3054 slot
->sl_flags
& NFSD4_SLOT_INUSE
);
3055 if (status
== nfserr_replay_cache
) {
3056 status
= nfserr_seq_misordered
;
3057 if (!(slot
->sl_flags
& NFSD4_SLOT_INITIALIZED
))
3058 goto out_put_session
;
3059 cstate
->slot
= slot
;
3060 cstate
->session
= session
;
3062 /* Return the cached reply status and set cstate->status
3063 * for nfsd4_proc_compound processing */
3064 status
= nfsd4_replay_cache_entry(resp
, seq
);
3065 cstate
->status
= nfserr_replay_cache
;
3069 goto out_put_session
;
3071 status
= nfsd4_sequence_check_conn(conn
, session
);
3074 goto out_put_session
;
3076 buflen
= (seq
->cachethis
) ?
3077 session
->se_fchannel
.maxresp_cached
:
3078 session
->se_fchannel
.maxresp_sz
;
3079 status
= (seq
->cachethis
) ? nfserr_rep_too_big_to_cache
:
3081 if (xdr_restrict_buflen(xdr
, buflen
- rqstp
->rq_auth_slack
))
3082 goto out_put_session
;
3083 svc_reserve(rqstp
, buflen
);
3086 /* Success! bump slot seqid */
3087 slot
->sl_seqid
= seq
->seqid
;
3088 slot
->sl_flags
|= NFSD4_SLOT_INUSE
;
3090 slot
->sl_flags
|= NFSD4_SLOT_CACHETHIS
;
3092 slot
->sl_flags
&= ~NFSD4_SLOT_CACHETHIS
;
3094 cstate
->slot
= slot
;
3095 cstate
->session
= session
;
3099 switch (clp
->cl_cb_state
) {
3101 seq
->status_flags
= SEQ4_STATUS_CB_PATH_DOWN
;
3103 case NFSD4_CB_FAULT
:
3104 seq
->status_flags
= SEQ4_STATUS_BACKCHANNEL_FAULT
;
3107 seq
->status_flags
= 0;
3109 if (!list_empty(&clp
->cl_revoked
))
3110 seq
->status_flags
|= SEQ4_STATUS_RECALLABLE_STATE_REVOKED
;
3114 spin_unlock(&nn
->client_lock
);
3117 nfsd4_put_session_locked(session
);
3118 goto out_no_session
;
3122 nfsd4_sequence_done(struct nfsd4_compoundres
*resp
)
3124 struct nfsd4_compound_state
*cs
= &resp
->cstate
;
3126 if (nfsd4_has_session(cs
)) {
3127 if (cs
->status
!= nfserr_replay_cache
) {
3128 nfsd4_store_cache_entry(resp
);
3129 cs
->slot
->sl_flags
&= ~NFSD4_SLOT_INUSE
;
3131 /* Drop session reference that was taken in nfsd4_sequence() */
3132 nfsd4_put_session(cs
->session
);
3134 put_client_renew(cs
->clp
);
3138 nfsd4_destroy_clientid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
, struct nfsd4_destroy_clientid
*dc
)
3140 struct nfs4_client
*conf
, *unconf
;
3141 struct nfs4_client
*clp
= NULL
;
3143 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
3145 spin_lock(&nn
->client_lock
);
3146 unconf
= find_unconfirmed_client(&dc
->clientid
, true, nn
);
3147 conf
= find_confirmed_client(&dc
->clientid
, true, nn
);
3148 WARN_ON_ONCE(conf
&& unconf
);
3151 if (client_has_state(conf
)) {
3152 status
= nfserr_clientid_busy
;
3155 status
= mark_client_expired_locked(conf
);
3162 status
= nfserr_stale_clientid
;
3165 if (!nfsd4_mach_creds_match(clp
, rqstp
)) {
3167 status
= nfserr_wrong_cred
;
3170 unhash_client_locked(clp
);
3172 spin_unlock(&nn
->client_lock
);
3179 nfsd4_reclaim_complete(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
, struct nfsd4_reclaim_complete
*rc
)
3183 if (rc
->rca_one_fs
) {
3184 if (!cstate
->current_fh
.fh_dentry
)
3185 return nfserr_nofilehandle
;
3187 * We don't take advantage of the rca_one_fs case.
3188 * That's OK, it's optional, we can safely ignore it.
3193 status
= nfserr_complete_already
;
3194 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE
,
3195 &cstate
->session
->se_client
->cl_flags
))
3198 status
= nfserr_stale_clientid
;
3199 if (is_client_expired(cstate
->session
->se_client
))
3201 * The following error isn't really legal.
3202 * But we only get here if the client just explicitly
3203 * destroyed the client. Surely it no longer cares what
3204 * error it gets back on an operation for the dead
3210 nfsd4_client_record_create(cstate
->session
->se_client
);
3216 nfsd4_setclientid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
3217 struct nfsd4_setclientid
*setclid
)
3219 struct xdr_netobj clname
= setclid
->se_name
;
3220 nfs4_verifier clverifier
= setclid
->se_verf
;
3221 struct nfs4_client
*conf
, *new;
3222 struct nfs4_client
*unconf
= NULL
;
3224 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
3226 new = create_client(clname
, rqstp
, &clverifier
);
3228 return nfserr_jukebox
;
3229 /* Cases below refer to rfc 3530 section 14.2.33: */
3230 spin_lock(&nn
->client_lock
);
3231 conf
= find_confirmed_client_by_name(&clname
, nn
);
3232 if (conf
&& client_has_state(conf
)) {
3234 status
= nfserr_clid_inuse
;
3235 if (clp_used_exchangeid(conf
))
3237 if (!same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
)) {
3238 char addr_str
[INET6_ADDRSTRLEN
];
3239 rpc_ntop((struct sockaddr
*) &conf
->cl_addr
, addr_str
,
3241 dprintk("NFSD: setclientid: string in use by client "
3242 "at %s\n", addr_str
);
3246 unconf
= find_unconfirmed_client_by_name(&clname
, nn
);
3248 unhash_client_locked(unconf
);
3249 if (conf
&& same_verf(&conf
->cl_verifier
, &clverifier
)) {
3250 /* case 1: probable callback update */
3251 copy_clid(new, conf
);
3252 gen_confirm(new, nn
);
3253 } else /* case 4 (new client) or cases 2, 3 (client reboot): */
3255 new->cl_minorversion
= 0;
3256 gen_callback(new, setclid
, rqstp
);
3257 add_to_unconfirmed(new);
3258 setclid
->se_clientid
.cl_boot
= new->cl_clientid
.cl_boot
;
3259 setclid
->se_clientid
.cl_id
= new->cl_clientid
.cl_id
;
3260 memcpy(setclid
->se_confirm
.data
, new->cl_confirm
.data
, sizeof(setclid
->se_confirm
.data
));
3264 spin_unlock(&nn
->client_lock
);
3268 expire_client(unconf
);
3274 nfsd4_setclientid_confirm(struct svc_rqst
*rqstp
,
3275 struct nfsd4_compound_state
*cstate
,
3276 struct nfsd4_setclientid_confirm
*setclientid_confirm
)
3278 struct nfs4_client
*conf
, *unconf
;
3279 struct nfs4_client
*old
= NULL
;
3280 nfs4_verifier confirm
= setclientid_confirm
->sc_confirm
;
3281 clientid_t
* clid
= &setclientid_confirm
->sc_clientid
;
3283 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
3285 if (STALE_CLIENTID(clid
, nn
))
3286 return nfserr_stale_clientid
;
3288 spin_lock(&nn
->client_lock
);
3289 conf
= find_confirmed_client(clid
, false, nn
);
3290 unconf
= find_unconfirmed_client(clid
, false, nn
);
3292 * We try hard to give out unique clientid's, so if we get an
3293 * attempt to confirm the same clientid with a different cred,
3294 * the client may be buggy; this should never happen.
3296 * Nevertheless, RFC 7530 recommends INUSE for this case:
3298 status
= nfserr_clid_inuse
;
3299 if (unconf
&& !same_creds(&unconf
->cl_cred
, &rqstp
->rq_cred
))
3301 if (conf
&& !same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
))
3303 /* cases below refer to rfc 3530 section 14.2.34: */
3304 if (!unconf
|| !same_verf(&confirm
, &unconf
->cl_confirm
)) {
3305 if (conf
&& same_verf(&confirm
, &conf
->cl_confirm
)) {
3306 /* case 2: probable retransmit */
3308 } else /* case 4: client hasn't noticed we rebooted yet? */
3309 status
= nfserr_stale_clientid
;
3313 if (conf
) { /* case 1: callback update */
3315 unhash_client_locked(old
);
3316 nfsd4_change_callback(conf
, &unconf
->cl_cb_conn
);
3317 } else { /* case 3: normal case; new or rebooted client */
3318 old
= find_confirmed_client_by_name(&unconf
->cl_name
, nn
);
3320 status
= nfserr_clid_inuse
;
3321 if (client_has_state(old
)
3322 && !same_creds(&unconf
->cl_cred
,
3325 status
= mark_client_expired_locked(old
);
3331 move_to_confirmed(unconf
);
3334 get_client_locked(conf
);
3335 spin_unlock(&nn
->client_lock
);
3336 nfsd4_probe_callback(conf
);
3337 spin_lock(&nn
->client_lock
);
3338 put_client_renew_locked(conf
);
3340 spin_unlock(&nn
->client_lock
);
3346 static struct nfs4_file
*nfsd4_alloc_file(void)
3348 return kmem_cache_alloc(file_slab
, GFP_KERNEL
);
3351 /* OPEN Share state helper functions */
3352 static void nfsd4_init_file(struct knfsd_fh
*fh
, unsigned int hashval
,
3353 struct nfs4_file
*fp
)
3355 lockdep_assert_held(&state_lock
);
3357 atomic_set(&fp
->fi_ref
, 1);
3358 spin_lock_init(&fp
->fi_lock
);
3359 INIT_LIST_HEAD(&fp
->fi_stateids
);
3360 INIT_LIST_HEAD(&fp
->fi_delegations
);
3361 INIT_LIST_HEAD(&fp
->fi_clnt_odstate
);
3362 fh_copy_shallow(&fp
->fi_fhandle
, fh
);
3363 fp
->fi_deleg_file
= NULL
;
3364 fp
->fi_had_conflict
= false;
3365 fp
->fi_share_deny
= 0;
3366 memset(fp
->fi_fds
, 0, sizeof(fp
->fi_fds
));
3367 memset(fp
->fi_access
, 0, sizeof(fp
->fi_access
));
3368 #ifdef CONFIG_NFSD_PNFS
3369 INIT_LIST_HEAD(&fp
->fi_lo_states
);
3370 atomic_set(&fp
->fi_lo_recalls
, 0);
3372 hlist_add_head_rcu(&fp
->fi_hash
, &file_hashtbl
[hashval
]);
3376 nfsd4_free_slabs(void)
3378 kmem_cache_destroy(odstate_slab
);
3379 kmem_cache_destroy(openowner_slab
);
3380 kmem_cache_destroy(lockowner_slab
);
3381 kmem_cache_destroy(file_slab
);
3382 kmem_cache_destroy(stateid_slab
);
3383 kmem_cache_destroy(deleg_slab
);
3387 nfsd4_init_slabs(void)
3389 openowner_slab
= kmem_cache_create("nfsd4_openowners",
3390 sizeof(struct nfs4_openowner
), 0, 0, NULL
);
3391 if (openowner_slab
== NULL
)
3393 lockowner_slab
= kmem_cache_create("nfsd4_lockowners",
3394 sizeof(struct nfs4_lockowner
), 0, 0, NULL
);
3395 if (lockowner_slab
== NULL
)
3396 goto out_free_openowner_slab
;
3397 file_slab
= kmem_cache_create("nfsd4_files",
3398 sizeof(struct nfs4_file
), 0, 0, NULL
);
3399 if (file_slab
== NULL
)
3400 goto out_free_lockowner_slab
;
3401 stateid_slab
= kmem_cache_create("nfsd4_stateids",
3402 sizeof(struct nfs4_ol_stateid
), 0, 0, NULL
);
3403 if (stateid_slab
== NULL
)
3404 goto out_free_file_slab
;
3405 deleg_slab
= kmem_cache_create("nfsd4_delegations",
3406 sizeof(struct nfs4_delegation
), 0, 0, NULL
);
3407 if (deleg_slab
== NULL
)
3408 goto out_free_stateid_slab
;
3409 odstate_slab
= kmem_cache_create("nfsd4_odstate",
3410 sizeof(struct nfs4_clnt_odstate
), 0, 0, NULL
);
3411 if (odstate_slab
== NULL
)
3412 goto out_free_deleg_slab
;
3415 out_free_deleg_slab
:
3416 kmem_cache_destroy(deleg_slab
);
3417 out_free_stateid_slab
:
3418 kmem_cache_destroy(stateid_slab
);
3420 kmem_cache_destroy(file_slab
);
3421 out_free_lockowner_slab
:
3422 kmem_cache_destroy(lockowner_slab
);
3423 out_free_openowner_slab
:
3424 kmem_cache_destroy(openowner_slab
);
3426 dprintk("nfsd4: out of memory while initializing nfsv4\n");
3430 static void init_nfs4_replay(struct nfs4_replay
*rp
)
3432 rp
->rp_status
= nfserr_serverfault
;
3434 rp
->rp_buf
= rp
->rp_ibuf
;
3435 mutex_init(&rp
->rp_mutex
);
3438 static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state
*cstate
,
3439 struct nfs4_stateowner
*so
)
3441 if (!nfsd4_has_session(cstate
)) {
3442 mutex_lock(&so
->so_replay
.rp_mutex
);
3443 cstate
->replay_owner
= nfs4_get_stateowner(so
);
3447 void nfsd4_cstate_clear_replay(struct nfsd4_compound_state
*cstate
)
3449 struct nfs4_stateowner
*so
= cstate
->replay_owner
;
3452 cstate
->replay_owner
= NULL
;
3453 mutex_unlock(&so
->so_replay
.rp_mutex
);
3454 nfs4_put_stateowner(so
);
3458 static inline void *alloc_stateowner(struct kmem_cache
*slab
, struct xdr_netobj
*owner
, struct nfs4_client
*clp
)
3460 struct nfs4_stateowner
*sop
;
3462 sop
= kmem_cache_alloc(slab
, GFP_KERNEL
);
3466 sop
->so_owner
.data
= kmemdup(owner
->data
, owner
->len
, GFP_KERNEL
);
3467 if (!sop
->so_owner
.data
) {
3468 kmem_cache_free(slab
, sop
);
3471 sop
->so_owner
.len
= owner
->len
;
3473 INIT_LIST_HEAD(&sop
->so_stateids
);
3474 sop
->so_client
= clp
;
3475 init_nfs4_replay(&sop
->so_replay
);
3476 atomic_set(&sop
->so_count
, 1);
3480 static void hash_openowner(struct nfs4_openowner
*oo
, struct nfs4_client
*clp
, unsigned int strhashval
)
3482 lockdep_assert_held(&clp
->cl_lock
);
3484 list_add(&oo
->oo_owner
.so_strhash
,
3485 &clp
->cl_ownerstr_hashtbl
[strhashval
]);
3486 list_add(&oo
->oo_perclient
, &clp
->cl_openowners
);
3489 static void nfs4_unhash_openowner(struct nfs4_stateowner
*so
)
3491 unhash_openowner_locked(openowner(so
));
3494 static void nfs4_free_openowner(struct nfs4_stateowner
*so
)
3496 struct nfs4_openowner
*oo
= openowner(so
);
3498 kmem_cache_free(openowner_slab
, oo
);
3501 static const struct nfs4_stateowner_operations openowner_ops
= {
3502 .so_unhash
= nfs4_unhash_openowner
,
3503 .so_free
= nfs4_free_openowner
,
3506 static struct nfs4_ol_stateid
*
3507 nfsd4_find_existing_open(struct nfs4_file
*fp
, struct nfsd4_open
*open
)
3509 struct nfs4_ol_stateid
*local
, *ret
= NULL
;
3510 struct nfs4_openowner
*oo
= open
->op_openowner
;
3512 lockdep_assert_held(&fp
->fi_lock
);
3514 list_for_each_entry(local
, &fp
->fi_stateids
, st_perfile
) {
3515 /* ignore lock owners */
3516 if (local
->st_stateowner
->so_is_open_owner
== 0)
3518 if (local
->st_stateowner
== &oo
->oo_owner
) {
3520 atomic_inc(&ret
->st_stid
.sc_count
);
3527 static struct nfs4_openowner
*
3528 alloc_init_open_stateowner(unsigned int strhashval
, struct nfsd4_open
*open
,
3529 struct nfsd4_compound_state
*cstate
)
3531 struct nfs4_client
*clp
= cstate
->clp
;
3532 struct nfs4_openowner
*oo
, *ret
;
3534 oo
= alloc_stateowner(openowner_slab
, &open
->op_owner
, clp
);
3537 oo
->oo_owner
.so_ops
= &openowner_ops
;
3538 oo
->oo_owner
.so_is_open_owner
= 1;
3539 oo
->oo_owner
.so_seqid
= open
->op_seqid
;
3541 if (nfsd4_has_session(cstate
))
3542 oo
->oo_flags
|= NFS4_OO_CONFIRMED
;
3544 oo
->oo_last_closed_stid
= NULL
;
3545 INIT_LIST_HEAD(&oo
->oo_close_lru
);
3546 spin_lock(&clp
->cl_lock
);
3547 ret
= find_openstateowner_str_locked(strhashval
, open
, clp
);
3549 hash_openowner(oo
, clp
, strhashval
);
3552 nfs4_free_stateowner(&oo
->oo_owner
);
3554 spin_unlock(&clp
->cl_lock
);
3558 static struct nfs4_ol_stateid
*
3559 init_open_stateid(struct nfs4_file
*fp
, struct nfsd4_open
*open
)
3562 struct nfs4_openowner
*oo
= open
->op_openowner
;
3563 struct nfs4_ol_stateid
*retstp
= NULL
;
3564 struct nfs4_ol_stateid
*stp
;
3567 /* We are moving these outside of the spinlocks to avoid the warnings */
3568 mutex_init(&stp
->st_mutex
);
3569 mutex_lock(&stp
->st_mutex
);
3571 spin_lock(&oo
->oo_owner
.so_client
->cl_lock
);
3572 spin_lock(&fp
->fi_lock
);
3574 retstp
= nfsd4_find_existing_open(fp
, open
);
3578 open
->op_stp
= NULL
;
3579 atomic_inc(&stp
->st_stid
.sc_count
);
3580 stp
->st_stid
.sc_type
= NFS4_OPEN_STID
;
3581 INIT_LIST_HEAD(&stp
->st_locks
);
3582 stp
->st_stateowner
= nfs4_get_stateowner(&oo
->oo_owner
);
3584 stp
->st_stid
.sc_file
= fp
;
3585 stp
->st_access_bmap
= 0;
3586 stp
->st_deny_bmap
= 0;
3587 stp
->st_openstp
= NULL
;
3588 list_add(&stp
->st_perstateowner
, &oo
->oo_owner
.so_stateids
);
3589 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
3592 spin_unlock(&fp
->fi_lock
);
3593 spin_unlock(&oo
->oo_owner
.so_client
->cl_lock
);
3595 mutex_lock(&retstp
->st_mutex
);
3596 /* To keep mutex tracking happy */
3597 mutex_unlock(&stp
->st_mutex
);
3604 * In the 4.0 case we need to keep the owners around a little while to handle
3605 * CLOSE replay. We still do need to release any file access that is held by
3606 * them before returning however.
3609 move_to_close_lru(struct nfs4_ol_stateid
*s
, struct net
*net
)
3611 struct nfs4_ol_stateid
*last
;
3612 struct nfs4_openowner
*oo
= openowner(s
->st_stateowner
);
3613 struct nfsd_net
*nn
= net_generic(s
->st_stid
.sc_client
->net
,
3616 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo
);
3619 * We know that we hold one reference via nfsd4_close, and another
3620 * "persistent" reference for the client. If the refcount is higher
3621 * than 2, then there are still calls in progress that are using this
3622 * stateid. We can't put the sc_file reference until they are finished.
3623 * Wait for the refcount to drop to 2. Since it has been unhashed,
3624 * there should be no danger of the refcount going back up again at
3627 wait_event(close_wq
, atomic_read(&s
->st_stid
.sc_count
) == 2);
3629 release_all_access(s
);
3630 if (s
->st_stid
.sc_file
) {
3631 put_nfs4_file(s
->st_stid
.sc_file
);
3632 s
->st_stid
.sc_file
= NULL
;
3635 spin_lock(&nn
->client_lock
);
3636 last
= oo
->oo_last_closed_stid
;
3637 oo
->oo_last_closed_stid
= s
;
3638 list_move_tail(&oo
->oo_close_lru
, &nn
->close_lru
);
3639 oo
->oo_time
= get_seconds();
3640 spin_unlock(&nn
->client_lock
);
3642 nfs4_put_stid(&last
->st_stid
);
3645 /* search file_hashtbl[] for file */
3646 static struct nfs4_file
*
3647 find_file_locked(struct knfsd_fh
*fh
, unsigned int hashval
)
3649 struct nfs4_file
*fp
;
3651 hlist_for_each_entry_rcu(fp
, &file_hashtbl
[hashval
], fi_hash
) {
3652 if (fh_match(&fp
->fi_fhandle
, fh
)) {
3653 if (atomic_inc_not_zero(&fp
->fi_ref
))
3661 find_file(struct knfsd_fh
*fh
)
3663 struct nfs4_file
*fp
;
3664 unsigned int hashval
= file_hashval(fh
);
3667 fp
= find_file_locked(fh
, hashval
);
3672 static struct nfs4_file
*
3673 find_or_add_file(struct nfs4_file
*new, struct knfsd_fh
*fh
)
3675 struct nfs4_file
*fp
;
3676 unsigned int hashval
= file_hashval(fh
);
3679 fp
= find_file_locked(fh
, hashval
);
3684 spin_lock(&state_lock
);
3685 fp
= find_file_locked(fh
, hashval
);
3686 if (likely(fp
== NULL
)) {
3687 nfsd4_init_file(fh
, hashval
, new);
3690 spin_unlock(&state_lock
);
3696 * Called to check deny when READ with all zero stateid or
3697 * WRITE with all zero or all one stateid
3700 nfs4_share_conflict(struct svc_fh
*current_fh
, unsigned int deny_type
)
3702 struct nfs4_file
*fp
;
3703 __be32 ret
= nfs_ok
;
3705 fp
= find_file(¤t_fh
->fh_handle
);
3708 /* Check for conflicting share reservations */
3709 spin_lock(&fp
->fi_lock
);
3710 if (fp
->fi_share_deny
& deny_type
)
3711 ret
= nfserr_locked
;
3712 spin_unlock(&fp
->fi_lock
);
3717 static void nfsd4_cb_recall_prepare(struct nfsd4_callback
*cb
)
3719 struct nfs4_delegation
*dp
= cb_to_delegation(cb
);
3720 struct nfsd_net
*nn
= net_generic(dp
->dl_stid
.sc_client
->net
,
3723 block_delegations(&dp
->dl_stid
.sc_file
->fi_fhandle
);
3726 * We can't do this in nfsd_break_deleg_cb because it is
3727 * already holding inode->i_lock.
3729 * If the dl_time != 0, then we know that it has already been
3730 * queued for a lease break. Don't queue it again.
3732 spin_lock(&state_lock
);
3733 if (dp
->dl_time
== 0) {
3734 dp
->dl_time
= get_seconds();
3735 list_add_tail(&dp
->dl_recall_lru
, &nn
->del_recall_lru
);
3737 spin_unlock(&state_lock
);
3740 static int nfsd4_cb_recall_done(struct nfsd4_callback
*cb
,
3741 struct rpc_task
*task
)
3743 struct nfs4_delegation
*dp
= cb_to_delegation(cb
);
3745 if (dp
->dl_stid
.sc_type
== NFS4_CLOSED_DELEG_STID
)
3748 switch (task
->tk_status
) {
3752 case -NFS4ERR_BAD_STATEID
:
3754 * Race: client probably got cb_recall before open reply
3755 * granting delegation.
3757 if (dp
->dl_retries
--) {
3758 rpc_delay(task
, 2 * HZ
);
3767 static void nfsd4_cb_recall_release(struct nfsd4_callback
*cb
)
3769 struct nfs4_delegation
*dp
= cb_to_delegation(cb
);
3771 nfs4_put_stid(&dp
->dl_stid
);
3774 static const struct nfsd4_callback_ops nfsd4_cb_recall_ops
= {
3775 .prepare
= nfsd4_cb_recall_prepare
,
3776 .done
= nfsd4_cb_recall_done
,
3777 .release
= nfsd4_cb_recall_release
,
3780 static void nfsd_break_one_deleg(struct nfs4_delegation
*dp
)
3783 * We're assuming the state code never drops its reference
3784 * without first removing the lease. Since we're in this lease
3785 * callback (and since the lease code is serialized by the kernel
3786 * lock) we know the server hasn't removed the lease yet, we know
3787 * it's safe to take a reference.
3789 atomic_inc(&dp
->dl_stid
.sc_count
);
3790 nfsd4_run_cb(&dp
->dl_recall
);
3793 /* Called from break_lease() with i_lock held. */
3795 nfsd_break_deleg_cb(struct file_lock
*fl
)
3798 struct nfs4_file
*fp
= (struct nfs4_file
*)fl
->fl_owner
;
3799 struct nfs4_delegation
*dp
;
3802 WARN(1, "(%p)->fl_owner NULL\n", fl
);
3805 if (fp
->fi_had_conflict
) {
3806 WARN(1, "duplicate break on %p\n", fp
);
3810 * We don't want the locks code to timeout the lease for us;
3811 * we'll remove it ourself if a delegation isn't returned
3814 fl
->fl_break_time
= 0;
3816 spin_lock(&fp
->fi_lock
);
3817 fp
->fi_had_conflict
= true;
3819 * If there are no delegations on the list, then return true
3820 * so that the lease code will go ahead and delete it.
3822 if (list_empty(&fp
->fi_delegations
))
3825 list_for_each_entry(dp
, &fp
->fi_delegations
, dl_perfile
)
3826 nfsd_break_one_deleg(dp
);
3827 spin_unlock(&fp
->fi_lock
);
3832 nfsd_change_deleg_cb(struct file_lock
*onlist
, int arg
,
3833 struct list_head
*dispose
)
3836 return lease_modify(onlist
, arg
, dispose
);
3841 static const struct lock_manager_operations nfsd_lease_mng_ops
= {
3842 .lm_break
= nfsd_break_deleg_cb
,
3843 .lm_change
= nfsd_change_deleg_cb
,
3846 static __be32
nfsd4_check_seqid(struct nfsd4_compound_state
*cstate
, struct nfs4_stateowner
*so
, u32 seqid
)
3848 if (nfsd4_has_session(cstate
))
3850 if (seqid
== so
->so_seqid
- 1)
3851 return nfserr_replay_me
;
3852 if (seqid
== so
->so_seqid
)
3854 return nfserr_bad_seqid
;
3857 static __be32
lookup_clientid(clientid_t
*clid
,
3858 struct nfsd4_compound_state
*cstate
,
3859 struct nfsd_net
*nn
)
3861 struct nfs4_client
*found
;
3864 found
= cstate
->clp
;
3865 if (!same_clid(&found
->cl_clientid
, clid
))
3866 return nfserr_stale_clientid
;
3870 if (STALE_CLIENTID(clid
, nn
))
3871 return nfserr_stale_clientid
;
3874 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
3875 * cached already then we know this is for is for v4.0 and "sessions"
3878 WARN_ON_ONCE(cstate
->session
);
3879 spin_lock(&nn
->client_lock
);
3880 found
= find_confirmed_client(clid
, false, nn
);
3882 spin_unlock(&nn
->client_lock
);
3883 return nfserr_expired
;
3885 atomic_inc(&found
->cl_refcount
);
3886 spin_unlock(&nn
->client_lock
);
3888 /* Cache the nfs4_client in cstate! */
3889 cstate
->clp
= found
;
3894 nfsd4_process_open1(struct nfsd4_compound_state
*cstate
,
3895 struct nfsd4_open
*open
, struct nfsd_net
*nn
)
3897 clientid_t
*clientid
= &open
->op_clientid
;
3898 struct nfs4_client
*clp
= NULL
;
3899 unsigned int strhashval
;
3900 struct nfs4_openowner
*oo
= NULL
;
3903 if (STALE_CLIENTID(&open
->op_clientid
, nn
))
3904 return nfserr_stale_clientid
;
3906 * In case we need it later, after we've already created the
3907 * file and don't want to risk a further failure:
3909 open
->op_file
= nfsd4_alloc_file();
3910 if (open
->op_file
== NULL
)
3911 return nfserr_jukebox
;
3913 status
= lookup_clientid(clientid
, cstate
, nn
);
3918 strhashval
= ownerstr_hashval(&open
->op_owner
);
3919 oo
= find_openstateowner_str(strhashval
, open
, clp
);
3920 open
->op_openowner
= oo
;
3924 if (!(oo
->oo_flags
& NFS4_OO_CONFIRMED
)) {
3925 /* Replace unconfirmed owners without checking for replay. */
3926 release_openowner(oo
);
3927 open
->op_openowner
= NULL
;
3930 status
= nfsd4_check_seqid(cstate
, &oo
->oo_owner
, open
->op_seqid
);
3935 oo
= alloc_init_open_stateowner(strhashval
, open
, cstate
);
3937 return nfserr_jukebox
;
3938 open
->op_openowner
= oo
;
3940 open
->op_stp
= nfs4_alloc_open_stateid(clp
);
3942 return nfserr_jukebox
;
3944 if (nfsd4_has_session(cstate
) &&
3945 (cstate
->current_fh
.fh_export
->ex_flags
& NFSEXP_PNFS
)) {
3946 open
->op_odstate
= alloc_clnt_odstate(clp
);
3947 if (!open
->op_odstate
)
3948 return nfserr_jukebox
;
3954 static inline __be32
3955 nfs4_check_delegmode(struct nfs4_delegation
*dp
, int flags
)
3957 if ((flags
& WR_STATE
) && (dp
->dl_type
== NFS4_OPEN_DELEGATE_READ
))
3958 return nfserr_openmode
;
3963 static int share_access_to_flags(u32 share_access
)
3965 return share_access
== NFS4_SHARE_ACCESS_READ
? RD_STATE
: WR_STATE
;
3968 static struct nfs4_delegation
*find_deleg_stateid(struct nfs4_client
*cl
, stateid_t
*s
)
3970 struct nfs4_stid
*ret
;
3972 ret
= find_stateid_by_type(cl
, s
, NFS4_DELEG_STID
);
3975 return delegstateid(ret
);
3978 static bool nfsd4_is_deleg_cur(struct nfsd4_open
*open
)
3980 return open
->op_claim_type
== NFS4_OPEN_CLAIM_DELEGATE_CUR
||
3981 open
->op_claim_type
== NFS4_OPEN_CLAIM_DELEG_CUR_FH
;
3985 nfs4_check_deleg(struct nfs4_client
*cl
, struct nfsd4_open
*open
,
3986 struct nfs4_delegation
**dp
)
3989 __be32 status
= nfserr_bad_stateid
;
3990 struct nfs4_delegation
*deleg
;
3992 deleg
= find_deleg_stateid(cl
, &open
->op_delegate_stateid
);
3995 flags
= share_access_to_flags(open
->op_share_access
);
3996 status
= nfs4_check_delegmode(deleg
, flags
);
3998 nfs4_put_stid(&deleg
->dl_stid
);
4003 if (!nfsd4_is_deleg_cur(open
))
4007 open
->op_openowner
->oo_flags
|= NFS4_OO_CONFIRMED
;
4011 static inline int nfs4_access_to_access(u32 nfs4_access
)
4015 if (nfs4_access
& NFS4_SHARE_ACCESS_READ
)
4016 flags
|= NFSD_MAY_READ
;
4017 if (nfs4_access
& NFS4_SHARE_ACCESS_WRITE
)
4018 flags
|= NFSD_MAY_WRITE
;
4022 static inline __be32
4023 nfsd4_truncate(struct svc_rqst
*rqstp
, struct svc_fh
*fh
,
4024 struct nfsd4_open
*open
)
4026 struct iattr iattr
= {
4027 .ia_valid
= ATTR_SIZE
,
4030 if (!open
->op_truncate
)
4032 if (!(open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
))
4033 return nfserr_inval
;
4034 return nfsd_setattr(rqstp
, fh
, &iattr
, 0, (time_t)0);
4037 static __be32
nfs4_get_vfs_file(struct svc_rqst
*rqstp
, struct nfs4_file
*fp
,
4038 struct svc_fh
*cur_fh
, struct nfs4_ol_stateid
*stp
,
4039 struct nfsd4_open
*open
)
4041 struct file
*filp
= NULL
;
4043 int oflag
= nfs4_access_to_omode(open
->op_share_access
);
4044 int access
= nfs4_access_to_access(open
->op_share_access
);
4045 unsigned char old_access_bmap
, old_deny_bmap
;
4047 spin_lock(&fp
->fi_lock
);
4050 * Are we trying to set a deny mode that would conflict with
4053 status
= nfs4_file_check_deny(fp
, open
->op_share_deny
);
4054 if (status
!= nfs_ok
) {
4055 spin_unlock(&fp
->fi_lock
);
4059 /* set access to the file */
4060 status
= nfs4_file_get_access(fp
, open
->op_share_access
);
4061 if (status
!= nfs_ok
) {
4062 spin_unlock(&fp
->fi_lock
);
4066 /* Set access bits in stateid */
4067 old_access_bmap
= stp
->st_access_bmap
;
4068 set_access(open
->op_share_access
, stp
);
4070 /* Set new deny mask */
4071 old_deny_bmap
= stp
->st_deny_bmap
;
4072 set_deny(open
->op_share_deny
, stp
);
4073 fp
->fi_share_deny
|= (open
->op_share_deny
& NFS4_SHARE_DENY_BOTH
);
4075 if (!fp
->fi_fds
[oflag
]) {
4076 spin_unlock(&fp
->fi_lock
);
4077 status
= nfsd_open(rqstp
, cur_fh
, S_IFREG
, access
, &filp
);
4079 goto out_put_access
;
4080 spin_lock(&fp
->fi_lock
);
4081 if (!fp
->fi_fds
[oflag
]) {
4082 fp
->fi_fds
[oflag
] = filp
;
4086 spin_unlock(&fp
->fi_lock
);
4090 status
= nfsd4_truncate(rqstp
, cur_fh
, open
);
4092 goto out_put_access
;
4096 stp
->st_access_bmap
= old_access_bmap
;
4097 nfs4_file_put_access(fp
, open
->op_share_access
);
4098 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap
), stp
);
4103 nfs4_upgrade_open(struct svc_rqst
*rqstp
, struct nfs4_file
*fp
, struct svc_fh
*cur_fh
, struct nfs4_ol_stateid
*stp
, struct nfsd4_open
*open
)
4106 unsigned char old_deny_bmap
= stp
->st_deny_bmap
;
4108 if (!test_access(open
->op_share_access
, stp
))
4109 return nfs4_get_vfs_file(rqstp
, fp
, cur_fh
, stp
, open
);
4111 /* test and set deny mode */
4112 spin_lock(&fp
->fi_lock
);
4113 status
= nfs4_file_check_deny(fp
, open
->op_share_deny
);
4114 if (status
== nfs_ok
) {
4115 set_deny(open
->op_share_deny
, stp
);
4116 fp
->fi_share_deny
|=
4117 (open
->op_share_deny
& NFS4_SHARE_DENY_BOTH
);
4119 spin_unlock(&fp
->fi_lock
);
4121 if (status
!= nfs_ok
)
4124 status
= nfsd4_truncate(rqstp
, cur_fh
, open
);
4125 if (status
!= nfs_ok
)
4126 reset_union_bmap_deny(old_deny_bmap
, stp
);
4130 /* Should we give out recallable state?: */
4131 static bool nfsd4_cb_channel_good(struct nfs4_client
*clp
)
4133 if (clp
->cl_cb_state
== NFSD4_CB_UP
)
4136 * In the sessions case, since we don't have to establish a
4137 * separate connection for callbacks, we assume it's OK
4138 * until we hear otherwise:
4140 return clp
->cl_minorversion
&& clp
->cl_cb_state
== NFSD4_CB_UNKNOWN
;
4143 static struct file_lock
*nfs4_alloc_init_lease(struct nfs4_file
*fp
, int flag
)
4145 struct file_lock
*fl
;
4147 fl
= locks_alloc_lock();
4150 fl
->fl_lmops
= &nfsd_lease_mng_ops
;
4151 fl
->fl_flags
= FL_DELEG
;
4152 fl
->fl_type
= flag
== NFS4_OPEN_DELEGATE_READ
? F_RDLCK
: F_WRLCK
;
4153 fl
->fl_end
= OFFSET_MAX
;
4154 fl
->fl_owner
= (fl_owner_t
)fp
;
4155 fl
->fl_pid
= current
->tgid
;
4160 * nfs4_setlease - Obtain a delegation by requesting lease from vfs layer
4161 * @dp: a pointer to the nfs4_delegation we're adding.
4164 * On success: Return code will be 0 on success.
4166 * On error: -EAGAIN if there was an existing delegation.
4167 * nonzero if there is an error in other cases.
4171 static int nfs4_setlease(struct nfs4_delegation
*dp
)
4173 struct nfs4_file
*fp
= dp
->dl_stid
.sc_file
;
4174 struct file_lock
*fl
;
4178 fl
= nfs4_alloc_init_lease(fp
, NFS4_OPEN_DELEGATE_READ
);
4181 filp
= find_readable_file(fp
);
4183 /* We should always have a readable file here */
4185 locks_free_lock(fl
);
4189 status
= vfs_setlease(filp
, fl
->fl_type
, &fl
, NULL
);
4191 locks_free_lock(fl
);
4194 spin_lock(&state_lock
);
4195 spin_lock(&fp
->fi_lock
);
4196 /* Did the lease get broken before we took the lock? */
4198 if (fp
->fi_had_conflict
)
4201 if (fp
->fi_deleg_file
) {
4202 status
= hash_delegation_locked(dp
, fp
);
4205 fp
->fi_deleg_file
= filp
;
4206 fp
->fi_delegees
= 0;
4207 status
= hash_delegation_locked(dp
, fp
);
4208 spin_unlock(&fp
->fi_lock
);
4209 spin_unlock(&state_lock
);
4211 /* Should never happen, this is a new fi_deleg_file */
4217 spin_unlock(&fp
->fi_lock
);
4218 spin_unlock(&state_lock
);
4224 static struct nfs4_delegation
*
4225 nfs4_set_delegation(struct nfs4_client
*clp
, struct svc_fh
*fh
,
4226 struct nfs4_file
*fp
, struct nfs4_clnt_odstate
*odstate
)
4229 struct nfs4_delegation
*dp
;
4231 if (fp
->fi_had_conflict
)
4232 return ERR_PTR(-EAGAIN
);
4234 spin_lock(&state_lock
);
4235 spin_lock(&fp
->fi_lock
);
4236 status
= nfs4_get_existing_delegation(clp
, fp
);
4237 spin_unlock(&fp
->fi_lock
);
4238 spin_unlock(&state_lock
);
4241 return ERR_PTR(status
);
4243 dp
= alloc_init_deleg(clp
, fh
, odstate
);
4245 return ERR_PTR(-ENOMEM
);
4248 spin_lock(&state_lock
);
4249 spin_lock(&fp
->fi_lock
);
4250 dp
->dl_stid
.sc_file
= fp
;
4251 if (!fp
->fi_deleg_file
) {
4252 spin_unlock(&fp
->fi_lock
);
4253 spin_unlock(&state_lock
);
4254 status
= nfs4_setlease(dp
);
4257 if (fp
->fi_had_conflict
) {
4261 status
= hash_delegation_locked(dp
, fp
);
4263 spin_unlock(&fp
->fi_lock
);
4264 spin_unlock(&state_lock
);
4267 put_clnt_odstate(dp
->dl_clnt_odstate
);
4268 nfs4_put_stid(&dp
->dl_stid
);
4269 return ERR_PTR(status
);
4274 static void nfsd4_open_deleg_none_ext(struct nfsd4_open
*open
, int status
)
4276 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE_EXT
;
4277 if (status
== -EAGAIN
)
4278 open
->op_why_no_deleg
= WND4_CONTENTION
;
4280 open
->op_why_no_deleg
= WND4_RESOURCE
;
4281 switch (open
->op_deleg_want
) {
4282 case NFS4_SHARE_WANT_READ_DELEG
:
4283 case NFS4_SHARE_WANT_WRITE_DELEG
:
4284 case NFS4_SHARE_WANT_ANY_DELEG
:
4286 case NFS4_SHARE_WANT_CANCEL
:
4287 open
->op_why_no_deleg
= WND4_CANCELLED
;
4289 case NFS4_SHARE_WANT_NO_DELEG
:
4296 * Attempt to hand out a delegation.
4298 * Note we don't support write delegations, and won't until the vfs has
4299 * proper support for them.
4302 nfs4_open_delegation(struct svc_fh
*fh
, struct nfsd4_open
*open
,
4303 struct nfs4_ol_stateid
*stp
)
4305 struct nfs4_delegation
*dp
;
4306 struct nfs4_openowner
*oo
= openowner(stp
->st_stateowner
);
4307 struct nfs4_client
*clp
= stp
->st_stid
.sc_client
;
4311 cb_up
= nfsd4_cb_channel_good(oo
->oo_owner
.so_client
);
4312 open
->op_recall
= 0;
4313 switch (open
->op_claim_type
) {
4314 case NFS4_OPEN_CLAIM_PREVIOUS
:
4316 open
->op_recall
= 1;
4317 if (open
->op_delegate_type
!= NFS4_OPEN_DELEGATE_READ
)
4320 case NFS4_OPEN_CLAIM_NULL
:
4321 case NFS4_OPEN_CLAIM_FH
:
4323 * Let's not give out any delegations till everyone's
4324 * had the chance to reclaim theirs, *and* until
4325 * NLM locks have all been reclaimed:
4327 if (locks_in_grace(clp
->net
))
4329 if (!cb_up
|| !(oo
->oo_flags
& NFS4_OO_CONFIRMED
))
4332 * Also, if the file was opened for write or
4333 * create, there's a good chance the client's
4334 * about to write to it, resulting in an
4335 * immediate recall (since we don't support
4336 * write delegations):
4338 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
4340 if (open
->op_create
== NFS4_OPEN_CREATE
)
4346 dp
= nfs4_set_delegation(clp
, fh
, stp
->st_stid
.sc_file
, stp
->st_clnt_odstate
);
4350 memcpy(&open
->op_delegate_stateid
, &dp
->dl_stid
.sc_stateid
, sizeof(dp
->dl_stid
.sc_stateid
));
4352 dprintk("NFSD: delegation stateid=" STATEID_FMT
"\n",
4353 STATEID_VAL(&dp
->dl_stid
.sc_stateid
));
4354 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_READ
;
4355 nfs4_put_stid(&dp
->dl_stid
);
4358 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE
;
4359 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
&&
4360 open
->op_delegate_type
!= NFS4_OPEN_DELEGATE_NONE
) {
4361 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
4362 open
->op_recall
= 1;
4365 /* 4.1 client asking for a delegation? */
4366 if (open
->op_deleg_want
)
4367 nfsd4_open_deleg_none_ext(open
, status
);
4371 static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open
*open
,
4372 struct nfs4_delegation
*dp
)
4374 if (open
->op_deleg_want
== NFS4_SHARE_WANT_READ_DELEG
&&
4375 dp
->dl_type
== NFS4_OPEN_DELEGATE_WRITE
) {
4376 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE_EXT
;
4377 open
->op_why_no_deleg
= WND4_NOT_SUPP_DOWNGRADE
;
4378 } else if (open
->op_deleg_want
== NFS4_SHARE_WANT_WRITE_DELEG
&&
4379 dp
->dl_type
== NFS4_OPEN_DELEGATE_WRITE
) {
4380 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE_EXT
;
4381 open
->op_why_no_deleg
= WND4_NOT_SUPP_UPGRADE
;
4383 /* Otherwise the client must be confused wanting a delegation
4384 * it already has, therefore we don't return
4385 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
4390 nfsd4_process_open2(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open
*open
)
4392 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
4393 struct nfs4_client
*cl
= open
->op_openowner
->oo_owner
.so_client
;
4394 struct nfs4_file
*fp
= NULL
;
4395 struct nfs4_ol_stateid
*stp
= NULL
;
4396 struct nfs4_delegation
*dp
= NULL
;
4400 * Lookup file; if found, lookup stateid and check open request,
4401 * and check for delegations in the process of being recalled.
4402 * If not found, create the nfs4_file struct
4404 fp
= find_or_add_file(open
->op_file
, ¤t_fh
->fh_handle
);
4405 if (fp
!= open
->op_file
) {
4406 status
= nfs4_check_deleg(cl
, open
, &dp
);
4409 spin_lock(&fp
->fi_lock
);
4410 stp
= nfsd4_find_existing_open(fp
, open
);
4411 spin_unlock(&fp
->fi_lock
);
4413 open
->op_file
= NULL
;
4414 status
= nfserr_bad_stateid
;
4415 if (nfsd4_is_deleg_cur(open
))
4420 * OPEN the file, or upgrade an existing OPEN.
4421 * If truncate fails, the OPEN fails.
4424 /* Stateid was found, this is an OPEN upgrade */
4425 mutex_lock(&stp
->st_mutex
);
4426 status
= nfs4_upgrade_open(rqstp
, fp
, current_fh
, stp
, open
);
4428 mutex_unlock(&stp
->st_mutex
);
4432 /* stp is returned locked. */
4433 stp
= init_open_stateid(fp
, open
);
4434 /* See if we lost the race to some other thread */
4435 if (stp
->st_access_bmap
!= 0) {
4436 status
= nfs4_upgrade_open(rqstp
, fp
, current_fh
,
4439 mutex_unlock(&stp
->st_mutex
);
4444 status
= nfs4_get_vfs_file(rqstp
, fp
, current_fh
, stp
, open
);
4446 mutex_unlock(&stp
->st_mutex
);
4447 release_open_stateid(stp
);
4451 stp
->st_clnt_odstate
= find_or_hash_clnt_odstate(fp
,
4453 if (stp
->st_clnt_odstate
== open
->op_odstate
)
4454 open
->op_odstate
= NULL
;
4457 nfs4_inc_and_copy_stateid(&open
->op_stateid
, &stp
->st_stid
);
4458 mutex_unlock(&stp
->st_mutex
);
4460 if (nfsd4_has_session(&resp
->cstate
)) {
4461 if (open
->op_deleg_want
& NFS4_SHARE_WANT_NO_DELEG
) {
4462 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE_EXT
;
4463 open
->op_why_no_deleg
= WND4_NOT_WANTED
;
4469 * Attempt to hand out a delegation. No error return, because the
4470 * OPEN succeeds even if we fail.
4472 nfs4_open_delegation(current_fh
, open
, stp
);
4476 dprintk("%s: stateid=" STATEID_FMT
"\n", __func__
,
4477 STATEID_VAL(&stp
->st_stid
.sc_stateid
));
4479 /* 4.1 client trying to upgrade/downgrade delegation? */
4480 if (open
->op_delegate_type
== NFS4_OPEN_DELEGATE_NONE
&& dp
&&
4481 open
->op_deleg_want
)
4482 nfsd4_deleg_xgrade_none_ext(open
, dp
);
4486 if (status
== 0 && open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
)
4487 open
->op_openowner
->oo_flags
|= NFS4_OO_CONFIRMED
;
4489 * To finish the open response, we just need to set the rflags.
4491 open
->op_rflags
= NFS4_OPEN_RESULT_LOCKTYPE_POSIX
;
4492 if (nfsd4_has_session(&resp
->cstate
))
4493 open
->op_rflags
|= NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK
;
4494 else if (!(open
->op_openowner
->oo_flags
& NFS4_OO_CONFIRMED
))
4495 open
->op_rflags
|= NFS4_OPEN_RESULT_CONFIRM
;
4498 nfs4_put_stid(&dp
->dl_stid
);
4500 nfs4_put_stid(&stp
->st_stid
);
4505 void nfsd4_cleanup_open_state(struct nfsd4_compound_state
*cstate
,
4506 struct nfsd4_open
*open
)
4508 if (open
->op_openowner
) {
4509 struct nfs4_stateowner
*so
= &open
->op_openowner
->oo_owner
;
4511 nfsd4_cstate_assign_replay(cstate
, so
);
4512 nfs4_put_stateowner(so
);
4515 kmem_cache_free(file_slab
, open
->op_file
);
4517 nfs4_put_stid(&open
->op_stp
->st_stid
);
4518 if (open
->op_odstate
)
4519 kmem_cache_free(odstate_slab
, open
->op_odstate
);
4523 nfsd4_renew(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
4526 struct nfs4_client
*clp
;
4528 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
4530 dprintk("process_renew(%08x/%08x): starting\n",
4531 clid
->cl_boot
, clid
->cl_id
);
4532 status
= lookup_clientid(clid
, cstate
, nn
);
4536 status
= nfserr_cb_path_down
;
4537 if (!list_empty(&clp
->cl_delegations
)
4538 && clp
->cl_cb_state
!= NFSD4_CB_UP
)
4546 nfsd4_end_grace(struct nfsd_net
*nn
)
4548 /* do nothing if grace period already ended */
4549 if (nn
->grace_ended
)
4552 dprintk("NFSD: end of grace period\n");
4553 nn
->grace_ended
= true;
4555 * If the server goes down again right now, an NFSv4
4556 * client will still be allowed to reclaim after it comes back up,
4557 * even if it hasn't yet had a chance to reclaim state this time.
4560 nfsd4_record_grace_done(nn
);
4562 * At this point, NFSv4 clients can still reclaim. But if the
4563 * server crashes, any that have not yet reclaimed will be out
4564 * of luck on the next boot.
4566 * (NFSv4.1+ clients are considered to have reclaimed once they
4567 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
4568 * have reclaimed after their first OPEN.)
4570 locks_end_grace(&nn
->nfsd4_manager
);
4572 * At this point, and once lockd and/or any other containers
4573 * exit their grace period, further reclaims will fail and
4574 * regular locking can resume.
4579 nfs4_laundromat(struct nfsd_net
*nn
)
4581 struct nfs4_client
*clp
;
4582 struct nfs4_openowner
*oo
;
4583 struct nfs4_delegation
*dp
;
4584 struct nfs4_ol_stateid
*stp
;
4585 struct nfsd4_blocked_lock
*nbl
;
4586 struct list_head
*pos
, *next
, reaplist
;
4587 time_t cutoff
= get_seconds() - nn
->nfsd4_lease
;
4588 time_t t
, new_timeo
= nn
->nfsd4_lease
;
4590 dprintk("NFSD: laundromat service - starting\n");
4591 nfsd4_end_grace(nn
);
4592 INIT_LIST_HEAD(&reaplist
);
4593 spin_lock(&nn
->client_lock
);
4594 list_for_each_safe(pos
, next
, &nn
->client_lru
) {
4595 clp
= list_entry(pos
, struct nfs4_client
, cl_lru
);
4596 if (time_after((unsigned long)clp
->cl_time
, (unsigned long)cutoff
)) {
4597 t
= clp
->cl_time
- cutoff
;
4598 new_timeo
= min(new_timeo
, t
);
4601 if (mark_client_expired_locked(clp
)) {
4602 dprintk("NFSD: client in use (clientid %08x)\n",
4603 clp
->cl_clientid
.cl_id
);
4606 list_add(&clp
->cl_lru
, &reaplist
);
4608 spin_unlock(&nn
->client_lock
);
4609 list_for_each_safe(pos
, next
, &reaplist
) {
4610 clp
= list_entry(pos
, struct nfs4_client
, cl_lru
);
4611 dprintk("NFSD: purging unused client (clientid %08x)\n",
4612 clp
->cl_clientid
.cl_id
);
4613 list_del_init(&clp
->cl_lru
);
4616 spin_lock(&state_lock
);
4617 list_for_each_safe(pos
, next
, &nn
->del_recall_lru
) {
4618 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
4619 if (time_after((unsigned long)dp
->dl_time
, (unsigned long)cutoff
)) {
4620 t
= dp
->dl_time
- cutoff
;
4621 new_timeo
= min(new_timeo
, t
);
4624 WARN_ON(!unhash_delegation_locked(dp
));
4625 list_add(&dp
->dl_recall_lru
, &reaplist
);
4627 spin_unlock(&state_lock
);
4628 while (!list_empty(&reaplist
)) {
4629 dp
= list_first_entry(&reaplist
, struct nfs4_delegation
,
4631 list_del_init(&dp
->dl_recall_lru
);
4632 revoke_delegation(dp
);
4635 spin_lock(&nn
->client_lock
);
4636 while (!list_empty(&nn
->close_lru
)) {
4637 oo
= list_first_entry(&nn
->close_lru
, struct nfs4_openowner
,
4639 if (time_after((unsigned long)oo
->oo_time
,
4640 (unsigned long)cutoff
)) {
4641 t
= oo
->oo_time
- cutoff
;
4642 new_timeo
= min(new_timeo
, t
);
4645 list_del_init(&oo
->oo_close_lru
);
4646 stp
= oo
->oo_last_closed_stid
;
4647 oo
->oo_last_closed_stid
= NULL
;
4648 spin_unlock(&nn
->client_lock
);
4649 nfs4_put_stid(&stp
->st_stid
);
4650 spin_lock(&nn
->client_lock
);
4652 spin_unlock(&nn
->client_lock
);
4655 * It's possible for a client to try and acquire an already held lock
4656 * that is being held for a long time, and then lose interest in it.
4657 * So, we clean out any un-revisited request after a lease period
4658 * under the assumption that the client is no longer interested.
4660 * RFC5661, sec. 9.6 states that the client must not rely on getting
4661 * notifications and must continue to poll for locks, even when the
4662 * server supports them. Thus this shouldn't lead to clients blocking
4663 * indefinitely once the lock does become free.
4665 BUG_ON(!list_empty(&reaplist
));
4666 spin_lock(&nn
->blocked_locks_lock
);
4667 while (!list_empty(&nn
->blocked_locks_lru
)) {
4668 nbl
= list_first_entry(&nn
->blocked_locks_lru
,
4669 struct nfsd4_blocked_lock
, nbl_lru
);
4670 if (time_after((unsigned long)nbl
->nbl_time
,
4671 (unsigned long)cutoff
)) {
4672 t
= nbl
->nbl_time
- cutoff
;
4673 new_timeo
= min(new_timeo
, t
);
4676 list_move(&nbl
->nbl_lru
, &reaplist
);
4677 list_del_init(&nbl
->nbl_list
);
4679 spin_unlock(&nn
->blocked_locks_lock
);
4681 while (!list_empty(&reaplist
)) {
4682 nbl
= list_first_entry(&nn
->blocked_locks_lru
,
4683 struct nfsd4_blocked_lock
, nbl_lru
);
4684 list_del_init(&nbl
->nbl_lru
);
4685 posix_unblock_lock(&nbl
->nbl_lock
);
4686 free_blocked_lock(nbl
);
4689 new_timeo
= max_t(time_t, new_timeo
, NFSD_LAUNDROMAT_MINTIMEOUT
);
4693 static struct workqueue_struct
*laundry_wq
;
4694 static void laundromat_main(struct work_struct
*);
4697 laundromat_main(struct work_struct
*laundry
)
4700 struct delayed_work
*dwork
= to_delayed_work(laundry
);
4701 struct nfsd_net
*nn
= container_of(dwork
, struct nfsd_net
,
4704 t
= nfs4_laundromat(nn
);
4705 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t
);
4706 queue_delayed_work(laundry_wq
, &nn
->laundromat_work
, t
*HZ
);
4709 static inline __be32
nfs4_check_fh(struct svc_fh
*fhp
, struct nfs4_stid
*stp
)
4711 if (!fh_match(&fhp
->fh_handle
, &stp
->sc_file
->fi_fhandle
))
4712 return nfserr_bad_stateid
;
4717 access_permit_read(struct nfs4_ol_stateid
*stp
)
4719 return test_access(NFS4_SHARE_ACCESS_READ
, stp
) ||
4720 test_access(NFS4_SHARE_ACCESS_BOTH
, stp
) ||
4721 test_access(NFS4_SHARE_ACCESS_WRITE
, stp
);
4725 access_permit_write(struct nfs4_ol_stateid
*stp
)
4727 return test_access(NFS4_SHARE_ACCESS_WRITE
, stp
) ||
4728 test_access(NFS4_SHARE_ACCESS_BOTH
, stp
);
4732 __be32
nfs4_check_openmode(struct nfs4_ol_stateid
*stp
, int flags
)
4734 __be32 status
= nfserr_openmode
;
4736 /* For lock stateid's, we test the parent open, not the lock: */
4737 if (stp
->st_openstp
)
4738 stp
= stp
->st_openstp
;
4739 if ((flags
& WR_STATE
) && !access_permit_write(stp
))
4741 if ((flags
& RD_STATE
) && !access_permit_read(stp
))
4748 static inline __be32
4749 check_special_stateids(struct net
*net
, svc_fh
*current_fh
, stateid_t
*stateid
, int flags
)
4751 if (ONE_STATEID(stateid
) && (flags
& RD_STATE
))
4753 else if (opens_in_grace(net
)) {
4754 /* Answer in remaining cases depends on existence of
4755 * conflicting state; so we must wait out the grace period. */
4756 return nfserr_grace
;
4757 } else if (flags
& WR_STATE
)
4758 return nfs4_share_conflict(current_fh
,
4759 NFS4_SHARE_DENY_WRITE
);
4760 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4761 return nfs4_share_conflict(current_fh
,
4762 NFS4_SHARE_DENY_READ
);
4766 * Allow READ/WRITE during grace period on recovered state only for files
4767 * that are not able to provide mandatory locking.
4770 grace_disallows_io(struct net
*net
, struct inode
*inode
)
4772 return opens_in_grace(net
) && mandatory_lock(inode
);
4775 static __be32
check_stateid_generation(stateid_t
*in
, stateid_t
*ref
, bool has_session
)
4778 * When sessions are used the stateid generation number is ignored
4781 if (has_session
&& in
->si_generation
== 0)
4784 if (in
->si_generation
== ref
->si_generation
)
4787 /* If the client sends us a stateid from the future, it's buggy: */
4788 if (nfsd4_stateid_generation_after(in
, ref
))
4789 return nfserr_bad_stateid
;
4791 * However, we could see a stateid from the past, even from a
4792 * non-buggy client. For example, if the client sends a lock
4793 * while some IO is outstanding, the lock may bump si_generation
4794 * while the IO is still in flight. The client could avoid that
4795 * situation by waiting for responses on all the IO requests,
4796 * but better performance may result in retrying IO that
4797 * receives an old_stateid error if requests are rarely
4798 * reordered in flight:
4800 return nfserr_old_stateid
;
4803 static __be32
nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid
*ols
)
4805 if (ols
->st_stateowner
->so_is_open_owner
&&
4806 !(openowner(ols
->st_stateowner
)->oo_flags
& NFS4_OO_CONFIRMED
))
4807 return nfserr_bad_stateid
;
4811 static __be32
nfsd4_validate_stateid(struct nfs4_client
*cl
, stateid_t
*stateid
)
4813 struct nfs4_stid
*s
;
4814 __be32 status
= nfserr_bad_stateid
;
4816 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
))
4818 /* Client debugging aid. */
4819 if (!same_clid(&stateid
->si_opaque
.so_clid
, &cl
->cl_clientid
)) {
4820 char addr_str
[INET6_ADDRSTRLEN
];
4821 rpc_ntop((struct sockaddr
*)&cl
->cl_addr
, addr_str
,
4823 pr_warn_ratelimited("NFSD: client %s testing state ID "
4824 "with incorrect client ID\n", addr_str
);
4827 spin_lock(&cl
->cl_lock
);
4828 s
= find_stateid_locked(cl
, stateid
);
4831 status
= check_stateid_generation(stateid
, &s
->sc_stateid
, 1);
4834 switch (s
->sc_type
) {
4835 case NFS4_DELEG_STID
:
4838 case NFS4_REVOKED_DELEG_STID
:
4839 status
= nfserr_deleg_revoked
;
4841 case NFS4_OPEN_STID
:
4842 case NFS4_LOCK_STID
:
4843 status
= nfsd4_check_openowner_confirmed(openlockstateid(s
));
4846 printk("unknown stateid type %x\n", s
->sc_type
);
4848 case NFS4_CLOSED_STID
:
4849 case NFS4_CLOSED_DELEG_STID
:
4850 status
= nfserr_bad_stateid
;
4853 spin_unlock(&cl
->cl_lock
);
4858 nfsd4_lookup_stateid(struct nfsd4_compound_state
*cstate
,
4859 stateid_t
*stateid
, unsigned char typemask
,
4860 struct nfs4_stid
**s
, struct nfsd_net
*nn
)
4864 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
))
4865 return nfserr_bad_stateid
;
4866 status
= lookup_clientid(&stateid
->si_opaque
.so_clid
, cstate
, nn
);
4867 if (status
== nfserr_stale_clientid
) {
4868 if (cstate
->session
)
4869 return nfserr_bad_stateid
;
4870 return nfserr_stale_stateid
;
4874 *s
= find_stateid_by_type(cstate
->clp
, stateid
, typemask
);
4876 return nfserr_bad_stateid
;
4880 static struct file
*
4881 nfs4_find_file(struct nfs4_stid
*s
, int flags
)
4886 switch (s
->sc_type
) {
4887 case NFS4_DELEG_STID
:
4888 if (WARN_ON_ONCE(!s
->sc_file
->fi_deleg_file
))
4890 return get_file(s
->sc_file
->fi_deleg_file
);
4891 case NFS4_OPEN_STID
:
4892 case NFS4_LOCK_STID
:
4893 if (flags
& RD_STATE
)
4894 return find_readable_file(s
->sc_file
);
4896 return find_writeable_file(s
->sc_file
);
4904 nfs4_check_olstateid(struct svc_fh
*fhp
, struct nfs4_ol_stateid
*ols
, int flags
)
4908 status
= nfsd4_check_openowner_confirmed(ols
);
4911 return nfs4_check_openmode(ols
, flags
);
4915 nfs4_check_file(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct nfs4_stid
*s
,
4916 struct file
**filpp
, bool *tmp_file
, int flags
)
4918 int acc
= (flags
& RD_STATE
) ? NFSD_MAY_READ
: NFSD_MAY_WRITE
;
4922 file
= nfs4_find_file(s
, flags
);
4924 status
= nfsd_permission(rqstp
, fhp
->fh_export
, fhp
->fh_dentry
,
4925 acc
| NFSD_MAY_OWNER_OVERRIDE
);
4933 status
= nfsd_open(rqstp
, fhp
, S_IFREG
, acc
, filpp
);
4945 * Checks for stateid operations
4948 nfs4_preprocess_stateid_op(struct svc_rqst
*rqstp
,
4949 struct nfsd4_compound_state
*cstate
, struct svc_fh
*fhp
,
4950 stateid_t
*stateid
, int flags
, struct file
**filpp
, bool *tmp_file
)
4952 struct inode
*ino
= d_inode(fhp
->fh_dentry
);
4953 struct net
*net
= SVC_NET(rqstp
);
4954 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
4955 struct nfs4_stid
*s
= NULL
;
4963 if (grace_disallows_io(net
, ino
))
4964 return nfserr_grace
;
4966 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
)) {
4967 status
= check_special_stateids(net
, fhp
, stateid
, flags
);
4971 status
= nfsd4_lookup_stateid(cstate
, stateid
,
4972 NFS4_DELEG_STID
|NFS4_OPEN_STID
|NFS4_LOCK_STID
,
4976 status
= check_stateid_generation(stateid
, &s
->sc_stateid
,
4977 nfsd4_has_session(cstate
));
4981 switch (s
->sc_type
) {
4982 case NFS4_DELEG_STID
:
4983 status
= nfs4_check_delegmode(delegstateid(s
), flags
);
4985 case NFS4_OPEN_STID
:
4986 case NFS4_LOCK_STID
:
4987 status
= nfs4_check_olstateid(fhp
, openlockstateid(s
), flags
);
4990 status
= nfserr_bad_stateid
;
4995 status
= nfs4_check_fh(fhp
, s
);
4998 if (!status
&& filpp
)
4999 status
= nfs4_check_file(rqstp
, fhp
, s
, filpp
, tmp_file
, flags
);
5007 * Test if the stateid is valid
5010 nfsd4_test_stateid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5011 struct nfsd4_test_stateid
*test_stateid
)
5013 struct nfsd4_test_stateid_id
*stateid
;
5014 struct nfs4_client
*cl
= cstate
->session
->se_client
;
5016 list_for_each_entry(stateid
, &test_stateid
->ts_stateid_list
, ts_id_list
)
5017 stateid
->ts_id_status
=
5018 nfsd4_validate_stateid(cl
, &stateid
->ts_id_stateid
);
5024 nfsd4_free_lock_stateid(stateid_t
*stateid
, struct nfs4_stid
*s
)
5026 struct nfs4_ol_stateid
*stp
= openlockstateid(s
);
5029 mutex_lock(&stp
->st_mutex
);
5031 ret
= check_stateid_generation(stateid
, &s
->sc_stateid
, 1);
5035 ret
= nfserr_locks_held
;
5036 if (check_for_locks(stp
->st_stid
.sc_file
,
5037 lockowner(stp
->st_stateowner
)))
5040 release_lock_stateid(stp
);
5044 mutex_unlock(&stp
->st_mutex
);
5050 nfsd4_free_stateid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5051 struct nfsd4_free_stateid
*free_stateid
)
5053 stateid_t
*stateid
= &free_stateid
->fr_stateid
;
5054 struct nfs4_stid
*s
;
5055 struct nfs4_delegation
*dp
;
5056 struct nfs4_client
*cl
= cstate
->session
->se_client
;
5057 __be32 ret
= nfserr_bad_stateid
;
5059 spin_lock(&cl
->cl_lock
);
5060 s
= find_stateid_locked(cl
, stateid
);
5063 switch (s
->sc_type
) {
5064 case NFS4_DELEG_STID
:
5065 ret
= nfserr_locks_held
;
5067 case NFS4_OPEN_STID
:
5068 ret
= check_stateid_generation(stateid
, &s
->sc_stateid
, 1);
5071 ret
= nfserr_locks_held
;
5073 case NFS4_LOCK_STID
:
5074 atomic_inc(&s
->sc_count
);
5075 spin_unlock(&cl
->cl_lock
);
5076 ret
= nfsd4_free_lock_stateid(stateid
, s
);
5078 case NFS4_REVOKED_DELEG_STID
:
5079 dp
= delegstateid(s
);
5080 list_del_init(&dp
->dl_recall_lru
);
5081 spin_unlock(&cl
->cl_lock
);
5085 /* Default falls through and returns nfserr_bad_stateid */
5088 spin_unlock(&cl
->cl_lock
);
5096 return (type
== NFS4_READW_LT
|| type
== NFS4_READ_LT
) ?
5097 RD_STATE
: WR_STATE
;
5100 static __be32
nfs4_seqid_op_checks(struct nfsd4_compound_state
*cstate
, stateid_t
*stateid
, u32 seqid
, struct nfs4_ol_stateid
*stp
)
5102 struct svc_fh
*current_fh
= &cstate
->current_fh
;
5103 struct nfs4_stateowner
*sop
= stp
->st_stateowner
;
5106 status
= nfsd4_check_seqid(cstate
, sop
, seqid
);
5109 if (stp
->st_stid
.sc_type
== NFS4_CLOSED_STID
5110 || stp
->st_stid
.sc_type
== NFS4_REVOKED_DELEG_STID
)
5112 * "Closed" stateid's exist *only* to return
5113 * nfserr_replay_me from the previous step, and
5114 * revoked delegations are kept only for free_stateid.
5116 return nfserr_bad_stateid
;
5117 mutex_lock(&stp
->st_mutex
);
5118 status
= check_stateid_generation(stateid
, &stp
->st_stid
.sc_stateid
, nfsd4_has_session(cstate
));
5119 if (status
== nfs_ok
)
5120 status
= nfs4_check_fh(current_fh
, &stp
->st_stid
);
5121 if (status
!= nfs_ok
)
5122 mutex_unlock(&stp
->st_mutex
);
5127 * Checks for sequence id mutating operations.
5130 nfs4_preprocess_seqid_op(struct nfsd4_compound_state
*cstate
, u32 seqid
,
5131 stateid_t
*stateid
, char typemask
,
5132 struct nfs4_ol_stateid
**stpp
,
5133 struct nfsd_net
*nn
)
5136 struct nfs4_stid
*s
;
5137 struct nfs4_ol_stateid
*stp
= NULL
;
5139 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT
"\n", __func__
,
5140 seqid
, STATEID_VAL(stateid
));
5143 status
= nfsd4_lookup_stateid(cstate
, stateid
, typemask
, &s
, nn
);
5146 stp
= openlockstateid(s
);
5147 nfsd4_cstate_assign_replay(cstate
, stp
->st_stateowner
);
5149 status
= nfs4_seqid_op_checks(cstate
, stateid
, seqid
, stp
);
5153 nfs4_put_stid(&stp
->st_stid
);
5157 static __be32
nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state
*cstate
, u32 seqid
,
5158 stateid_t
*stateid
, struct nfs4_ol_stateid
**stpp
, struct nfsd_net
*nn
)
5161 struct nfs4_openowner
*oo
;
5162 struct nfs4_ol_stateid
*stp
;
5164 status
= nfs4_preprocess_seqid_op(cstate
, seqid
, stateid
,
5165 NFS4_OPEN_STID
, &stp
, nn
);
5168 oo
= openowner(stp
->st_stateowner
);
5169 if (!(oo
->oo_flags
& NFS4_OO_CONFIRMED
)) {
5170 mutex_unlock(&stp
->st_mutex
);
5171 nfs4_put_stid(&stp
->st_stid
);
5172 return nfserr_bad_stateid
;
5179 nfsd4_open_confirm(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5180 struct nfsd4_open_confirm
*oc
)
5183 struct nfs4_openowner
*oo
;
5184 struct nfs4_ol_stateid
*stp
;
5185 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5187 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
5188 cstate
->current_fh
.fh_dentry
);
5190 status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0);
5194 status
= nfs4_preprocess_seqid_op(cstate
,
5195 oc
->oc_seqid
, &oc
->oc_req_stateid
,
5196 NFS4_OPEN_STID
, &stp
, nn
);
5199 oo
= openowner(stp
->st_stateowner
);
5200 status
= nfserr_bad_stateid
;
5201 if (oo
->oo_flags
& NFS4_OO_CONFIRMED
) {
5202 mutex_unlock(&stp
->st_mutex
);
5205 oo
->oo_flags
|= NFS4_OO_CONFIRMED
;
5206 nfs4_inc_and_copy_stateid(&oc
->oc_resp_stateid
, &stp
->st_stid
);
5207 mutex_unlock(&stp
->st_mutex
);
5208 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT
"\n",
5209 __func__
, oc
->oc_seqid
, STATEID_VAL(&stp
->st_stid
.sc_stateid
));
5211 nfsd4_client_record_create(oo
->oo_owner
.so_client
);
5214 nfs4_put_stid(&stp
->st_stid
);
5216 nfsd4_bump_seqid(cstate
, status
);
5220 static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid
*stp
, u32 access
)
5222 if (!test_access(access
, stp
))
5224 nfs4_file_put_access(stp
->st_stid
.sc_file
, access
);
5225 clear_access(access
, stp
);
5228 static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid
*stp
, u32 to_access
)
5230 switch (to_access
) {
5231 case NFS4_SHARE_ACCESS_READ
:
5232 nfs4_stateid_downgrade_bit(stp
, NFS4_SHARE_ACCESS_WRITE
);
5233 nfs4_stateid_downgrade_bit(stp
, NFS4_SHARE_ACCESS_BOTH
);
5235 case NFS4_SHARE_ACCESS_WRITE
:
5236 nfs4_stateid_downgrade_bit(stp
, NFS4_SHARE_ACCESS_READ
);
5237 nfs4_stateid_downgrade_bit(stp
, NFS4_SHARE_ACCESS_BOTH
);
5239 case NFS4_SHARE_ACCESS_BOTH
:
5247 nfsd4_open_downgrade(struct svc_rqst
*rqstp
,
5248 struct nfsd4_compound_state
*cstate
,
5249 struct nfsd4_open_downgrade
*od
)
5252 struct nfs4_ol_stateid
*stp
;
5253 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5255 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
5256 cstate
->current_fh
.fh_dentry
);
5258 /* We don't yet support WANT bits: */
5259 if (od
->od_deleg_want
)
5260 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__
,
5263 status
= nfs4_preprocess_confirmed_seqid_op(cstate
, od
->od_seqid
,
5264 &od
->od_stateid
, &stp
, nn
);
5267 status
= nfserr_inval
;
5268 if (!test_access(od
->od_share_access
, stp
)) {
5269 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
5270 stp
->st_access_bmap
, od
->od_share_access
);
5273 if (!test_deny(od
->od_share_deny
, stp
)) {
5274 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
5275 stp
->st_deny_bmap
, od
->od_share_deny
);
5278 nfs4_stateid_downgrade(stp
, od
->od_share_access
);
5279 reset_union_bmap_deny(od
->od_share_deny
, stp
);
5280 nfs4_inc_and_copy_stateid(&od
->od_stateid
, &stp
->st_stid
);
5283 mutex_unlock(&stp
->st_mutex
);
5284 nfs4_put_stid(&stp
->st_stid
);
5286 nfsd4_bump_seqid(cstate
, status
);
5290 static void nfsd4_close_open_stateid(struct nfs4_ol_stateid
*s
)
5292 struct nfs4_client
*clp
= s
->st_stid
.sc_client
;
5294 LIST_HEAD(reaplist
);
5296 s
->st_stid
.sc_type
= NFS4_CLOSED_STID
;
5297 spin_lock(&clp
->cl_lock
);
5298 unhashed
= unhash_open_stateid(s
, &reaplist
);
5300 if (clp
->cl_minorversion
) {
5302 put_ol_stateid_locked(s
, &reaplist
);
5303 spin_unlock(&clp
->cl_lock
);
5304 free_ol_stateid_reaplist(&reaplist
);
5306 spin_unlock(&clp
->cl_lock
);
5307 free_ol_stateid_reaplist(&reaplist
);
5309 move_to_close_lru(s
, clp
->net
);
5314 * nfs4_unlock_state() called after encode
5317 nfsd4_close(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5318 struct nfsd4_close
*close
)
5321 struct nfs4_ol_stateid
*stp
;
5322 struct net
*net
= SVC_NET(rqstp
);
5323 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
5325 dprintk("NFSD: nfsd4_close on file %pd\n",
5326 cstate
->current_fh
.fh_dentry
);
5328 status
= nfs4_preprocess_seqid_op(cstate
, close
->cl_seqid
,
5330 NFS4_OPEN_STID
|NFS4_CLOSED_STID
,
5332 nfsd4_bump_seqid(cstate
, status
);
5335 nfs4_inc_and_copy_stateid(&close
->cl_stateid
, &stp
->st_stid
);
5336 mutex_unlock(&stp
->st_mutex
);
5338 nfsd4_close_open_stateid(stp
);
5340 /* put reference from nfs4_preprocess_seqid_op */
5341 nfs4_put_stid(&stp
->st_stid
);
5347 nfsd4_delegreturn(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5348 struct nfsd4_delegreturn
*dr
)
5350 struct nfs4_delegation
*dp
;
5351 stateid_t
*stateid
= &dr
->dr_stateid
;
5352 struct nfs4_stid
*s
;
5354 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5356 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0)))
5359 status
= nfsd4_lookup_stateid(cstate
, stateid
, NFS4_DELEG_STID
, &s
, nn
);
5362 dp
= delegstateid(s
);
5363 status
= check_stateid_generation(stateid
, &dp
->dl_stid
.sc_stateid
, nfsd4_has_session(cstate
));
5367 destroy_delegation(dp
);
5369 nfs4_put_stid(&dp
->dl_stid
);
5375 end_offset(u64 start
, u64 len
)
5380 return end
>= start
? end
: NFS4_MAX_UINT64
;
5383 /* last octet in a range */
5385 last_byte_offset(u64 start
, u64 len
)
5391 return end
> start
? end
- 1: NFS4_MAX_UINT64
;
5395 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
5396 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
5397 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
5398 * locking, this prevents us from being completely protocol-compliant. The
5399 * real solution to this problem is to start using unsigned file offsets in
5400 * the VFS, but this is a very deep change!
5403 nfs4_transform_lock_offset(struct file_lock
*lock
)
5405 if (lock
->fl_start
< 0)
5406 lock
->fl_start
= OFFSET_MAX
;
5407 if (lock
->fl_end
< 0)
5408 lock
->fl_end
= OFFSET_MAX
;
5412 nfsd4_fl_get_owner(fl_owner_t owner
)
5414 struct nfs4_lockowner
*lo
= (struct nfs4_lockowner
*)owner
;
5416 nfs4_get_stateowner(&lo
->lo_owner
);
5421 nfsd4_fl_put_owner(fl_owner_t owner
)
5423 struct nfs4_lockowner
*lo
= (struct nfs4_lockowner
*)owner
;
5426 nfs4_put_stateowner(&lo
->lo_owner
);
5430 nfsd4_lm_notify(struct file_lock
*fl
)
5432 struct nfs4_lockowner
*lo
= (struct nfs4_lockowner
*)fl
->fl_owner
;
5433 struct net
*net
= lo
->lo_owner
.so_client
->net
;
5434 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
5435 struct nfsd4_blocked_lock
*nbl
= container_of(fl
,
5436 struct nfsd4_blocked_lock
, nbl_lock
);
5439 /* An empty list means that something else is going to be using it */
5440 spin_lock(&nn
->blocked_locks_lock
);
5441 if (!list_empty(&nbl
->nbl_list
)) {
5442 list_del_init(&nbl
->nbl_list
);
5443 list_del_init(&nbl
->nbl_lru
);
5446 spin_unlock(&nn
->blocked_locks_lock
);
5449 nfsd4_run_cb(&nbl
->nbl_cb
);
5452 static const struct lock_manager_operations nfsd_posix_mng_ops
= {
5453 .lm_notify
= nfsd4_lm_notify
,
5454 .lm_get_owner
= nfsd4_fl_get_owner
,
5455 .lm_put_owner
= nfsd4_fl_put_owner
,
5459 nfs4_set_lock_denied(struct file_lock
*fl
, struct nfsd4_lock_denied
*deny
)
5461 struct nfs4_lockowner
*lo
;
5463 if (fl
->fl_lmops
== &nfsd_posix_mng_ops
) {
5464 lo
= (struct nfs4_lockowner
*) fl
->fl_owner
;
5465 deny
->ld_owner
.data
= kmemdup(lo
->lo_owner
.so_owner
.data
,
5466 lo
->lo_owner
.so_owner
.len
, GFP_KERNEL
);
5467 if (!deny
->ld_owner
.data
)
5468 /* We just don't care that much */
5470 deny
->ld_owner
.len
= lo
->lo_owner
.so_owner
.len
;
5471 deny
->ld_clientid
= lo
->lo_owner
.so_client
->cl_clientid
;
5474 deny
->ld_owner
.len
= 0;
5475 deny
->ld_owner
.data
= NULL
;
5476 deny
->ld_clientid
.cl_boot
= 0;
5477 deny
->ld_clientid
.cl_id
= 0;
5479 deny
->ld_start
= fl
->fl_start
;
5480 deny
->ld_length
= NFS4_MAX_UINT64
;
5481 if (fl
->fl_end
!= NFS4_MAX_UINT64
)
5482 deny
->ld_length
= fl
->fl_end
- fl
->fl_start
+ 1;
5483 deny
->ld_type
= NFS4_READ_LT
;
5484 if (fl
->fl_type
!= F_RDLCK
)
5485 deny
->ld_type
= NFS4_WRITE_LT
;
5488 static struct nfs4_lockowner
*
5489 find_lockowner_str_locked(struct nfs4_client
*clp
, struct xdr_netobj
*owner
)
5491 unsigned int strhashval
= ownerstr_hashval(owner
);
5492 struct nfs4_stateowner
*so
;
5494 lockdep_assert_held(&clp
->cl_lock
);
5496 list_for_each_entry(so
, &clp
->cl_ownerstr_hashtbl
[strhashval
],
5498 if (so
->so_is_open_owner
)
5500 if (same_owner_str(so
, owner
))
5501 return lockowner(nfs4_get_stateowner(so
));
5506 static struct nfs4_lockowner
*
5507 find_lockowner_str(struct nfs4_client
*clp
, struct xdr_netobj
*owner
)
5509 struct nfs4_lockowner
*lo
;
5511 spin_lock(&clp
->cl_lock
);
5512 lo
= find_lockowner_str_locked(clp
, owner
);
5513 spin_unlock(&clp
->cl_lock
);
5517 static void nfs4_unhash_lockowner(struct nfs4_stateowner
*sop
)
5519 unhash_lockowner_locked(lockowner(sop
));
5522 static void nfs4_free_lockowner(struct nfs4_stateowner
*sop
)
5524 struct nfs4_lockowner
*lo
= lockowner(sop
);
5526 kmem_cache_free(lockowner_slab
, lo
);
5529 static const struct nfs4_stateowner_operations lockowner_ops
= {
5530 .so_unhash
= nfs4_unhash_lockowner
,
5531 .so_free
= nfs4_free_lockowner
,
5535 * Alloc a lock owner structure.
5536 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
5539 * strhashval = ownerstr_hashval
5541 static struct nfs4_lockowner
*
5542 alloc_init_lock_stateowner(unsigned int strhashval
, struct nfs4_client
*clp
,
5543 struct nfs4_ol_stateid
*open_stp
,
5544 struct nfsd4_lock
*lock
)
5546 struct nfs4_lockowner
*lo
, *ret
;
5548 lo
= alloc_stateowner(lockowner_slab
, &lock
->lk_new_owner
, clp
);
5551 INIT_LIST_HEAD(&lo
->lo_blocked
);
5552 INIT_LIST_HEAD(&lo
->lo_owner
.so_stateids
);
5553 lo
->lo_owner
.so_is_open_owner
= 0;
5554 lo
->lo_owner
.so_seqid
= lock
->lk_new_lock_seqid
;
5555 lo
->lo_owner
.so_ops
= &lockowner_ops
;
5556 spin_lock(&clp
->cl_lock
);
5557 ret
= find_lockowner_str_locked(clp
, &lock
->lk_new_owner
);
5559 list_add(&lo
->lo_owner
.so_strhash
,
5560 &clp
->cl_ownerstr_hashtbl
[strhashval
]);
5563 nfs4_free_stateowner(&lo
->lo_owner
);
5565 spin_unlock(&clp
->cl_lock
);
5570 init_lock_stateid(struct nfs4_ol_stateid
*stp
, struct nfs4_lockowner
*lo
,
5571 struct nfs4_file
*fp
, struct inode
*inode
,
5572 struct nfs4_ol_stateid
*open_stp
)
5574 struct nfs4_client
*clp
= lo
->lo_owner
.so_client
;
5576 lockdep_assert_held(&clp
->cl_lock
);
5578 atomic_inc(&stp
->st_stid
.sc_count
);
5579 stp
->st_stid
.sc_type
= NFS4_LOCK_STID
;
5580 stp
->st_stateowner
= nfs4_get_stateowner(&lo
->lo_owner
);
5582 stp
->st_stid
.sc_file
= fp
;
5583 stp
->st_stid
.sc_free
= nfs4_free_lock_stateid
;
5584 stp
->st_access_bmap
= 0;
5585 stp
->st_deny_bmap
= open_stp
->st_deny_bmap
;
5586 stp
->st_openstp
= open_stp
;
5587 mutex_init(&stp
->st_mutex
);
5588 list_add(&stp
->st_locks
, &open_stp
->st_locks
);
5589 list_add(&stp
->st_perstateowner
, &lo
->lo_owner
.so_stateids
);
5590 spin_lock(&fp
->fi_lock
);
5591 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
5592 spin_unlock(&fp
->fi_lock
);
5595 static struct nfs4_ol_stateid
*
5596 find_lock_stateid(struct nfs4_lockowner
*lo
, struct nfs4_file
*fp
)
5598 struct nfs4_ol_stateid
*lst
;
5599 struct nfs4_client
*clp
= lo
->lo_owner
.so_client
;
5601 lockdep_assert_held(&clp
->cl_lock
);
5603 list_for_each_entry(lst
, &lo
->lo_owner
.so_stateids
, st_perstateowner
) {
5604 if (lst
->st_stid
.sc_file
== fp
) {
5605 atomic_inc(&lst
->st_stid
.sc_count
);
5612 static struct nfs4_ol_stateid
*
5613 find_or_create_lock_stateid(struct nfs4_lockowner
*lo
, struct nfs4_file
*fi
,
5614 struct inode
*inode
, struct nfs4_ol_stateid
*ost
,
5617 struct nfs4_stid
*ns
= NULL
;
5618 struct nfs4_ol_stateid
*lst
;
5619 struct nfs4_openowner
*oo
= openowner(ost
->st_stateowner
);
5620 struct nfs4_client
*clp
= oo
->oo_owner
.so_client
;
5622 spin_lock(&clp
->cl_lock
);
5623 lst
= find_lock_stateid(lo
, fi
);
5625 spin_unlock(&clp
->cl_lock
);
5626 ns
= nfs4_alloc_stid(clp
, stateid_slab
);
5630 spin_lock(&clp
->cl_lock
);
5631 lst
= find_lock_stateid(lo
, fi
);
5633 lst
= openlockstateid(ns
);
5634 init_lock_stateid(lst
, lo
, fi
, inode
, ost
);
5639 spin_unlock(&clp
->cl_lock
);
5646 check_lock_length(u64 offset
, u64 length
)
5648 return ((length
== 0) || ((length
!= NFS4_MAX_UINT64
) &&
5649 (length
> ~offset
)));
5652 static void get_lock_access(struct nfs4_ol_stateid
*lock_stp
, u32 access
)
5654 struct nfs4_file
*fp
= lock_stp
->st_stid
.sc_file
;
5656 lockdep_assert_held(&fp
->fi_lock
);
5658 if (test_access(access
, lock_stp
))
5660 __nfs4_file_get_access(fp
, access
);
5661 set_access(access
, lock_stp
);
5665 lookup_or_create_lock_state(struct nfsd4_compound_state
*cstate
,
5666 struct nfs4_ol_stateid
*ost
,
5667 struct nfsd4_lock
*lock
,
5668 struct nfs4_ol_stateid
**plst
, bool *new)
5671 struct nfs4_file
*fi
= ost
->st_stid
.sc_file
;
5672 struct nfs4_openowner
*oo
= openowner(ost
->st_stateowner
);
5673 struct nfs4_client
*cl
= oo
->oo_owner
.so_client
;
5674 struct inode
*inode
= d_inode(cstate
->current_fh
.fh_dentry
);
5675 struct nfs4_lockowner
*lo
;
5676 struct nfs4_ol_stateid
*lst
;
5677 unsigned int strhashval
;
5680 lo
= find_lockowner_str(cl
, &lock
->lk_new_owner
);
5682 strhashval
= ownerstr_hashval(&lock
->lk_new_owner
);
5683 lo
= alloc_init_lock_stateowner(strhashval
, cl
, ost
, lock
);
5685 return nfserr_jukebox
;
5687 /* with an existing lockowner, seqids must be the same */
5688 status
= nfserr_bad_seqid
;
5689 if (!cstate
->minorversion
&&
5690 lock
->lk_new_lock_seqid
!= lo
->lo_owner
.so_seqid
)
5695 lst
= find_or_create_lock_stateid(lo
, fi
, inode
, ost
, new);
5697 status
= nfserr_jukebox
;
5701 mutex_lock(&lst
->st_mutex
);
5703 /* See if it's still hashed to avoid race with FREE_STATEID */
5704 spin_lock(&cl
->cl_lock
);
5705 hashed
= !list_empty(&lst
->st_perfile
);
5706 spin_unlock(&cl
->cl_lock
);
5709 mutex_unlock(&lst
->st_mutex
);
5710 nfs4_put_stid(&lst
->st_stid
);
5716 nfs4_put_stateowner(&lo
->lo_owner
);
5724 nfsd4_lock(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5725 struct nfsd4_lock
*lock
)
5727 struct nfs4_openowner
*open_sop
= NULL
;
5728 struct nfs4_lockowner
*lock_sop
= NULL
;
5729 struct nfs4_ol_stateid
*lock_stp
= NULL
;
5730 struct nfs4_ol_stateid
*open_stp
= NULL
;
5731 struct nfs4_file
*fp
;
5732 struct file
*filp
= NULL
;
5733 struct nfsd4_blocked_lock
*nbl
= NULL
;
5734 struct file_lock
*file_lock
= NULL
;
5735 struct file_lock
*conflock
= NULL
;
5740 unsigned char fl_type
;
5741 unsigned int fl_flags
= FL_POSIX
;
5742 struct net
*net
= SVC_NET(rqstp
);
5743 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
5745 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
5746 (long long) lock
->lk_offset
,
5747 (long long) lock
->lk_length
);
5749 if (check_lock_length(lock
->lk_offset
, lock
->lk_length
))
5750 return nfserr_inval
;
5752 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
,
5753 S_IFREG
, NFSD_MAY_LOCK
))) {
5754 dprintk("NFSD: nfsd4_lock: permission denied!\n");
5758 if (lock
->lk_is_new
) {
5759 if (nfsd4_has_session(cstate
))
5760 /* See rfc 5661 18.10.3: given clientid is ignored: */
5761 memcpy(&lock
->lk_new_clientid
,
5762 &cstate
->session
->se_client
->cl_clientid
,
5763 sizeof(clientid_t
));
5765 status
= nfserr_stale_clientid
;
5766 if (STALE_CLIENTID(&lock
->lk_new_clientid
, nn
))
5769 /* validate and update open stateid and open seqid */
5770 status
= nfs4_preprocess_confirmed_seqid_op(cstate
,
5771 lock
->lk_new_open_seqid
,
5772 &lock
->lk_new_open_stateid
,
5776 mutex_unlock(&open_stp
->st_mutex
);
5777 open_sop
= openowner(open_stp
->st_stateowner
);
5778 status
= nfserr_bad_stateid
;
5779 if (!same_clid(&open_sop
->oo_owner
.so_client
->cl_clientid
,
5780 &lock
->lk_new_clientid
))
5782 status
= lookup_or_create_lock_state(cstate
, open_stp
, lock
,
5785 status
= nfs4_preprocess_seqid_op(cstate
,
5786 lock
->lk_old_lock_seqid
,
5787 &lock
->lk_old_lock_stateid
,
5788 NFS4_LOCK_STID
, &lock_stp
, nn
);
5792 lock_sop
= lockowner(lock_stp
->st_stateowner
);
5794 lkflg
= setlkflg(lock
->lk_type
);
5795 status
= nfs4_check_openmode(lock_stp
, lkflg
);
5799 status
= nfserr_grace
;
5800 if (locks_in_grace(net
) && !lock
->lk_reclaim
)
5802 status
= nfserr_no_grace
;
5803 if (!locks_in_grace(net
) && lock
->lk_reclaim
)
5806 fp
= lock_stp
->st_stid
.sc_file
;
5807 switch (lock
->lk_type
) {
5809 if (nfsd4_has_session(cstate
))
5810 fl_flags
|= FL_SLEEP
;
5813 spin_lock(&fp
->fi_lock
);
5814 filp
= find_readable_file_locked(fp
);
5816 get_lock_access(lock_stp
, NFS4_SHARE_ACCESS_READ
);
5817 spin_unlock(&fp
->fi_lock
);
5820 case NFS4_WRITEW_LT
:
5821 if (nfsd4_has_session(cstate
))
5822 fl_flags
|= FL_SLEEP
;
5825 spin_lock(&fp
->fi_lock
);
5826 filp
= find_writeable_file_locked(fp
);
5828 get_lock_access(lock_stp
, NFS4_SHARE_ACCESS_WRITE
);
5829 spin_unlock(&fp
->fi_lock
);
5833 status
= nfserr_inval
;
5838 status
= nfserr_openmode
;
5842 nbl
= find_or_allocate_block(lock_sop
, &fp
->fi_fhandle
, nn
);
5844 dprintk("NFSD: %s: unable to allocate block!\n", __func__
);
5845 status
= nfserr_jukebox
;
5849 file_lock
= &nbl
->nbl_lock
;
5850 file_lock
->fl_type
= fl_type
;
5851 file_lock
->fl_owner
= (fl_owner_t
)lockowner(nfs4_get_stateowner(&lock_sop
->lo_owner
));
5852 file_lock
->fl_pid
= current
->tgid
;
5853 file_lock
->fl_file
= filp
;
5854 file_lock
->fl_flags
= fl_flags
;
5855 file_lock
->fl_lmops
= &nfsd_posix_mng_ops
;
5856 file_lock
->fl_start
= lock
->lk_offset
;
5857 file_lock
->fl_end
= last_byte_offset(lock
->lk_offset
, lock
->lk_length
);
5858 nfs4_transform_lock_offset(file_lock
);
5860 conflock
= locks_alloc_lock();
5862 dprintk("NFSD: %s: unable to allocate lock!\n", __func__
);
5863 status
= nfserr_jukebox
;
5867 if (fl_flags
& FL_SLEEP
) {
5868 nbl
->nbl_time
= jiffies
;
5869 spin_lock(&nn
->blocked_locks_lock
);
5870 list_add_tail(&nbl
->nbl_list
, &lock_sop
->lo_blocked
);
5871 list_add_tail(&nbl
->nbl_lru
, &nn
->blocked_locks_lru
);
5872 spin_unlock(&nn
->blocked_locks_lock
);
5875 err
= vfs_lock_file(filp
, F_SETLK
, file_lock
, conflock
);
5877 case 0: /* success! */
5878 nfs4_inc_and_copy_stateid(&lock
->lk_resp_stateid
, &lock_stp
->st_stid
);
5881 case FILE_LOCK_DEFERRED
:
5884 case -EAGAIN
: /* conflock holds conflicting lock */
5885 status
= nfserr_denied
;
5886 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
5887 nfs4_set_lock_denied(conflock
, &lock
->lk_denied
);
5890 status
= nfserr_deadlock
;
5893 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err
);
5894 status
= nfserrno(err
);
5899 /* dequeue it if we queued it before */
5900 if (fl_flags
& FL_SLEEP
) {
5901 spin_lock(&nn
->blocked_locks_lock
);
5902 list_del_init(&nbl
->nbl_list
);
5903 list_del_init(&nbl
->nbl_lru
);
5904 spin_unlock(&nn
->blocked_locks_lock
);
5906 free_blocked_lock(nbl
);
5911 /* Bump seqid manually if the 4.0 replay owner is openowner */
5912 if (cstate
->replay_owner
&&
5913 cstate
->replay_owner
!= &lock_sop
->lo_owner
&&
5914 seqid_mutating_err(ntohl(status
)))
5915 lock_sop
->lo_owner
.so_seqid
++;
5917 mutex_unlock(&lock_stp
->st_mutex
);
5920 * If this is a new, never-before-used stateid, and we are
5921 * returning an error, then just go ahead and release it.
5924 release_lock_stateid(lock_stp
);
5926 nfs4_put_stid(&lock_stp
->st_stid
);
5929 nfs4_put_stid(&open_stp
->st_stid
);
5930 nfsd4_bump_seqid(cstate
, status
);
5932 locks_free_lock(conflock
);
5937 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
5938 * so we do a temporary open here just to get an open file to pass to
5939 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
5942 static __be32
nfsd_test_lock(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file_lock
*lock
)
5945 __be32 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, NFSD_MAY_READ
, &file
);
5947 err
= nfserrno(vfs_test_lock(file
, lock
));
5957 nfsd4_lockt(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5958 struct nfsd4_lockt
*lockt
)
5960 struct file_lock
*file_lock
= NULL
;
5961 struct nfs4_lockowner
*lo
= NULL
;
5963 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5965 if (locks_in_grace(SVC_NET(rqstp
)))
5966 return nfserr_grace
;
5968 if (check_lock_length(lockt
->lt_offset
, lockt
->lt_length
))
5969 return nfserr_inval
;
5971 if (!nfsd4_has_session(cstate
)) {
5972 status
= lookup_clientid(&lockt
->lt_clientid
, cstate
, nn
);
5977 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0)))
5980 file_lock
= locks_alloc_lock();
5982 dprintk("NFSD: %s: unable to allocate lock!\n", __func__
);
5983 status
= nfserr_jukebox
;
5987 switch (lockt
->lt_type
) {
5990 file_lock
->fl_type
= F_RDLCK
;
5993 case NFS4_WRITEW_LT
:
5994 file_lock
->fl_type
= F_WRLCK
;
5997 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
5998 status
= nfserr_inval
;
6002 lo
= find_lockowner_str(cstate
->clp
, &lockt
->lt_owner
);
6004 file_lock
->fl_owner
= (fl_owner_t
)lo
;
6005 file_lock
->fl_pid
= current
->tgid
;
6006 file_lock
->fl_flags
= FL_POSIX
;
6008 file_lock
->fl_start
= lockt
->lt_offset
;
6009 file_lock
->fl_end
= last_byte_offset(lockt
->lt_offset
, lockt
->lt_length
);
6011 nfs4_transform_lock_offset(file_lock
);
6013 status
= nfsd_test_lock(rqstp
, &cstate
->current_fh
, file_lock
);
6017 if (file_lock
->fl_type
!= F_UNLCK
) {
6018 status
= nfserr_denied
;
6019 nfs4_set_lock_denied(file_lock
, &lockt
->lt_denied
);
6023 nfs4_put_stateowner(&lo
->lo_owner
);
6025 locks_free_lock(file_lock
);
6030 nfsd4_locku(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
6031 struct nfsd4_locku
*locku
)
6033 struct nfs4_ol_stateid
*stp
;
6034 struct file
*filp
= NULL
;
6035 struct file_lock
*file_lock
= NULL
;
6038 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
6040 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
6041 (long long) locku
->lu_offset
,
6042 (long long) locku
->lu_length
);
6044 if (check_lock_length(locku
->lu_offset
, locku
->lu_length
))
6045 return nfserr_inval
;
6047 status
= nfs4_preprocess_seqid_op(cstate
, locku
->lu_seqid
,
6048 &locku
->lu_stateid
, NFS4_LOCK_STID
,
6052 filp
= find_any_file(stp
->st_stid
.sc_file
);
6054 status
= nfserr_lock_range
;
6057 file_lock
= locks_alloc_lock();
6059 dprintk("NFSD: %s: unable to allocate lock!\n", __func__
);
6060 status
= nfserr_jukebox
;
6064 file_lock
->fl_type
= F_UNLCK
;
6065 file_lock
->fl_owner
= (fl_owner_t
)lockowner(nfs4_get_stateowner(stp
->st_stateowner
));
6066 file_lock
->fl_pid
= current
->tgid
;
6067 file_lock
->fl_file
= filp
;
6068 file_lock
->fl_flags
= FL_POSIX
;
6069 file_lock
->fl_lmops
= &nfsd_posix_mng_ops
;
6070 file_lock
->fl_start
= locku
->lu_offset
;
6072 file_lock
->fl_end
= last_byte_offset(locku
->lu_offset
,
6074 nfs4_transform_lock_offset(file_lock
);
6076 err
= vfs_lock_file(filp
, F_SETLK
, file_lock
, NULL
);
6078 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
6081 nfs4_inc_and_copy_stateid(&locku
->lu_stateid
, &stp
->st_stid
);
6085 mutex_unlock(&stp
->st_mutex
);
6086 nfs4_put_stid(&stp
->st_stid
);
6088 nfsd4_bump_seqid(cstate
, status
);
6090 locks_free_lock(file_lock
);
6094 status
= nfserrno(err
);
6100 * true: locks held by lockowner
6101 * false: no locks held by lockowner
6104 check_for_locks(struct nfs4_file
*fp
, struct nfs4_lockowner
*lowner
)
6106 struct file_lock
*fl
;
6108 struct file
*filp
= find_any_file(fp
);
6109 struct inode
*inode
;
6110 struct file_lock_context
*flctx
;
6113 /* Any valid lock stateid should have some sort of access */
6118 inode
= file_inode(filp
);
6119 flctx
= inode
->i_flctx
;
6121 if (flctx
&& !list_empty_careful(&flctx
->flc_posix
)) {
6122 spin_lock(&flctx
->flc_lock
);
6123 list_for_each_entry(fl
, &flctx
->flc_posix
, fl_list
) {
6124 if (fl
->fl_owner
== (fl_owner_t
)lowner
) {
6129 spin_unlock(&flctx
->flc_lock
);
6136 nfsd4_release_lockowner(struct svc_rqst
*rqstp
,
6137 struct nfsd4_compound_state
*cstate
,
6138 struct nfsd4_release_lockowner
*rlockowner
)
6140 clientid_t
*clid
= &rlockowner
->rl_clientid
;
6141 struct nfs4_stateowner
*sop
;
6142 struct nfs4_lockowner
*lo
= NULL
;
6143 struct nfs4_ol_stateid
*stp
;
6144 struct xdr_netobj
*owner
= &rlockowner
->rl_owner
;
6145 unsigned int hashval
= ownerstr_hashval(owner
);
6147 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
6148 struct nfs4_client
*clp
;
6149 LIST_HEAD (reaplist
);
6151 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
6152 clid
->cl_boot
, clid
->cl_id
);
6154 status
= lookup_clientid(clid
, cstate
, nn
);
6159 /* Find the matching lock stateowner */
6160 spin_lock(&clp
->cl_lock
);
6161 list_for_each_entry(sop
, &clp
->cl_ownerstr_hashtbl
[hashval
],
6164 if (sop
->so_is_open_owner
|| !same_owner_str(sop
, owner
))
6167 /* see if there are still any locks associated with it */
6168 lo
= lockowner(sop
);
6169 list_for_each_entry(stp
, &sop
->so_stateids
, st_perstateowner
) {
6170 if (check_for_locks(stp
->st_stid
.sc_file
, lo
)) {
6171 status
= nfserr_locks_held
;
6172 spin_unlock(&clp
->cl_lock
);
6177 nfs4_get_stateowner(sop
);
6181 spin_unlock(&clp
->cl_lock
);
6185 unhash_lockowner_locked(lo
);
6186 while (!list_empty(&lo
->lo_owner
.so_stateids
)) {
6187 stp
= list_first_entry(&lo
->lo_owner
.so_stateids
,
6188 struct nfs4_ol_stateid
,
6190 WARN_ON(!unhash_lock_stateid(stp
));
6191 put_ol_stateid_locked(stp
, &reaplist
);
6193 spin_unlock(&clp
->cl_lock
);
6194 free_ol_stateid_reaplist(&reaplist
);
6195 nfs4_put_stateowner(&lo
->lo_owner
);
6200 static inline struct nfs4_client_reclaim
*
6203 return kmalloc(sizeof(struct nfs4_client_reclaim
), GFP_KERNEL
);
6207 nfs4_has_reclaimed_state(const char *name
, struct nfsd_net
*nn
)
6209 struct nfs4_client_reclaim
*crp
;
6211 crp
= nfsd4_find_reclaim_client(name
, nn
);
6212 return (crp
&& crp
->cr_clp
);
6216 * failure => all reset bets are off, nfserr_no_grace...
6218 struct nfs4_client_reclaim
*
6219 nfs4_client_to_reclaim(const char *name
, struct nfsd_net
*nn
)
6221 unsigned int strhashval
;
6222 struct nfs4_client_reclaim
*crp
;
6224 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN
, name
);
6225 crp
= alloc_reclaim();
6227 strhashval
= clientstr_hashval(name
);
6228 INIT_LIST_HEAD(&crp
->cr_strhash
);
6229 list_add(&crp
->cr_strhash
, &nn
->reclaim_str_hashtbl
[strhashval
]);
6230 memcpy(crp
->cr_recdir
, name
, HEXDIR_LEN
);
6232 nn
->reclaim_str_hashtbl_size
++;
6238 nfs4_remove_reclaim_record(struct nfs4_client_reclaim
*crp
, struct nfsd_net
*nn
)
6240 list_del(&crp
->cr_strhash
);
6242 nn
->reclaim_str_hashtbl_size
--;
6246 nfs4_release_reclaim(struct nfsd_net
*nn
)
6248 struct nfs4_client_reclaim
*crp
= NULL
;
6251 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
6252 while (!list_empty(&nn
->reclaim_str_hashtbl
[i
])) {
6253 crp
= list_entry(nn
->reclaim_str_hashtbl
[i
].next
,
6254 struct nfs4_client_reclaim
, cr_strhash
);
6255 nfs4_remove_reclaim_record(crp
, nn
);
6258 WARN_ON_ONCE(nn
->reclaim_str_hashtbl_size
);
6262 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
6263 struct nfs4_client_reclaim
*
6264 nfsd4_find_reclaim_client(const char *recdir
, struct nfsd_net
*nn
)
6266 unsigned int strhashval
;
6267 struct nfs4_client_reclaim
*crp
= NULL
;
6269 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir
);
6271 strhashval
= clientstr_hashval(recdir
);
6272 list_for_each_entry(crp
, &nn
->reclaim_str_hashtbl
[strhashval
], cr_strhash
) {
6273 if (same_name(crp
->cr_recdir
, recdir
)) {
6281 * Called from OPEN. Look for clientid in reclaim list.
6284 nfs4_check_open_reclaim(clientid_t
*clid
,
6285 struct nfsd4_compound_state
*cstate
,
6286 struct nfsd_net
*nn
)
6290 /* find clientid in conf_id_hashtbl */
6291 status
= lookup_clientid(clid
, cstate
, nn
);
6293 return nfserr_reclaim_bad
;
6295 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE
, &cstate
->clp
->cl_flags
))
6296 return nfserr_no_grace
;
6298 if (nfsd4_client_record_check(cstate
->clp
))
6299 return nfserr_reclaim_bad
;
6304 #ifdef CONFIG_NFSD_FAULT_INJECTION
6306 put_client(struct nfs4_client
*clp
)
6308 atomic_dec(&clp
->cl_refcount
);
6311 static struct nfs4_client
*
6312 nfsd_find_client(struct sockaddr_storage
*addr
, size_t addr_size
)
6314 struct nfs4_client
*clp
;
6315 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6318 if (!nfsd_netns_ready(nn
))
6321 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6322 if (memcmp(&clp
->cl_addr
, addr
, addr_size
) == 0)
6329 nfsd_inject_print_clients(void)
6331 struct nfs4_client
*clp
;
6333 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6335 char buf
[INET6_ADDRSTRLEN
];
6337 if (!nfsd_netns_ready(nn
))
6340 spin_lock(&nn
->client_lock
);
6341 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6342 rpc_ntop((struct sockaddr
*)&clp
->cl_addr
, buf
, sizeof(buf
));
6343 pr_info("NFS Client: %s\n", buf
);
6346 spin_unlock(&nn
->client_lock
);
6352 nfsd_inject_forget_client(struct sockaddr_storage
*addr
, size_t addr_size
)
6355 struct nfs4_client
*clp
;
6356 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6359 if (!nfsd_netns_ready(nn
))
6362 spin_lock(&nn
->client_lock
);
6363 clp
= nfsd_find_client(addr
, addr_size
);
6365 if (mark_client_expired_locked(clp
) == nfs_ok
)
6370 spin_unlock(&nn
->client_lock
);
6379 nfsd_inject_forget_clients(u64 max
)
6382 struct nfs4_client
*clp
, *next
;
6383 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6385 LIST_HEAD(reaplist
);
6387 if (!nfsd_netns_ready(nn
))
6390 spin_lock(&nn
->client_lock
);
6391 list_for_each_entry_safe(clp
, next
, &nn
->client_lru
, cl_lru
) {
6392 if (mark_client_expired_locked(clp
) == nfs_ok
) {
6393 list_add(&clp
->cl_lru
, &reaplist
);
6394 if (max
!= 0 && ++count
>= max
)
6398 spin_unlock(&nn
->client_lock
);
6400 list_for_each_entry_safe(clp
, next
, &reaplist
, cl_lru
)
6406 static void nfsd_print_count(struct nfs4_client
*clp
, unsigned int count
,
6409 char buf
[INET6_ADDRSTRLEN
];
6410 rpc_ntop((struct sockaddr
*)&clp
->cl_addr
, buf
, sizeof(buf
));
6411 printk(KERN_INFO
"NFS Client: %s has %u %s\n", buf
, count
, type
);
6415 nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid
*lst
,
6416 struct list_head
*collect
)
6418 struct nfs4_client
*clp
= lst
->st_stid
.sc_client
;
6419 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6425 lockdep_assert_held(&nn
->client_lock
);
6426 atomic_inc(&clp
->cl_refcount
);
6427 list_add(&lst
->st_locks
, collect
);
6430 static u64
nfsd_foreach_client_lock(struct nfs4_client
*clp
, u64 max
,
6431 struct list_head
*collect
,
6432 bool (*func
)(struct nfs4_ol_stateid
*))
6434 struct nfs4_openowner
*oop
;
6435 struct nfs4_ol_stateid
*stp
, *st_next
;
6436 struct nfs4_ol_stateid
*lst
, *lst_next
;
6439 spin_lock(&clp
->cl_lock
);
6440 list_for_each_entry(oop
, &clp
->cl_openowners
, oo_perclient
) {
6441 list_for_each_entry_safe(stp
, st_next
,
6442 &oop
->oo_owner
.so_stateids
, st_perstateowner
) {
6443 list_for_each_entry_safe(lst
, lst_next
,
6444 &stp
->st_locks
, st_locks
) {
6447 nfsd_inject_add_lock_to_list(lst
,
6452 * Despite the fact that these functions deal
6453 * with 64-bit integers for "count", we must
6454 * ensure that it doesn't blow up the
6455 * clp->cl_refcount. Throw a warning if we
6456 * start to approach INT_MAX here.
6458 WARN_ON_ONCE(count
== (INT_MAX
/ 2));
6465 spin_unlock(&clp
->cl_lock
);
6471 nfsd_collect_client_locks(struct nfs4_client
*clp
, struct list_head
*collect
,
6474 return nfsd_foreach_client_lock(clp
, max
, collect
, unhash_lock_stateid
);
6478 nfsd_print_client_locks(struct nfs4_client
*clp
)
6480 u64 count
= nfsd_foreach_client_lock(clp
, 0, NULL
, NULL
);
6481 nfsd_print_count(clp
, count
, "locked files");
6486 nfsd_inject_print_locks(void)
6488 struct nfs4_client
*clp
;
6490 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6493 if (!nfsd_netns_ready(nn
))
6496 spin_lock(&nn
->client_lock
);
6497 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
)
6498 count
+= nfsd_print_client_locks(clp
);
6499 spin_unlock(&nn
->client_lock
);
6505 nfsd_reap_locks(struct list_head
*reaplist
)
6507 struct nfs4_client
*clp
;
6508 struct nfs4_ol_stateid
*stp
, *next
;
6510 list_for_each_entry_safe(stp
, next
, reaplist
, st_locks
) {
6511 list_del_init(&stp
->st_locks
);
6512 clp
= stp
->st_stid
.sc_client
;
6513 nfs4_put_stid(&stp
->st_stid
);
6519 nfsd_inject_forget_client_locks(struct sockaddr_storage
*addr
, size_t addr_size
)
6521 unsigned int count
= 0;
6522 struct nfs4_client
*clp
;
6523 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6525 LIST_HEAD(reaplist
);
6527 if (!nfsd_netns_ready(nn
))
6530 spin_lock(&nn
->client_lock
);
6531 clp
= nfsd_find_client(addr
, addr_size
);
6533 count
= nfsd_collect_client_locks(clp
, &reaplist
, 0);
6534 spin_unlock(&nn
->client_lock
);
6535 nfsd_reap_locks(&reaplist
);
6540 nfsd_inject_forget_locks(u64 max
)
6543 struct nfs4_client
*clp
;
6544 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6546 LIST_HEAD(reaplist
);
6548 if (!nfsd_netns_ready(nn
))
6551 spin_lock(&nn
->client_lock
);
6552 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6553 count
+= nfsd_collect_client_locks(clp
, &reaplist
, max
- count
);
6554 if (max
!= 0 && count
>= max
)
6557 spin_unlock(&nn
->client_lock
);
6558 nfsd_reap_locks(&reaplist
);
6563 nfsd_foreach_client_openowner(struct nfs4_client
*clp
, u64 max
,
6564 struct list_head
*collect
,
6565 void (*func
)(struct nfs4_openowner
*))
6567 struct nfs4_openowner
*oop
, *next
;
6568 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6572 lockdep_assert_held(&nn
->client_lock
);
6574 spin_lock(&clp
->cl_lock
);
6575 list_for_each_entry_safe(oop
, next
, &clp
->cl_openowners
, oo_perclient
) {
6579 atomic_inc(&clp
->cl_refcount
);
6580 list_add(&oop
->oo_perclient
, collect
);
6585 * Despite the fact that these functions deal with
6586 * 64-bit integers for "count", we must ensure that
6587 * it doesn't blow up the clp->cl_refcount. Throw a
6588 * warning if we start to approach INT_MAX here.
6590 WARN_ON_ONCE(count
== (INT_MAX
/ 2));
6594 spin_unlock(&clp
->cl_lock
);
6600 nfsd_print_client_openowners(struct nfs4_client
*clp
)
6602 u64 count
= nfsd_foreach_client_openowner(clp
, 0, NULL
, NULL
);
6604 nfsd_print_count(clp
, count
, "openowners");
6609 nfsd_collect_client_openowners(struct nfs4_client
*clp
,
6610 struct list_head
*collect
, u64 max
)
6612 return nfsd_foreach_client_openowner(clp
, max
, collect
,
6613 unhash_openowner_locked
);
6617 nfsd_inject_print_openowners(void)
6619 struct nfs4_client
*clp
;
6621 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6624 if (!nfsd_netns_ready(nn
))
6627 spin_lock(&nn
->client_lock
);
6628 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
)
6629 count
+= nfsd_print_client_openowners(clp
);
6630 spin_unlock(&nn
->client_lock
);
6636 nfsd_reap_openowners(struct list_head
*reaplist
)
6638 struct nfs4_client
*clp
;
6639 struct nfs4_openowner
*oop
, *next
;
6641 list_for_each_entry_safe(oop
, next
, reaplist
, oo_perclient
) {
6642 list_del_init(&oop
->oo_perclient
);
6643 clp
= oop
->oo_owner
.so_client
;
6644 release_openowner(oop
);
6650 nfsd_inject_forget_client_openowners(struct sockaddr_storage
*addr
,
6653 unsigned int count
= 0;
6654 struct nfs4_client
*clp
;
6655 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6657 LIST_HEAD(reaplist
);
6659 if (!nfsd_netns_ready(nn
))
6662 spin_lock(&nn
->client_lock
);
6663 clp
= nfsd_find_client(addr
, addr_size
);
6665 count
= nfsd_collect_client_openowners(clp
, &reaplist
, 0);
6666 spin_unlock(&nn
->client_lock
);
6667 nfsd_reap_openowners(&reaplist
);
6672 nfsd_inject_forget_openowners(u64 max
)
6675 struct nfs4_client
*clp
;
6676 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6678 LIST_HEAD(reaplist
);
6680 if (!nfsd_netns_ready(nn
))
6683 spin_lock(&nn
->client_lock
);
6684 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6685 count
+= nfsd_collect_client_openowners(clp
, &reaplist
,
6687 if (max
!= 0 && count
>= max
)
6690 spin_unlock(&nn
->client_lock
);
6691 nfsd_reap_openowners(&reaplist
);
6695 static u64
nfsd_find_all_delegations(struct nfs4_client
*clp
, u64 max
,
6696 struct list_head
*victims
)
6698 struct nfs4_delegation
*dp
, *next
;
6699 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6703 lockdep_assert_held(&nn
->client_lock
);
6705 spin_lock(&state_lock
);
6706 list_for_each_entry_safe(dp
, next
, &clp
->cl_delegations
, dl_perclnt
) {
6709 * It's not safe to mess with delegations that have a
6710 * non-zero dl_time. They might have already been broken
6711 * and could be processed by the laundromat outside of
6712 * the state_lock. Just leave them be.
6714 if (dp
->dl_time
!= 0)
6717 atomic_inc(&clp
->cl_refcount
);
6718 WARN_ON(!unhash_delegation_locked(dp
));
6719 list_add(&dp
->dl_recall_lru
, victims
);
6723 * Despite the fact that these functions deal with
6724 * 64-bit integers for "count", we must ensure that
6725 * it doesn't blow up the clp->cl_refcount. Throw a
6726 * warning if we start to approach INT_MAX here.
6728 WARN_ON_ONCE(count
== (INT_MAX
/ 2));
6732 spin_unlock(&state_lock
);
6737 nfsd_print_client_delegations(struct nfs4_client
*clp
)
6739 u64 count
= nfsd_find_all_delegations(clp
, 0, NULL
);
6741 nfsd_print_count(clp
, count
, "delegations");
6746 nfsd_inject_print_delegations(void)
6748 struct nfs4_client
*clp
;
6750 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6753 if (!nfsd_netns_ready(nn
))
6756 spin_lock(&nn
->client_lock
);
6757 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
)
6758 count
+= nfsd_print_client_delegations(clp
);
6759 spin_unlock(&nn
->client_lock
);
6765 nfsd_forget_delegations(struct list_head
*reaplist
)
6767 struct nfs4_client
*clp
;
6768 struct nfs4_delegation
*dp
, *next
;
6770 list_for_each_entry_safe(dp
, next
, reaplist
, dl_recall_lru
) {
6771 list_del_init(&dp
->dl_recall_lru
);
6772 clp
= dp
->dl_stid
.sc_client
;
6773 revoke_delegation(dp
);
6779 nfsd_inject_forget_client_delegations(struct sockaddr_storage
*addr
,
6783 struct nfs4_client
*clp
;
6784 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6786 LIST_HEAD(reaplist
);
6788 if (!nfsd_netns_ready(nn
))
6791 spin_lock(&nn
->client_lock
);
6792 clp
= nfsd_find_client(addr
, addr_size
);
6794 count
= nfsd_find_all_delegations(clp
, 0, &reaplist
);
6795 spin_unlock(&nn
->client_lock
);
6797 nfsd_forget_delegations(&reaplist
);
6802 nfsd_inject_forget_delegations(u64 max
)
6805 struct nfs4_client
*clp
;
6806 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6808 LIST_HEAD(reaplist
);
6810 if (!nfsd_netns_ready(nn
))
6813 spin_lock(&nn
->client_lock
);
6814 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6815 count
+= nfsd_find_all_delegations(clp
, max
- count
, &reaplist
);
6816 if (max
!= 0 && count
>= max
)
6819 spin_unlock(&nn
->client_lock
);
6820 nfsd_forget_delegations(&reaplist
);
6825 nfsd_recall_delegations(struct list_head
*reaplist
)
6827 struct nfs4_client
*clp
;
6828 struct nfs4_delegation
*dp
, *next
;
6830 list_for_each_entry_safe(dp
, next
, reaplist
, dl_recall_lru
) {
6831 list_del_init(&dp
->dl_recall_lru
);
6832 clp
= dp
->dl_stid
.sc_client
;
6834 * We skipped all entries that had a zero dl_time before,
6835 * so we can now reset the dl_time back to 0. If a delegation
6836 * break comes in now, then it won't make any difference since
6837 * we're recalling it either way.
6839 spin_lock(&state_lock
);
6841 spin_unlock(&state_lock
);
6842 nfsd_break_one_deleg(dp
);
6848 nfsd_inject_recall_client_delegations(struct sockaddr_storage
*addr
,
6852 struct nfs4_client
*clp
;
6853 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6855 LIST_HEAD(reaplist
);
6857 if (!nfsd_netns_ready(nn
))
6860 spin_lock(&nn
->client_lock
);
6861 clp
= nfsd_find_client(addr
, addr_size
);
6863 count
= nfsd_find_all_delegations(clp
, 0, &reaplist
);
6864 spin_unlock(&nn
->client_lock
);
6866 nfsd_recall_delegations(&reaplist
);
6871 nfsd_inject_recall_delegations(u64 max
)
6874 struct nfs4_client
*clp
, *next
;
6875 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6877 LIST_HEAD(reaplist
);
6879 if (!nfsd_netns_ready(nn
))
6882 spin_lock(&nn
->client_lock
);
6883 list_for_each_entry_safe(clp
, next
, &nn
->client_lru
, cl_lru
) {
6884 count
+= nfsd_find_all_delegations(clp
, max
- count
, &reaplist
);
6885 if (max
!= 0 && ++count
>= max
)
6888 spin_unlock(&nn
->client_lock
);
6889 nfsd_recall_delegations(&reaplist
);
6892 #endif /* CONFIG_NFSD_FAULT_INJECTION */
6895 * Since the lifetime of a delegation isn't limited to that of an open, a
6896 * client may quite reasonably hang on to a delegation as long as it has
6897 * the inode cached. This becomes an obvious problem the first time a
6898 * client's inode cache approaches the size of the server's total memory.
6900 * For now we avoid this problem by imposing a hard limit on the number
6901 * of delegations, which varies according to the server's memory size.
6904 set_max_delegations(void)
6907 * Allow at most 4 delegations per megabyte of RAM. Quick
6908 * estimates suggest that in the worst case (where every delegation
6909 * is for a different inode), a delegation could take about 1.5K,
6910 * giving a worst case usage of about 6% of memory.
6912 max_delegations
= nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT
);
6915 static int nfs4_state_create_net(struct net
*net
)
6917 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
6920 nn
->conf_id_hashtbl
= kmalloc(sizeof(struct list_head
) *
6921 CLIENT_HASH_SIZE
, GFP_KERNEL
);
6922 if (!nn
->conf_id_hashtbl
)
6924 nn
->unconf_id_hashtbl
= kmalloc(sizeof(struct list_head
) *
6925 CLIENT_HASH_SIZE
, GFP_KERNEL
);
6926 if (!nn
->unconf_id_hashtbl
)
6928 nn
->sessionid_hashtbl
= kmalloc(sizeof(struct list_head
) *
6929 SESSION_HASH_SIZE
, GFP_KERNEL
);
6930 if (!nn
->sessionid_hashtbl
)
6933 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
6934 INIT_LIST_HEAD(&nn
->conf_id_hashtbl
[i
]);
6935 INIT_LIST_HEAD(&nn
->unconf_id_hashtbl
[i
]);
6937 for (i
= 0; i
< SESSION_HASH_SIZE
; i
++)
6938 INIT_LIST_HEAD(&nn
->sessionid_hashtbl
[i
]);
6939 nn
->conf_name_tree
= RB_ROOT
;
6940 nn
->unconf_name_tree
= RB_ROOT
;
6941 INIT_LIST_HEAD(&nn
->client_lru
);
6942 INIT_LIST_HEAD(&nn
->close_lru
);
6943 INIT_LIST_HEAD(&nn
->del_recall_lru
);
6944 spin_lock_init(&nn
->client_lock
);
6946 spin_lock_init(&nn
->blocked_locks_lock
);
6947 INIT_LIST_HEAD(&nn
->blocked_locks_lru
);
6949 INIT_DELAYED_WORK(&nn
->laundromat_work
, laundromat_main
);
6955 kfree(nn
->unconf_id_hashtbl
);
6957 kfree(nn
->conf_id_hashtbl
);
6963 nfs4_state_destroy_net(struct net
*net
)
6966 struct nfs4_client
*clp
= NULL
;
6967 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
6969 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
6970 while (!list_empty(&nn
->conf_id_hashtbl
[i
])) {
6971 clp
= list_entry(nn
->conf_id_hashtbl
[i
].next
, struct nfs4_client
, cl_idhash
);
6972 destroy_client(clp
);
6976 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
6977 while (!list_empty(&nn
->unconf_id_hashtbl
[i
])) {
6978 clp
= list_entry(nn
->unconf_id_hashtbl
[i
].next
, struct nfs4_client
, cl_idhash
);
6979 destroy_client(clp
);
6983 kfree(nn
->sessionid_hashtbl
);
6984 kfree(nn
->unconf_id_hashtbl
);
6985 kfree(nn
->conf_id_hashtbl
);
6990 nfs4_state_start_net(struct net
*net
)
6992 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
6995 ret
= nfs4_state_create_net(net
);
6998 nn
->boot_time
= get_seconds();
6999 nn
->grace_ended
= false;
7000 nn
->nfsd4_manager
.block_opens
= true;
7001 locks_start_grace(net
, &nn
->nfsd4_manager
);
7002 nfsd4_client_tracking_init(net
);
7003 printk(KERN_INFO
"NFSD: starting %ld-second grace period (net %p)\n",
7004 nn
->nfsd4_grace
, net
);
7005 queue_delayed_work(laundry_wq
, &nn
->laundromat_work
, nn
->nfsd4_grace
* HZ
);
7009 /* initialization to perform when the nfsd service is started: */
7012 nfs4_state_start(void)
7016 ret
= set_callback_cred();
7019 laundry_wq
= alloc_workqueue("%s", WQ_UNBOUND
, 0, "nfsd4");
7020 if (laundry_wq
== NULL
) {
7024 ret
= nfsd4_create_callback_queue();
7026 goto out_free_laundry
;
7028 set_max_delegations();
7033 destroy_workqueue(laundry_wq
);
7039 nfs4_state_shutdown_net(struct net
*net
)
7041 struct nfs4_delegation
*dp
= NULL
;
7042 struct list_head
*pos
, *next
, reaplist
;
7043 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
7044 struct nfsd4_blocked_lock
*nbl
;
7046 cancel_delayed_work_sync(&nn
->laundromat_work
);
7047 locks_end_grace(&nn
->nfsd4_manager
);
7049 INIT_LIST_HEAD(&reaplist
);
7050 spin_lock(&state_lock
);
7051 list_for_each_safe(pos
, next
, &nn
->del_recall_lru
) {
7052 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
7053 WARN_ON(!unhash_delegation_locked(dp
));
7054 list_add(&dp
->dl_recall_lru
, &reaplist
);
7056 spin_unlock(&state_lock
);
7057 list_for_each_safe(pos
, next
, &reaplist
) {
7058 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
7059 list_del_init(&dp
->dl_recall_lru
);
7060 put_clnt_odstate(dp
->dl_clnt_odstate
);
7061 nfs4_put_deleg_lease(dp
->dl_stid
.sc_file
);
7062 nfs4_put_stid(&dp
->dl_stid
);
7065 BUG_ON(!list_empty(&reaplist
));
7066 spin_lock(&nn
->blocked_locks_lock
);
7067 while (!list_empty(&nn
->blocked_locks_lru
)) {
7068 nbl
= list_first_entry(&nn
->blocked_locks_lru
,
7069 struct nfsd4_blocked_lock
, nbl_lru
);
7070 list_move(&nbl
->nbl_lru
, &reaplist
);
7071 list_del_init(&nbl
->nbl_list
);
7073 spin_unlock(&nn
->blocked_locks_lock
);
7075 while (!list_empty(&reaplist
)) {
7076 nbl
= list_first_entry(&nn
->blocked_locks_lru
,
7077 struct nfsd4_blocked_lock
, nbl_lru
);
7078 list_del_init(&nbl
->nbl_lru
);
7079 posix_unblock_lock(&nbl
->nbl_lock
);
7080 free_blocked_lock(nbl
);
7083 nfsd4_client_tracking_exit(net
);
7084 nfs4_state_destroy_net(net
);
7088 nfs4_state_shutdown(void)
7090 destroy_workqueue(laundry_wq
);
7091 nfsd4_destroy_callback_queue();
7095 get_stateid(struct nfsd4_compound_state
*cstate
, stateid_t
*stateid
)
7097 if (HAS_STATE_ID(cstate
, CURRENT_STATE_ID_FLAG
) && CURRENT_STATEID(stateid
))
7098 memcpy(stateid
, &cstate
->current_stateid
, sizeof(stateid_t
));
7102 put_stateid(struct nfsd4_compound_state
*cstate
, stateid_t
*stateid
)
7104 if (cstate
->minorversion
) {
7105 memcpy(&cstate
->current_stateid
, stateid
, sizeof(stateid_t
));
7106 SET_STATE_ID(cstate
, CURRENT_STATE_ID_FLAG
);
7111 clear_current_stateid(struct nfsd4_compound_state
*cstate
)
7113 CLEAR_STATE_ID(cstate
, CURRENT_STATE_ID_FLAG
);
7117 * functions to set current state id
7120 nfsd4_set_opendowngradestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_open_downgrade
*odp
)
7122 put_stateid(cstate
, &odp
->od_stateid
);
7126 nfsd4_set_openstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_open
*open
)
7128 put_stateid(cstate
, &open
->op_stateid
);
7132 nfsd4_set_closestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_close
*close
)
7134 put_stateid(cstate
, &close
->cl_stateid
);
7138 nfsd4_set_lockstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_lock
*lock
)
7140 put_stateid(cstate
, &lock
->lk_resp_stateid
);
7144 * functions to consume current state id
7148 nfsd4_get_opendowngradestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_open_downgrade
*odp
)
7150 get_stateid(cstate
, &odp
->od_stateid
);
7154 nfsd4_get_delegreturnstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_delegreturn
*drp
)
7156 get_stateid(cstate
, &drp
->dr_stateid
);
7160 nfsd4_get_freestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_free_stateid
*fsp
)
7162 get_stateid(cstate
, &fsp
->fr_stateid
);
7166 nfsd4_get_setattrstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_setattr
*setattr
)
7168 get_stateid(cstate
, &setattr
->sa_stateid
);
7172 nfsd4_get_closestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_close
*close
)
7174 get_stateid(cstate
, &close
->cl_stateid
);
7178 nfsd4_get_lockustateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_locku
*locku
)
7180 get_stateid(cstate
, &locku
->lu_stateid
);
7184 nfsd4_get_readstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_read
*read
)
7186 get_stateid(cstate
, &read
->rd_stateid
);
7190 nfsd4_get_writestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_write
*write
)
7192 get_stateid(cstate
, &write
->wr_stateid
);