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 struct nfsd4_callback_ops nfsd4_cb_recall_ops
;
103 static bool is_session_dead(struct nfsd4_session
*ses
)
105 return ses
->se_flags
& NFS4_SESSION_DEAD
;
108 static __be32
mark_session_dead_locked(struct nfsd4_session
*ses
, int ref_held_by_me
)
110 if (atomic_read(&ses
->se_ref
) > ref_held_by_me
)
111 return nfserr_jukebox
;
112 ses
->se_flags
|= NFS4_SESSION_DEAD
;
116 static bool is_client_expired(struct nfs4_client
*clp
)
118 return clp
->cl_time
== 0;
121 static __be32
get_client_locked(struct nfs4_client
*clp
)
123 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
125 lockdep_assert_held(&nn
->client_lock
);
127 if (is_client_expired(clp
))
128 return nfserr_expired
;
129 atomic_inc(&clp
->cl_refcount
);
133 /* must be called under the client_lock */
135 renew_client_locked(struct nfs4_client
*clp
)
137 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
139 if (is_client_expired(clp
)) {
141 printk("%s: client (clientid %08x/%08x) already expired\n",
143 clp
->cl_clientid
.cl_boot
,
144 clp
->cl_clientid
.cl_id
);
148 dprintk("renewing client (clientid %08x/%08x)\n",
149 clp
->cl_clientid
.cl_boot
,
150 clp
->cl_clientid
.cl_id
);
151 list_move_tail(&clp
->cl_lru
, &nn
->client_lru
);
152 clp
->cl_time
= get_seconds();
155 static void put_client_renew_locked(struct nfs4_client
*clp
)
157 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
159 lockdep_assert_held(&nn
->client_lock
);
161 if (!atomic_dec_and_test(&clp
->cl_refcount
))
163 if (!is_client_expired(clp
))
164 renew_client_locked(clp
);
167 static void put_client_renew(struct nfs4_client
*clp
)
169 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
171 if (!atomic_dec_and_lock(&clp
->cl_refcount
, &nn
->client_lock
))
173 if (!is_client_expired(clp
))
174 renew_client_locked(clp
);
175 spin_unlock(&nn
->client_lock
);
178 static __be32
nfsd4_get_session_locked(struct nfsd4_session
*ses
)
182 if (is_session_dead(ses
))
183 return nfserr_badsession
;
184 status
= get_client_locked(ses
->se_client
);
187 atomic_inc(&ses
->se_ref
);
191 static void nfsd4_put_session_locked(struct nfsd4_session
*ses
)
193 struct nfs4_client
*clp
= ses
->se_client
;
194 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
196 lockdep_assert_held(&nn
->client_lock
);
198 if (atomic_dec_and_test(&ses
->se_ref
) && is_session_dead(ses
))
200 put_client_renew_locked(clp
);
203 static void nfsd4_put_session(struct nfsd4_session
*ses
)
205 struct nfs4_client
*clp
= ses
->se_client
;
206 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
208 spin_lock(&nn
->client_lock
);
209 nfsd4_put_session_locked(ses
);
210 spin_unlock(&nn
->client_lock
);
213 static inline struct nfs4_stateowner
*
214 nfs4_get_stateowner(struct nfs4_stateowner
*sop
)
216 atomic_inc(&sop
->so_count
);
221 same_owner_str(struct nfs4_stateowner
*sop
, struct xdr_netobj
*owner
)
223 return (sop
->so_owner
.len
== owner
->len
) &&
224 0 == memcmp(sop
->so_owner
.data
, owner
->data
, owner
->len
);
227 static struct nfs4_openowner
*
228 find_openstateowner_str_locked(unsigned int hashval
, struct nfsd4_open
*open
,
229 struct nfs4_client
*clp
)
231 struct nfs4_stateowner
*so
;
233 lockdep_assert_held(&clp
->cl_lock
);
235 list_for_each_entry(so
, &clp
->cl_ownerstr_hashtbl
[hashval
],
237 if (!so
->so_is_open_owner
)
239 if (same_owner_str(so
, &open
->op_owner
))
240 return openowner(nfs4_get_stateowner(so
));
245 static struct nfs4_openowner
*
246 find_openstateowner_str(unsigned int hashval
, struct nfsd4_open
*open
,
247 struct nfs4_client
*clp
)
249 struct nfs4_openowner
*oo
;
251 spin_lock(&clp
->cl_lock
);
252 oo
= find_openstateowner_str_locked(hashval
, open
, clp
);
253 spin_unlock(&clp
->cl_lock
);
258 opaque_hashval(const void *ptr
, int nbytes
)
260 unsigned char *cptr
= (unsigned char *) ptr
;
270 static void nfsd4_free_file_rcu(struct rcu_head
*rcu
)
272 struct nfs4_file
*fp
= container_of(rcu
, struct nfs4_file
, fi_rcu
);
274 kmem_cache_free(file_slab
, fp
);
278 put_nfs4_file(struct nfs4_file
*fi
)
280 might_lock(&state_lock
);
282 if (atomic_dec_and_lock(&fi
->fi_ref
, &state_lock
)) {
283 hlist_del_rcu(&fi
->fi_hash
);
284 spin_unlock(&state_lock
);
285 WARN_ON_ONCE(!list_empty(&fi
->fi_clnt_odstate
));
286 WARN_ON_ONCE(!list_empty(&fi
->fi_delegations
));
287 call_rcu(&fi
->fi_rcu
, nfsd4_free_file_rcu
);
292 __nfs4_get_fd(struct nfs4_file
*f
, int oflag
)
294 if (f
->fi_fds
[oflag
])
295 return get_file(f
->fi_fds
[oflag
]);
300 find_writeable_file_locked(struct nfs4_file
*f
)
304 lockdep_assert_held(&f
->fi_lock
);
306 ret
= __nfs4_get_fd(f
, O_WRONLY
);
308 ret
= __nfs4_get_fd(f
, O_RDWR
);
313 find_writeable_file(struct nfs4_file
*f
)
317 spin_lock(&f
->fi_lock
);
318 ret
= find_writeable_file_locked(f
);
319 spin_unlock(&f
->fi_lock
);
324 static struct file
*find_readable_file_locked(struct nfs4_file
*f
)
328 lockdep_assert_held(&f
->fi_lock
);
330 ret
= __nfs4_get_fd(f
, O_RDONLY
);
332 ret
= __nfs4_get_fd(f
, O_RDWR
);
337 find_readable_file(struct nfs4_file
*f
)
341 spin_lock(&f
->fi_lock
);
342 ret
= find_readable_file_locked(f
);
343 spin_unlock(&f
->fi_lock
);
349 find_any_file(struct nfs4_file
*f
)
353 spin_lock(&f
->fi_lock
);
354 ret
= __nfs4_get_fd(f
, O_RDWR
);
356 ret
= __nfs4_get_fd(f
, O_WRONLY
);
358 ret
= __nfs4_get_fd(f
, O_RDONLY
);
360 spin_unlock(&f
->fi_lock
);
364 static atomic_long_t num_delegations
;
365 unsigned long max_delegations
;
368 * Open owner state (share locks)
371 /* hash tables for lock and open owners */
372 #define OWNER_HASH_BITS 8
373 #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
374 #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
376 static unsigned int ownerstr_hashval(struct xdr_netobj
*ownername
)
380 ret
= opaque_hashval(ownername
->data
, ownername
->len
);
381 return ret
& OWNER_HASH_MASK
;
384 /* hash table for nfs4_file */
385 #define FILE_HASH_BITS 8
386 #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
388 static unsigned int nfsd_fh_hashval(struct knfsd_fh
*fh
)
390 return jhash2(fh
->fh_base
.fh_pad
, XDR_QUADLEN(fh
->fh_size
), 0);
393 static unsigned int file_hashval(struct knfsd_fh
*fh
)
395 return nfsd_fh_hashval(fh
) & (FILE_HASH_SIZE
- 1);
398 static struct hlist_head file_hashtbl
[FILE_HASH_SIZE
];
401 __nfs4_file_get_access(struct nfs4_file
*fp
, u32 access
)
403 lockdep_assert_held(&fp
->fi_lock
);
405 if (access
& NFS4_SHARE_ACCESS_WRITE
)
406 atomic_inc(&fp
->fi_access
[O_WRONLY
]);
407 if (access
& NFS4_SHARE_ACCESS_READ
)
408 atomic_inc(&fp
->fi_access
[O_RDONLY
]);
412 nfs4_file_get_access(struct nfs4_file
*fp
, u32 access
)
414 lockdep_assert_held(&fp
->fi_lock
);
416 /* Does this access mode make sense? */
417 if (access
& ~NFS4_SHARE_ACCESS_BOTH
)
420 /* Does it conflict with a deny mode already set? */
421 if ((access
& fp
->fi_share_deny
) != 0)
422 return nfserr_share_denied
;
424 __nfs4_file_get_access(fp
, access
);
428 static __be32
nfs4_file_check_deny(struct nfs4_file
*fp
, u32 deny
)
430 /* Common case is that there is no deny mode. */
432 /* Does this deny mode make sense? */
433 if (deny
& ~NFS4_SHARE_DENY_BOTH
)
436 if ((deny
& NFS4_SHARE_DENY_READ
) &&
437 atomic_read(&fp
->fi_access
[O_RDONLY
]))
438 return nfserr_share_denied
;
440 if ((deny
& NFS4_SHARE_DENY_WRITE
) &&
441 atomic_read(&fp
->fi_access
[O_WRONLY
]))
442 return nfserr_share_denied
;
447 static void __nfs4_file_put_access(struct nfs4_file
*fp
, int oflag
)
449 might_lock(&fp
->fi_lock
);
451 if (atomic_dec_and_lock(&fp
->fi_access
[oflag
], &fp
->fi_lock
)) {
452 struct file
*f1
= NULL
;
453 struct file
*f2
= NULL
;
455 swap(f1
, fp
->fi_fds
[oflag
]);
456 if (atomic_read(&fp
->fi_access
[1 - oflag
]) == 0)
457 swap(f2
, fp
->fi_fds
[O_RDWR
]);
458 spin_unlock(&fp
->fi_lock
);
466 static void nfs4_file_put_access(struct nfs4_file
*fp
, u32 access
)
468 WARN_ON_ONCE(access
& ~NFS4_SHARE_ACCESS_BOTH
);
470 if (access
& NFS4_SHARE_ACCESS_WRITE
)
471 __nfs4_file_put_access(fp
, O_WRONLY
);
472 if (access
& NFS4_SHARE_ACCESS_READ
)
473 __nfs4_file_put_access(fp
, O_RDONLY
);
477 * Allocate a new open/delegation state counter. This is needed for
478 * pNFS for proper return on close semantics.
480 * Note that we only allocate it for pNFS-enabled exports, otherwise
481 * all pointers to struct nfs4_clnt_odstate are always NULL.
483 static struct nfs4_clnt_odstate
*
484 alloc_clnt_odstate(struct nfs4_client
*clp
)
486 struct nfs4_clnt_odstate
*co
;
488 co
= kmem_cache_zalloc(odstate_slab
, GFP_KERNEL
);
491 atomic_set(&co
->co_odcount
, 1);
497 hash_clnt_odstate_locked(struct nfs4_clnt_odstate
*co
)
499 struct nfs4_file
*fp
= co
->co_file
;
501 lockdep_assert_held(&fp
->fi_lock
);
502 list_add(&co
->co_perfile
, &fp
->fi_clnt_odstate
);
506 get_clnt_odstate(struct nfs4_clnt_odstate
*co
)
509 atomic_inc(&co
->co_odcount
);
513 put_clnt_odstate(struct nfs4_clnt_odstate
*co
)
515 struct nfs4_file
*fp
;
521 if (atomic_dec_and_lock(&co
->co_odcount
, &fp
->fi_lock
)) {
522 list_del(&co
->co_perfile
);
523 spin_unlock(&fp
->fi_lock
);
525 nfsd4_return_all_file_layouts(co
->co_client
, fp
);
526 kmem_cache_free(odstate_slab
, co
);
530 static struct nfs4_clnt_odstate
*
531 find_or_hash_clnt_odstate(struct nfs4_file
*fp
, struct nfs4_clnt_odstate
*new)
533 struct nfs4_clnt_odstate
*co
;
534 struct nfs4_client
*cl
;
541 spin_lock(&fp
->fi_lock
);
542 list_for_each_entry(co
, &fp
->fi_clnt_odstate
, co_perfile
) {
543 if (co
->co_client
== cl
) {
544 get_clnt_odstate(co
);
550 hash_clnt_odstate_locked(new);
552 spin_unlock(&fp
->fi_lock
);
556 struct nfs4_stid
*nfs4_alloc_stid(struct nfs4_client
*cl
,
557 struct kmem_cache
*slab
)
559 struct nfs4_stid
*stid
;
562 stid
= kmem_cache_zalloc(slab
, GFP_KERNEL
);
566 idr_preload(GFP_KERNEL
);
567 spin_lock(&cl
->cl_lock
);
568 new_id
= idr_alloc_cyclic(&cl
->cl_stateids
, stid
, 0, 0, GFP_NOWAIT
);
569 spin_unlock(&cl
->cl_lock
);
573 stid
->sc_client
= cl
;
574 stid
->sc_stateid
.si_opaque
.so_id
= new_id
;
575 stid
->sc_stateid
.si_opaque
.so_clid
= cl
->cl_clientid
;
576 /* Will be incremented before return to client: */
577 atomic_set(&stid
->sc_count
, 1);
578 spin_lock_init(&stid
->sc_lock
);
581 * It shouldn't be a problem to reuse an opaque stateid value.
582 * I don't think it is for 4.1. But with 4.0 I worry that, for
583 * example, a stray write retransmission could be accepted by
584 * the server when it should have been rejected. Therefore,
585 * adopt a trick from the sctp code to attempt to maximize the
586 * amount of time until an id is reused, by ensuring they always
587 * "increase" (mod INT_MAX):
591 kmem_cache_free(slab
, stid
);
595 static struct nfs4_ol_stateid
* nfs4_alloc_open_stateid(struct nfs4_client
*clp
)
597 struct nfs4_stid
*stid
;
598 struct nfs4_ol_stateid
*stp
;
600 stid
= nfs4_alloc_stid(clp
, stateid_slab
);
604 stp
= openlockstateid(stid
);
605 stp
->st_stid
.sc_free
= nfs4_free_ol_stateid
;
609 static void nfs4_free_deleg(struct nfs4_stid
*stid
)
611 kmem_cache_free(deleg_slab
, stid
);
612 atomic_long_dec(&num_delegations
);
616 * When we recall a delegation, we should be careful not to hand it
617 * out again straight away.
618 * To ensure this we keep a pair of bloom filters ('new' and 'old')
619 * in which the filehandles of recalled delegations are "stored".
620 * If a filehandle appear in either filter, a delegation is blocked.
621 * When a delegation is recalled, the filehandle is stored in the "new"
623 * Every 30 seconds we swap the filters and clear the "new" one,
624 * unless both are empty of course.
626 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
627 * low 3 bytes as hash-table indices.
629 * 'blocked_delegations_lock', which is always taken in block_delegations(),
630 * is used to manage concurrent access. Testing does not need the lock
631 * except when swapping the two filters.
633 static DEFINE_SPINLOCK(blocked_delegations_lock
);
634 static struct bloom_pair
{
635 int entries
, old_entries
;
637 int new; /* index into 'set' */
638 DECLARE_BITMAP(set
[2], 256);
639 } blocked_delegations
;
641 static int delegation_blocked(struct knfsd_fh
*fh
)
644 struct bloom_pair
*bd
= &blocked_delegations
;
646 if (bd
->entries
== 0)
648 if (seconds_since_boot() - bd
->swap_time
> 30) {
649 spin_lock(&blocked_delegations_lock
);
650 if (seconds_since_boot() - bd
->swap_time
> 30) {
651 bd
->entries
-= bd
->old_entries
;
652 bd
->old_entries
= bd
->entries
;
653 memset(bd
->set
[bd
->new], 0,
656 bd
->swap_time
= seconds_since_boot();
658 spin_unlock(&blocked_delegations_lock
);
660 hash
= jhash(&fh
->fh_base
, fh
->fh_size
, 0);
661 if (test_bit(hash
&255, bd
->set
[0]) &&
662 test_bit((hash
>>8)&255, bd
->set
[0]) &&
663 test_bit((hash
>>16)&255, bd
->set
[0]))
666 if (test_bit(hash
&255, bd
->set
[1]) &&
667 test_bit((hash
>>8)&255, bd
->set
[1]) &&
668 test_bit((hash
>>16)&255, bd
->set
[1]))
674 static void block_delegations(struct knfsd_fh
*fh
)
677 struct bloom_pair
*bd
= &blocked_delegations
;
679 hash
= jhash(&fh
->fh_base
, fh
->fh_size
, 0);
681 spin_lock(&blocked_delegations_lock
);
682 __set_bit(hash
&255, bd
->set
[bd
->new]);
683 __set_bit((hash
>>8)&255, bd
->set
[bd
->new]);
684 __set_bit((hash
>>16)&255, bd
->set
[bd
->new]);
685 if (bd
->entries
== 0)
686 bd
->swap_time
= seconds_since_boot();
688 spin_unlock(&blocked_delegations_lock
);
691 static struct nfs4_delegation
*
692 alloc_init_deleg(struct nfs4_client
*clp
, struct svc_fh
*current_fh
,
693 struct nfs4_clnt_odstate
*odstate
)
695 struct nfs4_delegation
*dp
;
698 dprintk("NFSD alloc_init_deleg\n");
699 n
= atomic_long_inc_return(&num_delegations
);
700 if (n
< 0 || n
> max_delegations
)
702 if (delegation_blocked(¤t_fh
->fh_handle
))
704 dp
= delegstateid(nfs4_alloc_stid(clp
, deleg_slab
));
708 dp
->dl_stid
.sc_free
= nfs4_free_deleg
;
710 * delegation seqid's are never incremented. The 4.1 special
711 * meaning of seqid 0 isn't meaningful, really, but let's avoid
712 * 0 anyway just for consistency and use 1:
714 dp
->dl_stid
.sc_stateid
.si_generation
= 1;
715 INIT_LIST_HEAD(&dp
->dl_perfile
);
716 INIT_LIST_HEAD(&dp
->dl_perclnt
);
717 INIT_LIST_HEAD(&dp
->dl_recall_lru
);
718 dp
->dl_clnt_odstate
= odstate
;
719 get_clnt_odstate(odstate
);
720 dp
->dl_type
= NFS4_OPEN_DELEGATE_READ
;
722 nfsd4_init_cb(&dp
->dl_recall
, dp
->dl_stid
.sc_client
,
723 &nfsd4_cb_recall_ops
, NFSPROC4_CLNT_CB_RECALL
);
726 atomic_long_dec(&num_delegations
);
731 nfs4_put_stid(struct nfs4_stid
*s
)
733 struct nfs4_file
*fp
= s
->sc_file
;
734 struct nfs4_client
*clp
= s
->sc_client
;
736 might_lock(&clp
->cl_lock
);
738 if (!atomic_dec_and_lock(&s
->sc_count
, &clp
->cl_lock
)) {
739 wake_up_all(&close_wq
);
742 idr_remove(&clp
->cl_stateids
, s
->sc_stateid
.si_opaque
.so_id
);
743 spin_unlock(&clp
->cl_lock
);
750 nfs4_inc_and_copy_stateid(stateid_t
*dst
, struct nfs4_stid
*stid
)
752 stateid_t
*src
= &stid
->sc_stateid
;
754 spin_lock(&stid
->sc_lock
);
755 if (unlikely(++src
->si_generation
== 0))
756 src
->si_generation
= 1;
757 memcpy(dst
, src
, sizeof(*dst
));
758 spin_unlock(&stid
->sc_lock
);
761 static void nfs4_put_deleg_lease(struct nfs4_file
*fp
)
763 struct file
*filp
= NULL
;
765 spin_lock(&fp
->fi_lock
);
766 if (fp
->fi_deleg_file
&& --fp
->fi_delegees
== 0)
767 swap(filp
, fp
->fi_deleg_file
);
768 spin_unlock(&fp
->fi_lock
);
771 vfs_setlease(filp
, F_UNLCK
, NULL
, (void **)&fp
);
776 void nfs4_unhash_stid(struct nfs4_stid
*s
)
782 * nfs4_get_existing_delegation - Discover if this delegation already exists
783 * @clp: a pointer to the nfs4_client we're granting a delegation to
784 * @fp: a pointer to the nfs4_file we're granting a delegation on
787 * On success: NULL if an existing delegation was not found.
789 * On error: -EAGAIN if one was previously granted to this nfs4_client
790 * for this nfs4_file.
795 nfs4_get_existing_delegation(struct nfs4_client
*clp
, struct nfs4_file
*fp
)
797 struct nfs4_delegation
*searchdp
= NULL
;
798 struct nfs4_client
*searchclp
= NULL
;
800 lockdep_assert_held(&state_lock
);
801 lockdep_assert_held(&fp
->fi_lock
);
803 list_for_each_entry(searchdp
, &fp
->fi_delegations
, dl_perfile
) {
804 searchclp
= searchdp
->dl_stid
.sc_client
;
805 if (clp
== searchclp
) {
813 * hash_delegation_locked - Add a delegation to the appropriate lists
814 * @dp: a pointer to the nfs4_delegation we are adding.
815 * @fp: a pointer to the nfs4_file we're granting a delegation on
818 * On success: NULL if the delegation was successfully hashed.
820 * On error: -EAGAIN if one was previously granted to this
821 * nfs4_client for this nfs4_file. Delegation is not hashed.
826 hash_delegation_locked(struct nfs4_delegation
*dp
, struct nfs4_file
*fp
)
829 struct nfs4_client
*clp
= dp
->dl_stid
.sc_client
;
831 lockdep_assert_held(&state_lock
);
832 lockdep_assert_held(&fp
->fi_lock
);
834 status
= nfs4_get_existing_delegation(clp
, fp
);
838 atomic_inc(&dp
->dl_stid
.sc_count
);
839 dp
->dl_stid
.sc_type
= NFS4_DELEG_STID
;
840 list_add(&dp
->dl_perfile
, &fp
->fi_delegations
);
841 list_add(&dp
->dl_perclnt
, &clp
->cl_delegations
);
846 unhash_delegation_locked(struct nfs4_delegation
*dp
)
848 struct nfs4_file
*fp
= dp
->dl_stid
.sc_file
;
850 lockdep_assert_held(&state_lock
);
852 if (list_empty(&dp
->dl_perfile
))
855 dp
->dl_stid
.sc_type
= NFS4_CLOSED_DELEG_STID
;
856 /* Ensure that deleg break won't try to requeue it */
858 spin_lock(&fp
->fi_lock
);
859 list_del_init(&dp
->dl_perclnt
);
860 list_del_init(&dp
->dl_recall_lru
);
861 list_del_init(&dp
->dl_perfile
);
862 spin_unlock(&fp
->fi_lock
);
866 static void destroy_delegation(struct nfs4_delegation
*dp
)
870 spin_lock(&state_lock
);
871 unhashed
= unhash_delegation_locked(dp
);
872 spin_unlock(&state_lock
);
874 put_clnt_odstate(dp
->dl_clnt_odstate
);
875 nfs4_put_deleg_lease(dp
->dl_stid
.sc_file
);
876 nfs4_put_stid(&dp
->dl_stid
);
880 static void revoke_delegation(struct nfs4_delegation
*dp
)
882 struct nfs4_client
*clp
= dp
->dl_stid
.sc_client
;
884 WARN_ON(!list_empty(&dp
->dl_recall_lru
));
886 put_clnt_odstate(dp
->dl_clnt_odstate
);
887 nfs4_put_deleg_lease(dp
->dl_stid
.sc_file
);
889 if (clp
->cl_minorversion
== 0)
890 nfs4_put_stid(&dp
->dl_stid
);
892 dp
->dl_stid
.sc_type
= NFS4_REVOKED_DELEG_STID
;
893 spin_lock(&clp
->cl_lock
);
894 list_add(&dp
->dl_recall_lru
, &clp
->cl_revoked
);
895 spin_unlock(&clp
->cl_lock
);
903 static unsigned int clientid_hashval(u32 id
)
905 return id
& CLIENT_HASH_MASK
;
908 static unsigned int clientstr_hashval(const char *name
)
910 return opaque_hashval(name
, 8) & CLIENT_HASH_MASK
;
914 * We store the NONE, READ, WRITE, and BOTH bits separately in the
915 * st_{access,deny}_bmap field of the stateid, in order to track not
916 * only what share bits are currently in force, but also what
917 * combinations of share bits previous opens have used. This allows us
918 * to enforce the recommendation of rfc 3530 14.2.19 that the server
919 * return an error if the client attempt to downgrade to a combination
920 * of share bits not explicable by closing some of its previous opens.
922 * XXX: This enforcement is actually incomplete, since we don't keep
923 * track of access/deny bit combinations; so, e.g., we allow:
925 * OPEN allow read, deny write
926 * OPEN allow both, deny none
927 * DOWNGRADE allow read, deny none
929 * which we should reject.
932 bmap_to_share_mode(unsigned long bmap
) {
934 unsigned int access
= 0;
936 for (i
= 1; i
< 4; i
++) {
937 if (test_bit(i
, &bmap
))
943 /* set share access for a given stateid */
945 set_access(u32 access
, struct nfs4_ol_stateid
*stp
)
947 unsigned char mask
= 1 << access
;
949 WARN_ON_ONCE(access
> NFS4_SHARE_ACCESS_BOTH
);
950 stp
->st_access_bmap
|= mask
;
953 /* clear share access for a given stateid */
955 clear_access(u32 access
, struct nfs4_ol_stateid
*stp
)
957 unsigned char mask
= 1 << access
;
959 WARN_ON_ONCE(access
> NFS4_SHARE_ACCESS_BOTH
);
960 stp
->st_access_bmap
&= ~mask
;
963 /* test whether a given stateid has access */
965 test_access(u32 access
, struct nfs4_ol_stateid
*stp
)
967 unsigned char mask
= 1 << access
;
969 return (bool)(stp
->st_access_bmap
& mask
);
972 /* set share deny for a given stateid */
974 set_deny(u32 deny
, struct nfs4_ol_stateid
*stp
)
976 unsigned char mask
= 1 << deny
;
978 WARN_ON_ONCE(deny
> NFS4_SHARE_DENY_BOTH
);
979 stp
->st_deny_bmap
|= mask
;
982 /* clear share deny for a given stateid */
984 clear_deny(u32 deny
, struct nfs4_ol_stateid
*stp
)
986 unsigned char mask
= 1 << deny
;
988 WARN_ON_ONCE(deny
> NFS4_SHARE_DENY_BOTH
);
989 stp
->st_deny_bmap
&= ~mask
;
992 /* test whether a given stateid is denying specific access */
994 test_deny(u32 deny
, struct nfs4_ol_stateid
*stp
)
996 unsigned char mask
= 1 << deny
;
998 return (bool)(stp
->st_deny_bmap
& mask
);
1001 static int nfs4_access_to_omode(u32 access
)
1003 switch (access
& NFS4_SHARE_ACCESS_BOTH
) {
1004 case NFS4_SHARE_ACCESS_READ
:
1006 case NFS4_SHARE_ACCESS_WRITE
:
1008 case NFS4_SHARE_ACCESS_BOTH
:
1016 * A stateid that had a deny mode associated with it is being released
1017 * or downgraded. Recalculate the deny mode on the file.
1020 recalculate_deny_mode(struct nfs4_file
*fp
)
1022 struct nfs4_ol_stateid
*stp
;
1024 spin_lock(&fp
->fi_lock
);
1025 fp
->fi_share_deny
= 0;
1026 list_for_each_entry(stp
, &fp
->fi_stateids
, st_perfile
)
1027 fp
->fi_share_deny
|= bmap_to_share_mode(stp
->st_deny_bmap
);
1028 spin_unlock(&fp
->fi_lock
);
1032 reset_union_bmap_deny(u32 deny
, struct nfs4_ol_stateid
*stp
)
1035 bool change
= false;
1037 for (i
= 1; i
< 4; i
++) {
1038 if ((i
& deny
) != i
) {
1044 /* Recalculate per-file deny mode if there was a change */
1046 recalculate_deny_mode(stp
->st_stid
.sc_file
);
1049 /* release all access and file references for a given stateid */
1051 release_all_access(struct nfs4_ol_stateid
*stp
)
1054 struct nfs4_file
*fp
= stp
->st_stid
.sc_file
;
1056 if (fp
&& stp
->st_deny_bmap
!= 0)
1057 recalculate_deny_mode(fp
);
1059 for (i
= 1; i
< 4; i
++) {
1060 if (test_access(i
, stp
))
1061 nfs4_file_put_access(stp
->st_stid
.sc_file
, i
);
1062 clear_access(i
, stp
);
1066 static inline void nfs4_free_stateowner(struct nfs4_stateowner
*sop
)
1068 kfree(sop
->so_owner
.data
);
1069 sop
->so_ops
->so_free(sop
);
1072 static void nfs4_put_stateowner(struct nfs4_stateowner
*sop
)
1074 struct nfs4_client
*clp
= sop
->so_client
;
1076 might_lock(&clp
->cl_lock
);
1078 if (!atomic_dec_and_lock(&sop
->so_count
, &clp
->cl_lock
))
1080 sop
->so_ops
->so_unhash(sop
);
1081 spin_unlock(&clp
->cl_lock
);
1082 nfs4_free_stateowner(sop
);
1085 static bool unhash_ol_stateid(struct nfs4_ol_stateid
*stp
)
1087 struct nfs4_file
*fp
= stp
->st_stid
.sc_file
;
1089 lockdep_assert_held(&stp
->st_stateowner
->so_client
->cl_lock
);
1091 if (list_empty(&stp
->st_perfile
))
1094 spin_lock(&fp
->fi_lock
);
1095 list_del_init(&stp
->st_perfile
);
1096 spin_unlock(&fp
->fi_lock
);
1097 list_del(&stp
->st_perstateowner
);
1101 static void nfs4_free_ol_stateid(struct nfs4_stid
*stid
)
1103 struct nfs4_ol_stateid
*stp
= openlockstateid(stid
);
1105 put_clnt_odstate(stp
->st_clnt_odstate
);
1106 release_all_access(stp
);
1107 if (stp
->st_stateowner
)
1108 nfs4_put_stateowner(stp
->st_stateowner
);
1109 kmem_cache_free(stateid_slab
, stid
);
1112 static void nfs4_free_lock_stateid(struct nfs4_stid
*stid
)
1114 struct nfs4_ol_stateid
*stp
= openlockstateid(stid
);
1115 struct nfs4_lockowner
*lo
= lockowner(stp
->st_stateowner
);
1118 file
= find_any_file(stp
->st_stid
.sc_file
);
1120 filp_close(file
, (fl_owner_t
)lo
);
1121 nfs4_free_ol_stateid(stid
);
1125 * Put the persistent reference to an already unhashed generic stateid, while
1126 * holding the cl_lock. If it's the last reference, then put it onto the
1127 * reaplist for later destruction.
1129 static void put_ol_stateid_locked(struct nfs4_ol_stateid
*stp
,
1130 struct list_head
*reaplist
)
1132 struct nfs4_stid
*s
= &stp
->st_stid
;
1133 struct nfs4_client
*clp
= s
->sc_client
;
1135 lockdep_assert_held(&clp
->cl_lock
);
1137 WARN_ON_ONCE(!list_empty(&stp
->st_locks
));
1139 if (!atomic_dec_and_test(&s
->sc_count
)) {
1140 wake_up_all(&close_wq
);
1144 idr_remove(&clp
->cl_stateids
, s
->sc_stateid
.si_opaque
.so_id
);
1145 list_add(&stp
->st_locks
, reaplist
);
1148 static bool unhash_lock_stateid(struct nfs4_ol_stateid
*stp
)
1150 struct nfs4_openowner
*oo
= openowner(stp
->st_openstp
->st_stateowner
);
1152 lockdep_assert_held(&oo
->oo_owner
.so_client
->cl_lock
);
1154 list_del_init(&stp
->st_locks
);
1155 nfs4_unhash_stid(&stp
->st_stid
);
1156 return unhash_ol_stateid(stp
);
1159 static void release_lock_stateid(struct nfs4_ol_stateid
*stp
)
1161 struct nfs4_openowner
*oo
= openowner(stp
->st_openstp
->st_stateowner
);
1164 spin_lock(&oo
->oo_owner
.so_client
->cl_lock
);
1165 unhashed
= unhash_lock_stateid(stp
);
1166 spin_unlock(&oo
->oo_owner
.so_client
->cl_lock
);
1168 nfs4_put_stid(&stp
->st_stid
);
1171 static void unhash_lockowner_locked(struct nfs4_lockowner
*lo
)
1173 struct nfs4_client
*clp
= lo
->lo_owner
.so_client
;
1175 lockdep_assert_held(&clp
->cl_lock
);
1177 list_del_init(&lo
->lo_owner
.so_strhash
);
1181 * Free a list of generic stateids that were collected earlier after being
1185 free_ol_stateid_reaplist(struct list_head
*reaplist
)
1187 struct nfs4_ol_stateid
*stp
;
1188 struct nfs4_file
*fp
;
1192 while (!list_empty(reaplist
)) {
1193 stp
= list_first_entry(reaplist
, struct nfs4_ol_stateid
,
1195 list_del(&stp
->st_locks
);
1196 fp
= stp
->st_stid
.sc_file
;
1197 stp
->st_stid
.sc_free(&stp
->st_stid
);
1203 static void release_lockowner(struct nfs4_lockowner
*lo
)
1205 struct nfs4_client
*clp
= lo
->lo_owner
.so_client
;
1206 struct nfs4_ol_stateid
*stp
;
1207 struct list_head reaplist
;
1209 INIT_LIST_HEAD(&reaplist
);
1211 spin_lock(&clp
->cl_lock
);
1212 unhash_lockowner_locked(lo
);
1213 while (!list_empty(&lo
->lo_owner
.so_stateids
)) {
1214 stp
= list_first_entry(&lo
->lo_owner
.so_stateids
,
1215 struct nfs4_ol_stateid
, st_perstateowner
);
1216 WARN_ON(!unhash_lock_stateid(stp
));
1217 put_ol_stateid_locked(stp
, &reaplist
);
1219 spin_unlock(&clp
->cl_lock
);
1220 free_ol_stateid_reaplist(&reaplist
);
1221 nfs4_put_stateowner(&lo
->lo_owner
);
1224 static void release_open_stateid_locks(struct nfs4_ol_stateid
*open_stp
,
1225 struct list_head
*reaplist
)
1227 struct nfs4_ol_stateid
*stp
;
1229 lockdep_assert_held(&open_stp
->st_stid
.sc_client
->cl_lock
);
1231 while (!list_empty(&open_stp
->st_locks
)) {
1232 stp
= list_entry(open_stp
->st_locks
.next
,
1233 struct nfs4_ol_stateid
, st_locks
);
1234 WARN_ON(!unhash_lock_stateid(stp
));
1235 put_ol_stateid_locked(stp
, reaplist
);
1239 static bool unhash_open_stateid(struct nfs4_ol_stateid
*stp
,
1240 struct list_head
*reaplist
)
1244 lockdep_assert_held(&stp
->st_stid
.sc_client
->cl_lock
);
1246 unhashed
= unhash_ol_stateid(stp
);
1247 release_open_stateid_locks(stp
, reaplist
);
1251 static void release_open_stateid(struct nfs4_ol_stateid
*stp
)
1253 LIST_HEAD(reaplist
);
1255 spin_lock(&stp
->st_stid
.sc_client
->cl_lock
);
1256 if (unhash_open_stateid(stp
, &reaplist
))
1257 put_ol_stateid_locked(stp
, &reaplist
);
1258 spin_unlock(&stp
->st_stid
.sc_client
->cl_lock
);
1259 free_ol_stateid_reaplist(&reaplist
);
1262 static void unhash_openowner_locked(struct nfs4_openowner
*oo
)
1264 struct nfs4_client
*clp
= oo
->oo_owner
.so_client
;
1266 lockdep_assert_held(&clp
->cl_lock
);
1268 list_del_init(&oo
->oo_owner
.so_strhash
);
1269 list_del_init(&oo
->oo_perclient
);
1272 static void release_last_closed_stateid(struct nfs4_openowner
*oo
)
1274 struct nfsd_net
*nn
= net_generic(oo
->oo_owner
.so_client
->net
,
1276 struct nfs4_ol_stateid
*s
;
1278 spin_lock(&nn
->client_lock
);
1279 s
= oo
->oo_last_closed_stid
;
1281 list_del_init(&oo
->oo_close_lru
);
1282 oo
->oo_last_closed_stid
= NULL
;
1284 spin_unlock(&nn
->client_lock
);
1286 nfs4_put_stid(&s
->st_stid
);
1289 static void release_openowner(struct nfs4_openowner
*oo
)
1291 struct nfs4_ol_stateid
*stp
;
1292 struct nfs4_client
*clp
= oo
->oo_owner
.so_client
;
1293 struct list_head reaplist
;
1295 INIT_LIST_HEAD(&reaplist
);
1297 spin_lock(&clp
->cl_lock
);
1298 unhash_openowner_locked(oo
);
1299 while (!list_empty(&oo
->oo_owner
.so_stateids
)) {
1300 stp
= list_first_entry(&oo
->oo_owner
.so_stateids
,
1301 struct nfs4_ol_stateid
, st_perstateowner
);
1302 if (unhash_open_stateid(stp
, &reaplist
))
1303 put_ol_stateid_locked(stp
, &reaplist
);
1305 spin_unlock(&clp
->cl_lock
);
1306 free_ol_stateid_reaplist(&reaplist
);
1307 release_last_closed_stateid(oo
);
1308 nfs4_put_stateowner(&oo
->oo_owner
);
1312 hash_sessionid(struct nfs4_sessionid
*sessionid
)
1314 struct nfsd4_sessionid
*sid
= (struct nfsd4_sessionid
*)sessionid
;
1316 return sid
->sequence
% SESSION_HASH_SIZE
;
1319 #ifdef CONFIG_SUNRPC_DEBUG
1321 dump_sessionid(const char *fn
, struct nfs4_sessionid
*sessionid
)
1323 u32
*ptr
= (u32
*)(&sessionid
->data
[0]);
1324 dprintk("%s: %u:%u:%u:%u\n", fn
, ptr
[0], ptr
[1], ptr
[2], ptr
[3]);
1328 dump_sessionid(const char *fn
, struct nfs4_sessionid
*sessionid
)
1334 * Bump the seqid on cstate->replay_owner, and clear replay_owner if it
1335 * won't be used for replay.
1337 void nfsd4_bump_seqid(struct nfsd4_compound_state
*cstate
, __be32 nfserr
)
1339 struct nfs4_stateowner
*so
= cstate
->replay_owner
;
1341 if (nfserr
== nfserr_replay_me
)
1344 if (!seqid_mutating_err(ntohl(nfserr
))) {
1345 nfsd4_cstate_clear_replay(cstate
);
1350 if (so
->so_is_open_owner
)
1351 release_last_closed_stateid(openowner(so
));
1357 gen_sessionid(struct nfsd4_session
*ses
)
1359 struct nfs4_client
*clp
= ses
->se_client
;
1360 struct nfsd4_sessionid
*sid
;
1362 sid
= (struct nfsd4_sessionid
*)ses
->se_sessionid
.data
;
1363 sid
->clientid
= clp
->cl_clientid
;
1364 sid
->sequence
= current_sessionid
++;
1369 * The protocol defines ca_maxresponssize_cached to include the size of
1370 * the rpc header, but all we need to cache is the data starting after
1371 * the end of the initial SEQUENCE operation--the rest we regenerate
1372 * each time. Therefore we can advertise a ca_maxresponssize_cached
1373 * value that is the number of bytes in our cache plus a few additional
1374 * bytes. In order to stay on the safe side, and not promise more than
1375 * we can cache, those additional bytes must be the minimum possible: 24
1376 * bytes of rpc header (xid through accept state, with AUTH_NULL
1377 * verifier), 12 for the compound header (with zero-length tag), and 44
1378 * for the SEQUENCE op response:
1380 #define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
1383 free_session_slots(struct nfsd4_session
*ses
)
1387 for (i
= 0; i
< ses
->se_fchannel
.maxreqs
; i
++)
1388 kfree(ses
->se_slots
[i
]);
1392 * We don't actually need to cache the rpc and session headers, so we
1393 * can allocate a little less for each slot:
1395 static inline u32
slot_bytes(struct nfsd4_channel_attrs
*ca
)
1399 if (ca
->maxresp_cached
< NFSD_MIN_HDR_SEQ_SZ
)
1402 size
= ca
->maxresp_cached
- NFSD_MIN_HDR_SEQ_SZ
;
1403 return size
+ sizeof(struct nfsd4_slot
);
1407 * XXX: If we run out of reserved DRC memory we could (up to a point)
1408 * re-negotiate active sessions and reduce their slot usage to make
1409 * room for new connections. For now we just fail the create session.
1411 static u32
nfsd4_get_drc_mem(struct nfsd4_channel_attrs
*ca
)
1413 u32 slotsize
= slot_bytes(ca
);
1414 u32 num
= ca
->maxreqs
;
1417 spin_lock(&nfsd_drc_lock
);
1418 avail
= min((unsigned long)NFSD_MAX_MEM_PER_SESSION
,
1419 nfsd_drc_max_mem
- nfsd_drc_mem_used
);
1420 num
= min_t(int, num
, avail
/ slotsize
);
1421 nfsd_drc_mem_used
+= num
* slotsize
;
1422 spin_unlock(&nfsd_drc_lock
);
1427 static void nfsd4_put_drc_mem(struct nfsd4_channel_attrs
*ca
)
1429 int slotsize
= slot_bytes(ca
);
1431 spin_lock(&nfsd_drc_lock
);
1432 nfsd_drc_mem_used
-= slotsize
* ca
->maxreqs
;
1433 spin_unlock(&nfsd_drc_lock
);
1436 static struct nfsd4_session
*alloc_session(struct nfsd4_channel_attrs
*fattrs
,
1437 struct nfsd4_channel_attrs
*battrs
)
1439 int numslots
= fattrs
->maxreqs
;
1440 int slotsize
= slot_bytes(fattrs
);
1441 struct nfsd4_session
*new;
1444 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION
* sizeof(struct nfsd4_slot
*)
1445 + sizeof(struct nfsd4_session
) > PAGE_SIZE
);
1446 mem
= numslots
* sizeof(struct nfsd4_slot
*);
1448 new = kzalloc(sizeof(*new) + mem
, GFP_KERNEL
);
1451 /* allocate each struct nfsd4_slot and data cache in one piece */
1452 for (i
= 0; i
< numslots
; i
++) {
1453 new->se_slots
[i
] = kzalloc(slotsize
, GFP_KERNEL
);
1454 if (!new->se_slots
[i
])
1458 memcpy(&new->se_fchannel
, fattrs
, sizeof(struct nfsd4_channel_attrs
));
1459 memcpy(&new->se_bchannel
, battrs
, sizeof(struct nfsd4_channel_attrs
));
1464 kfree(new->se_slots
[i
]);
1469 static void free_conn(struct nfsd4_conn
*c
)
1471 svc_xprt_put(c
->cn_xprt
);
1475 static void nfsd4_conn_lost(struct svc_xpt_user
*u
)
1477 struct nfsd4_conn
*c
= container_of(u
, struct nfsd4_conn
, cn_xpt_user
);
1478 struct nfs4_client
*clp
= c
->cn_session
->se_client
;
1480 spin_lock(&clp
->cl_lock
);
1481 if (!list_empty(&c
->cn_persession
)) {
1482 list_del(&c
->cn_persession
);
1485 nfsd4_probe_callback(clp
);
1486 spin_unlock(&clp
->cl_lock
);
1489 static struct nfsd4_conn
*alloc_conn(struct svc_rqst
*rqstp
, u32 flags
)
1491 struct nfsd4_conn
*conn
;
1493 conn
= kmalloc(sizeof(struct nfsd4_conn
), GFP_KERNEL
);
1496 svc_xprt_get(rqstp
->rq_xprt
);
1497 conn
->cn_xprt
= rqstp
->rq_xprt
;
1498 conn
->cn_flags
= flags
;
1499 INIT_LIST_HEAD(&conn
->cn_xpt_user
.list
);
1503 static void __nfsd4_hash_conn(struct nfsd4_conn
*conn
, struct nfsd4_session
*ses
)
1505 conn
->cn_session
= ses
;
1506 list_add(&conn
->cn_persession
, &ses
->se_conns
);
1509 static void nfsd4_hash_conn(struct nfsd4_conn
*conn
, struct nfsd4_session
*ses
)
1511 struct nfs4_client
*clp
= ses
->se_client
;
1513 spin_lock(&clp
->cl_lock
);
1514 __nfsd4_hash_conn(conn
, ses
);
1515 spin_unlock(&clp
->cl_lock
);
1518 static int nfsd4_register_conn(struct nfsd4_conn
*conn
)
1520 conn
->cn_xpt_user
.callback
= nfsd4_conn_lost
;
1521 return register_xpt_user(conn
->cn_xprt
, &conn
->cn_xpt_user
);
1524 static void nfsd4_init_conn(struct svc_rqst
*rqstp
, struct nfsd4_conn
*conn
, struct nfsd4_session
*ses
)
1528 nfsd4_hash_conn(conn
, ses
);
1529 ret
= nfsd4_register_conn(conn
);
1531 /* oops; xprt is already down: */
1532 nfsd4_conn_lost(&conn
->cn_xpt_user
);
1533 /* We may have gained or lost a callback channel: */
1534 nfsd4_probe_callback_sync(ses
->se_client
);
1537 static struct nfsd4_conn
*alloc_conn_from_crses(struct svc_rqst
*rqstp
, struct nfsd4_create_session
*cses
)
1539 u32 dir
= NFS4_CDFC4_FORE
;
1541 if (cses
->flags
& SESSION4_BACK_CHAN
)
1542 dir
|= NFS4_CDFC4_BACK
;
1543 return alloc_conn(rqstp
, dir
);
1546 /* must be called under client_lock */
1547 static void nfsd4_del_conns(struct nfsd4_session
*s
)
1549 struct nfs4_client
*clp
= s
->se_client
;
1550 struct nfsd4_conn
*c
;
1552 spin_lock(&clp
->cl_lock
);
1553 while (!list_empty(&s
->se_conns
)) {
1554 c
= list_first_entry(&s
->se_conns
, struct nfsd4_conn
, cn_persession
);
1555 list_del_init(&c
->cn_persession
);
1556 spin_unlock(&clp
->cl_lock
);
1558 unregister_xpt_user(c
->cn_xprt
, &c
->cn_xpt_user
);
1561 spin_lock(&clp
->cl_lock
);
1563 spin_unlock(&clp
->cl_lock
);
1566 static void __free_session(struct nfsd4_session
*ses
)
1568 free_session_slots(ses
);
1572 static void free_session(struct nfsd4_session
*ses
)
1574 nfsd4_del_conns(ses
);
1575 nfsd4_put_drc_mem(&ses
->se_fchannel
);
1576 __free_session(ses
);
1579 static void init_session(struct svc_rqst
*rqstp
, struct nfsd4_session
*new, struct nfs4_client
*clp
, struct nfsd4_create_session
*cses
)
1582 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
1584 new->se_client
= clp
;
1587 INIT_LIST_HEAD(&new->se_conns
);
1589 new->se_cb_seq_nr
= 1;
1590 new->se_flags
= cses
->flags
;
1591 new->se_cb_prog
= cses
->callback_prog
;
1592 new->se_cb_sec
= cses
->cb_sec
;
1593 atomic_set(&new->se_ref
, 0);
1594 idx
= hash_sessionid(&new->se_sessionid
);
1595 list_add(&new->se_hash
, &nn
->sessionid_hashtbl
[idx
]);
1596 spin_lock(&clp
->cl_lock
);
1597 list_add(&new->se_perclnt
, &clp
->cl_sessions
);
1598 spin_unlock(&clp
->cl_lock
);
1601 struct sockaddr
*sa
= svc_addr(rqstp
);
1603 * This is a little silly; with sessions there's no real
1604 * use for the callback address. Use the peer address
1605 * as a reasonable default for now, but consider fixing
1606 * the rpc client not to require an address in the
1609 rpc_copy_addr((struct sockaddr
*)&clp
->cl_cb_conn
.cb_addr
, sa
);
1610 clp
->cl_cb_conn
.cb_addrlen
= svc_addr_len(sa
);
1614 /* caller must hold client_lock */
1615 static struct nfsd4_session
*
1616 __find_in_sessionid_hashtbl(struct nfs4_sessionid
*sessionid
, struct net
*net
)
1618 struct nfsd4_session
*elem
;
1620 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
1622 lockdep_assert_held(&nn
->client_lock
);
1624 dump_sessionid(__func__
, sessionid
);
1625 idx
= hash_sessionid(sessionid
);
1626 /* Search in the appropriate list */
1627 list_for_each_entry(elem
, &nn
->sessionid_hashtbl
[idx
], se_hash
) {
1628 if (!memcmp(elem
->se_sessionid
.data
, sessionid
->data
,
1629 NFS4_MAX_SESSIONID_LEN
)) {
1634 dprintk("%s: session not found\n", __func__
);
1638 static struct nfsd4_session
*
1639 find_in_sessionid_hashtbl(struct nfs4_sessionid
*sessionid
, struct net
*net
,
1642 struct nfsd4_session
*session
;
1643 __be32 status
= nfserr_badsession
;
1645 session
= __find_in_sessionid_hashtbl(sessionid
, net
);
1648 status
= nfsd4_get_session_locked(session
);
1656 /* caller must hold client_lock */
1658 unhash_session(struct nfsd4_session
*ses
)
1660 struct nfs4_client
*clp
= ses
->se_client
;
1661 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
1663 lockdep_assert_held(&nn
->client_lock
);
1665 list_del(&ses
->se_hash
);
1666 spin_lock(&ses
->se_client
->cl_lock
);
1667 list_del(&ses
->se_perclnt
);
1668 spin_unlock(&ses
->se_client
->cl_lock
);
1671 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1673 STALE_CLIENTID(clientid_t
*clid
, struct nfsd_net
*nn
)
1676 * We're assuming the clid was not given out from a boot
1677 * precisely 2^32 (about 136 years) before this one. That seems
1678 * a safe assumption:
1680 if (clid
->cl_boot
== (u32
)nn
->boot_time
)
1682 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
1683 clid
->cl_boot
, clid
->cl_id
, nn
->boot_time
);
1688 * XXX Should we use a slab cache ?
1689 * This type of memory management is somewhat inefficient, but we use it
1690 * anyway since SETCLIENTID is not a common operation.
1692 static struct nfs4_client
*alloc_client(struct xdr_netobj name
)
1694 struct nfs4_client
*clp
;
1697 clp
= kzalloc(sizeof(struct nfs4_client
), GFP_KERNEL
);
1700 clp
->cl_name
.data
= kmemdup(name
.data
, name
.len
, GFP_KERNEL
);
1701 if (clp
->cl_name
.data
== NULL
)
1703 clp
->cl_ownerstr_hashtbl
= kmalloc(sizeof(struct list_head
) *
1704 OWNER_HASH_SIZE
, GFP_KERNEL
);
1705 if (!clp
->cl_ownerstr_hashtbl
)
1706 goto err_no_hashtbl
;
1707 for (i
= 0; i
< OWNER_HASH_SIZE
; i
++)
1708 INIT_LIST_HEAD(&clp
->cl_ownerstr_hashtbl
[i
]);
1709 clp
->cl_name
.len
= name
.len
;
1710 INIT_LIST_HEAD(&clp
->cl_sessions
);
1711 idr_init(&clp
->cl_stateids
);
1712 atomic_set(&clp
->cl_refcount
, 0);
1713 clp
->cl_cb_state
= NFSD4_CB_UNKNOWN
;
1714 INIT_LIST_HEAD(&clp
->cl_idhash
);
1715 INIT_LIST_HEAD(&clp
->cl_openowners
);
1716 INIT_LIST_HEAD(&clp
->cl_delegations
);
1717 INIT_LIST_HEAD(&clp
->cl_lru
);
1718 INIT_LIST_HEAD(&clp
->cl_revoked
);
1719 #ifdef CONFIG_NFSD_PNFS
1720 INIT_LIST_HEAD(&clp
->cl_lo_states
);
1722 spin_lock_init(&clp
->cl_lock
);
1723 rpc_init_wait_queue(&clp
->cl_cb_waitq
, "Backchannel slot table");
1726 kfree(clp
->cl_name
.data
);
1733 free_client(struct nfs4_client
*clp
)
1735 while (!list_empty(&clp
->cl_sessions
)) {
1736 struct nfsd4_session
*ses
;
1737 ses
= list_entry(clp
->cl_sessions
.next
, struct nfsd4_session
,
1739 list_del(&ses
->se_perclnt
);
1740 WARN_ON_ONCE(atomic_read(&ses
->se_ref
));
1743 rpc_destroy_wait_queue(&clp
->cl_cb_waitq
);
1744 free_svc_cred(&clp
->cl_cred
);
1745 kfree(clp
->cl_ownerstr_hashtbl
);
1746 kfree(clp
->cl_name
.data
);
1747 idr_destroy(&clp
->cl_stateids
);
1751 /* must be called under the client_lock */
1753 unhash_client_locked(struct nfs4_client
*clp
)
1755 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
1756 struct nfsd4_session
*ses
;
1758 lockdep_assert_held(&nn
->client_lock
);
1760 /* Mark the client as expired! */
1762 /* Make it invisible */
1763 if (!list_empty(&clp
->cl_idhash
)) {
1764 list_del_init(&clp
->cl_idhash
);
1765 if (test_bit(NFSD4_CLIENT_CONFIRMED
, &clp
->cl_flags
))
1766 rb_erase(&clp
->cl_namenode
, &nn
->conf_name_tree
);
1768 rb_erase(&clp
->cl_namenode
, &nn
->unconf_name_tree
);
1770 list_del_init(&clp
->cl_lru
);
1771 spin_lock(&clp
->cl_lock
);
1772 list_for_each_entry(ses
, &clp
->cl_sessions
, se_perclnt
)
1773 list_del_init(&ses
->se_hash
);
1774 spin_unlock(&clp
->cl_lock
);
1778 unhash_client(struct nfs4_client
*clp
)
1780 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
1782 spin_lock(&nn
->client_lock
);
1783 unhash_client_locked(clp
);
1784 spin_unlock(&nn
->client_lock
);
1787 static __be32
mark_client_expired_locked(struct nfs4_client
*clp
)
1789 if (atomic_read(&clp
->cl_refcount
))
1790 return nfserr_jukebox
;
1791 unhash_client_locked(clp
);
1796 __destroy_client(struct nfs4_client
*clp
)
1798 struct nfs4_openowner
*oo
;
1799 struct nfs4_delegation
*dp
;
1800 struct list_head reaplist
;
1802 INIT_LIST_HEAD(&reaplist
);
1803 spin_lock(&state_lock
);
1804 while (!list_empty(&clp
->cl_delegations
)) {
1805 dp
= list_entry(clp
->cl_delegations
.next
, struct nfs4_delegation
, dl_perclnt
);
1806 WARN_ON(!unhash_delegation_locked(dp
));
1807 list_add(&dp
->dl_recall_lru
, &reaplist
);
1809 spin_unlock(&state_lock
);
1810 while (!list_empty(&reaplist
)) {
1811 dp
= list_entry(reaplist
.next
, struct nfs4_delegation
, dl_recall_lru
);
1812 list_del_init(&dp
->dl_recall_lru
);
1813 put_clnt_odstate(dp
->dl_clnt_odstate
);
1814 nfs4_put_deleg_lease(dp
->dl_stid
.sc_file
);
1815 nfs4_put_stid(&dp
->dl_stid
);
1817 while (!list_empty(&clp
->cl_revoked
)) {
1818 dp
= list_entry(clp
->cl_revoked
.next
, struct nfs4_delegation
, dl_recall_lru
);
1819 list_del_init(&dp
->dl_recall_lru
);
1820 nfs4_put_stid(&dp
->dl_stid
);
1822 while (!list_empty(&clp
->cl_openowners
)) {
1823 oo
= list_entry(clp
->cl_openowners
.next
, struct nfs4_openowner
, oo_perclient
);
1824 nfs4_get_stateowner(&oo
->oo_owner
);
1825 release_openowner(oo
);
1827 nfsd4_return_all_client_layouts(clp
);
1828 nfsd4_shutdown_callback(clp
);
1829 if (clp
->cl_cb_conn
.cb_xprt
)
1830 svc_xprt_put(clp
->cl_cb_conn
.cb_xprt
);
1835 destroy_client(struct nfs4_client
*clp
)
1838 __destroy_client(clp
);
1841 static void expire_client(struct nfs4_client
*clp
)
1844 nfsd4_client_record_remove(clp
);
1845 __destroy_client(clp
);
1848 static void copy_verf(struct nfs4_client
*target
, nfs4_verifier
*source
)
1850 memcpy(target
->cl_verifier
.data
, source
->data
,
1851 sizeof(target
->cl_verifier
.data
));
1854 static void copy_clid(struct nfs4_client
*target
, struct nfs4_client
*source
)
1856 target
->cl_clientid
.cl_boot
= source
->cl_clientid
.cl_boot
;
1857 target
->cl_clientid
.cl_id
= source
->cl_clientid
.cl_id
;
1860 static int copy_cred(struct svc_cred
*target
, struct svc_cred
*source
)
1862 if (source
->cr_principal
) {
1863 target
->cr_principal
=
1864 kstrdup(source
->cr_principal
, GFP_KERNEL
);
1865 if (target
->cr_principal
== NULL
)
1868 target
->cr_principal
= NULL
;
1869 target
->cr_flavor
= source
->cr_flavor
;
1870 target
->cr_uid
= source
->cr_uid
;
1871 target
->cr_gid
= source
->cr_gid
;
1872 target
->cr_group_info
= source
->cr_group_info
;
1873 get_group_info(target
->cr_group_info
);
1874 target
->cr_gss_mech
= source
->cr_gss_mech
;
1875 if (source
->cr_gss_mech
)
1876 gss_mech_get(source
->cr_gss_mech
);
1881 compare_blob(const struct xdr_netobj
*o1
, const struct xdr_netobj
*o2
)
1883 if (o1
->len
< o2
->len
)
1885 if (o1
->len
> o2
->len
)
1887 return memcmp(o1
->data
, o2
->data
, o1
->len
);
1890 static int same_name(const char *n1
, const char *n2
)
1892 return 0 == memcmp(n1
, n2
, HEXDIR_LEN
);
1896 same_verf(nfs4_verifier
*v1
, nfs4_verifier
*v2
)
1898 return 0 == memcmp(v1
->data
, v2
->data
, sizeof(v1
->data
));
1902 same_clid(clientid_t
*cl1
, clientid_t
*cl2
)
1904 return (cl1
->cl_boot
== cl2
->cl_boot
) && (cl1
->cl_id
== cl2
->cl_id
);
1907 static bool groups_equal(struct group_info
*g1
, struct group_info
*g2
)
1911 if (g1
->ngroups
!= g2
->ngroups
)
1913 for (i
=0; i
<g1
->ngroups
; i
++)
1914 if (!gid_eq(GROUP_AT(g1
, i
), GROUP_AT(g2
, i
)))
1920 * RFC 3530 language requires clid_inuse be returned when the
1921 * "principal" associated with a requests differs from that previously
1922 * used. We use uid, gid's, and gss principal string as our best
1923 * approximation. We also don't want to allow non-gss use of a client
1924 * established using gss: in theory cr_principal should catch that
1925 * change, but in practice cr_principal can be null even in the gss case
1926 * since gssd doesn't always pass down a principal string.
1928 static bool is_gss_cred(struct svc_cred
*cr
)
1930 /* Is cr_flavor one of the gss "pseudoflavors"?: */
1931 return (cr
->cr_flavor
> RPC_AUTH_MAXFLAVOR
);
1936 same_creds(struct svc_cred
*cr1
, struct svc_cred
*cr2
)
1938 if ((is_gss_cred(cr1
) != is_gss_cred(cr2
))
1939 || (!uid_eq(cr1
->cr_uid
, cr2
->cr_uid
))
1940 || (!gid_eq(cr1
->cr_gid
, cr2
->cr_gid
))
1941 || !groups_equal(cr1
->cr_group_info
, cr2
->cr_group_info
))
1943 if (cr1
->cr_principal
== cr2
->cr_principal
)
1945 if (!cr1
->cr_principal
|| !cr2
->cr_principal
)
1947 return 0 == strcmp(cr1
->cr_principal
, cr2
->cr_principal
);
1950 static bool svc_rqst_integrity_protected(struct svc_rqst
*rqstp
)
1952 struct svc_cred
*cr
= &rqstp
->rq_cred
;
1955 if (!cr
->cr_gss_mech
)
1957 service
= gss_pseudoflavor_to_service(cr
->cr_gss_mech
, cr
->cr_flavor
);
1958 return service
== RPC_GSS_SVC_INTEGRITY
||
1959 service
== RPC_GSS_SVC_PRIVACY
;
1962 static bool mach_creds_match(struct nfs4_client
*cl
, struct svc_rqst
*rqstp
)
1964 struct svc_cred
*cr
= &rqstp
->rq_cred
;
1966 if (!cl
->cl_mach_cred
)
1968 if (cl
->cl_cred
.cr_gss_mech
!= cr
->cr_gss_mech
)
1970 if (!svc_rqst_integrity_protected(rqstp
))
1972 if (!cr
->cr_principal
)
1974 return 0 == strcmp(cl
->cl_cred
.cr_principal
, cr
->cr_principal
);
1977 static void gen_confirm(struct nfs4_client
*clp
, struct nfsd_net
*nn
)
1982 * This is opaque to client, so no need to byte-swap. Use
1983 * __force to keep sparse happy
1985 verf
[0] = (__force __be32
)get_seconds();
1986 verf
[1] = (__force __be32
)nn
->clverifier_counter
++;
1987 memcpy(clp
->cl_confirm
.data
, verf
, sizeof(clp
->cl_confirm
.data
));
1990 static void gen_clid(struct nfs4_client
*clp
, struct nfsd_net
*nn
)
1992 clp
->cl_clientid
.cl_boot
= nn
->boot_time
;
1993 clp
->cl_clientid
.cl_id
= nn
->clientid_counter
++;
1994 gen_confirm(clp
, nn
);
1997 static struct nfs4_stid
*
1998 find_stateid_locked(struct nfs4_client
*cl
, stateid_t
*t
)
2000 struct nfs4_stid
*ret
;
2002 ret
= idr_find(&cl
->cl_stateids
, t
->si_opaque
.so_id
);
2003 if (!ret
|| !ret
->sc_type
)
2008 static struct nfs4_stid
*
2009 find_stateid_by_type(struct nfs4_client
*cl
, stateid_t
*t
, char typemask
)
2011 struct nfs4_stid
*s
;
2013 spin_lock(&cl
->cl_lock
);
2014 s
= find_stateid_locked(cl
, t
);
2016 if (typemask
& s
->sc_type
)
2017 atomic_inc(&s
->sc_count
);
2021 spin_unlock(&cl
->cl_lock
);
2025 static struct nfs4_client
*create_client(struct xdr_netobj name
,
2026 struct svc_rqst
*rqstp
, nfs4_verifier
*verf
)
2028 struct nfs4_client
*clp
;
2029 struct sockaddr
*sa
= svc_addr(rqstp
);
2031 struct net
*net
= SVC_NET(rqstp
);
2033 clp
= alloc_client(name
);
2037 ret
= copy_cred(&clp
->cl_cred
, &rqstp
->rq_cred
);
2042 nfsd4_init_cb(&clp
->cl_cb_null
, clp
, NULL
, NFSPROC4_CLNT_CB_NULL
);
2043 clp
->cl_time
= get_seconds();
2044 clear_bit(0, &clp
->cl_cb_slot_busy
);
2045 copy_verf(clp
, verf
);
2046 rpc_copy_addr((struct sockaddr
*) &clp
->cl_addr
, sa
);
2047 clp
->cl_cb_session
= NULL
;
2053 add_clp_to_name_tree(struct nfs4_client
*new_clp
, struct rb_root
*root
)
2055 struct rb_node
**new = &(root
->rb_node
), *parent
= NULL
;
2056 struct nfs4_client
*clp
;
2059 clp
= rb_entry(*new, struct nfs4_client
, cl_namenode
);
2062 if (compare_blob(&clp
->cl_name
, &new_clp
->cl_name
) > 0)
2063 new = &((*new)->rb_left
);
2065 new = &((*new)->rb_right
);
2068 rb_link_node(&new_clp
->cl_namenode
, parent
, new);
2069 rb_insert_color(&new_clp
->cl_namenode
, root
);
2072 static struct nfs4_client
*
2073 find_clp_in_name_tree(struct xdr_netobj
*name
, struct rb_root
*root
)
2076 struct rb_node
*node
= root
->rb_node
;
2077 struct nfs4_client
*clp
;
2080 clp
= rb_entry(node
, struct nfs4_client
, cl_namenode
);
2081 cmp
= compare_blob(&clp
->cl_name
, name
);
2083 node
= node
->rb_left
;
2085 node
= node
->rb_right
;
2093 add_to_unconfirmed(struct nfs4_client
*clp
)
2095 unsigned int idhashval
;
2096 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
2098 lockdep_assert_held(&nn
->client_lock
);
2100 clear_bit(NFSD4_CLIENT_CONFIRMED
, &clp
->cl_flags
);
2101 add_clp_to_name_tree(clp
, &nn
->unconf_name_tree
);
2102 idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
2103 list_add(&clp
->cl_idhash
, &nn
->unconf_id_hashtbl
[idhashval
]);
2104 renew_client_locked(clp
);
2108 move_to_confirmed(struct nfs4_client
*clp
)
2110 unsigned int idhashval
= clientid_hashval(clp
->cl_clientid
.cl_id
);
2111 struct nfsd_net
*nn
= net_generic(clp
->net
, nfsd_net_id
);
2113 lockdep_assert_held(&nn
->client_lock
);
2115 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp
);
2116 list_move(&clp
->cl_idhash
, &nn
->conf_id_hashtbl
[idhashval
]);
2117 rb_erase(&clp
->cl_namenode
, &nn
->unconf_name_tree
);
2118 add_clp_to_name_tree(clp
, &nn
->conf_name_tree
);
2119 set_bit(NFSD4_CLIENT_CONFIRMED
, &clp
->cl_flags
);
2120 renew_client_locked(clp
);
2123 static struct nfs4_client
*
2124 find_client_in_id_table(struct list_head
*tbl
, clientid_t
*clid
, bool sessions
)
2126 struct nfs4_client
*clp
;
2127 unsigned int idhashval
= clientid_hashval(clid
->cl_id
);
2129 list_for_each_entry(clp
, &tbl
[idhashval
], cl_idhash
) {
2130 if (same_clid(&clp
->cl_clientid
, clid
)) {
2131 if ((bool)clp
->cl_minorversion
!= sessions
)
2133 renew_client_locked(clp
);
2140 static struct nfs4_client
*
2141 find_confirmed_client(clientid_t
*clid
, bool sessions
, struct nfsd_net
*nn
)
2143 struct list_head
*tbl
= nn
->conf_id_hashtbl
;
2145 lockdep_assert_held(&nn
->client_lock
);
2146 return find_client_in_id_table(tbl
, clid
, sessions
);
2149 static struct nfs4_client
*
2150 find_unconfirmed_client(clientid_t
*clid
, bool sessions
, struct nfsd_net
*nn
)
2152 struct list_head
*tbl
= nn
->unconf_id_hashtbl
;
2154 lockdep_assert_held(&nn
->client_lock
);
2155 return find_client_in_id_table(tbl
, clid
, sessions
);
2158 static bool clp_used_exchangeid(struct nfs4_client
*clp
)
2160 return clp
->cl_exchange_flags
!= 0;
2163 static struct nfs4_client
*
2164 find_confirmed_client_by_name(struct xdr_netobj
*name
, struct nfsd_net
*nn
)
2166 lockdep_assert_held(&nn
->client_lock
);
2167 return find_clp_in_name_tree(name
, &nn
->conf_name_tree
);
2170 static struct nfs4_client
*
2171 find_unconfirmed_client_by_name(struct xdr_netobj
*name
, struct nfsd_net
*nn
)
2173 lockdep_assert_held(&nn
->client_lock
);
2174 return find_clp_in_name_tree(name
, &nn
->unconf_name_tree
);
2178 gen_callback(struct nfs4_client
*clp
, struct nfsd4_setclientid
*se
, struct svc_rqst
*rqstp
)
2180 struct nfs4_cb_conn
*conn
= &clp
->cl_cb_conn
;
2181 struct sockaddr
*sa
= svc_addr(rqstp
);
2182 u32 scopeid
= rpc_get_scope_id(sa
);
2183 unsigned short expected_family
;
2185 /* Currently, we only support tcp and tcp6 for the callback channel */
2186 if (se
->se_callback_netid_len
== 3 &&
2187 !memcmp(se
->se_callback_netid_val
, "tcp", 3))
2188 expected_family
= AF_INET
;
2189 else if (se
->se_callback_netid_len
== 4 &&
2190 !memcmp(se
->se_callback_netid_val
, "tcp6", 4))
2191 expected_family
= AF_INET6
;
2195 conn
->cb_addrlen
= rpc_uaddr2sockaddr(clp
->net
, se
->se_callback_addr_val
,
2196 se
->se_callback_addr_len
,
2197 (struct sockaddr
*)&conn
->cb_addr
,
2198 sizeof(conn
->cb_addr
));
2200 if (!conn
->cb_addrlen
|| conn
->cb_addr
.ss_family
!= expected_family
)
2203 if (conn
->cb_addr
.ss_family
== AF_INET6
)
2204 ((struct sockaddr_in6
*)&conn
->cb_addr
)->sin6_scope_id
= scopeid
;
2206 conn
->cb_prog
= se
->se_callback_prog
;
2207 conn
->cb_ident
= se
->se_callback_ident
;
2208 memcpy(&conn
->cb_saddr
, &rqstp
->rq_daddr
, rqstp
->rq_daddrlen
);
2211 conn
->cb_addr
.ss_family
= AF_UNSPEC
;
2212 conn
->cb_addrlen
= 0;
2213 dprintk(KERN_INFO
"NFSD: this client (clientid %08x/%08x) "
2214 "will not receive delegations\n",
2215 clp
->cl_clientid
.cl_boot
, clp
->cl_clientid
.cl_id
);
2221 * Cache a reply. nfsd4_check_resp_size() has bounded the cache size.
2224 nfsd4_store_cache_entry(struct nfsd4_compoundres
*resp
)
2226 struct xdr_buf
*buf
= resp
->xdr
.buf
;
2227 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
2230 dprintk("--> %s slot %p\n", __func__
, slot
);
2232 slot
->sl_opcnt
= resp
->opcnt
;
2233 slot
->sl_status
= resp
->cstate
.status
;
2235 slot
->sl_flags
|= NFSD4_SLOT_INITIALIZED
;
2236 if (nfsd4_not_cached(resp
)) {
2237 slot
->sl_datalen
= 0;
2240 base
= resp
->cstate
.data_offset
;
2241 slot
->sl_datalen
= buf
->len
- base
;
2242 if (read_bytes_from_xdr_buf(buf
, base
, slot
->sl_data
, slot
->sl_datalen
))
2243 WARN("%s: sessions DRC could not cache compound\n", __func__
);
2248 * Encode the replay sequence operation from the slot values.
2249 * If cachethis is FALSE encode the uncached rep error on the next
2250 * operation which sets resp->p and increments resp->opcnt for
2251 * nfs4svc_encode_compoundres.
2255 nfsd4_enc_sequence_replay(struct nfsd4_compoundargs
*args
,
2256 struct nfsd4_compoundres
*resp
)
2258 struct nfsd4_op
*op
;
2259 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
2261 /* Encode the replayed sequence operation */
2262 op
= &args
->ops
[resp
->opcnt
- 1];
2263 nfsd4_encode_operation(resp
, op
);
2265 /* Return nfserr_retry_uncached_rep in next operation. */
2266 if (args
->opcnt
> 1 && !(slot
->sl_flags
& NFSD4_SLOT_CACHETHIS
)) {
2267 op
= &args
->ops
[resp
->opcnt
++];
2268 op
->status
= nfserr_retry_uncached_rep
;
2269 nfsd4_encode_operation(resp
, op
);
2275 * The sequence operation is not cached because we can use the slot and
2279 nfsd4_replay_cache_entry(struct nfsd4_compoundres
*resp
,
2280 struct nfsd4_sequence
*seq
)
2282 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
2283 struct xdr_stream
*xdr
= &resp
->xdr
;
2287 dprintk("--> %s slot %p\n", __func__
, slot
);
2289 status
= nfsd4_enc_sequence_replay(resp
->rqstp
->rq_argp
, resp
);
2293 p
= xdr_reserve_space(xdr
, slot
->sl_datalen
);
2296 return nfserr_serverfault
;
2298 xdr_encode_opaque_fixed(p
, slot
->sl_data
, slot
->sl_datalen
);
2299 xdr_commit_encode(xdr
);
2301 resp
->opcnt
= slot
->sl_opcnt
;
2302 return slot
->sl_status
;
2306 * Set the exchange_id flags returned by the server.
2309 nfsd4_set_ex_flags(struct nfs4_client
*new, struct nfsd4_exchange_id
*clid
)
2311 #ifdef CONFIG_NFSD_PNFS
2312 new->cl_exchange_flags
|= EXCHGID4_FLAG_USE_PNFS_MDS
;
2314 new->cl_exchange_flags
|= EXCHGID4_FLAG_USE_NON_PNFS
;
2317 /* Referrals are supported, Migration is not. */
2318 new->cl_exchange_flags
|= EXCHGID4_FLAG_SUPP_MOVED_REFER
;
2320 /* set the wire flags to return to client. */
2321 clid
->flags
= new->cl_exchange_flags
;
2324 static bool client_has_openowners(struct nfs4_client
*clp
)
2326 struct nfs4_openowner
*oo
;
2328 list_for_each_entry(oo
, &clp
->cl_openowners
, oo_perclient
) {
2329 if (!list_empty(&oo
->oo_owner
.so_stateids
))
2335 static bool client_has_state(struct nfs4_client
*clp
)
2337 return client_has_openowners(clp
)
2338 #ifdef CONFIG_NFSD_PNFS
2339 || !list_empty(&clp
->cl_lo_states
)
2341 || !list_empty(&clp
->cl_delegations
)
2342 || !list_empty(&clp
->cl_sessions
);
2346 nfsd4_exchange_id(struct svc_rqst
*rqstp
,
2347 struct nfsd4_compound_state
*cstate
,
2348 struct nfsd4_exchange_id
*exid
)
2350 struct nfs4_client
*conf
, *new;
2351 struct nfs4_client
*unconf
= NULL
;
2353 char addr_str
[INET6_ADDRSTRLEN
];
2354 nfs4_verifier verf
= exid
->verifier
;
2355 struct sockaddr
*sa
= svc_addr(rqstp
);
2356 bool update
= exid
->flags
& EXCHGID4_FLAG_UPD_CONFIRMED_REC_A
;
2357 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
2359 rpc_ntop(sa
, addr_str
, sizeof(addr_str
));
2360 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
2361 "ip_addr=%s flags %x, spa_how %d\n",
2362 __func__
, rqstp
, exid
, exid
->clname
.len
, exid
->clname
.data
,
2363 addr_str
, exid
->flags
, exid
->spa_how
);
2365 if (exid
->flags
& ~EXCHGID4_FLAG_MASK_A
)
2366 return nfserr_inval
;
2368 switch (exid
->spa_how
) {
2370 if (!svc_rqst_integrity_protected(rqstp
))
2371 return nfserr_inval
;
2374 default: /* checked by xdr code */
2377 return nfserr_encr_alg_unsupp
;
2380 new = create_client(exid
->clname
, rqstp
, &verf
);
2382 return nfserr_jukebox
;
2384 /* Cases below refer to rfc 5661 section 18.35.4: */
2385 spin_lock(&nn
->client_lock
);
2386 conf
= find_confirmed_client_by_name(&exid
->clname
, nn
);
2388 bool creds_match
= same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
);
2389 bool verfs_match
= same_verf(&verf
, &conf
->cl_verifier
);
2392 if (!clp_used_exchangeid(conf
)) { /* buggy client */
2393 status
= nfserr_inval
;
2396 if (!mach_creds_match(conf
, rqstp
)) {
2397 status
= nfserr_wrong_cred
;
2400 if (!creds_match
) { /* case 9 */
2401 status
= nfserr_perm
;
2404 if (!verfs_match
) { /* case 8 */
2405 status
= nfserr_not_same
;
2409 exid
->flags
|= EXCHGID4_FLAG_CONFIRMED_R
;
2412 if (!creds_match
) { /* case 3 */
2413 if (client_has_state(conf
)) {
2414 status
= nfserr_clid_inuse
;
2419 if (verfs_match
) { /* case 2 */
2420 conf
->cl_exchange_flags
|= EXCHGID4_FLAG_CONFIRMED_R
;
2423 /* case 5, client reboot */
2428 if (update
) { /* case 7 */
2429 status
= nfserr_noent
;
2433 unconf
= find_unconfirmed_client_by_name(&exid
->clname
, nn
);
2434 if (unconf
) /* case 4, possible retry or client restart */
2435 unhash_client_locked(unconf
);
2437 /* case 1 (normal case) */
2440 status
= mark_client_expired_locked(conf
);
2444 new->cl_minorversion
= cstate
->minorversion
;
2445 new->cl_mach_cred
= (exid
->spa_how
== SP4_MACH_CRED
);
2448 add_to_unconfirmed(new);
2451 exid
->clientid
.cl_boot
= conf
->cl_clientid
.cl_boot
;
2452 exid
->clientid
.cl_id
= conf
->cl_clientid
.cl_id
;
2454 exid
->seqid
= conf
->cl_cs_slot
.sl_seqid
+ 1;
2455 nfsd4_set_ex_flags(conf
, exid
);
2457 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
2458 conf
->cl_cs_slot
.sl_seqid
, conf
->cl_exchange_flags
);
2462 spin_unlock(&nn
->client_lock
);
2466 expire_client(unconf
);
2471 check_slot_seqid(u32 seqid
, u32 slot_seqid
, int slot_inuse
)
2473 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__
, seqid
,
2476 /* The slot is in use, and no response has been sent. */
2478 if (seqid
== slot_seqid
)
2479 return nfserr_jukebox
;
2481 return nfserr_seq_misordered
;
2483 /* Note unsigned 32-bit arithmetic handles wraparound: */
2484 if (likely(seqid
== slot_seqid
+ 1))
2486 if (seqid
== slot_seqid
)
2487 return nfserr_replay_cache
;
2488 return nfserr_seq_misordered
;
2492 * Cache the create session result into the create session single DRC
2493 * slot cache by saving the xdr structure. sl_seqid has been set.
2494 * Do this for solo or embedded create session operations.
2497 nfsd4_cache_create_session(struct nfsd4_create_session
*cr_ses
,
2498 struct nfsd4_clid_slot
*slot
, __be32 nfserr
)
2500 slot
->sl_status
= nfserr
;
2501 memcpy(&slot
->sl_cr_ses
, cr_ses
, sizeof(*cr_ses
));
2505 nfsd4_replay_create_session(struct nfsd4_create_session
*cr_ses
,
2506 struct nfsd4_clid_slot
*slot
)
2508 memcpy(cr_ses
, &slot
->sl_cr_ses
, sizeof(*cr_ses
));
2509 return slot
->sl_status
;
2512 #define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
2513 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
2514 1 + /* MIN tag is length with zero, only length */ \
2515 3 + /* version, opcount, opcode */ \
2516 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2517 /* seqid, slotID, slotID, cache */ \
2518 4 ) * sizeof(__be32))
2520 #define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
2521 2 + /* verifier: AUTH_NULL, length 0 */\
2523 1 + /* MIN tag is length with zero, only length */ \
2524 3 + /* opcount, opcode, opstatus*/ \
2525 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
2526 /* seqid, slotID, slotID, slotID, status */ \
2527 5 ) * sizeof(__be32))
2529 static __be32
check_forechannel_attrs(struct nfsd4_channel_attrs
*ca
, struct nfsd_net
*nn
)
2531 u32 maxrpc
= nn
->nfsd_serv
->sv_max_mesg
;
2533 if (ca
->maxreq_sz
< NFSD_MIN_REQ_HDR_SEQ_SZ
)
2534 return nfserr_toosmall
;
2535 if (ca
->maxresp_sz
< NFSD_MIN_RESP_HDR_SEQ_SZ
)
2536 return nfserr_toosmall
;
2537 ca
->headerpadsz
= 0;
2538 ca
->maxreq_sz
= min_t(u32
, ca
->maxreq_sz
, maxrpc
);
2539 ca
->maxresp_sz
= min_t(u32
, ca
->maxresp_sz
, maxrpc
);
2540 ca
->maxops
= min_t(u32
, ca
->maxops
, NFSD_MAX_OPS_PER_COMPOUND
);
2541 ca
->maxresp_cached
= min_t(u32
, ca
->maxresp_cached
,
2542 NFSD_SLOT_CACHE_SIZE
+ NFSD_MIN_HDR_SEQ_SZ
);
2543 ca
->maxreqs
= min_t(u32
, ca
->maxreqs
, NFSD_MAX_SLOTS_PER_SESSION
);
2545 * Note decreasing slot size below client's request may make it
2546 * difficult for client to function correctly, whereas
2547 * decreasing the number of slots will (just?) affect
2548 * performance. When short on memory we therefore prefer to
2549 * decrease number of slots instead of their size. Clients that
2550 * request larger slots than they need will get poor results:
2552 ca
->maxreqs
= nfsd4_get_drc_mem(ca
);
2554 return nfserr_jukebox
;
2559 #define NFSD_CB_MAX_REQ_SZ ((NFS4_enc_cb_recall_sz + \
2560 RPC_MAX_HEADER_WITH_AUTH) * sizeof(__be32))
2561 #define NFSD_CB_MAX_RESP_SZ ((NFS4_dec_cb_recall_sz + \
2562 RPC_MAX_REPHEADER_WITH_AUTH) * sizeof(__be32))
2564 static __be32
check_backchannel_attrs(struct nfsd4_channel_attrs
*ca
)
2566 ca
->headerpadsz
= 0;
2569 * These RPC_MAX_HEADER macros are overkill, especially since we
2570 * don't even do gss on the backchannel yet. But this is still
2571 * less than 1k. Tighten up this estimate in the unlikely event
2572 * it turns out to be a problem for some client:
2574 if (ca
->maxreq_sz
< NFSD_CB_MAX_REQ_SZ
)
2575 return nfserr_toosmall
;
2576 if (ca
->maxresp_sz
< NFSD_CB_MAX_RESP_SZ
)
2577 return nfserr_toosmall
;
2578 ca
->maxresp_cached
= 0;
2580 return nfserr_toosmall
;
2585 static __be32
nfsd4_check_cb_sec(struct nfsd4_cb_sec
*cbs
)
2587 switch (cbs
->flavor
) {
2593 * GSS case: the spec doesn't allow us to return this
2594 * error. But it also doesn't allow us not to support
2596 * I'd rather this fail hard than return some error the
2597 * client might think it can already handle:
2599 return nfserr_encr_alg_unsupp
;
2604 nfsd4_create_session(struct svc_rqst
*rqstp
,
2605 struct nfsd4_compound_state
*cstate
,
2606 struct nfsd4_create_session
*cr_ses
)
2608 struct sockaddr
*sa
= svc_addr(rqstp
);
2609 struct nfs4_client
*conf
, *unconf
;
2610 struct nfs4_client
*old
= NULL
;
2611 struct nfsd4_session
*new;
2612 struct nfsd4_conn
*conn
;
2613 struct nfsd4_clid_slot
*cs_slot
= NULL
;
2615 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
2617 if (cr_ses
->flags
& ~SESSION4_FLAG_MASK_A
)
2618 return nfserr_inval
;
2619 status
= nfsd4_check_cb_sec(&cr_ses
->cb_sec
);
2622 status
= check_forechannel_attrs(&cr_ses
->fore_channel
, nn
);
2625 status
= check_backchannel_attrs(&cr_ses
->back_channel
);
2627 goto out_release_drc_mem
;
2628 status
= nfserr_jukebox
;
2629 new = alloc_session(&cr_ses
->fore_channel
, &cr_ses
->back_channel
);
2631 goto out_release_drc_mem
;
2632 conn
= alloc_conn_from_crses(rqstp
, cr_ses
);
2634 goto out_free_session
;
2636 spin_lock(&nn
->client_lock
);
2637 unconf
= find_unconfirmed_client(&cr_ses
->clientid
, true, nn
);
2638 conf
= find_confirmed_client(&cr_ses
->clientid
, true, nn
);
2639 WARN_ON_ONCE(conf
&& unconf
);
2642 status
= nfserr_wrong_cred
;
2643 if (!mach_creds_match(conf
, rqstp
))
2645 cs_slot
= &conf
->cl_cs_slot
;
2646 status
= check_slot_seqid(cr_ses
->seqid
, cs_slot
->sl_seqid
, 0);
2648 if (status
== nfserr_replay_cache
)
2649 status
= nfsd4_replay_create_session(cr_ses
, cs_slot
);
2652 } else if (unconf
) {
2653 if (!same_creds(&unconf
->cl_cred
, &rqstp
->rq_cred
) ||
2654 !rpc_cmp_addr(sa
, (struct sockaddr
*) &unconf
->cl_addr
)) {
2655 status
= nfserr_clid_inuse
;
2658 status
= nfserr_wrong_cred
;
2659 if (!mach_creds_match(unconf
, rqstp
))
2661 cs_slot
= &unconf
->cl_cs_slot
;
2662 status
= check_slot_seqid(cr_ses
->seqid
, cs_slot
->sl_seqid
, 0);
2664 /* an unconfirmed replay returns misordered */
2665 status
= nfserr_seq_misordered
;
2668 old
= find_confirmed_client_by_name(&unconf
->cl_name
, nn
);
2670 status
= mark_client_expired_locked(old
);
2676 move_to_confirmed(unconf
);
2679 status
= nfserr_stale_clientid
;
2684 * We do not support RDMA or persistent sessions
2686 cr_ses
->flags
&= ~SESSION4_PERSIST
;
2687 cr_ses
->flags
&= ~SESSION4_RDMA
;
2689 init_session(rqstp
, new, conf
, cr_ses
);
2690 nfsd4_get_session_locked(new);
2692 memcpy(cr_ses
->sessionid
.data
, new->se_sessionid
.data
,
2693 NFS4_MAX_SESSIONID_LEN
);
2694 cs_slot
->sl_seqid
++;
2695 cr_ses
->seqid
= cs_slot
->sl_seqid
;
2697 /* cache solo and embedded create sessions under the client_lock */
2698 nfsd4_cache_create_session(cr_ses
, cs_slot
, status
);
2699 spin_unlock(&nn
->client_lock
);
2700 /* init connection and backchannel */
2701 nfsd4_init_conn(rqstp
, conn
, new);
2702 nfsd4_put_session(new);
2707 spin_unlock(&nn
->client_lock
);
2712 __free_session(new);
2713 out_release_drc_mem
:
2714 nfsd4_put_drc_mem(&cr_ses
->fore_channel
);
2718 static __be32
nfsd4_map_bcts_dir(u32
*dir
)
2721 case NFS4_CDFC4_FORE
:
2722 case NFS4_CDFC4_BACK
:
2724 case NFS4_CDFC4_FORE_OR_BOTH
:
2725 case NFS4_CDFC4_BACK_OR_BOTH
:
2726 *dir
= NFS4_CDFC4_BOTH
;
2729 return nfserr_inval
;
2732 __be32
nfsd4_backchannel_ctl(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
, struct nfsd4_backchannel_ctl
*bc
)
2734 struct nfsd4_session
*session
= cstate
->session
;
2735 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
2738 status
= nfsd4_check_cb_sec(&bc
->bc_cb_sec
);
2741 spin_lock(&nn
->client_lock
);
2742 session
->se_cb_prog
= bc
->bc_cb_program
;
2743 session
->se_cb_sec
= bc
->bc_cb_sec
;
2744 spin_unlock(&nn
->client_lock
);
2746 nfsd4_probe_callback(session
->se_client
);
2751 __be32
nfsd4_bind_conn_to_session(struct svc_rqst
*rqstp
,
2752 struct nfsd4_compound_state
*cstate
,
2753 struct nfsd4_bind_conn_to_session
*bcts
)
2756 struct nfsd4_conn
*conn
;
2757 struct nfsd4_session
*session
;
2758 struct net
*net
= SVC_NET(rqstp
);
2759 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
2761 if (!nfsd4_last_compound_op(rqstp
))
2762 return nfserr_not_only_op
;
2763 spin_lock(&nn
->client_lock
);
2764 session
= find_in_sessionid_hashtbl(&bcts
->sessionid
, net
, &status
);
2765 spin_unlock(&nn
->client_lock
);
2767 goto out_no_session
;
2768 status
= nfserr_wrong_cred
;
2769 if (!mach_creds_match(session
->se_client
, rqstp
))
2771 status
= nfsd4_map_bcts_dir(&bcts
->dir
);
2774 conn
= alloc_conn(rqstp
, bcts
->dir
);
2775 status
= nfserr_jukebox
;
2778 nfsd4_init_conn(rqstp
, conn
, session
);
2781 nfsd4_put_session(session
);
2786 static bool nfsd4_compound_in_session(struct nfsd4_session
*session
, struct nfs4_sessionid
*sid
)
2790 return !memcmp(sid
, &session
->se_sessionid
, sizeof(*sid
));
2794 nfsd4_destroy_session(struct svc_rqst
*r
,
2795 struct nfsd4_compound_state
*cstate
,
2796 struct nfsd4_destroy_session
*sessionid
)
2798 struct nfsd4_session
*ses
;
2800 int ref_held_by_me
= 0;
2801 struct net
*net
= SVC_NET(r
);
2802 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
2804 status
= nfserr_not_only_op
;
2805 if (nfsd4_compound_in_session(cstate
->session
, &sessionid
->sessionid
)) {
2806 if (!nfsd4_last_compound_op(r
))
2810 dump_sessionid(__func__
, &sessionid
->sessionid
);
2811 spin_lock(&nn
->client_lock
);
2812 ses
= find_in_sessionid_hashtbl(&sessionid
->sessionid
, net
, &status
);
2814 goto out_client_lock
;
2815 status
= nfserr_wrong_cred
;
2816 if (!mach_creds_match(ses
->se_client
, r
))
2817 goto out_put_session
;
2818 status
= mark_session_dead_locked(ses
, 1 + ref_held_by_me
);
2820 goto out_put_session
;
2821 unhash_session(ses
);
2822 spin_unlock(&nn
->client_lock
);
2824 nfsd4_probe_callback_sync(ses
->se_client
);
2826 spin_lock(&nn
->client_lock
);
2829 nfsd4_put_session_locked(ses
);
2831 spin_unlock(&nn
->client_lock
);
2836 static struct nfsd4_conn
*__nfsd4_find_conn(struct svc_xprt
*xpt
, struct nfsd4_session
*s
)
2838 struct nfsd4_conn
*c
;
2840 list_for_each_entry(c
, &s
->se_conns
, cn_persession
) {
2841 if (c
->cn_xprt
== xpt
) {
2848 static __be32
nfsd4_sequence_check_conn(struct nfsd4_conn
*new, struct nfsd4_session
*ses
)
2850 struct nfs4_client
*clp
= ses
->se_client
;
2851 struct nfsd4_conn
*c
;
2852 __be32 status
= nfs_ok
;
2855 spin_lock(&clp
->cl_lock
);
2856 c
= __nfsd4_find_conn(new->cn_xprt
, ses
);
2859 status
= nfserr_conn_not_bound_to_session
;
2860 if (clp
->cl_mach_cred
)
2862 __nfsd4_hash_conn(new, ses
);
2863 spin_unlock(&clp
->cl_lock
);
2864 ret
= nfsd4_register_conn(new);
2866 /* oops; xprt is already down: */
2867 nfsd4_conn_lost(&new->cn_xpt_user
);
2870 spin_unlock(&clp
->cl_lock
);
2875 static bool nfsd4_session_too_many_ops(struct svc_rqst
*rqstp
, struct nfsd4_session
*session
)
2877 struct nfsd4_compoundargs
*args
= rqstp
->rq_argp
;
2879 return args
->opcnt
> session
->se_fchannel
.maxops
;
2882 static bool nfsd4_request_too_big(struct svc_rqst
*rqstp
,
2883 struct nfsd4_session
*session
)
2885 struct xdr_buf
*xb
= &rqstp
->rq_arg
;
2887 return xb
->len
> session
->se_fchannel
.maxreq_sz
;
2891 nfsd4_sequence(struct svc_rqst
*rqstp
,
2892 struct nfsd4_compound_state
*cstate
,
2893 struct nfsd4_sequence
*seq
)
2895 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
2896 struct xdr_stream
*xdr
= &resp
->xdr
;
2897 struct nfsd4_session
*session
;
2898 struct nfs4_client
*clp
;
2899 struct nfsd4_slot
*slot
;
2900 struct nfsd4_conn
*conn
;
2903 struct net
*net
= SVC_NET(rqstp
);
2904 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
2906 if (resp
->opcnt
!= 1)
2907 return nfserr_sequence_pos
;
2910 * Will be either used or freed by nfsd4_sequence_check_conn
2913 conn
= alloc_conn(rqstp
, NFS4_CDFC4_FORE
);
2915 return nfserr_jukebox
;
2917 spin_lock(&nn
->client_lock
);
2918 session
= find_in_sessionid_hashtbl(&seq
->sessionid
, net
, &status
);
2920 goto out_no_session
;
2921 clp
= session
->se_client
;
2923 status
= nfserr_too_many_ops
;
2924 if (nfsd4_session_too_many_ops(rqstp
, session
))
2925 goto out_put_session
;
2927 status
= nfserr_req_too_big
;
2928 if (nfsd4_request_too_big(rqstp
, session
))
2929 goto out_put_session
;
2931 status
= nfserr_badslot
;
2932 if (seq
->slotid
>= session
->se_fchannel
.maxreqs
)
2933 goto out_put_session
;
2935 slot
= session
->se_slots
[seq
->slotid
];
2936 dprintk("%s: slotid %d\n", __func__
, seq
->slotid
);
2938 /* We do not negotiate the number of slots yet, so set the
2939 * maxslots to the session maxreqs which is used to encode
2940 * sr_highest_slotid and the sr_target_slot id to maxslots */
2941 seq
->maxslots
= session
->se_fchannel
.maxreqs
;
2943 status
= check_slot_seqid(seq
->seqid
, slot
->sl_seqid
,
2944 slot
->sl_flags
& NFSD4_SLOT_INUSE
);
2945 if (status
== nfserr_replay_cache
) {
2946 status
= nfserr_seq_misordered
;
2947 if (!(slot
->sl_flags
& NFSD4_SLOT_INITIALIZED
))
2948 goto out_put_session
;
2949 cstate
->slot
= slot
;
2950 cstate
->session
= session
;
2952 /* Return the cached reply status and set cstate->status
2953 * for nfsd4_proc_compound processing */
2954 status
= nfsd4_replay_cache_entry(resp
, seq
);
2955 cstate
->status
= nfserr_replay_cache
;
2959 goto out_put_session
;
2961 status
= nfsd4_sequence_check_conn(conn
, session
);
2964 goto out_put_session
;
2966 buflen
= (seq
->cachethis
) ?
2967 session
->se_fchannel
.maxresp_cached
:
2968 session
->se_fchannel
.maxresp_sz
;
2969 status
= (seq
->cachethis
) ? nfserr_rep_too_big_to_cache
:
2971 if (xdr_restrict_buflen(xdr
, buflen
- rqstp
->rq_auth_slack
))
2972 goto out_put_session
;
2973 svc_reserve(rqstp
, buflen
);
2976 /* Success! bump slot seqid */
2977 slot
->sl_seqid
= seq
->seqid
;
2978 slot
->sl_flags
|= NFSD4_SLOT_INUSE
;
2980 slot
->sl_flags
|= NFSD4_SLOT_CACHETHIS
;
2982 slot
->sl_flags
&= ~NFSD4_SLOT_CACHETHIS
;
2984 cstate
->slot
= slot
;
2985 cstate
->session
= session
;
2989 switch (clp
->cl_cb_state
) {
2991 seq
->status_flags
= SEQ4_STATUS_CB_PATH_DOWN
;
2993 case NFSD4_CB_FAULT
:
2994 seq
->status_flags
= SEQ4_STATUS_BACKCHANNEL_FAULT
;
2997 seq
->status_flags
= 0;
2999 if (!list_empty(&clp
->cl_revoked
))
3000 seq
->status_flags
|= SEQ4_STATUS_RECALLABLE_STATE_REVOKED
;
3004 spin_unlock(&nn
->client_lock
);
3007 nfsd4_put_session_locked(session
);
3008 goto out_no_session
;
3012 nfsd4_sequence_done(struct nfsd4_compoundres
*resp
)
3014 struct nfsd4_compound_state
*cs
= &resp
->cstate
;
3016 if (nfsd4_has_session(cs
)) {
3017 if (cs
->status
!= nfserr_replay_cache
) {
3018 nfsd4_store_cache_entry(resp
);
3019 cs
->slot
->sl_flags
&= ~NFSD4_SLOT_INUSE
;
3021 /* Drop session reference that was taken in nfsd4_sequence() */
3022 nfsd4_put_session(cs
->session
);
3024 put_client_renew(cs
->clp
);
3028 nfsd4_destroy_clientid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
, struct nfsd4_destroy_clientid
*dc
)
3030 struct nfs4_client
*conf
, *unconf
;
3031 struct nfs4_client
*clp
= NULL
;
3033 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
3035 spin_lock(&nn
->client_lock
);
3036 unconf
= find_unconfirmed_client(&dc
->clientid
, true, nn
);
3037 conf
= find_confirmed_client(&dc
->clientid
, true, nn
);
3038 WARN_ON_ONCE(conf
&& unconf
);
3041 if (client_has_state(conf
)) {
3042 status
= nfserr_clientid_busy
;
3045 status
= mark_client_expired_locked(conf
);
3052 status
= nfserr_stale_clientid
;
3055 if (!mach_creds_match(clp
, rqstp
)) {
3057 status
= nfserr_wrong_cred
;
3060 unhash_client_locked(clp
);
3062 spin_unlock(&nn
->client_lock
);
3069 nfsd4_reclaim_complete(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
, struct nfsd4_reclaim_complete
*rc
)
3073 if (rc
->rca_one_fs
) {
3074 if (!cstate
->current_fh
.fh_dentry
)
3075 return nfserr_nofilehandle
;
3077 * We don't take advantage of the rca_one_fs case.
3078 * That's OK, it's optional, we can safely ignore it.
3083 status
= nfserr_complete_already
;
3084 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE
,
3085 &cstate
->session
->se_client
->cl_flags
))
3088 status
= nfserr_stale_clientid
;
3089 if (is_client_expired(cstate
->session
->se_client
))
3091 * The following error isn't really legal.
3092 * But we only get here if the client just explicitly
3093 * destroyed the client. Surely it no longer cares what
3094 * error it gets back on an operation for the dead
3100 nfsd4_client_record_create(cstate
->session
->se_client
);
3106 nfsd4_setclientid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
3107 struct nfsd4_setclientid
*setclid
)
3109 struct xdr_netobj clname
= setclid
->se_name
;
3110 nfs4_verifier clverifier
= setclid
->se_verf
;
3111 struct nfs4_client
*conf
, *new;
3112 struct nfs4_client
*unconf
= NULL
;
3114 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
3116 new = create_client(clname
, rqstp
, &clverifier
);
3118 return nfserr_jukebox
;
3119 /* Cases below refer to rfc 3530 section 14.2.33: */
3120 spin_lock(&nn
->client_lock
);
3121 conf
= find_confirmed_client_by_name(&clname
, nn
);
3122 if (conf
&& client_has_state(conf
)) {
3124 status
= nfserr_clid_inuse
;
3125 if (clp_used_exchangeid(conf
))
3127 if (!same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
)) {
3128 char addr_str
[INET6_ADDRSTRLEN
];
3129 rpc_ntop((struct sockaddr
*) &conf
->cl_addr
, addr_str
,
3131 dprintk("NFSD: setclientid: string in use by client "
3132 "at %s\n", addr_str
);
3136 unconf
= find_unconfirmed_client_by_name(&clname
, nn
);
3138 unhash_client_locked(unconf
);
3139 if (conf
&& same_verf(&conf
->cl_verifier
, &clverifier
)) {
3140 /* case 1: probable callback update */
3141 copy_clid(new, conf
);
3142 gen_confirm(new, nn
);
3143 } else /* case 4 (new client) or cases 2, 3 (client reboot): */
3145 new->cl_minorversion
= 0;
3146 gen_callback(new, setclid
, rqstp
);
3147 add_to_unconfirmed(new);
3148 setclid
->se_clientid
.cl_boot
= new->cl_clientid
.cl_boot
;
3149 setclid
->se_clientid
.cl_id
= new->cl_clientid
.cl_id
;
3150 memcpy(setclid
->se_confirm
.data
, new->cl_confirm
.data
, sizeof(setclid
->se_confirm
.data
));
3154 spin_unlock(&nn
->client_lock
);
3158 expire_client(unconf
);
3164 nfsd4_setclientid_confirm(struct svc_rqst
*rqstp
,
3165 struct nfsd4_compound_state
*cstate
,
3166 struct nfsd4_setclientid_confirm
*setclientid_confirm
)
3168 struct nfs4_client
*conf
, *unconf
;
3169 struct nfs4_client
*old
= NULL
;
3170 nfs4_verifier confirm
= setclientid_confirm
->sc_confirm
;
3171 clientid_t
* clid
= &setclientid_confirm
->sc_clientid
;
3173 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
3175 if (STALE_CLIENTID(clid
, nn
))
3176 return nfserr_stale_clientid
;
3178 spin_lock(&nn
->client_lock
);
3179 conf
= find_confirmed_client(clid
, false, nn
);
3180 unconf
= find_unconfirmed_client(clid
, false, nn
);
3182 * We try hard to give out unique clientid's, so if we get an
3183 * attempt to confirm the same clientid with a different cred,
3184 * the client may be buggy; this should never happen.
3186 * Nevertheless, RFC 7530 recommends INUSE for this case:
3188 status
= nfserr_clid_inuse
;
3189 if (unconf
&& !same_creds(&unconf
->cl_cred
, &rqstp
->rq_cred
))
3191 if (conf
&& !same_creds(&conf
->cl_cred
, &rqstp
->rq_cred
))
3193 /* cases below refer to rfc 3530 section 14.2.34: */
3194 if (!unconf
|| !same_verf(&confirm
, &unconf
->cl_confirm
)) {
3195 if (conf
&& !unconf
) /* case 2: probable retransmit */
3197 else /* case 4: client hasn't noticed we rebooted yet? */
3198 status
= nfserr_stale_clientid
;
3202 if (conf
) { /* case 1: callback update */
3204 unhash_client_locked(old
);
3205 nfsd4_change_callback(conf
, &unconf
->cl_cb_conn
);
3206 } else { /* case 3: normal case; new or rebooted client */
3207 old
= find_confirmed_client_by_name(&unconf
->cl_name
, nn
);
3209 status
= nfserr_clid_inuse
;
3210 if (client_has_state(old
)
3211 && !same_creds(&unconf
->cl_cred
,
3214 status
= mark_client_expired_locked(old
);
3220 move_to_confirmed(unconf
);
3223 get_client_locked(conf
);
3224 spin_unlock(&nn
->client_lock
);
3225 nfsd4_probe_callback(conf
);
3226 spin_lock(&nn
->client_lock
);
3227 put_client_renew_locked(conf
);
3229 spin_unlock(&nn
->client_lock
);
3235 static struct nfs4_file
*nfsd4_alloc_file(void)
3237 return kmem_cache_alloc(file_slab
, GFP_KERNEL
);
3240 /* OPEN Share state helper functions */
3241 static void nfsd4_init_file(struct knfsd_fh
*fh
, unsigned int hashval
,
3242 struct nfs4_file
*fp
)
3244 lockdep_assert_held(&state_lock
);
3246 atomic_set(&fp
->fi_ref
, 1);
3247 spin_lock_init(&fp
->fi_lock
);
3248 INIT_LIST_HEAD(&fp
->fi_stateids
);
3249 INIT_LIST_HEAD(&fp
->fi_delegations
);
3250 INIT_LIST_HEAD(&fp
->fi_clnt_odstate
);
3251 fh_copy_shallow(&fp
->fi_fhandle
, fh
);
3252 fp
->fi_deleg_file
= NULL
;
3253 fp
->fi_had_conflict
= false;
3254 fp
->fi_share_deny
= 0;
3255 memset(fp
->fi_fds
, 0, sizeof(fp
->fi_fds
));
3256 memset(fp
->fi_access
, 0, sizeof(fp
->fi_access
));
3257 #ifdef CONFIG_NFSD_PNFS
3258 INIT_LIST_HEAD(&fp
->fi_lo_states
);
3259 atomic_set(&fp
->fi_lo_recalls
, 0);
3261 hlist_add_head_rcu(&fp
->fi_hash
, &file_hashtbl
[hashval
]);
3265 nfsd4_free_slabs(void)
3267 kmem_cache_destroy(odstate_slab
);
3268 kmem_cache_destroy(openowner_slab
);
3269 kmem_cache_destroy(lockowner_slab
);
3270 kmem_cache_destroy(file_slab
);
3271 kmem_cache_destroy(stateid_slab
);
3272 kmem_cache_destroy(deleg_slab
);
3276 nfsd4_init_slabs(void)
3278 openowner_slab
= kmem_cache_create("nfsd4_openowners",
3279 sizeof(struct nfs4_openowner
), 0, 0, NULL
);
3280 if (openowner_slab
== NULL
)
3282 lockowner_slab
= kmem_cache_create("nfsd4_lockowners",
3283 sizeof(struct nfs4_lockowner
), 0, 0, NULL
);
3284 if (lockowner_slab
== NULL
)
3285 goto out_free_openowner_slab
;
3286 file_slab
= kmem_cache_create("nfsd4_files",
3287 sizeof(struct nfs4_file
), 0, 0, NULL
);
3288 if (file_slab
== NULL
)
3289 goto out_free_lockowner_slab
;
3290 stateid_slab
= kmem_cache_create("nfsd4_stateids",
3291 sizeof(struct nfs4_ol_stateid
), 0, 0, NULL
);
3292 if (stateid_slab
== NULL
)
3293 goto out_free_file_slab
;
3294 deleg_slab
= kmem_cache_create("nfsd4_delegations",
3295 sizeof(struct nfs4_delegation
), 0, 0, NULL
);
3296 if (deleg_slab
== NULL
)
3297 goto out_free_stateid_slab
;
3298 odstate_slab
= kmem_cache_create("nfsd4_odstate",
3299 sizeof(struct nfs4_clnt_odstate
), 0, 0, NULL
);
3300 if (odstate_slab
== NULL
)
3301 goto out_free_deleg_slab
;
3304 out_free_deleg_slab
:
3305 kmem_cache_destroy(deleg_slab
);
3306 out_free_stateid_slab
:
3307 kmem_cache_destroy(stateid_slab
);
3309 kmem_cache_destroy(file_slab
);
3310 out_free_lockowner_slab
:
3311 kmem_cache_destroy(lockowner_slab
);
3312 out_free_openowner_slab
:
3313 kmem_cache_destroy(openowner_slab
);
3315 dprintk("nfsd4: out of memory while initializing nfsv4\n");
3319 static void init_nfs4_replay(struct nfs4_replay
*rp
)
3321 rp
->rp_status
= nfserr_serverfault
;
3323 rp
->rp_buf
= rp
->rp_ibuf
;
3324 mutex_init(&rp
->rp_mutex
);
3327 static void nfsd4_cstate_assign_replay(struct nfsd4_compound_state
*cstate
,
3328 struct nfs4_stateowner
*so
)
3330 if (!nfsd4_has_session(cstate
)) {
3331 mutex_lock(&so
->so_replay
.rp_mutex
);
3332 cstate
->replay_owner
= nfs4_get_stateowner(so
);
3336 void nfsd4_cstate_clear_replay(struct nfsd4_compound_state
*cstate
)
3338 struct nfs4_stateowner
*so
= cstate
->replay_owner
;
3341 cstate
->replay_owner
= NULL
;
3342 mutex_unlock(&so
->so_replay
.rp_mutex
);
3343 nfs4_put_stateowner(so
);
3347 static inline void *alloc_stateowner(struct kmem_cache
*slab
, struct xdr_netobj
*owner
, struct nfs4_client
*clp
)
3349 struct nfs4_stateowner
*sop
;
3351 sop
= kmem_cache_alloc(slab
, GFP_KERNEL
);
3355 sop
->so_owner
.data
= kmemdup(owner
->data
, owner
->len
, GFP_KERNEL
);
3356 if (!sop
->so_owner
.data
) {
3357 kmem_cache_free(slab
, sop
);
3360 sop
->so_owner
.len
= owner
->len
;
3362 INIT_LIST_HEAD(&sop
->so_stateids
);
3363 sop
->so_client
= clp
;
3364 init_nfs4_replay(&sop
->so_replay
);
3365 atomic_set(&sop
->so_count
, 1);
3369 static void hash_openowner(struct nfs4_openowner
*oo
, struct nfs4_client
*clp
, unsigned int strhashval
)
3371 lockdep_assert_held(&clp
->cl_lock
);
3373 list_add(&oo
->oo_owner
.so_strhash
,
3374 &clp
->cl_ownerstr_hashtbl
[strhashval
]);
3375 list_add(&oo
->oo_perclient
, &clp
->cl_openowners
);
3378 static void nfs4_unhash_openowner(struct nfs4_stateowner
*so
)
3380 unhash_openowner_locked(openowner(so
));
3383 static void nfs4_free_openowner(struct nfs4_stateowner
*so
)
3385 struct nfs4_openowner
*oo
= openowner(so
);
3387 kmem_cache_free(openowner_slab
, oo
);
3390 static const struct nfs4_stateowner_operations openowner_ops
= {
3391 .so_unhash
= nfs4_unhash_openowner
,
3392 .so_free
= nfs4_free_openowner
,
3395 static struct nfs4_ol_stateid
*
3396 nfsd4_find_existing_open(struct nfs4_file
*fp
, struct nfsd4_open
*open
)
3398 struct nfs4_ol_stateid
*local
, *ret
= NULL
;
3399 struct nfs4_openowner
*oo
= open
->op_openowner
;
3401 lockdep_assert_held(&fp
->fi_lock
);
3403 list_for_each_entry(local
, &fp
->fi_stateids
, st_perfile
) {
3404 /* ignore lock owners */
3405 if (local
->st_stateowner
->so_is_open_owner
== 0)
3407 if (local
->st_stateowner
== &oo
->oo_owner
) {
3409 atomic_inc(&ret
->st_stid
.sc_count
);
3416 static struct nfs4_openowner
*
3417 alloc_init_open_stateowner(unsigned int strhashval
, struct nfsd4_open
*open
,
3418 struct nfsd4_compound_state
*cstate
)
3420 struct nfs4_client
*clp
= cstate
->clp
;
3421 struct nfs4_openowner
*oo
, *ret
;
3423 oo
= alloc_stateowner(openowner_slab
, &open
->op_owner
, clp
);
3426 oo
->oo_owner
.so_ops
= &openowner_ops
;
3427 oo
->oo_owner
.so_is_open_owner
= 1;
3428 oo
->oo_owner
.so_seqid
= open
->op_seqid
;
3430 if (nfsd4_has_session(cstate
))
3431 oo
->oo_flags
|= NFS4_OO_CONFIRMED
;
3433 oo
->oo_last_closed_stid
= NULL
;
3434 INIT_LIST_HEAD(&oo
->oo_close_lru
);
3435 spin_lock(&clp
->cl_lock
);
3436 ret
= find_openstateowner_str_locked(strhashval
, open
, clp
);
3438 hash_openowner(oo
, clp
, strhashval
);
3441 nfs4_free_stateowner(&oo
->oo_owner
);
3443 spin_unlock(&clp
->cl_lock
);
3447 static struct nfs4_ol_stateid
*
3448 init_open_stateid(struct nfs4_ol_stateid
*stp
, struct nfs4_file
*fp
,
3449 struct nfsd4_open
*open
)
3452 struct nfs4_openowner
*oo
= open
->op_openowner
;
3453 struct nfs4_ol_stateid
*retstp
= NULL
;
3455 spin_lock(&oo
->oo_owner
.so_client
->cl_lock
);
3456 spin_lock(&fp
->fi_lock
);
3458 retstp
= nfsd4_find_existing_open(fp
, open
);
3461 atomic_inc(&stp
->st_stid
.sc_count
);
3462 stp
->st_stid
.sc_type
= NFS4_OPEN_STID
;
3463 INIT_LIST_HEAD(&stp
->st_locks
);
3464 stp
->st_stateowner
= nfs4_get_stateowner(&oo
->oo_owner
);
3466 stp
->st_stid
.sc_file
= fp
;
3467 stp
->st_access_bmap
= 0;
3468 stp
->st_deny_bmap
= 0;
3469 stp
->st_openstp
= NULL
;
3470 init_rwsem(&stp
->st_rwsem
);
3471 list_add(&stp
->st_perstateowner
, &oo
->oo_owner
.so_stateids
);
3472 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
3475 spin_unlock(&fp
->fi_lock
);
3476 spin_unlock(&oo
->oo_owner
.so_client
->cl_lock
);
3481 * In the 4.0 case we need to keep the owners around a little while to handle
3482 * CLOSE replay. We still do need to release any file access that is held by
3483 * them before returning however.
3486 move_to_close_lru(struct nfs4_ol_stateid
*s
, struct net
*net
)
3488 struct nfs4_ol_stateid
*last
;
3489 struct nfs4_openowner
*oo
= openowner(s
->st_stateowner
);
3490 struct nfsd_net
*nn
= net_generic(s
->st_stid
.sc_client
->net
,
3493 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo
);
3496 * We know that we hold one reference via nfsd4_close, and another
3497 * "persistent" reference for the client. If the refcount is higher
3498 * than 2, then there are still calls in progress that are using this
3499 * stateid. We can't put the sc_file reference until they are finished.
3500 * Wait for the refcount to drop to 2. Since it has been unhashed,
3501 * there should be no danger of the refcount going back up again at
3504 wait_event(close_wq
, atomic_read(&s
->st_stid
.sc_count
) == 2);
3506 release_all_access(s
);
3507 if (s
->st_stid
.sc_file
) {
3508 put_nfs4_file(s
->st_stid
.sc_file
);
3509 s
->st_stid
.sc_file
= NULL
;
3512 spin_lock(&nn
->client_lock
);
3513 last
= oo
->oo_last_closed_stid
;
3514 oo
->oo_last_closed_stid
= s
;
3515 list_move_tail(&oo
->oo_close_lru
, &nn
->close_lru
);
3516 oo
->oo_time
= get_seconds();
3517 spin_unlock(&nn
->client_lock
);
3519 nfs4_put_stid(&last
->st_stid
);
3522 /* search file_hashtbl[] for file */
3523 static struct nfs4_file
*
3524 find_file_locked(struct knfsd_fh
*fh
, unsigned int hashval
)
3526 struct nfs4_file
*fp
;
3528 hlist_for_each_entry_rcu(fp
, &file_hashtbl
[hashval
], fi_hash
) {
3529 if (fh_match(&fp
->fi_fhandle
, fh
)) {
3530 if (atomic_inc_not_zero(&fp
->fi_ref
))
3538 find_file(struct knfsd_fh
*fh
)
3540 struct nfs4_file
*fp
;
3541 unsigned int hashval
= file_hashval(fh
);
3544 fp
= find_file_locked(fh
, hashval
);
3549 static struct nfs4_file
*
3550 find_or_add_file(struct nfs4_file
*new, struct knfsd_fh
*fh
)
3552 struct nfs4_file
*fp
;
3553 unsigned int hashval
= file_hashval(fh
);
3556 fp
= find_file_locked(fh
, hashval
);
3561 spin_lock(&state_lock
);
3562 fp
= find_file_locked(fh
, hashval
);
3563 if (likely(fp
== NULL
)) {
3564 nfsd4_init_file(fh
, hashval
, new);
3567 spin_unlock(&state_lock
);
3573 * Called to check deny when READ with all zero stateid or
3574 * WRITE with all zero or all one stateid
3577 nfs4_share_conflict(struct svc_fh
*current_fh
, unsigned int deny_type
)
3579 struct nfs4_file
*fp
;
3580 __be32 ret
= nfs_ok
;
3582 fp
= find_file(¤t_fh
->fh_handle
);
3585 /* Check for conflicting share reservations */
3586 spin_lock(&fp
->fi_lock
);
3587 if (fp
->fi_share_deny
& deny_type
)
3588 ret
= nfserr_locked
;
3589 spin_unlock(&fp
->fi_lock
);
3594 static void nfsd4_cb_recall_prepare(struct nfsd4_callback
*cb
)
3596 struct nfs4_delegation
*dp
= cb_to_delegation(cb
);
3597 struct nfsd_net
*nn
= net_generic(dp
->dl_stid
.sc_client
->net
,
3600 block_delegations(&dp
->dl_stid
.sc_file
->fi_fhandle
);
3603 * We can't do this in nfsd_break_deleg_cb because it is
3604 * already holding inode->i_lock.
3606 * If the dl_time != 0, then we know that it has already been
3607 * queued for a lease break. Don't queue it again.
3609 spin_lock(&state_lock
);
3610 if (dp
->dl_time
== 0) {
3611 dp
->dl_time
= get_seconds();
3612 list_add_tail(&dp
->dl_recall_lru
, &nn
->del_recall_lru
);
3614 spin_unlock(&state_lock
);
3617 static int nfsd4_cb_recall_done(struct nfsd4_callback
*cb
,
3618 struct rpc_task
*task
)
3620 struct nfs4_delegation
*dp
= cb_to_delegation(cb
);
3622 if (dp
->dl_stid
.sc_type
== NFS4_CLOSED_DELEG_STID
)
3625 switch (task
->tk_status
) {
3629 case -NFS4ERR_BAD_STATEID
:
3631 * Race: client probably got cb_recall before open reply
3632 * granting delegation.
3634 if (dp
->dl_retries
--) {
3635 rpc_delay(task
, 2 * HZ
);
3644 static void nfsd4_cb_recall_release(struct nfsd4_callback
*cb
)
3646 struct nfs4_delegation
*dp
= cb_to_delegation(cb
);
3648 nfs4_put_stid(&dp
->dl_stid
);
3651 static struct nfsd4_callback_ops nfsd4_cb_recall_ops
= {
3652 .prepare
= nfsd4_cb_recall_prepare
,
3653 .done
= nfsd4_cb_recall_done
,
3654 .release
= nfsd4_cb_recall_release
,
3657 static void nfsd_break_one_deleg(struct nfs4_delegation
*dp
)
3660 * We're assuming the state code never drops its reference
3661 * without first removing the lease. Since we're in this lease
3662 * callback (and since the lease code is serialized by the kernel
3663 * lock) we know the server hasn't removed the lease yet, we know
3664 * it's safe to take a reference.
3666 atomic_inc(&dp
->dl_stid
.sc_count
);
3667 nfsd4_run_cb(&dp
->dl_recall
);
3670 /* Called from break_lease() with i_lock held. */
3672 nfsd_break_deleg_cb(struct file_lock
*fl
)
3675 struct nfs4_file
*fp
= (struct nfs4_file
*)fl
->fl_owner
;
3676 struct nfs4_delegation
*dp
;
3679 WARN(1, "(%p)->fl_owner NULL\n", fl
);
3682 if (fp
->fi_had_conflict
) {
3683 WARN(1, "duplicate break on %p\n", fp
);
3687 * We don't want the locks code to timeout the lease for us;
3688 * we'll remove it ourself if a delegation isn't returned
3691 fl
->fl_break_time
= 0;
3693 spin_lock(&fp
->fi_lock
);
3694 fp
->fi_had_conflict
= true;
3696 * If there are no delegations on the list, then return true
3697 * so that the lease code will go ahead and delete it.
3699 if (list_empty(&fp
->fi_delegations
))
3702 list_for_each_entry(dp
, &fp
->fi_delegations
, dl_perfile
)
3703 nfsd_break_one_deleg(dp
);
3704 spin_unlock(&fp
->fi_lock
);
3709 nfsd_change_deleg_cb(struct file_lock
*onlist
, int arg
,
3710 struct list_head
*dispose
)
3713 return lease_modify(onlist
, arg
, dispose
);
3718 static const struct lock_manager_operations nfsd_lease_mng_ops
= {
3719 .lm_break
= nfsd_break_deleg_cb
,
3720 .lm_change
= nfsd_change_deleg_cb
,
3723 static __be32
nfsd4_check_seqid(struct nfsd4_compound_state
*cstate
, struct nfs4_stateowner
*so
, u32 seqid
)
3725 if (nfsd4_has_session(cstate
))
3727 if (seqid
== so
->so_seqid
- 1)
3728 return nfserr_replay_me
;
3729 if (seqid
== so
->so_seqid
)
3731 return nfserr_bad_seqid
;
3734 static __be32
lookup_clientid(clientid_t
*clid
,
3735 struct nfsd4_compound_state
*cstate
,
3736 struct nfsd_net
*nn
)
3738 struct nfs4_client
*found
;
3741 found
= cstate
->clp
;
3742 if (!same_clid(&found
->cl_clientid
, clid
))
3743 return nfserr_stale_clientid
;
3747 if (STALE_CLIENTID(clid
, nn
))
3748 return nfserr_stale_clientid
;
3751 * For v4.1+ we get the client in the SEQUENCE op. If we don't have one
3752 * cached already then we know this is for is for v4.0 and "sessions"
3755 WARN_ON_ONCE(cstate
->session
);
3756 spin_lock(&nn
->client_lock
);
3757 found
= find_confirmed_client(clid
, false, nn
);
3759 spin_unlock(&nn
->client_lock
);
3760 return nfserr_expired
;
3762 atomic_inc(&found
->cl_refcount
);
3763 spin_unlock(&nn
->client_lock
);
3765 /* Cache the nfs4_client in cstate! */
3766 cstate
->clp
= found
;
3771 nfsd4_process_open1(struct nfsd4_compound_state
*cstate
,
3772 struct nfsd4_open
*open
, struct nfsd_net
*nn
)
3774 clientid_t
*clientid
= &open
->op_clientid
;
3775 struct nfs4_client
*clp
= NULL
;
3776 unsigned int strhashval
;
3777 struct nfs4_openowner
*oo
= NULL
;
3780 if (STALE_CLIENTID(&open
->op_clientid
, nn
))
3781 return nfserr_stale_clientid
;
3783 * In case we need it later, after we've already created the
3784 * file and don't want to risk a further failure:
3786 open
->op_file
= nfsd4_alloc_file();
3787 if (open
->op_file
== NULL
)
3788 return nfserr_jukebox
;
3790 status
= lookup_clientid(clientid
, cstate
, nn
);
3795 strhashval
= ownerstr_hashval(&open
->op_owner
);
3796 oo
= find_openstateowner_str(strhashval
, open
, clp
);
3797 open
->op_openowner
= oo
;
3801 if (!(oo
->oo_flags
& NFS4_OO_CONFIRMED
)) {
3802 /* Replace unconfirmed owners without checking for replay. */
3803 release_openowner(oo
);
3804 open
->op_openowner
= NULL
;
3807 status
= nfsd4_check_seqid(cstate
, &oo
->oo_owner
, open
->op_seqid
);
3812 oo
= alloc_init_open_stateowner(strhashval
, open
, cstate
);
3814 return nfserr_jukebox
;
3815 open
->op_openowner
= oo
;
3817 open
->op_stp
= nfs4_alloc_open_stateid(clp
);
3819 return nfserr_jukebox
;
3821 if (nfsd4_has_session(cstate
) &&
3822 (cstate
->current_fh
.fh_export
->ex_flags
& NFSEXP_PNFS
)) {
3823 open
->op_odstate
= alloc_clnt_odstate(clp
);
3824 if (!open
->op_odstate
)
3825 return nfserr_jukebox
;
3831 static inline __be32
3832 nfs4_check_delegmode(struct nfs4_delegation
*dp
, int flags
)
3834 if ((flags
& WR_STATE
) && (dp
->dl_type
== NFS4_OPEN_DELEGATE_READ
))
3835 return nfserr_openmode
;
3840 static int share_access_to_flags(u32 share_access
)
3842 return share_access
== NFS4_SHARE_ACCESS_READ
? RD_STATE
: WR_STATE
;
3845 static struct nfs4_delegation
*find_deleg_stateid(struct nfs4_client
*cl
, stateid_t
*s
)
3847 struct nfs4_stid
*ret
;
3849 ret
= find_stateid_by_type(cl
, s
, NFS4_DELEG_STID
);
3852 return delegstateid(ret
);
3855 static bool nfsd4_is_deleg_cur(struct nfsd4_open
*open
)
3857 return open
->op_claim_type
== NFS4_OPEN_CLAIM_DELEGATE_CUR
||
3858 open
->op_claim_type
== NFS4_OPEN_CLAIM_DELEG_CUR_FH
;
3862 nfs4_check_deleg(struct nfs4_client
*cl
, struct nfsd4_open
*open
,
3863 struct nfs4_delegation
**dp
)
3866 __be32 status
= nfserr_bad_stateid
;
3867 struct nfs4_delegation
*deleg
;
3869 deleg
= find_deleg_stateid(cl
, &open
->op_delegate_stateid
);
3872 flags
= share_access_to_flags(open
->op_share_access
);
3873 status
= nfs4_check_delegmode(deleg
, flags
);
3875 nfs4_put_stid(&deleg
->dl_stid
);
3880 if (!nfsd4_is_deleg_cur(open
))
3884 open
->op_openowner
->oo_flags
|= NFS4_OO_CONFIRMED
;
3888 static inline int nfs4_access_to_access(u32 nfs4_access
)
3892 if (nfs4_access
& NFS4_SHARE_ACCESS_READ
)
3893 flags
|= NFSD_MAY_READ
;
3894 if (nfs4_access
& NFS4_SHARE_ACCESS_WRITE
)
3895 flags
|= NFSD_MAY_WRITE
;
3899 static inline __be32
3900 nfsd4_truncate(struct svc_rqst
*rqstp
, struct svc_fh
*fh
,
3901 struct nfsd4_open
*open
)
3903 struct iattr iattr
= {
3904 .ia_valid
= ATTR_SIZE
,
3907 if (!open
->op_truncate
)
3909 if (!(open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
))
3910 return nfserr_inval
;
3911 return nfsd_setattr(rqstp
, fh
, &iattr
, 0, (time_t)0);
3914 static __be32
nfs4_get_vfs_file(struct svc_rqst
*rqstp
, struct nfs4_file
*fp
,
3915 struct svc_fh
*cur_fh
, struct nfs4_ol_stateid
*stp
,
3916 struct nfsd4_open
*open
)
3918 struct file
*filp
= NULL
;
3920 int oflag
= nfs4_access_to_omode(open
->op_share_access
);
3921 int access
= nfs4_access_to_access(open
->op_share_access
);
3922 unsigned char old_access_bmap
, old_deny_bmap
;
3924 spin_lock(&fp
->fi_lock
);
3927 * Are we trying to set a deny mode that would conflict with
3930 status
= nfs4_file_check_deny(fp
, open
->op_share_deny
);
3931 if (status
!= nfs_ok
) {
3932 spin_unlock(&fp
->fi_lock
);
3936 /* set access to the file */
3937 status
= nfs4_file_get_access(fp
, open
->op_share_access
);
3938 if (status
!= nfs_ok
) {
3939 spin_unlock(&fp
->fi_lock
);
3943 /* Set access bits in stateid */
3944 old_access_bmap
= stp
->st_access_bmap
;
3945 set_access(open
->op_share_access
, stp
);
3947 /* Set new deny mask */
3948 old_deny_bmap
= stp
->st_deny_bmap
;
3949 set_deny(open
->op_share_deny
, stp
);
3950 fp
->fi_share_deny
|= (open
->op_share_deny
& NFS4_SHARE_DENY_BOTH
);
3952 if (!fp
->fi_fds
[oflag
]) {
3953 spin_unlock(&fp
->fi_lock
);
3954 status
= nfsd_open(rqstp
, cur_fh
, S_IFREG
, access
, &filp
);
3956 goto out_put_access
;
3957 spin_lock(&fp
->fi_lock
);
3958 if (!fp
->fi_fds
[oflag
]) {
3959 fp
->fi_fds
[oflag
] = filp
;
3963 spin_unlock(&fp
->fi_lock
);
3967 status
= nfsd4_truncate(rqstp
, cur_fh
, open
);
3969 goto out_put_access
;
3973 stp
->st_access_bmap
= old_access_bmap
;
3974 nfs4_file_put_access(fp
, open
->op_share_access
);
3975 reset_union_bmap_deny(bmap_to_share_mode(old_deny_bmap
), stp
);
3980 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
)
3983 unsigned char old_deny_bmap
= stp
->st_deny_bmap
;
3985 if (!test_access(open
->op_share_access
, stp
))
3986 return nfs4_get_vfs_file(rqstp
, fp
, cur_fh
, stp
, open
);
3988 /* test and set deny mode */
3989 spin_lock(&fp
->fi_lock
);
3990 status
= nfs4_file_check_deny(fp
, open
->op_share_deny
);
3991 if (status
== nfs_ok
) {
3992 set_deny(open
->op_share_deny
, stp
);
3993 fp
->fi_share_deny
|=
3994 (open
->op_share_deny
& NFS4_SHARE_DENY_BOTH
);
3996 spin_unlock(&fp
->fi_lock
);
3998 if (status
!= nfs_ok
)
4001 status
= nfsd4_truncate(rqstp
, cur_fh
, open
);
4002 if (status
!= nfs_ok
)
4003 reset_union_bmap_deny(old_deny_bmap
, stp
);
4007 /* Should we give out recallable state?: */
4008 static bool nfsd4_cb_channel_good(struct nfs4_client
*clp
)
4010 if (clp
->cl_cb_state
== NFSD4_CB_UP
)
4013 * In the sessions case, since we don't have to establish a
4014 * separate connection for callbacks, we assume it's OK
4015 * until we hear otherwise:
4017 return clp
->cl_minorversion
&& clp
->cl_cb_state
== NFSD4_CB_UNKNOWN
;
4020 static struct file_lock
*nfs4_alloc_init_lease(struct nfs4_file
*fp
, int flag
)
4022 struct file_lock
*fl
;
4024 fl
= locks_alloc_lock();
4027 fl
->fl_lmops
= &nfsd_lease_mng_ops
;
4028 fl
->fl_flags
= FL_DELEG
;
4029 fl
->fl_type
= flag
== NFS4_OPEN_DELEGATE_READ
? F_RDLCK
: F_WRLCK
;
4030 fl
->fl_end
= OFFSET_MAX
;
4031 fl
->fl_owner
= (fl_owner_t
)fp
;
4032 fl
->fl_pid
= current
->tgid
;
4037 * nfs4_setlease - Obtain a delegation by requesting lease from vfs layer
4038 * @dp: a pointer to the nfs4_delegation we're adding.
4041 * On success: Return code will be 0 on success.
4043 * On error: -EAGAIN if there was an existing delegation.
4044 * nonzero if there is an error in other cases.
4048 static int nfs4_setlease(struct nfs4_delegation
*dp
)
4050 struct nfs4_file
*fp
= dp
->dl_stid
.sc_file
;
4051 struct file_lock
*fl
;
4055 fl
= nfs4_alloc_init_lease(fp
, NFS4_OPEN_DELEGATE_READ
);
4058 filp
= find_readable_file(fp
);
4060 /* We should always have a readable file here */
4062 locks_free_lock(fl
);
4066 status
= vfs_setlease(filp
, fl
->fl_type
, &fl
, NULL
);
4068 locks_free_lock(fl
);
4071 spin_lock(&state_lock
);
4072 spin_lock(&fp
->fi_lock
);
4073 /* Did the lease get broken before we took the lock? */
4075 if (fp
->fi_had_conflict
)
4078 if (fp
->fi_deleg_file
) {
4079 status
= hash_delegation_locked(dp
, fp
);
4082 fp
->fi_deleg_file
= filp
;
4083 fp
->fi_delegees
= 0;
4084 status
= hash_delegation_locked(dp
, fp
);
4085 spin_unlock(&fp
->fi_lock
);
4086 spin_unlock(&state_lock
);
4088 /* Should never happen, this is a new fi_deleg_file */
4094 spin_unlock(&fp
->fi_lock
);
4095 spin_unlock(&state_lock
);
4101 static struct nfs4_delegation
*
4102 nfs4_set_delegation(struct nfs4_client
*clp
, struct svc_fh
*fh
,
4103 struct nfs4_file
*fp
, struct nfs4_clnt_odstate
*odstate
)
4106 struct nfs4_delegation
*dp
;
4108 if (fp
->fi_had_conflict
)
4109 return ERR_PTR(-EAGAIN
);
4111 spin_lock(&state_lock
);
4112 spin_lock(&fp
->fi_lock
);
4113 status
= nfs4_get_existing_delegation(clp
, fp
);
4114 spin_unlock(&fp
->fi_lock
);
4115 spin_unlock(&state_lock
);
4118 return ERR_PTR(status
);
4120 dp
= alloc_init_deleg(clp
, fh
, odstate
);
4122 return ERR_PTR(-ENOMEM
);
4125 spin_lock(&state_lock
);
4126 spin_lock(&fp
->fi_lock
);
4127 dp
->dl_stid
.sc_file
= fp
;
4128 if (!fp
->fi_deleg_file
) {
4129 spin_unlock(&fp
->fi_lock
);
4130 spin_unlock(&state_lock
);
4131 status
= nfs4_setlease(dp
);
4134 if (fp
->fi_had_conflict
) {
4138 status
= hash_delegation_locked(dp
, fp
);
4140 spin_unlock(&fp
->fi_lock
);
4141 spin_unlock(&state_lock
);
4144 put_clnt_odstate(dp
->dl_clnt_odstate
);
4145 nfs4_put_stid(&dp
->dl_stid
);
4146 return ERR_PTR(status
);
4151 static void nfsd4_open_deleg_none_ext(struct nfsd4_open
*open
, int status
)
4153 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE_EXT
;
4154 if (status
== -EAGAIN
)
4155 open
->op_why_no_deleg
= WND4_CONTENTION
;
4157 open
->op_why_no_deleg
= WND4_RESOURCE
;
4158 switch (open
->op_deleg_want
) {
4159 case NFS4_SHARE_WANT_READ_DELEG
:
4160 case NFS4_SHARE_WANT_WRITE_DELEG
:
4161 case NFS4_SHARE_WANT_ANY_DELEG
:
4163 case NFS4_SHARE_WANT_CANCEL
:
4164 open
->op_why_no_deleg
= WND4_CANCELLED
;
4166 case NFS4_SHARE_WANT_NO_DELEG
:
4173 * Attempt to hand out a delegation.
4175 * Note we don't support write delegations, and won't until the vfs has
4176 * proper support for them.
4179 nfs4_open_delegation(struct svc_fh
*fh
, struct nfsd4_open
*open
,
4180 struct nfs4_ol_stateid
*stp
)
4182 struct nfs4_delegation
*dp
;
4183 struct nfs4_openowner
*oo
= openowner(stp
->st_stateowner
);
4184 struct nfs4_client
*clp
= stp
->st_stid
.sc_client
;
4188 cb_up
= nfsd4_cb_channel_good(oo
->oo_owner
.so_client
);
4189 open
->op_recall
= 0;
4190 switch (open
->op_claim_type
) {
4191 case NFS4_OPEN_CLAIM_PREVIOUS
:
4193 open
->op_recall
= 1;
4194 if (open
->op_delegate_type
!= NFS4_OPEN_DELEGATE_READ
)
4197 case NFS4_OPEN_CLAIM_NULL
:
4198 case NFS4_OPEN_CLAIM_FH
:
4200 * Let's not give out any delegations till everyone's
4201 * had the chance to reclaim theirs, *and* until
4202 * NLM locks have all been reclaimed:
4204 if (locks_in_grace(clp
->net
))
4206 if (!cb_up
|| !(oo
->oo_flags
& NFS4_OO_CONFIRMED
))
4209 * Also, if the file was opened for write or
4210 * create, there's a good chance the client's
4211 * about to write to it, resulting in an
4212 * immediate recall (since we don't support
4213 * write delegations):
4215 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
4217 if (open
->op_create
== NFS4_OPEN_CREATE
)
4223 dp
= nfs4_set_delegation(clp
, fh
, stp
->st_stid
.sc_file
, stp
->st_clnt_odstate
);
4227 memcpy(&open
->op_delegate_stateid
, &dp
->dl_stid
.sc_stateid
, sizeof(dp
->dl_stid
.sc_stateid
));
4229 dprintk("NFSD: delegation stateid=" STATEID_FMT
"\n",
4230 STATEID_VAL(&dp
->dl_stid
.sc_stateid
));
4231 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_READ
;
4232 nfs4_put_stid(&dp
->dl_stid
);
4235 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE
;
4236 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
&&
4237 open
->op_delegate_type
!= NFS4_OPEN_DELEGATE_NONE
) {
4238 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
4239 open
->op_recall
= 1;
4242 /* 4.1 client asking for a delegation? */
4243 if (open
->op_deleg_want
)
4244 nfsd4_open_deleg_none_ext(open
, status
);
4248 static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open
*open
,
4249 struct nfs4_delegation
*dp
)
4251 if (open
->op_deleg_want
== NFS4_SHARE_WANT_READ_DELEG
&&
4252 dp
->dl_type
== NFS4_OPEN_DELEGATE_WRITE
) {
4253 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE_EXT
;
4254 open
->op_why_no_deleg
= WND4_NOT_SUPP_DOWNGRADE
;
4255 } else if (open
->op_deleg_want
== NFS4_SHARE_WANT_WRITE_DELEG
&&
4256 dp
->dl_type
== NFS4_OPEN_DELEGATE_WRITE
) {
4257 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE_EXT
;
4258 open
->op_why_no_deleg
= WND4_NOT_SUPP_UPGRADE
;
4260 /* Otherwise the client must be confused wanting a delegation
4261 * it already has, therefore we don't return
4262 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
4267 nfsd4_process_open2(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open
*open
)
4269 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
4270 struct nfs4_client
*cl
= open
->op_openowner
->oo_owner
.so_client
;
4271 struct nfs4_file
*fp
= NULL
;
4272 struct nfs4_ol_stateid
*stp
= NULL
;
4273 struct nfs4_ol_stateid
*swapstp
= NULL
;
4274 struct nfs4_delegation
*dp
= NULL
;
4278 * Lookup file; if found, lookup stateid and check open request,
4279 * and check for delegations in the process of being recalled.
4280 * If not found, create the nfs4_file struct
4282 fp
= find_or_add_file(open
->op_file
, ¤t_fh
->fh_handle
);
4283 if (fp
!= open
->op_file
) {
4284 status
= nfs4_check_deleg(cl
, open
, &dp
);
4287 spin_lock(&fp
->fi_lock
);
4288 stp
= nfsd4_find_existing_open(fp
, open
);
4289 spin_unlock(&fp
->fi_lock
);
4291 open
->op_file
= NULL
;
4292 status
= nfserr_bad_stateid
;
4293 if (nfsd4_is_deleg_cur(open
))
4298 * OPEN the file, or upgrade an existing OPEN.
4299 * If truncate fails, the OPEN fails.
4302 /* Stateid was found, this is an OPEN upgrade */
4303 down_read(&stp
->st_rwsem
);
4304 status
= nfs4_upgrade_open(rqstp
, fp
, current_fh
, stp
, open
);
4306 up_read(&stp
->st_rwsem
);
4311 open
->op_stp
= NULL
;
4312 swapstp
= init_open_stateid(stp
, fp
, open
);
4314 nfs4_put_stid(&stp
->st_stid
);
4316 down_read(&stp
->st_rwsem
);
4317 status
= nfs4_upgrade_open(rqstp
, fp
, current_fh
,
4320 up_read(&stp
->st_rwsem
);
4325 down_read(&stp
->st_rwsem
);
4326 status
= nfs4_get_vfs_file(rqstp
, fp
, current_fh
, stp
, open
);
4328 up_read(&stp
->st_rwsem
);
4329 release_open_stateid(stp
);
4333 stp
->st_clnt_odstate
= find_or_hash_clnt_odstate(fp
,
4335 if (stp
->st_clnt_odstate
== open
->op_odstate
)
4336 open
->op_odstate
= NULL
;
4339 nfs4_inc_and_copy_stateid(&open
->op_stateid
, &stp
->st_stid
);
4340 up_read(&stp
->st_rwsem
);
4342 if (nfsd4_has_session(&resp
->cstate
)) {
4343 if (open
->op_deleg_want
& NFS4_SHARE_WANT_NO_DELEG
) {
4344 open
->op_delegate_type
= NFS4_OPEN_DELEGATE_NONE_EXT
;
4345 open
->op_why_no_deleg
= WND4_NOT_WANTED
;
4351 * Attempt to hand out a delegation. No error return, because the
4352 * OPEN succeeds even if we fail.
4354 nfs4_open_delegation(current_fh
, open
, stp
);
4358 dprintk("%s: stateid=" STATEID_FMT
"\n", __func__
,
4359 STATEID_VAL(&stp
->st_stid
.sc_stateid
));
4361 /* 4.1 client trying to upgrade/downgrade delegation? */
4362 if (open
->op_delegate_type
== NFS4_OPEN_DELEGATE_NONE
&& dp
&&
4363 open
->op_deleg_want
)
4364 nfsd4_deleg_xgrade_none_ext(open
, dp
);
4368 if (status
== 0 && open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
)
4369 open
->op_openowner
->oo_flags
|= NFS4_OO_CONFIRMED
;
4371 * To finish the open response, we just need to set the rflags.
4373 open
->op_rflags
= NFS4_OPEN_RESULT_LOCKTYPE_POSIX
;
4374 if (!(open
->op_openowner
->oo_flags
& NFS4_OO_CONFIRMED
) &&
4375 !nfsd4_has_session(&resp
->cstate
))
4376 open
->op_rflags
|= NFS4_OPEN_RESULT_CONFIRM
;
4378 nfs4_put_stid(&dp
->dl_stid
);
4380 nfs4_put_stid(&stp
->st_stid
);
4385 void nfsd4_cleanup_open_state(struct nfsd4_compound_state
*cstate
,
4386 struct nfsd4_open
*open
)
4388 if (open
->op_openowner
) {
4389 struct nfs4_stateowner
*so
= &open
->op_openowner
->oo_owner
;
4391 nfsd4_cstate_assign_replay(cstate
, so
);
4392 nfs4_put_stateowner(so
);
4395 kmem_cache_free(file_slab
, open
->op_file
);
4397 nfs4_put_stid(&open
->op_stp
->st_stid
);
4398 if (open
->op_odstate
)
4399 kmem_cache_free(odstate_slab
, open
->op_odstate
);
4403 nfsd4_renew(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
4406 struct nfs4_client
*clp
;
4408 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
4410 dprintk("process_renew(%08x/%08x): starting\n",
4411 clid
->cl_boot
, clid
->cl_id
);
4412 status
= lookup_clientid(clid
, cstate
, nn
);
4416 status
= nfserr_cb_path_down
;
4417 if (!list_empty(&clp
->cl_delegations
)
4418 && clp
->cl_cb_state
!= NFSD4_CB_UP
)
4426 nfsd4_end_grace(struct nfsd_net
*nn
)
4428 /* do nothing if grace period already ended */
4429 if (nn
->grace_ended
)
4432 dprintk("NFSD: end of grace period\n");
4433 nn
->grace_ended
= true;
4435 * If the server goes down again right now, an NFSv4
4436 * client will still be allowed to reclaim after it comes back up,
4437 * even if it hasn't yet had a chance to reclaim state this time.
4440 nfsd4_record_grace_done(nn
);
4442 * At this point, NFSv4 clients can still reclaim. But if the
4443 * server crashes, any that have not yet reclaimed will be out
4444 * of luck on the next boot.
4446 * (NFSv4.1+ clients are considered to have reclaimed once they
4447 * call RECLAIM_COMPLETE. NFSv4.0 clients are considered to
4448 * have reclaimed after their first OPEN.)
4450 locks_end_grace(&nn
->nfsd4_manager
);
4452 * At this point, and once lockd and/or any other containers
4453 * exit their grace period, further reclaims will fail and
4454 * regular locking can resume.
4459 nfs4_laundromat(struct nfsd_net
*nn
)
4461 struct nfs4_client
*clp
;
4462 struct nfs4_openowner
*oo
;
4463 struct nfs4_delegation
*dp
;
4464 struct nfs4_ol_stateid
*stp
;
4465 struct list_head
*pos
, *next
, reaplist
;
4466 time_t cutoff
= get_seconds() - nn
->nfsd4_lease
;
4467 time_t t
, new_timeo
= nn
->nfsd4_lease
;
4469 dprintk("NFSD: laundromat service - starting\n");
4470 nfsd4_end_grace(nn
);
4471 INIT_LIST_HEAD(&reaplist
);
4472 spin_lock(&nn
->client_lock
);
4473 list_for_each_safe(pos
, next
, &nn
->client_lru
) {
4474 clp
= list_entry(pos
, struct nfs4_client
, cl_lru
);
4475 if (time_after((unsigned long)clp
->cl_time
, (unsigned long)cutoff
)) {
4476 t
= clp
->cl_time
- cutoff
;
4477 new_timeo
= min(new_timeo
, t
);
4480 if (mark_client_expired_locked(clp
)) {
4481 dprintk("NFSD: client in use (clientid %08x)\n",
4482 clp
->cl_clientid
.cl_id
);
4485 list_add(&clp
->cl_lru
, &reaplist
);
4487 spin_unlock(&nn
->client_lock
);
4488 list_for_each_safe(pos
, next
, &reaplist
) {
4489 clp
= list_entry(pos
, struct nfs4_client
, cl_lru
);
4490 dprintk("NFSD: purging unused client (clientid %08x)\n",
4491 clp
->cl_clientid
.cl_id
);
4492 list_del_init(&clp
->cl_lru
);
4495 spin_lock(&state_lock
);
4496 list_for_each_safe(pos
, next
, &nn
->del_recall_lru
) {
4497 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
4498 if (time_after((unsigned long)dp
->dl_time
, (unsigned long)cutoff
)) {
4499 t
= dp
->dl_time
- cutoff
;
4500 new_timeo
= min(new_timeo
, t
);
4503 WARN_ON(!unhash_delegation_locked(dp
));
4504 list_add(&dp
->dl_recall_lru
, &reaplist
);
4506 spin_unlock(&state_lock
);
4507 while (!list_empty(&reaplist
)) {
4508 dp
= list_first_entry(&reaplist
, struct nfs4_delegation
,
4510 list_del_init(&dp
->dl_recall_lru
);
4511 revoke_delegation(dp
);
4514 spin_lock(&nn
->client_lock
);
4515 while (!list_empty(&nn
->close_lru
)) {
4516 oo
= list_first_entry(&nn
->close_lru
, struct nfs4_openowner
,
4518 if (time_after((unsigned long)oo
->oo_time
,
4519 (unsigned long)cutoff
)) {
4520 t
= oo
->oo_time
- cutoff
;
4521 new_timeo
= min(new_timeo
, t
);
4524 list_del_init(&oo
->oo_close_lru
);
4525 stp
= oo
->oo_last_closed_stid
;
4526 oo
->oo_last_closed_stid
= NULL
;
4527 spin_unlock(&nn
->client_lock
);
4528 nfs4_put_stid(&stp
->st_stid
);
4529 spin_lock(&nn
->client_lock
);
4531 spin_unlock(&nn
->client_lock
);
4533 new_timeo
= max_t(time_t, new_timeo
, NFSD_LAUNDROMAT_MINTIMEOUT
);
4537 static struct workqueue_struct
*laundry_wq
;
4538 static void laundromat_main(struct work_struct
*);
4541 laundromat_main(struct work_struct
*laundry
)
4544 struct delayed_work
*dwork
= container_of(laundry
, struct delayed_work
,
4546 struct nfsd_net
*nn
= container_of(dwork
, struct nfsd_net
,
4549 t
= nfs4_laundromat(nn
);
4550 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t
);
4551 queue_delayed_work(laundry_wq
, &nn
->laundromat_work
, t
*HZ
);
4554 static inline __be32
nfs4_check_fh(struct svc_fh
*fhp
, struct nfs4_stid
*stp
)
4556 if (!fh_match(&fhp
->fh_handle
, &stp
->sc_file
->fi_fhandle
))
4557 return nfserr_bad_stateid
;
4562 access_permit_read(struct nfs4_ol_stateid
*stp
)
4564 return test_access(NFS4_SHARE_ACCESS_READ
, stp
) ||
4565 test_access(NFS4_SHARE_ACCESS_BOTH
, stp
) ||
4566 test_access(NFS4_SHARE_ACCESS_WRITE
, stp
);
4570 access_permit_write(struct nfs4_ol_stateid
*stp
)
4572 return test_access(NFS4_SHARE_ACCESS_WRITE
, stp
) ||
4573 test_access(NFS4_SHARE_ACCESS_BOTH
, stp
);
4577 __be32
nfs4_check_openmode(struct nfs4_ol_stateid
*stp
, int flags
)
4579 __be32 status
= nfserr_openmode
;
4581 /* For lock stateid's, we test the parent open, not the lock: */
4582 if (stp
->st_openstp
)
4583 stp
= stp
->st_openstp
;
4584 if ((flags
& WR_STATE
) && !access_permit_write(stp
))
4586 if ((flags
& RD_STATE
) && !access_permit_read(stp
))
4593 static inline __be32
4594 check_special_stateids(struct net
*net
, svc_fh
*current_fh
, stateid_t
*stateid
, int flags
)
4596 if (ONE_STATEID(stateid
) && (flags
& RD_STATE
))
4598 else if (opens_in_grace(net
)) {
4599 /* Answer in remaining cases depends on existence of
4600 * conflicting state; so we must wait out the grace period. */
4601 return nfserr_grace
;
4602 } else if (flags
& WR_STATE
)
4603 return nfs4_share_conflict(current_fh
,
4604 NFS4_SHARE_DENY_WRITE
);
4605 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
4606 return nfs4_share_conflict(current_fh
,
4607 NFS4_SHARE_DENY_READ
);
4611 * Allow READ/WRITE during grace period on recovered state only for files
4612 * that are not able to provide mandatory locking.
4615 grace_disallows_io(struct net
*net
, struct inode
*inode
)
4617 return opens_in_grace(net
) && mandatory_lock(inode
);
4620 /* Returns true iff a is later than b: */
4621 static bool stateid_generation_after(stateid_t
*a
, stateid_t
*b
)
4623 return (s32
)(a
->si_generation
- b
->si_generation
) > 0;
4626 static __be32
check_stateid_generation(stateid_t
*in
, stateid_t
*ref
, bool has_session
)
4629 * When sessions are used the stateid generation number is ignored
4632 if (has_session
&& in
->si_generation
== 0)
4635 if (in
->si_generation
== ref
->si_generation
)
4638 /* If the client sends us a stateid from the future, it's buggy: */
4639 if (stateid_generation_after(in
, ref
))
4640 return nfserr_bad_stateid
;
4642 * However, we could see a stateid from the past, even from a
4643 * non-buggy client. For example, if the client sends a lock
4644 * while some IO is outstanding, the lock may bump si_generation
4645 * while the IO is still in flight. The client could avoid that
4646 * situation by waiting for responses on all the IO requests,
4647 * but better performance may result in retrying IO that
4648 * receives an old_stateid error if requests are rarely
4649 * reordered in flight:
4651 return nfserr_old_stateid
;
4654 static __be32
nfsd4_check_openowner_confirmed(struct nfs4_ol_stateid
*ols
)
4656 if (ols
->st_stateowner
->so_is_open_owner
&&
4657 !(openowner(ols
->st_stateowner
)->oo_flags
& NFS4_OO_CONFIRMED
))
4658 return nfserr_bad_stateid
;
4662 static __be32
nfsd4_validate_stateid(struct nfs4_client
*cl
, stateid_t
*stateid
)
4664 struct nfs4_stid
*s
;
4665 __be32 status
= nfserr_bad_stateid
;
4667 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
))
4669 /* Client debugging aid. */
4670 if (!same_clid(&stateid
->si_opaque
.so_clid
, &cl
->cl_clientid
)) {
4671 char addr_str
[INET6_ADDRSTRLEN
];
4672 rpc_ntop((struct sockaddr
*)&cl
->cl_addr
, addr_str
,
4674 pr_warn_ratelimited("NFSD: client %s testing state ID "
4675 "with incorrect client ID\n", addr_str
);
4678 spin_lock(&cl
->cl_lock
);
4679 s
= find_stateid_locked(cl
, stateid
);
4682 status
= check_stateid_generation(stateid
, &s
->sc_stateid
, 1);
4685 switch (s
->sc_type
) {
4686 case NFS4_DELEG_STID
:
4689 case NFS4_REVOKED_DELEG_STID
:
4690 status
= nfserr_deleg_revoked
;
4692 case NFS4_OPEN_STID
:
4693 case NFS4_LOCK_STID
:
4694 status
= nfsd4_check_openowner_confirmed(openlockstateid(s
));
4697 printk("unknown stateid type %x\n", s
->sc_type
);
4699 case NFS4_CLOSED_STID
:
4700 case NFS4_CLOSED_DELEG_STID
:
4701 status
= nfserr_bad_stateid
;
4704 spin_unlock(&cl
->cl_lock
);
4709 nfsd4_lookup_stateid(struct nfsd4_compound_state
*cstate
,
4710 stateid_t
*stateid
, unsigned char typemask
,
4711 struct nfs4_stid
**s
, struct nfsd_net
*nn
)
4715 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
))
4716 return nfserr_bad_stateid
;
4717 status
= lookup_clientid(&stateid
->si_opaque
.so_clid
, cstate
, nn
);
4718 if (status
== nfserr_stale_clientid
) {
4719 if (cstate
->session
)
4720 return nfserr_bad_stateid
;
4721 return nfserr_stale_stateid
;
4725 *s
= find_stateid_by_type(cstate
->clp
, stateid
, typemask
);
4727 return nfserr_bad_stateid
;
4731 static struct file
*
4732 nfs4_find_file(struct nfs4_stid
*s
, int flags
)
4737 switch (s
->sc_type
) {
4738 case NFS4_DELEG_STID
:
4739 if (WARN_ON_ONCE(!s
->sc_file
->fi_deleg_file
))
4741 return get_file(s
->sc_file
->fi_deleg_file
);
4742 case NFS4_OPEN_STID
:
4743 case NFS4_LOCK_STID
:
4744 if (flags
& RD_STATE
)
4745 return find_readable_file(s
->sc_file
);
4747 return find_writeable_file(s
->sc_file
);
4755 nfs4_check_olstateid(struct svc_fh
*fhp
, struct nfs4_ol_stateid
*ols
, int flags
)
4759 status
= nfsd4_check_openowner_confirmed(ols
);
4762 return nfs4_check_openmode(ols
, flags
);
4766 nfs4_check_file(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct nfs4_stid
*s
,
4767 struct file
**filpp
, bool *tmp_file
, int flags
)
4769 int acc
= (flags
& RD_STATE
) ? NFSD_MAY_READ
: NFSD_MAY_WRITE
;
4773 file
= nfs4_find_file(s
, flags
);
4775 status
= nfsd_permission(rqstp
, fhp
->fh_export
, fhp
->fh_dentry
,
4776 acc
| NFSD_MAY_OWNER_OVERRIDE
);
4784 status
= nfsd_open(rqstp
, fhp
, S_IFREG
, acc
, filpp
);
4796 * Checks for stateid operations
4799 nfs4_preprocess_stateid_op(struct svc_rqst
*rqstp
,
4800 struct nfsd4_compound_state
*cstate
, stateid_t
*stateid
,
4801 int flags
, struct file
**filpp
, bool *tmp_file
)
4803 struct svc_fh
*fhp
= &cstate
->current_fh
;
4804 struct inode
*ino
= d_inode(fhp
->fh_dentry
);
4805 struct net
*net
= SVC_NET(rqstp
);
4806 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
4807 struct nfs4_stid
*s
= NULL
;
4815 if (grace_disallows_io(net
, ino
))
4816 return nfserr_grace
;
4818 if (ZERO_STATEID(stateid
) || ONE_STATEID(stateid
)) {
4819 status
= check_special_stateids(net
, fhp
, stateid
, flags
);
4823 status
= nfsd4_lookup_stateid(cstate
, stateid
,
4824 NFS4_DELEG_STID
|NFS4_OPEN_STID
|NFS4_LOCK_STID
,
4828 status
= check_stateid_generation(stateid
, &s
->sc_stateid
,
4829 nfsd4_has_session(cstate
));
4833 switch (s
->sc_type
) {
4834 case NFS4_DELEG_STID
:
4835 status
= nfs4_check_delegmode(delegstateid(s
), flags
);
4837 case NFS4_OPEN_STID
:
4838 case NFS4_LOCK_STID
:
4839 status
= nfs4_check_olstateid(fhp
, openlockstateid(s
), flags
);
4842 status
= nfserr_bad_stateid
;
4847 status
= nfs4_check_fh(fhp
, s
);
4850 if (!status
&& filpp
)
4851 status
= nfs4_check_file(rqstp
, fhp
, s
, filpp
, tmp_file
, flags
);
4859 * Test if the stateid is valid
4862 nfsd4_test_stateid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
4863 struct nfsd4_test_stateid
*test_stateid
)
4865 struct nfsd4_test_stateid_id
*stateid
;
4866 struct nfs4_client
*cl
= cstate
->session
->se_client
;
4868 list_for_each_entry(stateid
, &test_stateid
->ts_stateid_list
, ts_id_list
)
4869 stateid
->ts_id_status
=
4870 nfsd4_validate_stateid(cl
, &stateid
->ts_id_stateid
);
4876 nfsd4_free_stateid(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
4877 struct nfsd4_free_stateid
*free_stateid
)
4879 stateid_t
*stateid
= &free_stateid
->fr_stateid
;
4880 struct nfs4_stid
*s
;
4881 struct nfs4_delegation
*dp
;
4882 struct nfs4_ol_stateid
*stp
;
4883 struct nfs4_client
*cl
= cstate
->session
->se_client
;
4884 __be32 ret
= nfserr_bad_stateid
;
4886 spin_lock(&cl
->cl_lock
);
4887 s
= find_stateid_locked(cl
, stateid
);
4890 switch (s
->sc_type
) {
4891 case NFS4_DELEG_STID
:
4892 ret
= nfserr_locks_held
;
4894 case NFS4_OPEN_STID
:
4895 ret
= check_stateid_generation(stateid
, &s
->sc_stateid
, 1);
4898 ret
= nfserr_locks_held
;
4900 case NFS4_LOCK_STID
:
4901 ret
= check_stateid_generation(stateid
, &s
->sc_stateid
, 1);
4904 stp
= openlockstateid(s
);
4905 ret
= nfserr_locks_held
;
4906 if (check_for_locks(stp
->st_stid
.sc_file
,
4907 lockowner(stp
->st_stateowner
)))
4909 WARN_ON(!unhash_lock_stateid(stp
));
4910 spin_unlock(&cl
->cl_lock
);
4914 case NFS4_REVOKED_DELEG_STID
:
4915 dp
= delegstateid(s
);
4916 list_del_init(&dp
->dl_recall_lru
);
4917 spin_unlock(&cl
->cl_lock
);
4921 /* Default falls through and returns nfserr_bad_stateid */
4924 spin_unlock(&cl
->cl_lock
);
4932 return (type
== NFS4_READW_LT
|| type
== NFS4_READ_LT
) ?
4933 RD_STATE
: WR_STATE
;
4936 static __be32
nfs4_seqid_op_checks(struct nfsd4_compound_state
*cstate
, stateid_t
*stateid
, u32 seqid
, struct nfs4_ol_stateid
*stp
)
4938 struct svc_fh
*current_fh
= &cstate
->current_fh
;
4939 struct nfs4_stateowner
*sop
= stp
->st_stateowner
;
4942 status
= nfsd4_check_seqid(cstate
, sop
, seqid
);
4945 if (stp
->st_stid
.sc_type
== NFS4_CLOSED_STID
4946 || stp
->st_stid
.sc_type
== NFS4_REVOKED_DELEG_STID
)
4948 * "Closed" stateid's exist *only* to return
4949 * nfserr_replay_me from the previous step, and
4950 * revoked delegations are kept only for free_stateid.
4952 return nfserr_bad_stateid
;
4953 down_write(&stp
->st_rwsem
);
4954 status
= check_stateid_generation(stateid
, &stp
->st_stid
.sc_stateid
, nfsd4_has_session(cstate
));
4955 if (status
== nfs_ok
)
4956 status
= nfs4_check_fh(current_fh
, &stp
->st_stid
);
4957 if (status
!= nfs_ok
)
4958 up_write(&stp
->st_rwsem
);
4963 * Checks for sequence id mutating operations.
4966 nfs4_preprocess_seqid_op(struct nfsd4_compound_state
*cstate
, u32 seqid
,
4967 stateid_t
*stateid
, char typemask
,
4968 struct nfs4_ol_stateid
**stpp
,
4969 struct nfsd_net
*nn
)
4972 struct nfs4_stid
*s
;
4973 struct nfs4_ol_stateid
*stp
= NULL
;
4975 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT
"\n", __func__
,
4976 seqid
, STATEID_VAL(stateid
));
4979 status
= nfsd4_lookup_stateid(cstate
, stateid
, typemask
, &s
, nn
);
4982 stp
= openlockstateid(s
);
4983 nfsd4_cstate_assign_replay(cstate
, stp
->st_stateowner
);
4985 status
= nfs4_seqid_op_checks(cstate
, stateid
, seqid
, stp
);
4989 nfs4_put_stid(&stp
->st_stid
);
4993 static __be32
nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state
*cstate
, u32 seqid
,
4994 stateid_t
*stateid
, struct nfs4_ol_stateid
**stpp
, struct nfsd_net
*nn
)
4997 struct nfs4_openowner
*oo
;
4998 struct nfs4_ol_stateid
*stp
;
5000 status
= nfs4_preprocess_seqid_op(cstate
, seqid
, stateid
,
5001 NFS4_OPEN_STID
, &stp
, nn
);
5004 oo
= openowner(stp
->st_stateowner
);
5005 if (!(oo
->oo_flags
& NFS4_OO_CONFIRMED
)) {
5006 up_write(&stp
->st_rwsem
);
5007 nfs4_put_stid(&stp
->st_stid
);
5008 return nfserr_bad_stateid
;
5015 nfsd4_open_confirm(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5016 struct nfsd4_open_confirm
*oc
)
5019 struct nfs4_openowner
*oo
;
5020 struct nfs4_ol_stateid
*stp
;
5021 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5023 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
5024 cstate
->current_fh
.fh_dentry
);
5026 status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0);
5030 status
= nfs4_preprocess_seqid_op(cstate
,
5031 oc
->oc_seqid
, &oc
->oc_req_stateid
,
5032 NFS4_OPEN_STID
, &stp
, nn
);
5035 oo
= openowner(stp
->st_stateowner
);
5036 status
= nfserr_bad_stateid
;
5037 if (oo
->oo_flags
& NFS4_OO_CONFIRMED
) {
5038 up_write(&stp
->st_rwsem
);
5041 oo
->oo_flags
|= NFS4_OO_CONFIRMED
;
5042 nfs4_inc_and_copy_stateid(&oc
->oc_resp_stateid
, &stp
->st_stid
);
5043 up_write(&stp
->st_rwsem
);
5044 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT
"\n",
5045 __func__
, oc
->oc_seqid
, STATEID_VAL(&stp
->st_stid
.sc_stateid
));
5047 nfsd4_client_record_create(oo
->oo_owner
.so_client
);
5050 nfs4_put_stid(&stp
->st_stid
);
5052 nfsd4_bump_seqid(cstate
, status
);
5056 static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid
*stp
, u32 access
)
5058 if (!test_access(access
, stp
))
5060 nfs4_file_put_access(stp
->st_stid
.sc_file
, access
);
5061 clear_access(access
, stp
);
5064 static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid
*stp
, u32 to_access
)
5066 switch (to_access
) {
5067 case NFS4_SHARE_ACCESS_READ
:
5068 nfs4_stateid_downgrade_bit(stp
, NFS4_SHARE_ACCESS_WRITE
);
5069 nfs4_stateid_downgrade_bit(stp
, NFS4_SHARE_ACCESS_BOTH
);
5071 case NFS4_SHARE_ACCESS_WRITE
:
5072 nfs4_stateid_downgrade_bit(stp
, NFS4_SHARE_ACCESS_READ
);
5073 nfs4_stateid_downgrade_bit(stp
, NFS4_SHARE_ACCESS_BOTH
);
5075 case NFS4_SHARE_ACCESS_BOTH
:
5083 nfsd4_open_downgrade(struct svc_rqst
*rqstp
,
5084 struct nfsd4_compound_state
*cstate
,
5085 struct nfsd4_open_downgrade
*od
)
5088 struct nfs4_ol_stateid
*stp
;
5089 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5091 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
5092 cstate
->current_fh
.fh_dentry
);
5094 /* We don't yet support WANT bits: */
5095 if (od
->od_deleg_want
)
5096 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__
,
5099 status
= nfs4_preprocess_confirmed_seqid_op(cstate
, od
->od_seqid
,
5100 &od
->od_stateid
, &stp
, nn
);
5103 status
= nfserr_inval
;
5104 if (!test_access(od
->od_share_access
, stp
)) {
5105 dprintk("NFSD: access not a subset of current bitmap: 0x%hhx, input access=%08x\n",
5106 stp
->st_access_bmap
, od
->od_share_access
);
5109 if (!test_deny(od
->od_share_deny
, stp
)) {
5110 dprintk("NFSD: deny not a subset of current bitmap: 0x%hhx, input deny=%08x\n",
5111 stp
->st_deny_bmap
, od
->od_share_deny
);
5114 nfs4_stateid_downgrade(stp
, od
->od_share_access
);
5115 reset_union_bmap_deny(od
->od_share_deny
, stp
);
5116 nfs4_inc_and_copy_stateid(&od
->od_stateid
, &stp
->st_stid
);
5119 up_write(&stp
->st_rwsem
);
5120 nfs4_put_stid(&stp
->st_stid
);
5122 nfsd4_bump_seqid(cstate
, status
);
5126 static void nfsd4_close_open_stateid(struct nfs4_ol_stateid
*s
)
5128 struct nfs4_client
*clp
= s
->st_stid
.sc_client
;
5130 LIST_HEAD(reaplist
);
5132 s
->st_stid
.sc_type
= NFS4_CLOSED_STID
;
5133 spin_lock(&clp
->cl_lock
);
5134 unhashed
= unhash_open_stateid(s
, &reaplist
);
5136 if (clp
->cl_minorversion
) {
5138 put_ol_stateid_locked(s
, &reaplist
);
5139 spin_unlock(&clp
->cl_lock
);
5140 free_ol_stateid_reaplist(&reaplist
);
5142 spin_unlock(&clp
->cl_lock
);
5143 free_ol_stateid_reaplist(&reaplist
);
5145 move_to_close_lru(s
, clp
->net
);
5150 * nfs4_unlock_state() called after encode
5153 nfsd4_close(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5154 struct nfsd4_close
*close
)
5157 struct nfs4_ol_stateid
*stp
;
5158 struct net
*net
= SVC_NET(rqstp
);
5159 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
5161 dprintk("NFSD: nfsd4_close on file %pd\n",
5162 cstate
->current_fh
.fh_dentry
);
5164 status
= nfs4_preprocess_seqid_op(cstate
, close
->cl_seqid
,
5166 NFS4_OPEN_STID
|NFS4_CLOSED_STID
,
5168 nfsd4_bump_seqid(cstate
, status
);
5171 nfs4_inc_and_copy_stateid(&close
->cl_stateid
, &stp
->st_stid
);
5172 up_write(&stp
->st_rwsem
);
5174 nfsd4_close_open_stateid(stp
);
5176 /* put reference from nfs4_preprocess_seqid_op */
5177 nfs4_put_stid(&stp
->st_stid
);
5183 nfsd4_delegreturn(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5184 struct nfsd4_delegreturn
*dr
)
5186 struct nfs4_delegation
*dp
;
5187 stateid_t
*stateid
= &dr
->dr_stateid
;
5188 struct nfs4_stid
*s
;
5190 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5192 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0)))
5195 status
= nfsd4_lookup_stateid(cstate
, stateid
, NFS4_DELEG_STID
, &s
, nn
);
5198 dp
= delegstateid(s
);
5199 status
= check_stateid_generation(stateid
, &dp
->dl_stid
.sc_stateid
, nfsd4_has_session(cstate
));
5203 destroy_delegation(dp
);
5205 nfs4_put_stid(&dp
->dl_stid
);
5211 end_offset(u64 start
, u64 len
)
5216 return end
>= start
? end
: NFS4_MAX_UINT64
;
5219 /* last octet in a range */
5221 last_byte_offset(u64 start
, u64 len
)
5227 return end
> start
? end
- 1: NFS4_MAX_UINT64
;
5231 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
5232 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
5233 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
5234 * locking, this prevents us from being completely protocol-compliant. The
5235 * real solution to this problem is to start using unsigned file offsets in
5236 * the VFS, but this is a very deep change!
5239 nfs4_transform_lock_offset(struct file_lock
*lock
)
5241 if (lock
->fl_start
< 0)
5242 lock
->fl_start
= OFFSET_MAX
;
5243 if (lock
->fl_end
< 0)
5244 lock
->fl_end
= OFFSET_MAX
;
5248 nfsd4_fl_get_owner(fl_owner_t owner
)
5250 struct nfs4_lockowner
*lo
= (struct nfs4_lockowner
*)owner
;
5252 nfs4_get_stateowner(&lo
->lo_owner
);
5257 nfsd4_fl_put_owner(fl_owner_t owner
)
5259 struct nfs4_lockowner
*lo
= (struct nfs4_lockowner
*)owner
;
5262 nfs4_put_stateowner(&lo
->lo_owner
);
5265 static const struct lock_manager_operations nfsd_posix_mng_ops
= {
5266 .lm_get_owner
= nfsd4_fl_get_owner
,
5267 .lm_put_owner
= nfsd4_fl_put_owner
,
5271 nfs4_set_lock_denied(struct file_lock
*fl
, struct nfsd4_lock_denied
*deny
)
5273 struct nfs4_lockowner
*lo
;
5275 if (fl
->fl_lmops
== &nfsd_posix_mng_ops
) {
5276 lo
= (struct nfs4_lockowner
*) fl
->fl_owner
;
5277 deny
->ld_owner
.data
= kmemdup(lo
->lo_owner
.so_owner
.data
,
5278 lo
->lo_owner
.so_owner
.len
, GFP_KERNEL
);
5279 if (!deny
->ld_owner
.data
)
5280 /* We just don't care that much */
5282 deny
->ld_owner
.len
= lo
->lo_owner
.so_owner
.len
;
5283 deny
->ld_clientid
= lo
->lo_owner
.so_client
->cl_clientid
;
5286 deny
->ld_owner
.len
= 0;
5287 deny
->ld_owner
.data
= NULL
;
5288 deny
->ld_clientid
.cl_boot
= 0;
5289 deny
->ld_clientid
.cl_id
= 0;
5291 deny
->ld_start
= fl
->fl_start
;
5292 deny
->ld_length
= NFS4_MAX_UINT64
;
5293 if (fl
->fl_end
!= NFS4_MAX_UINT64
)
5294 deny
->ld_length
= fl
->fl_end
- fl
->fl_start
+ 1;
5295 deny
->ld_type
= NFS4_READ_LT
;
5296 if (fl
->fl_type
!= F_RDLCK
)
5297 deny
->ld_type
= NFS4_WRITE_LT
;
5300 static struct nfs4_lockowner
*
5301 find_lockowner_str_locked(struct nfs4_client
*clp
, struct xdr_netobj
*owner
)
5303 unsigned int strhashval
= ownerstr_hashval(owner
);
5304 struct nfs4_stateowner
*so
;
5306 lockdep_assert_held(&clp
->cl_lock
);
5308 list_for_each_entry(so
, &clp
->cl_ownerstr_hashtbl
[strhashval
],
5310 if (so
->so_is_open_owner
)
5312 if (same_owner_str(so
, owner
))
5313 return lockowner(nfs4_get_stateowner(so
));
5318 static struct nfs4_lockowner
*
5319 find_lockowner_str(struct nfs4_client
*clp
, struct xdr_netobj
*owner
)
5321 struct nfs4_lockowner
*lo
;
5323 spin_lock(&clp
->cl_lock
);
5324 lo
= find_lockowner_str_locked(clp
, owner
);
5325 spin_unlock(&clp
->cl_lock
);
5329 static void nfs4_unhash_lockowner(struct nfs4_stateowner
*sop
)
5331 unhash_lockowner_locked(lockowner(sop
));
5334 static void nfs4_free_lockowner(struct nfs4_stateowner
*sop
)
5336 struct nfs4_lockowner
*lo
= lockowner(sop
);
5338 kmem_cache_free(lockowner_slab
, lo
);
5341 static const struct nfs4_stateowner_operations lockowner_ops
= {
5342 .so_unhash
= nfs4_unhash_lockowner
,
5343 .so_free
= nfs4_free_lockowner
,
5347 * Alloc a lock owner structure.
5348 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
5351 * strhashval = ownerstr_hashval
5353 static struct nfs4_lockowner
*
5354 alloc_init_lock_stateowner(unsigned int strhashval
, struct nfs4_client
*clp
,
5355 struct nfs4_ol_stateid
*open_stp
,
5356 struct nfsd4_lock
*lock
)
5358 struct nfs4_lockowner
*lo
, *ret
;
5360 lo
= alloc_stateowner(lockowner_slab
, &lock
->lk_new_owner
, clp
);
5363 INIT_LIST_HEAD(&lo
->lo_owner
.so_stateids
);
5364 lo
->lo_owner
.so_is_open_owner
= 0;
5365 lo
->lo_owner
.so_seqid
= lock
->lk_new_lock_seqid
;
5366 lo
->lo_owner
.so_ops
= &lockowner_ops
;
5367 spin_lock(&clp
->cl_lock
);
5368 ret
= find_lockowner_str_locked(clp
, &lock
->lk_new_owner
);
5370 list_add(&lo
->lo_owner
.so_strhash
,
5371 &clp
->cl_ownerstr_hashtbl
[strhashval
]);
5374 nfs4_free_stateowner(&lo
->lo_owner
);
5376 spin_unlock(&clp
->cl_lock
);
5381 init_lock_stateid(struct nfs4_ol_stateid
*stp
, struct nfs4_lockowner
*lo
,
5382 struct nfs4_file
*fp
, struct inode
*inode
,
5383 struct nfs4_ol_stateid
*open_stp
)
5385 struct nfs4_client
*clp
= lo
->lo_owner
.so_client
;
5387 lockdep_assert_held(&clp
->cl_lock
);
5389 atomic_inc(&stp
->st_stid
.sc_count
);
5390 stp
->st_stid
.sc_type
= NFS4_LOCK_STID
;
5391 stp
->st_stateowner
= nfs4_get_stateowner(&lo
->lo_owner
);
5393 stp
->st_stid
.sc_file
= fp
;
5394 stp
->st_stid
.sc_free
= nfs4_free_lock_stateid
;
5395 stp
->st_access_bmap
= 0;
5396 stp
->st_deny_bmap
= open_stp
->st_deny_bmap
;
5397 stp
->st_openstp
= open_stp
;
5398 init_rwsem(&stp
->st_rwsem
);
5399 list_add(&stp
->st_locks
, &open_stp
->st_locks
);
5400 list_add(&stp
->st_perstateowner
, &lo
->lo_owner
.so_stateids
);
5401 spin_lock(&fp
->fi_lock
);
5402 list_add(&stp
->st_perfile
, &fp
->fi_stateids
);
5403 spin_unlock(&fp
->fi_lock
);
5406 static struct nfs4_ol_stateid
*
5407 find_lock_stateid(struct nfs4_lockowner
*lo
, struct nfs4_file
*fp
)
5409 struct nfs4_ol_stateid
*lst
;
5410 struct nfs4_client
*clp
= lo
->lo_owner
.so_client
;
5412 lockdep_assert_held(&clp
->cl_lock
);
5414 list_for_each_entry(lst
, &lo
->lo_owner
.so_stateids
, st_perstateowner
) {
5415 if (lst
->st_stid
.sc_file
== fp
) {
5416 atomic_inc(&lst
->st_stid
.sc_count
);
5423 static struct nfs4_ol_stateid
*
5424 find_or_create_lock_stateid(struct nfs4_lockowner
*lo
, struct nfs4_file
*fi
,
5425 struct inode
*inode
, struct nfs4_ol_stateid
*ost
,
5428 struct nfs4_stid
*ns
= NULL
;
5429 struct nfs4_ol_stateid
*lst
;
5430 struct nfs4_openowner
*oo
= openowner(ost
->st_stateowner
);
5431 struct nfs4_client
*clp
= oo
->oo_owner
.so_client
;
5433 spin_lock(&clp
->cl_lock
);
5434 lst
= find_lock_stateid(lo
, fi
);
5436 spin_unlock(&clp
->cl_lock
);
5437 ns
= nfs4_alloc_stid(clp
, stateid_slab
);
5441 spin_lock(&clp
->cl_lock
);
5442 lst
= find_lock_stateid(lo
, fi
);
5444 lst
= openlockstateid(ns
);
5445 init_lock_stateid(lst
, lo
, fi
, inode
, ost
);
5450 spin_unlock(&clp
->cl_lock
);
5457 check_lock_length(u64 offset
, u64 length
)
5459 return ((length
== 0) || ((length
!= NFS4_MAX_UINT64
) &&
5460 (length
> ~offset
)));
5463 static void get_lock_access(struct nfs4_ol_stateid
*lock_stp
, u32 access
)
5465 struct nfs4_file
*fp
= lock_stp
->st_stid
.sc_file
;
5467 lockdep_assert_held(&fp
->fi_lock
);
5469 if (test_access(access
, lock_stp
))
5471 __nfs4_file_get_access(fp
, access
);
5472 set_access(access
, lock_stp
);
5476 lookup_or_create_lock_state(struct nfsd4_compound_state
*cstate
,
5477 struct nfs4_ol_stateid
*ost
,
5478 struct nfsd4_lock
*lock
,
5479 struct nfs4_ol_stateid
**lst
, bool *new)
5482 struct nfs4_file
*fi
= ost
->st_stid
.sc_file
;
5483 struct nfs4_openowner
*oo
= openowner(ost
->st_stateowner
);
5484 struct nfs4_client
*cl
= oo
->oo_owner
.so_client
;
5485 struct inode
*inode
= d_inode(cstate
->current_fh
.fh_dentry
);
5486 struct nfs4_lockowner
*lo
;
5487 unsigned int strhashval
;
5489 lo
= find_lockowner_str(cl
, &lock
->lk_new_owner
);
5491 strhashval
= ownerstr_hashval(&lock
->lk_new_owner
);
5492 lo
= alloc_init_lock_stateowner(strhashval
, cl
, ost
, lock
);
5494 return nfserr_jukebox
;
5496 /* with an existing lockowner, seqids must be the same */
5497 status
= nfserr_bad_seqid
;
5498 if (!cstate
->minorversion
&&
5499 lock
->lk_new_lock_seqid
!= lo
->lo_owner
.so_seqid
)
5503 *lst
= find_or_create_lock_stateid(lo
, fi
, inode
, ost
, new);
5505 status
= nfserr_jukebox
;
5510 nfs4_put_stateowner(&lo
->lo_owner
);
5518 nfsd4_lock(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5519 struct nfsd4_lock
*lock
)
5521 struct nfs4_openowner
*open_sop
= NULL
;
5522 struct nfs4_lockowner
*lock_sop
= NULL
;
5523 struct nfs4_ol_stateid
*lock_stp
= NULL
;
5524 struct nfs4_ol_stateid
*open_stp
= NULL
;
5525 struct nfs4_file
*fp
;
5526 struct file
*filp
= NULL
;
5527 struct file_lock
*file_lock
= NULL
;
5528 struct file_lock
*conflock
= NULL
;
5533 struct net
*net
= SVC_NET(rqstp
);
5534 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
5536 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
5537 (long long) lock
->lk_offset
,
5538 (long long) lock
->lk_length
);
5540 if (check_lock_length(lock
->lk_offset
, lock
->lk_length
))
5541 return nfserr_inval
;
5543 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
,
5544 S_IFREG
, NFSD_MAY_LOCK
))) {
5545 dprintk("NFSD: nfsd4_lock: permission denied!\n");
5549 if (lock
->lk_is_new
) {
5550 if (nfsd4_has_session(cstate
))
5551 /* See rfc 5661 18.10.3: given clientid is ignored: */
5552 memcpy(&lock
->lk_new_clientid
,
5553 &cstate
->session
->se_client
->cl_clientid
,
5554 sizeof(clientid_t
));
5556 status
= nfserr_stale_clientid
;
5557 if (STALE_CLIENTID(&lock
->lk_new_clientid
, nn
))
5560 /* validate and update open stateid and open seqid */
5561 status
= nfs4_preprocess_confirmed_seqid_op(cstate
,
5562 lock
->lk_new_open_seqid
,
5563 &lock
->lk_new_open_stateid
,
5567 up_write(&open_stp
->st_rwsem
);
5568 open_sop
= openowner(open_stp
->st_stateowner
);
5569 status
= nfserr_bad_stateid
;
5570 if (!same_clid(&open_sop
->oo_owner
.so_client
->cl_clientid
,
5571 &lock
->lk_new_clientid
))
5573 status
= lookup_or_create_lock_state(cstate
, open_stp
, lock
,
5575 if (status
== nfs_ok
)
5576 down_write(&lock_stp
->st_rwsem
);
5578 status
= nfs4_preprocess_seqid_op(cstate
,
5579 lock
->lk_old_lock_seqid
,
5580 &lock
->lk_old_lock_stateid
,
5581 NFS4_LOCK_STID
, &lock_stp
, nn
);
5585 lock_sop
= lockowner(lock_stp
->st_stateowner
);
5587 lkflg
= setlkflg(lock
->lk_type
);
5588 status
= nfs4_check_openmode(lock_stp
, lkflg
);
5592 status
= nfserr_grace
;
5593 if (locks_in_grace(net
) && !lock
->lk_reclaim
)
5595 status
= nfserr_no_grace
;
5596 if (!locks_in_grace(net
) && lock
->lk_reclaim
)
5599 file_lock
= locks_alloc_lock();
5601 dprintk("NFSD: %s: unable to allocate lock!\n", __func__
);
5602 status
= nfserr_jukebox
;
5606 fp
= lock_stp
->st_stid
.sc_file
;
5607 switch (lock
->lk_type
) {
5610 spin_lock(&fp
->fi_lock
);
5611 filp
= find_readable_file_locked(fp
);
5613 get_lock_access(lock_stp
, NFS4_SHARE_ACCESS_READ
);
5614 spin_unlock(&fp
->fi_lock
);
5615 file_lock
->fl_type
= F_RDLCK
;
5618 case NFS4_WRITEW_LT
:
5619 spin_lock(&fp
->fi_lock
);
5620 filp
= find_writeable_file_locked(fp
);
5622 get_lock_access(lock_stp
, NFS4_SHARE_ACCESS_WRITE
);
5623 spin_unlock(&fp
->fi_lock
);
5624 file_lock
->fl_type
= F_WRLCK
;
5627 status
= nfserr_inval
;
5631 status
= nfserr_openmode
;
5635 file_lock
->fl_owner
= (fl_owner_t
)lockowner(nfs4_get_stateowner(&lock_sop
->lo_owner
));
5636 file_lock
->fl_pid
= current
->tgid
;
5637 file_lock
->fl_file
= filp
;
5638 file_lock
->fl_flags
= FL_POSIX
;
5639 file_lock
->fl_lmops
= &nfsd_posix_mng_ops
;
5640 file_lock
->fl_start
= lock
->lk_offset
;
5641 file_lock
->fl_end
= last_byte_offset(lock
->lk_offset
, lock
->lk_length
);
5642 nfs4_transform_lock_offset(file_lock
);
5644 conflock
= locks_alloc_lock();
5646 dprintk("NFSD: %s: unable to allocate lock!\n", __func__
);
5647 status
= nfserr_jukebox
;
5651 err
= vfs_lock_file(filp
, F_SETLK
, file_lock
, conflock
);
5653 case 0: /* success! */
5654 nfs4_inc_and_copy_stateid(&lock
->lk_resp_stateid
, &lock_stp
->st_stid
);
5657 case (EAGAIN
): /* conflock holds conflicting lock */
5658 status
= nfserr_denied
;
5659 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
5660 nfs4_set_lock_denied(conflock
, &lock
->lk_denied
);
5663 status
= nfserr_deadlock
;
5666 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err
);
5667 status
= nfserrno(err
);
5674 /* Bump seqid manually if the 4.0 replay owner is openowner */
5675 if (cstate
->replay_owner
&&
5676 cstate
->replay_owner
!= &lock_sop
->lo_owner
&&
5677 seqid_mutating_err(ntohl(status
)))
5678 lock_sop
->lo_owner
.so_seqid
++;
5680 up_write(&lock_stp
->st_rwsem
);
5683 * If this is a new, never-before-used stateid, and we are
5684 * returning an error, then just go ahead and release it.
5687 release_lock_stateid(lock_stp
);
5689 nfs4_put_stid(&lock_stp
->st_stid
);
5692 nfs4_put_stid(&open_stp
->st_stid
);
5693 nfsd4_bump_seqid(cstate
, status
);
5695 locks_free_lock(file_lock
);
5697 locks_free_lock(conflock
);
5702 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
5703 * so we do a temporary open here just to get an open file to pass to
5704 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
5707 static __be32
nfsd_test_lock(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file_lock
*lock
)
5710 __be32 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, NFSD_MAY_READ
, &file
);
5712 err
= nfserrno(vfs_test_lock(file
, lock
));
5722 nfsd4_lockt(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5723 struct nfsd4_lockt
*lockt
)
5725 struct file_lock
*file_lock
= NULL
;
5726 struct nfs4_lockowner
*lo
= NULL
;
5728 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5730 if (locks_in_grace(SVC_NET(rqstp
)))
5731 return nfserr_grace
;
5733 if (check_lock_length(lockt
->lt_offset
, lockt
->lt_length
))
5734 return nfserr_inval
;
5736 if (!nfsd4_has_session(cstate
)) {
5737 status
= lookup_clientid(&lockt
->lt_clientid
, cstate
, nn
);
5742 if ((status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFREG
, 0)))
5745 file_lock
= locks_alloc_lock();
5747 dprintk("NFSD: %s: unable to allocate lock!\n", __func__
);
5748 status
= nfserr_jukebox
;
5752 switch (lockt
->lt_type
) {
5755 file_lock
->fl_type
= F_RDLCK
;
5758 case NFS4_WRITEW_LT
:
5759 file_lock
->fl_type
= F_WRLCK
;
5762 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
5763 status
= nfserr_inval
;
5767 lo
= find_lockowner_str(cstate
->clp
, &lockt
->lt_owner
);
5769 file_lock
->fl_owner
= (fl_owner_t
)lo
;
5770 file_lock
->fl_pid
= current
->tgid
;
5771 file_lock
->fl_flags
= FL_POSIX
;
5773 file_lock
->fl_start
= lockt
->lt_offset
;
5774 file_lock
->fl_end
= last_byte_offset(lockt
->lt_offset
, lockt
->lt_length
);
5776 nfs4_transform_lock_offset(file_lock
);
5778 status
= nfsd_test_lock(rqstp
, &cstate
->current_fh
, file_lock
);
5782 if (file_lock
->fl_type
!= F_UNLCK
) {
5783 status
= nfserr_denied
;
5784 nfs4_set_lock_denied(file_lock
, &lockt
->lt_denied
);
5788 nfs4_put_stateowner(&lo
->lo_owner
);
5790 locks_free_lock(file_lock
);
5795 nfsd4_locku(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
5796 struct nfsd4_locku
*locku
)
5798 struct nfs4_ol_stateid
*stp
;
5799 struct file
*filp
= NULL
;
5800 struct file_lock
*file_lock
= NULL
;
5803 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5805 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
5806 (long long) locku
->lu_offset
,
5807 (long long) locku
->lu_length
);
5809 if (check_lock_length(locku
->lu_offset
, locku
->lu_length
))
5810 return nfserr_inval
;
5812 status
= nfs4_preprocess_seqid_op(cstate
, locku
->lu_seqid
,
5813 &locku
->lu_stateid
, NFS4_LOCK_STID
,
5817 filp
= find_any_file(stp
->st_stid
.sc_file
);
5819 status
= nfserr_lock_range
;
5822 file_lock
= locks_alloc_lock();
5824 dprintk("NFSD: %s: unable to allocate lock!\n", __func__
);
5825 status
= nfserr_jukebox
;
5829 file_lock
->fl_type
= F_UNLCK
;
5830 file_lock
->fl_owner
= (fl_owner_t
)lockowner(nfs4_get_stateowner(stp
->st_stateowner
));
5831 file_lock
->fl_pid
= current
->tgid
;
5832 file_lock
->fl_file
= filp
;
5833 file_lock
->fl_flags
= FL_POSIX
;
5834 file_lock
->fl_lmops
= &nfsd_posix_mng_ops
;
5835 file_lock
->fl_start
= locku
->lu_offset
;
5837 file_lock
->fl_end
= last_byte_offset(locku
->lu_offset
,
5839 nfs4_transform_lock_offset(file_lock
);
5841 err
= vfs_lock_file(filp
, F_SETLK
, file_lock
, NULL
);
5843 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
5846 nfs4_inc_and_copy_stateid(&locku
->lu_stateid
, &stp
->st_stid
);
5850 up_write(&stp
->st_rwsem
);
5851 nfs4_put_stid(&stp
->st_stid
);
5853 nfsd4_bump_seqid(cstate
, status
);
5855 locks_free_lock(file_lock
);
5859 status
= nfserrno(err
);
5865 * true: locks held by lockowner
5866 * false: no locks held by lockowner
5869 check_for_locks(struct nfs4_file
*fp
, struct nfs4_lockowner
*lowner
)
5871 struct file_lock
*fl
;
5873 struct file
*filp
= find_any_file(fp
);
5874 struct inode
*inode
;
5875 struct file_lock_context
*flctx
;
5878 /* Any valid lock stateid should have some sort of access */
5883 inode
= file_inode(filp
);
5884 flctx
= inode
->i_flctx
;
5886 if (flctx
&& !list_empty_careful(&flctx
->flc_posix
)) {
5887 spin_lock(&flctx
->flc_lock
);
5888 list_for_each_entry(fl
, &flctx
->flc_posix
, fl_list
) {
5889 if (fl
->fl_owner
== (fl_owner_t
)lowner
) {
5894 spin_unlock(&flctx
->flc_lock
);
5901 nfsd4_release_lockowner(struct svc_rqst
*rqstp
,
5902 struct nfsd4_compound_state
*cstate
,
5903 struct nfsd4_release_lockowner
*rlockowner
)
5905 clientid_t
*clid
= &rlockowner
->rl_clientid
;
5906 struct nfs4_stateowner
*sop
;
5907 struct nfs4_lockowner
*lo
= NULL
;
5908 struct nfs4_ol_stateid
*stp
;
5909 struct xdr_netobj
*owner
= &rlockowner
->rl_owner
;
5910 unsigned int hashval
= ownerstr_hashval(owner
);
5912 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
5913 struct nfs4_client
*clp
;
5915 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
5916 clid
->cl_boot
, clid
->cl_id
);
5918 status
= lookup_clientid(clid
, cstate
, nn
);
5923 /* Find the matching lock stateowner */
5924 spin_lock(&clp
->cl_lock
);
5925 list_for_each_entry(sop
, &clp
->cl_ownerstr_hashtbl
[hashval
],
5928 if (sop
->so_is_open_owner
|| !same_owner_str(sop
, owner
))
5931 /* see if there are still any locks associated with it */
5932 lo
= lockowner(sop
);
5933 list_for_each_entry(stp
, &sop
->so_stateids
, st_perstateowner
) {
5934 if (check_for_locks(stp
->st_stid
.sc_file
, lo
)) {
5935 status
= nfserr_locks_held
;
5936 spin_unlock(&clp
->cl_lock
);
5941 nfs4_get_stateowner(sop
);
5944 spin_unlock(&clp
->cl_lock
);
5946 release_lockowner(lo
);
5950 static inline struct nfs4_client_reclaim
*
5953 return kmalloc(sizeof(struct nfs4_client_reclaim
), GFP_KERNEL
);
5957 nfs4_has_reclaimed_state(const char *name
, struct nfsd_net
*nn
)
5959 struct nfs4_client_reclaim
*crp
;
5961 crp
= nfsd4_find_reclaim_client(name
, nn
);
5962 return (crp
&& crp
->cr_clp
);
5966 * failure => all reset bets are off, nfserr_no_grace...
5968 struct nfs4_client_reclaim
*
5969 nfs4_client_to_reclaim(const char *name
, struct nfsd_net
*nn
)
5971 unsigned int strhashval
;
5972 struct nfs4_client_reclaim
*crp
;
5974 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN
, name
);
5975 crp
= alloc_reclaim();
5977 strhashval
= clientstr_hashval(name
);
5978 INIT_LIST_HEAD(&crp
->cr_strhash
);
5979 list_add(&crp
->cr_strhash
, &nn
->reclaim_str_hashtbl
[strhashval
]);
5980 memcpy(crp
->cr_recdir
, name
, HEXDIR_LEN
);
5982 nn
->reclaim_str_hashtbl_size
++;
5988 nfs4_remove_reclaim_record(struct nfs4_client_reclaim
*crp
, struct nfsd_net
*nn
)
5990 list_del(&crp
->cr_strhash
);
5992 nn
->reclaim_str_hashtbl_size
--;
5996 nfs4_release_reclaim(struct nfsd_net
*nn
)
5998 struct nfs4_client_reclaim
*crp
= NULL
;
6001 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
6002 while (!list_empty(&nn
->reclaim_str_hashtbl
[i
])) {
6003 crp
= list_entry(nn
->reclaim_str_hashtbl
[i
].next
,
6004 struct nfs4_client_reclaim
, cr_strhash
);
6005 nfs4_remove_reclaim_record(crp
, nn
);
6008 WARN_ON_ONCE(nn
->reclaim_str_hashtbl_size
);
6012 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
6013 struct nfs4_client_reclaim
*
6014 nfsd4_find_reclaim_client(const char *recdir
, struct nfsd_net
*nn
)
6016 unsigned int strhashval
;
6017 struct nfs4_client_reclaim
*crp
= NULL
;
6019 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir
);
6021 strhashval
= clientstr_hashval(recdir
);
6022 list_for_each_entry(crp
, &nn
->reclaim_str_hashtbl
[strhashval
], cr_strhash
) {
6023 if (same_name(crp
->cr_recdir
, recdir
)) {
6031 * Called from OPEN. Look for clientid in reclaim list.
6034 nfs4_check_open_reclaim(clientid_t
*clid
,
6035 struct nfsd4_compound_state
*cstate
,
6036 struct nfsd_net
*nn
)
6040 /* find clientid in conf_id_hashtbl */
6041 status
= lookup_clientid(clid
, cstate
, nn
);
6043 return nfserr_reclaim_bad
;
6045 if (test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE
, &cstate
->clp
->cl_flags
))
6046 return nfserr_no_grace
;
6048 if (nfsd4_client_record_check(cstate
->clp
))
6049 return nfserr_reclaim_bad
;
6054 #ifdef CONFIG_NFSD_FAULT_INJECTION
6056 put_client(struct nfs4_client
*clp
)
6058 atomic_dec(&clp
->cl_refcount
);
6061 static struct nfs4_client
*
6062 nfsd_find_client(struct sockaddr_storage
*addr
, size_t addr_size
)
6064 struct nfs4_client
*clp
;
6065 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6068 if (!nfsd_netns_ready(nn
))
6071 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6072 if (memcmp(&clp
->cl_addr
, addr
, addr_size
) == 0)
6079 nfsd_inject_print_clients(void)
6081 struct nfs4_client
*clp
;
6083 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6085 char buf
[INET6_ADDRSTRLEN
];
6087 if (!nfsd_netns_ready(nn
))
6090 spin_lock(&nn
->client_lock
);
6091 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6092 rpc_ntop((struct sockaddr
*)&clp
->cl_addr
, buf
, sizeof(buf
));
6093 pr_info("NFS Client: %s\n", buf
);
6096 spin_unlock(&nn
->client_lock
);
6102 nfsd_inject_forget_client(struct sockaddr_storage
*addr
, size_t addr_size
)
6105 struct nfs4_client
*clp
;
6106 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6109 if (!nfsd_netns_ready(nn
))
6112 spin_lock(&nn
->client_lock
);
6113 clp
= nfsd_find_client(addr
, addr_size
);
6115 if (mark_client_expired_locked(clp
) == nfs_ok
)
6120 spin_unlock(&nn
->client_lock
);
6129 nfsd_inject_forget_clients(u64 max
)
6132 struct nfs4_client
*clp
, *next
;
6133 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6135 LIST_HEAD(reaplist
);
6137 if (!nfsd_netns_ready(nn
))
6140 spin_lock(&nn
->client_lock
);
6141 list_for_each_entry_safe(clp
, next
, &nn
->client_lru
, cl_lru
) {
6142 if (mark_client_expired_locked(clp
) == nfs_ok
) {
6143 list_add(&clp
->cl_lru
, &reaplist
);
6144 if (max
!= 0 && ++count
>= max
)
6148 spin_unlock(&nn
->client_lock
);
6150 list_for_each_entry_safe(clp
, next
, &reaplist
, cl_lru
)
6156 static void nfsd_print_count(struct nfs4_client
*clp
, unsigned int count
,
6159 char buf
[INET6_ADDRSTRLEN
];
6160 rpc_ntop((struct sockaddr
*)&clp
->cl_addr
, buf
, sizeof(buf
));
6161 printk(KERN_INFO
"NFS Client: %s has %u %s\n", buf
, count
, type
);
6165 nfsd_inject_add_lock_to_list(struct nfs4_ol_stateid
*lst
,
6166 struct list_head
*collect
)
6168 struct nfs4_client
*clp
= lst
->st_stid
.sc_client
;
6169 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6175 lockdep_assert_held(&nn
->client_lock
);
6176 atomic_inc(&clp
->cl_refcount
);
6177 list_add(&lst
->st_locks
, collect
);
6180 static u64
nfsd_foreach_client_lock(struct nfs4_client
*clp
, u64 max
,
6181 struct list_head
*collect
,
6182 bool (*func
)(struct nfs4_ol_stateid
*))
6184 struct nfs4_openowner
*oop
;
6185 struct nfs4_ol_stateid
*stp
, *st_next
;
6186 struct nfs4_ol_stateid
*lst
, *lst_next
;
6189 spin_lock(&clp
->cl_lock
);
6190 list_for_each_entry(oop
, &clp
->cl_openowners
, oo_perclient
) {
6191 list_for_each_entry_safe(stp
, st_next
,
6192 &oop
->oo_owner
.so_stateids
, st_perstateowner
) {
6193 list_for_each_entry_safe(lst
, lst_next
,
6194 &stp
->st_locks
, st_locks
) {
6197 nfsd_inject_add_lock_to_list(lst
,
6202 * Despite the fact that these functions deal
6203 * with 64-bit integers for "count", we must
6204 * ensure that it doesn't blow up the
6205 * clp->cl_refcount. Throw a warning if we
6206 * start to approach INT_MAX here.
6208 WARN_ON_ONCE(count
== (INT_MAX
/ 2));
6215 spin_unlock(&clp
->cl_lock
);
6221 nfsd_collect_client_locks(struct nfs4_client
*clp
, struct list_head
*collect
,
6224 return nfsd_foreach_client_lock(clp
, max
, collect
, unhash_lock_stateid
);
6228 nfsd_print_client_locks(struct nfs4_client
*clp
)
6230 u64 count
= nfsd_foreach_client_lock(clp
, 0, NULL
, NULL
);
6231 nfsd_print_count(clp
, count
, "locked files");
6236 nfsd_inject_print_locks(void)
6238 struct nfs4_client
*clp
;
6240 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6243 if (!nfsd_netns_ready(nn
))
6246 spin_lock(&nn
->client_lock
);
6247 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
)
6248 count
+= nfsd_print_client_locks(clp
);
6249 spin_unlock(&nn
->client_lock
);
6255 nfsd_reap_locks(struct list_head
*reaplist
)
6257 struct nfs4_client
*clp
;
6258 struct nfs4_ol_stateid
*stp
, *next
;
6260 list_for_each_entry_safe(stp
, next
, reaplist
, st_locks
) {
6261 list_del_init(&stp
->st_locks
);
6262 clp
= stp
->st_stid
.sc_client
;
6263 nfs4_put_stid(&stp
->st_stid
);
6269 nfsd_inject_forget_client_locks(struct sockaddr_storage
*addr
, size_t addr_size
)
6271 unsigned int count
= 0;
6272 struct nfs4_client
*clp
;
6273 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6275 LIST_HEAD(reaplist
);
6277 if (!nfsd_netns_ready(nn
))
6280 spin_lock(&nn
->client_lock
);
6281 clp
= nfsd_find_client(addr
, addr_size
);
6283 count
= nfsd_collect_client_locks(clp
, &reaplist
, 0);
6284 spin_unlock(&nn
->client_lock
);
6285 nfsd_reap_locks(&reaplist
);
6290 nfsd_inject_forget_locks(u64 max
)
6293 struct nfs4_client
*clp
;
6294 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6296 LIST_HEAD(reaplist
);
6298 if (!nfsd_netns_ready(nn
))
6301 spin_lock(&nn
->client_lock
);
6302 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6303 count
+= nfsd_collect_client_locks(clp
, &reaplist
, max
- count
);
6304 if (max
!= 0 && count
>= max
)
6307 spin_unlock(&nn
->client_lock
);
6308 nfsd_reap_locks(&reaplist
);
6313 nfsd_foreach_client_openowner(struct nfs4_client
*clp
, u64 max
,
6314 struct list_head
*collect
,
6315 void (*func
)(struct nfs4_openowner
*))
6317 struct nfs4_openowner
*oop
, *next
;
6318 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6322 lockdep_assert_held(&nn
->client_lock
);
6324 spin_lock(&clp
->cl_lock
);
6325 list_for_each_entry_safe(oop
, next
, &clp
->cl_openowners
, oo_perclient
) {
6329 atomic_inc(&clp
->cl_refcount
);
6330 list_add(&oop
->oo_perclient
, collect
);
6335 * Despite the fact that these functions deal with
6336 * 64-bit integers for "count", we must ensure that
6337 * it doesn't blow up the clp->cl_refcount. Throw a
6338 * warning if we start to approach INT_MAX here.
6340 WARN_ON_ONCE(count
== (INT_MAX
/ 2));
6344 spin_unlock(&clp
->cl_lock
);
6350 nfsd_print_client_openowners(struct nfs4_client
*clp
)
6352 u64 count
= nfsd_foreach_client_openowner(clp
, 0, NULL
, NULL
);
6354 nfsd_print_count(clp
, count
, "openowners");
6359 nfsd_collect_client_openowners(struct nfs4_client
*clp
,
6360 struct list_head
*collect
, u64 max
)
6362 return nfsd_foreach_client_openowner(clp
, max
, collect
,
6363 unhash_openowner_locked
);
6367 nfsd_inject_print_openowners(void)
6369 struct nfs4_client
*clp
;
6371 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6374 if (!nfsd_netns_ready(nn
))
6377 spin_lock(&nn
->client_lock
);
6378 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
)
6379 count
+= nfsd_print_client_openowners(clp
);
6380 spin_unlock(&nn
->client_lock
);
6386 nfsd_reap_openowners(struct list_head
*reaplist
)
6388 struct nfs4_client
*clp
;
6389 struct nfs4_openowner
*oop
, *next
;
6391 list_for_each_entry_safe(oop
, next
, reaplist
, oo_perclient
) {
6392 list_del_init(&oop
->oo_perclient
);
6393 clp
= oop
->oo_owner
.so_client
;
6394 release_openowner(oop
);
6400 nfsd_inject_forget_client_openowners(struct sockaddr_storage
*addr
,
6403 unsigned int count
= 0;
6404 struct nfs4_client
*clp
;
6405 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6407 LIST_HEAD(reaplist
);
6409 if (!nfsd_netns_ready(nn
))
6412 spin_lock(&nn
->client_lock
);
6413 clp
= nfsd_find_client(addr
, addr_size
);
6415 count
= nfsd_collect_client_openowners(clp
, &reaplist
, 0);
6416 spin_unlock(&nn
->client_lock
);
6417 nfsd_reap_openowners(&reaplist
);
6422 nfsd_inject_forget_openowners(u64 max
)
6425 struct nfs4_client
*clp
;
6426 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6428 LIST_HEAD(reaplist
);
6430 if (!nfsd_netns_ready(nn
))
6433 spin_lock(&nn
->client_lock
);
6434 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6435 count
+= nfsd_collect_client_openowners(clp
, &reaplist
,
6437 if (max
!= 0 && count
>= max
)
6440 spin_unlock(&nn
->client_lock
);
6441 nfsd_reap_openowners(&reaplist
);
6445 static u64
nfsd_find_all_delegations(struct nfs4_client
*clp
, u64 max
,
6446 struct list_head
*victims
)
6448 struct nfs4_delegation
*dp
, *next
;
6449 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6453 lockdep_assert_held(&nn
->client_lock
);
6455 spin_lock(&state_lock
);
6456 list_for_each_entry_safe(dp
, next
, &clp
->cl_delegations
, dl_perclnt
) {
6459 * It's not safe to mess with delegations that have a
6460 * non-zero dl_time. They might have already been broken
6461 * and could be processed by the laundromat outside of
6462 * the state_lock. Just leave them be.
6464 if (dp
->dl_time
!= 0)
6467 atomic_inc(&clp
->cl_refcount
);
6468 WARN_ON(!unhash_delegation_locked(dp
));
6469 list_add(&dp
->dl_recall_lru
, victims
);
6473 * Despite the fact that these functions deal with
6474 * 64-bit integers for "count", we must ensure that
6475 * it doesn't blow up the clp->cl_refcount. Throw a
6476 * warning if we start to approach INT_MAX here.
6478 WARN_ON_ONCE(count
== (INT_MAX
/ 2));
6482 spin_unlock(&state_lock
);
6487 nfsd_print_client_delegations(struct nfs4_client
*clp
)
6489 u64 count
= nfsd_find_all_delegations(clp
, 0, NULL
);
6491 nfsd_print_count(clp
, count
, "delegations");
6496 nfsd_inject_print_delegations(void)
6498 struct nfs4_client
*clp
;
6500 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6503 if (!nfsd_netns_ready(nn
))
6506 spin_lock(&nn
->client_lock
);
6507 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
)
6508 count
+= nfsd_print_client_delegations(clp
);
6509 spin_unlock(&nn
->client_lock
);
6515 nfsd_forget_delegations(struct list_head
*reaplist
)
6517 struct nfs4_client
*clp
;
6518 struct nfs4_delegation
*dp
, *next
;
6520 list_for_each_entry_safe(dp
, next
, reaplist
, dl_recall_lru
) {
6521 list_del_init(&dp
->dl_recall_lru
);
6522 clp
= dp
->dl_stid
.sc_client
;
6523 revoke_delegation(dp
);
6529 nfsd_inject_forget_client_delegations(struct sockaddr_storage
*addr
,
6533 struct nfs4_client
*clp
;
6534 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6536 LIST_HEAD(reaplist
);
6538 if (!nfsd_netns_ready(nn
))
6541 spin_lock(&nn
->client_lock
);
6542 clp
= nfsd_find_client(addr
, addr_size
);
6544 count
= nfsd_find_all_delegations(clp
, 0, &reaplist
);
6545 spin_unlock(&nn
->client_lock
);
6547 nfsd_forget_delegations(&reaplist
);
6552 nfsd_inject_forget_delegations(u64 max
)
6555 struct nfs4_client
*clp
;
6556 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6558 LIST_HEAD(reaplist
);
6560 if (!nfsd_netns_ready(nn
))
6563 spin_lock(&nn
->client_lock
);
6564 list_for_each_entry(clp
, &nn
->client_lru
, cl_lru
) {
6565 count
+= nfsd_find_all_delegations(clp
, max
- count
, &reaplist
);
6566 if (max
!= 0 && count
>= max
)
6569 spin_unlock(&nn
->client_lock
);
6570 nfsd_forget_delegations(&reaplist
);
6575 nfsd_recall_delegations(struct list_head
*reaplist
)
6577 struct nfs4_client
*clp
;
6578 struct nfs4_delegation
*dp
, *next
;
6580 list_for_each_entry_safe(dp
, next
, reaplist
, dl_recall_lru
) {
6581 list_del_init(&dp
->dl_recall_lru
);
6582 clp
= dp
->dl_stid
.sc_client
;
6584 * We skipped all entries that had a zero dl_time before,
6585 * so we can now reset the dl_time back to 0. If a delegation
6586 * break comes in now, then it won't make any difference since
6587 * we're recalling it either way.
6589 spin_lock(&state_lock
);
6591 spin_unlock(&state_lock
);
6592 nfsd_break_one_deleg(dp
);
6598 nfsd_inject_recall_client_delegations(struct sockaddr_storage
*addr
,
6602 struct nfs4_client
*clp
;
6603 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6605 LIST_HEAD(reaplist
);
6607 if (!nfsd_netns_ready(nn
))
6610 spin_lock(&nn
->client_lock
);
6611 clp
= nfsd_find_client(addr
, addr_size
);
6613 count
= nfsd_find_all_delegations(clp
, 0, &reaplist
);
6614 spin_unlock(&nn
->client_lock
);
6616 nfsd_recall_delegations(&reaplist
);
6621 nfsd_inject_recall_delegations(u64 max
)
6624 struct nfs4_client
*clp
, *next
;
6625 struct nfsd_net
*nn
= net_generic(current
->nsproxy
->net_ns
,
6627 LIST_HEAD(reaplist
);
6629 if (!nfsd_netns_ready(nn
))
6632 spin_lock(&nn
->client_lock
);
6633 list_for_each_entry_safe(clp
, next
, &nn
->client_lru
, cl_lru
) {
6634 count
+= nfsd_find_all_delegations(clp
, max
- count
, &reaplist
);
6635 if (max
!= 0 && ++count
>= max
)
6638 spin_unlock(&nn
->client_lock
);
6639 nfsd_recall_delegations(&reaplist
);
6642 #endif /* CONFIG_NFSD_FAULT_INJECTION */
6645 * Since the lifetime of a delegation isn't limited to that of an open, a
6646 * client may quite reasonably hang on to a delegation as long as it has
6647 * the inode cached. This becomes an obvious problem the first time a
6648 * client's inode cache approaches the size of the server's total memory.
6650 * For now we avoid this problem by imposing a hard limit on the number
6651 * of delegations, which varies according to the server's memory size.
6654 set_max_delegations(void)
6657 * Allow at most 4 delegations per megabyte of RAM. Quick
6658 * estimates suggest that in the worst case (where every delegation
6659 * is for a different inode), a delegation could take about 1.5K,
6660 * giving a worst case usage of about 6% of memory.
6662 max_delegations
= nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT
);
6665 static int nfs4_state_create_net(struct net
*net
)
6667 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
6670 nn
->conf_id_hashtbl
= kmalloc(sizeof(struct list_head
) *
6671 CLIENT_HASH_SIZE
, GFP_KERNEL
);
6672 if (!nn
->conf_id_hashtbl
)
6674 nn
->unconf_id_hashtbl
= kmalloc(sizeof(struct list_head
) *
6675 CLIENT_HASH_SIZE
, GFP_KERNEL
);
6676 if (!nn
->unconf_id_hashtbl
)
6678 nn
->sessionid_hashtbl
= kmalloc(sizeof(struct list_head
) *
6679 SESSION_HASH_SIZE
, GFP_KERNEL
);
6680 if (!nn
->sessionid_hashtbl
)
6683 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
6684 INIT_LIST_HEAD(&nn
->conf_id_hashtbl
[i
]);
6685 INIT_LIST_HEAD(&nn
->unconf_id_hashtbl
[i
]);
6687 for (i
= 0; i
< SESSION_HASH_SIZE
; i
++)
6688 INIT_LIST_HEAD(&nn
->sessionid_hashtbl
[i
]);
6689 nn
->conf_name_tree
= RB_ROOT
;
6690 nn
->unconf_name_tree
= RB_ROOT
;
6691 INIT_LIST_HEAD(&nn
->client_lru
);
6692 INIT_LIST_HEAD(&nn
->close_lru
);
6693 INIT_LIST_HEAD(&nn
->del_recall_lru
);
6694 spin_lock_init(&nn
->client_lock
);
6696 INIT_DELAYED_WORK(&nn
->laundromat_work
, laundromat_main
);
6702 kfree(nn
->unconf_id_hashtbl
);
6704 kfree(nn
->conf_id_hashtbl
);
6710 nfs4_state_destroy_net(struct net
*net
)
6713 struct nfs4_client
*clp
= NULL
;
6714 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
6716 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
6717 while (!list_empty(&nn
->conf_id_hashtbl
[i
])) {
6718 clp
= list_entry(nn
->conf_id_hashtbl
[i
].next
, struct nfs4_client
, cl_idhash
);
6719 destroy_client(clp
);
6723 for (i
= 0; i
< CLIENT_HASH_SIZE
; i
++) {
6724 while (!list_empty(&nn
->unconf_id_hashtbl
[i
])) {
6725 clp
= list_entry(nn
->unconf_id_hashtbl
[i
].next
, struct nfs4_client
, cl_idhash
);
6726 destroy_client(clp
);
6730 kfree(nn
->sessionid_hashtbl
);
6731 kfree(nn
->unconf_id_hashtbl
);
6732 kfree(nn
->conf_id_hashtbl
);
6737 nfs4_state_start_net(struct net
*net
)
6739 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
6742 ret
= nfs4_state_create_net(net
);
6745 nn
->boot_time
= get_seconds();
6746 nn
->grace_ended
= false;
6747 nn
->nfsd4_manager
.block_opens
= true;
6748 locks_start_grace(net
, &nn
->nfsd4_manager
);
6749 nfsd4_client_tracking_init(net
);
6750 printk(KERN_INFO
"NFSD: starting %ld-second grace period (net %p)\n",
6751 nn
->nfsd4_grace
, net
);
6752 queue_delayed_work(laundry_wq
, &nn
->laundromat_work
, nn
->nfsd4_grace
* HZ
);
6756 /* initialization to perform when the nfsd service is started: */
6759 nfs4_state_start(void)
6763 ret
= set_callback_cred();
6766 laundry_wq
= alloc_workqueue("%s", WQ_UNBOUND
, 0, "nfsd4");
6767 if (laundry_wq
== NULL
) {
6771 ret
= nfsd4_create_callback_queue();
6773 goto out_free_laundry
;
6775 set_max_delegations();
6780 destroy_workqueue(laundry_wq
);
6786 nfs4_state_shutdown_net(struct net
*net
)
6788 struct nfs4_delegation
*dp
= NULL
;
6789 struct list_head
*pos
, *next
, reaplist
;
6790 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
6792 cancel_delayed_work_sync(&nn
->laundromat_work
);
6793 locks_end_grace(&nn
->nfsd4_manager
);
6795 INIT_LIST_HEAD(&reaplist
);
6796 spin_lock(&state_lock
);
6797 list_for_each_safe(pos
, next
, &nn
->del_recall_lru
) {
6798 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
6799 WARN_ON(!unhash_delegation_locked(dp
));
6800 list_add(&dp
->dl_recall_lru
, &reaplist
);
6802 spin_unlock(&state_lock
);
6803 list_for_each_safe(pos
, next
, &reaplist
) {
6804 dp
= list_entry (pos
, struct nfs4_delegation
, dl_recall_lru
);
6805 list_del_init(&dp
->dl_recall_lru
);
6806 put_clnt_odstate(dp
->dl_clnt_odstate
);
6807 nfs4_put_deleg_lease(dp
->dl_stid
.sc_file
);
6808 nfs4_put_stid(&dp
->dl_stid
);
6811 nfsd4_client_tracking_exit(net
);
6812 nfs4_state_destroy_net(net
);
6816 nfs4_state_shutdown(void)
6818 destroy_workqueue(laundry_wq
);
6819 nfsd4_destroy_callback_queue();
6823 get_stateid(struct nfsd4_compound_state
*cstate
, stateid_t
*stateid
)
6825 if (HAS_STATE_ID(cstate
, CURRENT_STATE_ID_FLAG
) && CURRENT_STATEID(stateid
))
6826 memcpy(stateid
, &cstate
->current_stateid
, sizeof(stateid_t
));
6830 put_stateid(struct nfsd4_compound_state
*cstate
, stateid_t
*stateid
)
6832 if (cstate
->minorversion
) {
6833 memcpy(&cstate
->current_stateid
, stateid
, sizeof(stateid_t
));
6834 SET_STATE_ID(cstate
, CURRENT_STATE_ID_FLAG
);
6839 clear_current_stateid(struct nfsd4_compound_state
*cstate
)
6841 CLEAR_STATE_ID(cstate
, CURRENT_STATE_ID_FLAG
);
6845 * functions to set current state id
6848 nfsd4_set_opendowngradestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_open_downgrade
*odp
)
6850 put_stateid(cstate
, &odp
->od_stateid
);
6854 nfsd4_set_openstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_open
*open
)
6856 put_stateid(cstate
, &open
->op_stateid
);
6860 nfsd4_set_closestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_close
*close
)
6862 put_stateid(cstate
, &close
->cl_stateid
);
6866 nfsd4_set_lockstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_lock
*lock
)
6868 put_stateid(cstate
, &lock
->lk_resp_stateid
);
6872 * functions to consume current state id
6876 nfsd4_get_opendowngradestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_open_downgrade
*odp
)
6878 get_stateid(cstate
, &odp
->od_stateid
);
6882 nfsd4_get_delegreturnstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_delegreturn
*drp
)
6884 get_stateid(cstate
, &drp
->dr_stateid
);
6888 nfsd4_get_freestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_free_stateid
*fsp
)
6890 get_stateid(cstate
, &fsp
->fr_stateid
);
6894 nfsd4_get_setattrstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_setattr
*setattr
)
6896 get_stateid(cstate
, &setattr
->sa_stateid
);
6900 nfsd4_get_closestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_close
*close
)
6902 get_stateid(cstate
, &close
->cl_stateid
);
6906 nfsd4_get_lockustateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_locku
*locku
)
6908 get_stateid(cstate
, &locku
->lu_stateid
);
6912 nfsd4_get_readstateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_read
*read
)
6914 get_stateid(cstate
, &read
->rd_stateid
);
6918 nfsd4_get_writestateid(struct nfsd4_compound_state
*cstate
, struct nfsd4_write
*write
)
6920 get_stateid(cstate
, &write
->wr_stateid
);