nfsd: make nfs4_client network namespace dependent
[linux-2.6/libata-dev.git] / fs / nfsd / nfs4state.c
blob001bbc99d7a4543cca58e80ea794ad919ed2c3e3
1 /*
2 * Copyright (c) 2001 The Regents of the University of Michigan.
3 * All rights reserved.
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
10 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include <linux/file.h>
36 #include <linux/fs.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/clnt.h>
44 #include "xdr4.h"
45 #include "vfs.h"
46 #include "current_stateid.h"
47 #include "fault_inject.h"
49 #include "netns.h"
51 #define NFSDDBG_FACILITY NFSDDBG_PROC
53 /* Globals */
54 time_t nfsd4_lease = 90; /* default lease time */
55 time_t nfsd4_grace = 90;
57 #define all_ones {{~0,~0},~0}
58 static const stateid_t one_stateid = {
59 .si_generation = ~0,
60 .si_opaque = all_ones,
62 static const stateid_t zero_stateid = {
63 /* all fields zero */
65 static const stateid_t currentstateid = {
66 .si_generation = 1,
69 static u64 current_sessionid = 1;
71 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
72 #define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
73 #define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
75 /* forward declarations */
76 static int check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner);
78 /* Locking: */
80 /* Currently used for almost all code touching nfsv4 state: */
81 static DEFINE_MUTEX(client_mutex);
84 * Currently used for the del_recall_lru and file hash table. In an
85 * effort to decrease the scope of the client_mutex, this spinlock may
86 * eventually cover more:
88 static DEFINE_SPINLOCK(recall_lock);
90 static struct kmem_cache *openowner_slab = NULL;
91 static struct kmem_cache *lockowner_slab = NULL;
92 static struct kmem_cache *file_slab = NULL;
93 static struct kmem_cache *stateid_slab = NULL;
94 static struct kmem_cache *deleg_slab = NULL;
96 void
97 nfs4_lock_state(void)
99 mutex_lock(&client_mutex);
102 static void free_session(struct kref *);
104 /* Must be called under the client_lock */
105 static void nfsd4_put_session_locked(struct nfsd4_session *ses)
107 kref_put(&ses->se_ref, free_session);
110 static void nfsd4_get_session(struct nfsd4_session *ses)
112 kref_get(&ses->se_ref);
115 void
116 nfs4_unlock_state(void)
118 mutex_unlock(&client_mutex);
121 static inline u32
122 opaque_hashval(const void *ptr, int nbytes)
124 unsigned char *cptr = (unsigned char *) ptr;
126 u32 x = 0;
127 while (nbytes--) {
128 x *= 37;
129 x += *cptr++;
131 return x;
134 static struct list_head del_recall_lru;
136 static void nfsd4_free_file(struct nfs4_file *f)
138 kmem_cache_free(file_slab, f);
141 static inline void
142 put_nfs4_file(struct nfs4_file *fi)
144 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
145 list_del(&fi->fi_hash);
146 spin_unlock(&recall_lock);
147 iput(fi->fi_inode);
148 nfsd4_free_file(fi);
152 static inline void
153 get_nfs4_file(struct nfs4_file *fi)
155 atomic_inc(&fi->fi_ref);
158 static int num_delegations;
159 unsigned int max_delegations;
162 * Open owner state (share locks)
165 /* hash tables for lock and open owners */
166 #define OWNER_HASH_BITS 8
167 #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
168 #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
170 static unsigned int ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
172 unsigned int ret;
174 ret = opaque_hashval(ownername->data, ownername->len);
175 ret += clientid;
176 return ret & OWNER_HASH_MASK;
179 static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
181 /* hash table for nfs4_file */
182 #define FILE_HASH_BITS 8
183 #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
185 static unsigned int file_hashval(struct inode *ino)
187 /* XXX: why are we hashing on inode pointer, anyway? */
188 return hash_ptr(ino, FILE_HASH_BITS);
191 static struct list_head file_hashtbl[FILE_HASH_SIZE];
193 static void __nfs4_file_get_access(struct nfs4_file *fp, int oflag)
195 BUG_ON(!(fp->fi_fds[oflag] || fp->fi_fds[O_RDWR]));
196 atomic_inc(&fp->fi_access[oflag]);
199 static void nfs4_file_get_access(struct nfs4_file *fp, int oflag)
201 if (oflag == O_RDWR) {
202 __nfs4_file_get_access(fp, O_RDONLY);
203 __nfs4_file_get_access(fp, O_WRONLY);
204 } else
205 __nfs4_file_get_access(fp, oflag);
208 static void nfs4_file_put_fd(struct nfs4_file *fp, int oflag)
210 if (fp->fi_fds[oflag]) {
211 fput(fp->fi_fds[oflag]);
212 fp->fi_fds[oflag] = NULL;
216 static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
218 if (atomic_dec_and_test(&fp->fi_access[oflag])) {
219 nfs4_file_put_fd(fp, oflag);
221 * It's also safe to get rid of the RDWR open *if*
222 * we no longer have need of the other kind of access
223 * or if we already have the other kind of open:
225 if (fp->fi_fds[1-oflag]
226 || atomic_read(&fp->fi_access[1 - oflag]) == 0)
227 nfs4_file_put_fd(fp, O_RDWR);
231 static void nfs4_file_put_access(struct nfs4_file *fp, int oflag)
233 if (oflag == O_RDWR) {
234 __nfs4_file_put_access(fp, O_RDONLY);
235 __nfs4_file_put_access(fp, O_WRONLY);
236 } else
237 __nfs4_file_put_access(fp, oflag);
240 static inline int get_new_stid(struct nfs4_stid *stid)
242 static int min_stateid = 0;
243 struct idr *stateids = &stid->sc_client->cl_stateids;
244 int new_stid;
245 int error;
247 error = idr_get_new_above(stateids, stid, min_stateid, &new_stid);
249 * Note: the necessary preallocation was done in
250 * nfs4_alloc_stateid(). The idr code caps the number of
251 * preallocations that can exist at a time, but the state lock
252 * prevents anyone from using ours before we get here:
254 BUG_ON(error);
256 * It shouldn't be a problem to reuse an opaque stateid value.
257 * I don't think it is for 4.1. But with 4.0 I worry that, for
258 * example, a stray write retransmission could be accepted by
259 * the server when it should have been rejected. Therefore,
260 * adopt a trick from the sctp code to attempt to maximize the
261 * amount of time until an id is reused, by ensuring they always
262 * "increase" (mod INT_MAX):
265 min_stateid = new_stid+1;
266 if (min_stateid == INT_MAX)
267 min_stateid = 0;
268 return new_stid;
271 static void init_stid(struct nfs4_stid *stid, struct nfs4_client *cl, unsigned char type)
273 stateid_t *s = &stid->sc_stateid;
274 int new_id;
276 stid->sc_type = type;
277 stid->sc_client = cl;
278 s->si_opaque.so_clid = cl->cl_clientid;
279 new_id = get_new_stid(stid);
280 s->si_opaque.so_id = (u32)new_id;
281 /* Will be incremented before return to client: */
282 s->si_generation = 0;
285 static struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab)
287 struct idr *stateids = &cl->cl_stateids;
289 if (!idr_pre_get(stateids, GFP_KERNEL))
290 return NULL;
292 * Note: if we fail here (or any time between now and the time
293 * we actually get the new idr), we won't need to undo the idr
294 * preallocation, since the idr code caps the number of
295 * preallocated entries.
297 return kmem_cache_alloc(slab, GFP_KERNEL);
300 static struct nfs4_ol_stateid * nfs4_alloc_stateid(struct nfs4_client *clp)
302 return openlockstateid(nfs4_alloc_stid(clp, stateid_slab));
305 static struct nfs4_delegation *
306 alloc_init_deleg(struct nfs4_client *clp, struct nfs4_ol_stateid *stp, struct svc_fh *current_fh, u32 type)
308 struct nfs4_delegation *dp;
309 struct nfs4_file *fp = stp->st_file;
311 dprintk("NFSD alloc_init_deleg\n");
313 * Major work on the lease subsystem (for example, to support
314 * calbacks on stat) will be required before we can support
315 * write delegations properly.
317 if (type != NFS4_OPEN_DELEGATE_READ)
318 return NULL;
319 if (fp->fi_had_conflict)
320 return NULL;
321 if (num_delegations > max_delegations)
322 return NULL;
323 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab));
324 if (dp == NULL)
325 return dp;
326 init_stid(&dp->dl_stid, clp, NFS4_DELEG_STID);
328 * delegation seqid's are never incremented. The 4.1 special
329 * meaning of seqid 0 isn't meaningful, really, but let's avoid
330 * 0 anyway just for consistency and use 1:
332 dp->dl_stid.sc_stateid.si_generation = 1;
333 num_delegations++;
334 INIT_LIST_HEAD(&dp->dl_perfile);
335 INIT_LIST_HEAD(&dp->dl_perclnt);
336 INIT_LIST_HEAD(&dp->dl_recall_lru);
337 get_nfs4_file(fp);
338 dp->dl_file = fp;
339 dp->dl_type = type;
340 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
341 dp->dl_time = 0;
342 atomic_set(&dp->dl_count, 1);
343 nfsd4_init_callback(&dp->dl_recall);
344 return dp;
347 void
348 nfs4_put_delegation(struct nfs4_delegation *dp)
350 if (atomic_dec_and_test(&dp->dl_count)) {
351 dprintk("NFSD: freeing dp %p\n",dp);
352 put_nfs4_file(dp->dl_file);
353 kmem_cache_free(deleg_slab, dp);
354 num_delegations--;
358 static void nfs4_put_deleg_lease(struct nfs4_file *fp)
360 if (atomic_dec_and_test(&fp->fi_delegees)) {
361 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
362 fp->fi_lease = NULL;
363 fput(fp->fi_deleg_file);
364 fp->fi_deleg_file = NULL;
368 static void unhash_stid(struct nfs4_stid *s)
370 struct idr *stateids = &s->sc_client->cl_stateids;
372 idr_remove(stateids, s->sc_stateid.si_opaque.so_id);
375 /* Called under the state lock. */
376 static void
377 unhash_delegation(struct nfs4_delegation *dp)
379 unhash_stid(&dp->dl_stid);
380 list_del_init(&dp->dl_perclnt);
381 spin_lock(&recall_lock);
382 list_del_init(&dp->dl_perfile);
383 list_del_init(&dp->dl_recall_lru);
384 spin_unlock(&recall_lock);
385 nfs4_put_deleg_lease(dp->dl_file);
386 nfs4_put_delegation(dp);
390 * SETCLIENTID state
393 /* client_lock protects the client lru list and session hash table */
394 static DEFINE_SPINLOCK(client_lock);
396 /* Hash tables for nfs4_clientid state */
397 #define CLIENT_HASH_BITS 4
398 #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
399 #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
401 static unsigned int clientid_hashval(u32 id)
403 return id & CLIENT_HASH_MASK;
406 static unsigned int clientstr_hashval(const char *name)
408 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
412 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
413 * used in reboot/reset lease grace period processing
415 * conf_id_hashtbl[], and conf_name_tree hold confirmed
416 * setclientid_confirmed info.
418 * unconf_id_hashtbl[] and unconf_name_tree hold unconfirmed
419 * setclientid info.
421 * client_lru holds client queue ordered by nfs4_client.cl_time
422 * for lease renewal.
424 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
425 * for last close replay.
427 * All of the above fields are protected by the client_mutex.
429 static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
430 static int reclaim_str_hashtbl_size = 0;
431 static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
432 static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
433 static struct rb_root conf_name_tree;
434 static struct rb_root unconf_name_tree;
435 static struct list_head client_lru;
436 static struct list_head close_lru;
439 * We store the NONE, READ, WRITE, and BOTH bits separately in the
440 * st_{access,deny}_bmap field of the stateid, in order to track not
441 * only what share bits are currently in force, but also what
442 * combinations of share bits previous opens have used. This allows us
443 * to enforce the recommendation of rfc 3530 14.2.19 that the server
444 * return an error if the client attempt to downgrade to a combination
445 * of share bits not explicable by closing some of its previous opens.
447 * XXX: This enforcement is actually incomplete, since we don't keep
448 * track of access/deny bit combinations; so, e.g., we allow:
450 * OPEN allow read, deny write
451 * OPEN allow both, deny none
452 * DOWNGRADE allow read, deny none
454 * which we should reject.
456 static unsigned int
457 bmap_to_share_mode(unsigned long bmap) {
458 int i;
459 unsigned int access = 0;
461 for (i = 1; i < 4; i++) {
462 if (test_bit(i, &bmap))
463 access |= i;
465 return access;
468 static bool
469 test_share(struct nfs4_ol_stateid *stp, struct nfsd4_open *open) {
470 unsigned int access, deny;
472 access = bmap_to_share_mode(stp->st_access_bmap);
473 deny = bmap_to_share_mode(stp->st_deny_bmap);
474 if ((access & open->op_share_deny) || (deny & open->op_share_access))
475 return false;
476 return true;
479 /* set share access for a given stateid */
480 static inline void
481 set_access(u32 access, struct nfs4_ol_stateid *stp)
483 __set_bit(access, &stp->st_access_bmap);
486 /* clear share access for a given stateid */
487 static inline void
488 clear_access(u32 access, struct nfs4_ol_stateid *stp)
490 __clear_bit(access, &stp->st_access_bmap);
493 /* test whether a given stateid has access */
494 static inline bool
495 test_access(u32 access, struct nfs4_ol_stateid *stp)
497 return test_bit(access, &stp->st_access_bmap);
500 /* set share deny for a given stateid */
501 static inline void
502 set_deny(u32 access, struct nfs4_ol_stateid *stp)
504 __set_bit(access, &stp->st_deny_bmap);
507 /* clear share deny for a given stateid */
508 static inline void
509 clear_deny(u32 access, struct nfs4_ol_stateid *stp)
511 __clear_bit(access, &stp->st_deny_bmap);
514 /* test whether a given stateid is denying specific access */
515 static inline bool
516 test_deny(u32 access, struct nfs4_ol_stateid *stp)
518 return test_bit(access, &stp->st_deny_bmap);
521 static int nfs4_access_to_omode(u32 access)
523 switch (access & NFS4_SHARE_ACCESS_BOTH) {
524 case NFS4_SHARE_ACCESS_READ:
525 return O_RDONLY;
526 case NFS4_SHARE_ACCESS_WRITE:
527 return O_WRONLY;
528 case NFS4_SHARE_ACCESS_BOTH:
529 return O_RDWR;
531 BUG();
534 /* release all access and file references for a given stateid */
535 static void
536 release_all_access(struct nfs4_ol_stateid *stp)
538 int i;
540 for (i = 1; i < 4; i++) {
541 if (test_access(i, stp))
542 nfs4_file_put_access(stp->st_file,
543 nfs4_access_to_omode(i));
544 clear_access(i, stp);
548 static void unhash_generic_stateid(struct nfs4_ol_stateid *stp)
550 list_del(&stp->st_perfile);
551 list_del(&stp->st_perstateowner);
554 static void close_generic_stateid(struct nfs4_ol_stateid *stp)
556 release_all_access(stp);
557 put_nfs4_file(stp->st_file);
558 stp->st_file = NULL;
561 static void free_generic_stateid(struct nfs4_ol_stateid *stp)
563 kmem_cache_free(stateid_slab, stp);
566 static void release_lock_stateid(struct nfs4_ol_stateid *stp)
568 struct file *file;
570 unhash_generic_stateid(stp);
571 unhash_stid(&stp->st_stid);
572 file = find_any_file(stp->st_file);
573 if (file)
574 locks_remove_posix(file, (fl_owner_t)lockowner(stp->st_stateowner));
575 close_generic_stateid(stp);
576 free_generic_stateid(stp);
579 static void unhash_lockowner(struct nfs4_lockowner *lo)
581 struct nfs4_ol_stateid *stp;
583 list_del(&lo->lo_owner.so_strhash);
584 list_del(&lo->lo_perstateid);
585 list_del(&lo->lo_owner_ino_hash);
586 while (!list_empty(&lo->lo_owner.so_stateids)) {
587 stp = list_first_entry(&lo->lo_owner.so_stateids,
588 struct nfs4_ol_stateid, st_perstateowner);
589 release_lock_stateid(stp);
593 static void release_lockowner(struct nfs4_lockowner *lo)
595 unhash_lockowner(lo);
596 nfs4_free_lockowner(lo);
599 static void
600 release_stateid_lockowners(struct nfs4_ol_stateid *open_stp)
602 struct nfs4_lockowner *lo;
604 while (!list_empty(&open_stp->st_lockowners)) {
605 lo = list_entry(open_stp->st_lockowners.next,
606 struct nfs4_lockowner, lo_perstateid);
607 release_lockowner(lo);
611 static void unhash_open_stateid(struct nfs4_ol_stateid *stp)
613 unhash_generic_stateid(stp);
614 release_stateid_lockowners(stp);
615 close_generic_stateid(stp);
618 static void release_open_stateid(struct nfs4_ol_stateid *stp)
620 unhash_open_stateid(stp);
621 unhash_stid(&stp->st_stid);
622 free_generic_stateid(stp);
625 static void unhash_openowner(struct nfs4_openowner *oo)
627 struct nfs4_ol_stateid *stp;
629 list_del(&oo->oo_owner.so_strhash);
630 list_del(&oo->oo_perclient);
631 while (!list_empty(&oo->oo_owner.so_stateids)) {
632 stp = list_first_entry(&oo->oo_owner.so_stateids,
633 struct nfs4_ol_stateid, st_perstateowner);
634 release_open_stateid(stp);
638 static void release_last_closed_stateid(struct nfs4_openowner *oo)
640 struct nfs4_ol_stateid *s = oo->oo_last_closed_stid;
642 if (s) {
643 unhash_stid(&s->st_stid);
644 free_generic_stateid(s);
645 oo->oo_last_closed_stid = NULL;
649 static void release_openowner(struct nfs4_openowner *oo)
651 unhash_openowner(oo);
652 list_del(&oo->oo_close_lru);
653 release_last_closed_stateid(oo);
654 nfs4_free_openowner(oo);
657 #define SESSION_HASH_SIZE 512
658 static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
660 static inline int
661 hash_sessionid(struct nfs4_sessionid *sessionid)
663 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
665 return sid->sequence % SESSION_HASH_SIZE;
668 #ifdef NFSD_DEBUG
669 static inline void
670 dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
672 u32 *ptr = (u32 *)(&sessionid->data[0]);
673 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
675 #else
676 static inline void
677 dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
680 #endif
683 static void
684 gen_sessionid(struct nfsd4_session *ses)
686 struct nfs4_client *clp = ses->se_client;
687 struct nfsd4_sessionid *sid;
689 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
690 sid->clientid = clp->cl_clientid;
691 sid->sequence = current_sessionid++;
692 sid->reserved = 0;
696 * The protocol defines ca_maxresponssize_cached to include the size of
697 * the rpc header, but all we need to cache is the data starting after
698 * the end of the initial SEQUENCE operation--the rest we regenerate
699 * each time. Therefore we can advertise a ca_maxresponssize_cached
700 * value that is the number of bytes in our cache plus a few additional
701 * bytes. In order to stay on the safe side, and not promise more than
702 * we can cache, those additional bytes must be the minimum possible: 24
703 * bytes of rpc header (xid through accept state, with AUTH_NULL
704 * verifier), 12 for the compound header (with zero-length tag), and 44
705 * for the SEQUENCE op response:
707 #define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
709 static void
710 free_session_slots(struct nfsd4_session *ses)
712 int i;
714 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
715 kfree(ses->se_slots[i]);
719 * We don't actually need to cache the rpc and session headers, so we
720 * can allocate a little less for each slot:
722 static inline int slot_bytes(struct nfsd4_channel_attrs *ca)
724 return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
727 static int nfsd4_sanitize_slot_size(u32 size)
729 size -= NFSD_MIN_HDR_SEQ_SZ; /* We don't cache the rpc header */
730 size = min_t(u32, size, NFSD_SLOT_CACHE_SIZE);
732 return size;
736 * XXX: If we run out of reserved DRC memory we could (up to a point)
737 * re-negotiate active sessions and reduce their slot usage to make
738 * room for new connections. For now we just fail the create session.
740 static int nfsd4_get_drc_mem(int slotsize, u32 num)
742 int avail;
744 num = min_t(u32, num, NFSD_MAX_SLOTS_PER_SESSION);
746 spin_lock(&nfsd_drc_lock);
747 avail = min_t(int, NFSD_MAX_MEM_PER_SESSION,
748 nfsd_drc_max_mem - nfsd_drc_mem_used);
749 num = min_t(int, num, avail / slotsize);
750 nfsd_drc_mem_used += num * slotsize;
751 spin_unlock(&nfsd_drc_lock);
753 return num;
756 static void nfsd4_put_drc_mem(int slotsize, int num)
758 spin_lock(&nfsd_drc_lock);
759 nfsd_drc_mem_used -= slotsize * num;
760 spin_unlock(&nfsd_drc_lock);
763 static struct nfsd4_session *__alloc_session(int slotsize, int numslots)
765 struct nfsd4_session *new;
766 int mem, i;
768 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
769 + sizeof(struct nfsd4_session) > PAGE_SIZE);
770 mem = numslots * sizeof(struct nfsd4_slot *);
772 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
773 if (!new)
774 return NULL;
775 /* allocate each struct nfsd4_slot and data cache in one piece */
776 for (i = 0; i < numslots; i++) {
777 mem = sizeof(struct nfsd4_slot) + slotsize;
778 new->se_slots[i] = kzalloc(mem, GFP_KERNEL);
779 if (!new->se_slots[i])
780 goto out_free;
782 return new;
783 out_free:
784 while (i--)
785 kfree(new->se_slots[i]);
786 kfree(new);
787 return NULL;
790 static void init_forechannel_attrs(struct nfsd4_channel_attrs *new, struct nfsd4_channel_attrs *req, int numslots, int slotsize)
792 u32 maxrpc = nfsd_serv->sv_max_mesg;
794 new->maxreqs = numslots;
795 new->maxresp_cached = min_t(u32, req->maxresp_cached,
796 slotsize + NFSD_MIN_HDR_SEQ_SZ);
797 new->maxreq_sz = min_t(u32, req->maxreq_sz, maxrpc);
798 new->maxresp_sz = min_t(u32, req->maxresp_sz, maxrpc);
799 new->maxops = min_t(u32, req->maxops, NFSD_MAX_OPS_PER_COMPOUND);
802 static void free_conn(struct nfsd4_conn *c)
804 svc_xprt_put(c->cn_xprt);
805 kfree(c);
808 static void nfsd4_conn_lost(struct svc_xpt_user *u)
810 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
811 struct nfs4_client *clp = c->cn_session->se_client;
813 spin_lock(&clp->cl_lock);
814 if (!list_empty(&c->cn_persession)) {
815 list_del(&c->cn_persession);
816 free_conn(c);
818 spin_unlock(&clp->cl_lock);
819 nfsd4_probe_callback(clp);
822 static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
824 struct nfsd4_conn *conn;
826 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
827 if (!conn)
828 return NULL;
829 svc_xprt_get(rqstp->rq_xprt);
830 conn->cn_xprt = rqstp->rq_xprt;
831 conn->cn_flags = flags;
832 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
833 return conn;
836 static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
838 conn->cn_session = ses;
839 list_add(&conn->cn_persession, &ses->se_conns);
842 static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
844 struct nfs4_client *clp = ses->se_client;
846 spin_lock(&clp->cl_lock);
847 __nfsd4_hash_conn(conn, ses);
848 spin_unlock(&clp->cl_lock);
851 static int nfsd4_register_conn(struct nfsd4_conn *conn)
853 conn->cn_xpt_user.callback = nfsd4_conn_lost;
854 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
857 static void nfsd4_init_conn(struct svc_rqst *rqstp, struct nfsd4_conn *conn, struct nfsd4_session *ses)
859 int ret;
861 nfsd4_hash_conn(conn, ses);
862 ret = nfsd4_register_conn(conn);
863 if (ret)
864 /* oops; xprt is already down: */
865 nfsd4_conn_lost(&conn->cn_xpt_user);
866 if (conn->cn_flags & NFS4_CDFC4_BACK) {
867 /* callback channel may be back up */
868 nfsd4_probe_callback(ses->se_client);
872 static struct nfsd4_conn *alloc_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_create_session *cses)
874 u32 dir = NFS4_CDFC4_FORE;
876 if (cses->flags & SESSION4_BACK_CHAN)
877 dir |= NFS4_CDFC4_BACK;
878 return alloc_conn(rqstp, dir);
881 /* must be called under client_lock */
882 static void nfsd4_del_conns(struct nfsd4_session *s)
884 struct nfs4_client *clp = s->se_client;
885 struct nfsd4_conn *c;
887 spin_lock(&clp->cl_lock);
888 while (!list_empty(&s->se_conns)) {
889 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
890 list_del_init(&c->cn_persession);
891 spin_unlock(&clp->cl_lock);
893 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
894 free_conn(c);
896 spin_lock(&clp->cl_lock);
898 spin_unlock(&clp->cl_lock);
901 static void __free_session(struct nfsd4_session *ses)
903 nfsd4_put_drc_mem(slot_bytes(&ses->se_fchannel), ses->se_fchannel.maxreqs);
904 free_session_slots(ses);
905 kfree(ses);
908 static void free_session(struct kref *kref)
910 struct nfsd4_session *ses;
912 lockdep_assert_held(&client_lock);
913 ses = container_of(kref, struct nfsd4_session, se_ref);
914 nfsd4_del_conns(ses);
915 __free_session(ses);
918 void nfsd4_put_session(struct nfsd4_session *ses)
920 spin_lock(&client_lock);
921 nfsd4_put_session_locked(ses);
922 spin_unlock(&client_lock);
925 static struct nfsd4_session *alloc_session(struct nfsd4_channel_attrs *fchan)
927 struct nfsd4_session *new;
928 int numslots, slotsize;
930 * Note decreasing slot size below client's request may
931 * make it difficult for client to function correctly, whereas
932 * decreasing the number of slots will (just?) affect
933 * performance. When short on memory we therefore prefer to
934 * decrease number of slots instead of their size.
936 slotsize = nfsd4_sanitize_slot_size(fchan->maxresp_cached);
937 numslots = nfsd4_get_drc_mem(slotsize, fchan->maxreqs);
938 if (numslots < 1)
939 return NULL;
941 new = __alloc_session(slotsize, numslots);
942 if (!new) {
943 nfsd4_put_drc_mem(slotsize, fchan->maxreqs);
944 return NULL;
946 init_forechannel_attrs(&new->se_fchannel, fchan, numslots, slotsize);
947 return new;
950 static void init_session(struct svc_rqst *rqstp, struct nfsd4_session *new, struct nfs4_client *clp, struct nfsd4_create_session *cses)
952 int idx;
954 new->se_client = clp;
955 gen_sessionid(new);
957 INIT_LIST_HEAD(&new->se_conns);
959 new->se_cb_seq_nr = 1;
960 new->se_flags = cses->flags;
961 new->se_cb_prog = cses->callback_prog;
962 new->se_cb_sec = cses->cb_sec;
963 kref_init(&new->se_ref);
964 idx = hash_sessionid(&new->se_sessionid);
965 spin_lock(&client_lock);
966 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
967 spin_lock(&clp->cl_lock);
968 list_add(&new->se_perclnt, &clp->cl_sessions);
969 spin_unlock(&clp->cl_lock);
970 spin_unlock(&client_lock);
972 if (cses->flags & SESSION4_BACK_CHAN) {
973 struct sockaddr *sa = svc_addr(rqstp);
975 * This is a little silly; with sessions there's no real
976 * use for the callback address. Use the peer address
977 * as a reasonable default for now, but consider fixing
978 * the rpc client not to require an address in the
979 * future:
981 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
982 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
986 /* caller must hold client_lock */
987 static struct nfsd4_session *
988 find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
990 struct nfsd4_session *elem;
991 int idx;
993 dump_sessionid(__func__, sessionid);
994 idx = hash_sessionid(sessionid);
995 /* Search in the appropriate list */
996 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
997 if (!memcmp(elem->se_sessionid.data, sessionid->data,
998 NFS4_MAX_SESSIONID_LEN)) {
999 return elem;
1003 dprintk("%s: session not found\n", __func__);
1004 return NULL;
1007 /* caller must hold client_lock */
1008 static void
1009 unhash_session(struct nfsd4_session *ses)
1011 list_del(&ses->se_hash);
1012 spin_lock(&ses->se_client->cl_lock);
1013 list_del(&ses->se_perclnt);
1014 spin_unlock(&ses->se_client->cl_lock);
1017 /* must be called under the client_lock */
1018 static inline void
1019 renew_client_locked(struct nfs4_client *clp)
1021 if (is_client_expired(clp)) {
1022 WARN_ON(1);
1023 printk("%s: client (clientid %08x/%08x) already expired\n",
1024 __func__,
1025 clp->cl_clientid.cl_boot,
1026 clp->cl_clientid.cl_id);
1027 return;
1030 dprintk("renewing client (clientid %08x/%08x)\n",
1031 clp->cl_clientid.cl_boot,
1032 clp->cl_clientid.cl_id);
1033 list_move_tail(&clp->cl_lru, &client_lru);
1034 clp->cl_time = get_seconds();
1037 static inline void
1038 renew_client(struct nfs4_client *clp)
1040 spin_lock(&client_lock);
1041 renew_client_locked(clp);
1042 spin_unlock(&client_lock);
1045 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1046 static int
1047 STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
1049 if (clid->cl_boot == nn->boot_time)
1050 return 0;
1051 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
1052 clid->cl_boot, clid->cl_id, nn->boot_time);
1053 return 1;
1057 * XXX Should we use a slab cache ?
1058 * This type of memory management is somewhat inefficient, but we use it
1059 * anyway since SETCLIENTID is not a common operation.
1061 static struct nfs4_client *alloc_client(struct xdr_netobj name)
1063 struct nfs4_client *clp;
1065 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1066 if (clp == NULL)
1067 return NULL;
1068 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
1069 if (clp->cl_name.data == NULL) {
1070 kfree(clp);
1071 return NULL;
1073 clp->cl_name.len = name.len;
1074 return clp;
1077 static inline void
1078 free_client(struct nfs4_client *clp)
1080 lockdep_assert_held(&client_lock);
1081 while (!list_empty(&clp->cl_sessions)) {
1082 struct nfsd4_session *ses;
1083 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1084 se_perclnt);
1085 list_del(&ses->se_perclnt);
1086 nfsd4_put_session_locked(ses);
1088 free_svc_cred(&clp->cl_cred);
1089 kfree(clp->cl_name.data);
1090 kfree(clp);
1093 void
1094 release_session_client(struct nfsd4_session *session)
1096 struct nfs4_client *clp = session->se_client;
1098 if (!atomic_dec_and_lock(&clp->cl_refcount, &client_lock))
1099 return;
1100 if (is_client_expired(clp)) {
1101 free_client(clp);
1102 session->se_client = NULL;
1103 } else
1104 renew_client_locked(clp);
1105 spin_unlock(&client_lock);
1108 /* must be called under the client_lock */
1109 static inline void
1110 unhash_client_locked(struct nfs4_client *clp)
1112 struct nfsd4_session *ses;
1114 mark_client_expired(clp);
1115 list_del(&clp->cl_lru);
1116 spin_lock(&clp->cl_lock);
1117 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1118 list_del_init(&ses->se_hash);
1119 spin_unlock(&clp->cl_lock);
1122 static void
1123 destroy_client(struct nfs4_client *clp)
1125 struct nfs4_openowner *oo;
1126 struct nfs4_delegation *dp;
1127 struct list_head reaplist;
1129 INIT_LIST_HEAD(&reaplist);
1130 spin_lock(&recall_lock);
1131 while (!list_empty(&clp->cl_delegations)) {
1132 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
1133 list_del_init(&dp->dl_perclnt);
1134 list_move(&dp->dl_recall_lru, &reaplist);
1136 spin_unlock(&recall_lock);
1137 while (!list_empty(&reaplist)) {
1138 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
1139 unhash_delegation(dp);
1141 while (!list_empty(&clp->cl_openowners)) {
1142 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
1143 release_openowner(oo);
1145 nfsd4_shutdown_callback(clp);
1146 if (clp->cl_cb_conn.cb_xprt)
1147 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
1148 list_del(&clp->cl_idhash);
1149 if (test_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags))
1150 rb_erase(&clp->cl_namenode, &conf_name_tree);
1151 else
1152 rb_erase(&clp->cl_namenode, &unconf_name_tree);
1153 spin_lock(&client_lock);
1154 unhash_client_locked(clp);
1155 if (atomic_read(&clp->cl_refcount) == 0)
1156 free_client(clp);
1157 spin_unlock(&client_lock);
1160 static void expire_client(struct nfs4_client *clp)
1162 nfsd4_client_record_remove(clp);
1163 destroy_client(clp);
1166 static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1168 memcpy(target->cl_verifier.data, source->data,
1169 sizeof(target->cl_verifier.data));
1172 static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1174 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1175 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1178 static int copy_cred(struct svc_cred *target, struct svc_cred *source)
1180 if (source->cr_principal) {
1181 target->cr_principal =
1182 kstrdup(source->cr_principal, GFP_KERNEL);
1183 if (target->cr_principal == NULL)
1184 return -ENOMEM;
1185 } else
1186 target->cr_principal = NULL;
1187 target->cr_flavor = source->cr_flavor;
1188 target->cr_uid = source->cr_uid;
1189 target->cr_gid = source->cr_gid;
1190 target->cr_group_info = source->cr_group_info;
1191 get_group_info(target->cr_group_info);
1192 return 0;
1195 static long long
1196 compare_blob(const struct xdr_netobj *o1, const struct xdr_netobj *o2)
1198 long long res;
1200 res = o1->len - o2->len;
1201 if (res)
1202 return res;
1203 return (long long)memcmp(o1->data, o2->data, o1->len);
1206 static int same_name(const char *n1, const char *n2)
1208 return 0 == memcmp(n1, n2, HEXDIR_LEN);
1211 static int
1212 same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1214 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
1217 static int
1218 same_clid(clientid_t *cl1, clientid_t *cl2)
1220 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
1223 static bool groups_equal(struct group_info *g1, struct group_info *g2)
1225 int i;
1227 if (g1->ngroups != g2->ngroups)
1228 return false;
1229 for (i=0; i<g1->ngroups; i++)
1230 if (GROUP_AT(g1, i) != GROUP_AT(g2, i))
1231 return false;
1232 return true;
1236 * RFC 3530 language requires clid_inuse be returned when the
1237 * "principal" associated with a requests differs from that previously
1238 * used. We use uid, gid's, and gss principal string as our best
1239 * approximation. We also don't want to allow non-gss use of a client
1240 * established using gss: in theory cr_principal should catch that
1241 * change, but in practice cr_principal can be null even in the gss case
1242 * since gssd doesn't always pass down a principal string.
1244 static bool is_gss_cred(struct svc_cred *cr)
1246 /* Is cr_flavor one of the gss "pseudoflavors"?: */
1247 return (cr->cr_flavor > RPC_AUTH_MAXFLAVOR);
1251 static bool
1252 same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1254 if ((is_gss_cred(cr1) != is_gss_cred(cr2))
1255 || (cr1->cr_uid != cr2->cr_uid)
1256 || (cr1->cr_gid != cr2->cr_gid)
1257 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
1258 return false;
1259 if (cr1->cr_principal == cr2->cr_principal)
1260 return true;
1261 if (!cr1->cr_principal || !cr2->cr_principal)
1262 return false;
1263 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
1266 static void gen_clid(struct nfs4_client *clp, struct nfsd_net *nn)
1268 static u32 current_clientid = 1;
1270 clp->cl_clientid.cl_boot = nn->boot_time;
1271 clp->cl_clientid.cl_id = current_clientid++;
1274 static void gen_confirm(struct nfs4_client *clp)
1276 __be32 verf[2];
1277 static u32 i;
1279 verf[0] = (__be32)get_seconds();
1280 verf[1] = (__be32)i++;
1281 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
1284 static struct nfs4_stid *find_stateid(struct nfs4_client *cl, stateid_t *t)
1286 return idr_find(&cl->cl_stateids, t->si_opaque.so_id);
1289 static struct nfs4_stid *find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
1291 struct nfs4_stid *s;
1293 s = find_stateid(cl, t);
1294 if (!s)
1295 return NULL;
1296 if (typemask & s->sc_type)
1297 return s;
1298 return NULL;
1301 static struct nfs4_client *create_client(struct xdr_netobj name,
1302 struct svc_rqst *rqstp, nfs4_verifier *verf)
1304 struct nfs4_client *clp;
1305 struct sockaddr *sa = svc_addr(rqstp);
1306 int ret;
1307 struct net *net = SVC_NET(rqstp);
1309 clp = alloc_client(name);
1310 if (clp == NULL)
1311 return NULL;
1313 INIT_LIST_HEAD(&clp->cl_sessions);
1314 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1315 if (ret) {
1316 spin_lock(&client_lock);
1317 free_client(clp);
1318 spin_unlock(&client_lock);
1319 return NULL;
1321 idr_init(&clp->cl_stateids);
1322 atomic_set(&clp->cl_refcount, 0);
1323 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1324 INIT_LIST_HEAD(&clp->cl_idhash);
1325 INIT_LIST_HEAD(&clp->cl_openowners);
1326 INIT_LIST_HEAD(&clp->cl_delegations);
1327 INIT_LIST_HEAD(&clp->cl_lru);
1328 INIT_LIST_HEAD(&clp->cl_callbacks);
1329 spin_lock_init(&clp->cl_lock);
1330 nfsd4_init_callback(&clp->cl_cb_null);
1331 clp->cl_time = get_seconds();
1332 clear_bit(0, &clp->cl_cb_slot_busy);
1333 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
1334 copy_verf(clp, verf);
1335 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
1336 gen_confirm(clp);
1337 clp->cl_cb_session = NULL;
1338 clp->net = net;
1339 return clp;
1342 static void
1343 add_clp_to_name_tree(struct nfs4_client *new_clp, struct rb_root *root)
1345 struct rb_node **new = &(root->rb_node), *parent = NULL;
1346 struct nfs4_client *clp;
1348 while (*new) {
1349 clp = rb_entry(*new, struct nfs4_client, cl_namenode);
1350 parent = *new;
1352 if (compare_blob(&clp->cl_name, &new_clp->cl_name) > 0)
1353 new = &((*new)->rb_left);
1354 else
1355 new = &((*new)->rb_right);
1358 rb_link_node(&new_clp->cl_namenode, parent, new);
1359 rb_insert_color(&new_clp->cl_namenode, root);
1362 static struct nfs4_client *
1363 find_clp_in_name_tree(struct xdr_netobj *name, struct rb_root *root)
1365 long long cmp;
1366 struct rb_node *node = root->rb_node;
1367 struct nfs4_client *clp;
1369 while (node) {
1370 clp = rb_entry(node, struct nfs4_client, cl_namenode);
1371 cmp = compare_blob(&clp->cl_name, name);
1372 if (cmp > 0)
1373 node = node->rb_left;
1374 else if (cmp < 0)
1375 node = node->rb_right;
1376 else
1377 return clp;
1379 return NULL;
1382 static void
1383 add_to_unconfirmed(struct nfs4_client *clp)
1385 unsigned int idhashval;
1387 clear_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
1388 add_clp_to_name_tree(clp, &unconf_name_tree);
1389 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1390 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
1391 renew_client(clp);
1394 static void
1395 move_to_confirmed(struct nfs4_client *clp)
1397 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1399 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
1400 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
1401 rb_erase(&clp->cl_namenode, &unconf_name_tree);
1402 add_clp_to_name_tree(clp, &conf_name_tree);
1403 set_bit(NFSD4_CLIENT_CONFIRMED, &clp->cl_flags);
1404 renew_client(clp);
1407 static struct nfs4_client *
1408 find_confirmed_client(clientid_t *clid, bool sessions)
1410 struct nfs4_client *clp;
1411 unsigned int idhashval = clientid_hashval(clid->cl_id);
1413 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
1414 if (same_clid(&clp->cl_clientid, clid)) {
1415 if ((bool)clp->cl_minorversion != sessions)
1416 return NULL;
1417 renew_client(clp);
1418 return clp;
1421 return NULL;
1424 static struct nfs4_client *
1425 find_unconfirmed_client(clientid_t *clid, bool sessions)
1427 struct nfs4_client *clp;
1428 unsigned int idhashval = clientid_hashval(clid->cl_id);
1430 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
1431 if (same_clid(&clp->cl_clientid, clid)) {
1432 if ((bool)clp->cl_minorversion != sessions)
1433 return NULL;
1434 return clp;
1437 return NULL;
1440 static bool clp_used_exchangeid(struct nfs4_client *clp)
1442 return clp->cl_exchange_flags != 0;
1445 static struct nfs4_client *
1446 find_confirmed_client_by_name(struct xdr_netobj *name)
1448 return find_clp_in_name_tree(name, &conf_name_tree);
1451 static struct nfs4_client *
1452 find_unconfirmed_client_by_name(struct xdr_netobj *name)
1454 return find_clp_in_name_tree(name, &unconf_name_tree);
1457 static void
1458 gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
1460 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
1461 struct sockaddr *sa = svc_addr(rqstp);
1462 u32 scopeid = rpc_get_scope_id(sa);
1463 unsigned short expected_family;
1465 /* Currently, we only support tcp and tcp6 for the callback channel */
1466 if (se->se_callback_netid_len == 3 &&
1467 !memcmp(se->se_callback_netid_val, "tcp", 3))
1468 expected_family = AF_INET;
1469 else if (se->se_callback_netid_len == 4 &&
1470 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1471 expected_family = AF_INET6;
1472 else
1473 goto out_err;
1475 conn->cb_addrlen = rpc_uaddr2sockaddr(clp->net, se->se_callback_addr_val,
1476 se->se_callback_addr_len,
1477 (struct sockaddr *)&conn->cb_addr,
1478 sizeof(conn->cb_addr));
1480 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
1481 goto out_err;
1483 if (conn->cb_addr.ss_family == AF_INET6)
1484 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
1486 conn->cb_prog = se->se_callback_prog;
1487 conn->cb_ident = se->se_callback_ident;
1488 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
1489 return;
1490 out_err:
1491 conn->cb_addr.ss_family = AF_UNSPEC;
1492 conn->cb_addrlen = 0;
1493 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
1494 "will not receive delegations\n",
1495 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1497 return;
1501 * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
1503 void
1504 nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1506 struct nfsd4_slot *slot = resp->cstate.slot;
1507 unsigned int base;
1509 dprintk("--> %s slot %p\n", __func__, slot);
1511 slot->sl_opcnt = resp->opcnt;
1512 slot->sl_status = resp->cstate.status;
1514 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
1515 if (nfsd4_not_cached(resp)) {
1516 slot->sl_datalen = 0;
1517 return;
1519 slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap;
1520 base = (char *)resp->cstate.datap -
1521 (char *)resp->xbuf->head[0].iov_base;
1522 if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data,
1523 slot->sl_datalen))
1524 WARN("%s: sessions DRC could not cache compound\n", __func__);
1525 return;
1529 * Encode the replay sequence operation from the slot values.
1530 * If cachethis is FALSE encode the uncached rep error on the next
1531 * operation which sets resp->p and increments resp->opcnt for
1532 * nfs4svc_encode_compoundres.
1535 static __be32
1536 nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1537 struct nfsd4_compoundres *resp)
1539 struct nfsd4_op *op;
1540 struct nfsd4_slot *slot = resp->cstate.slot;
1542 /* Encode the replayed sequence operation */
1543 op = &args->ops[resp->opcnt - 1];
1544 nfsd4_encode_operation(resp, op);
1546 /* Return nfserr_retry_uncached_rep in next operation. */
1547 if (args->opcnt > 1 && !(slot->sl_flags & NFSD4_SLOT_CACHETHIS)) {
1548 op = &args->ops[resp->opcnt++];
1549 op->status = nfserr_retry_uncached_rep;
1550 nfsd4_encode_operation(resp, op);
1552 return op->status;
1556 * The sequence operation is not cached because we can use the slot and
1557 * session values.
1559 __be32
1560 nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1561 struct nfsd4_sequence *seq)
1563 struct nfsd4_slot *slot = resp->cstate.slot;
1564 __be32 status;
1566 dprintk("--> %s slot %p\n", __func__, slot);
1568 /* Either returns 0 or nfserr_retry_uncached */
1569 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1570 if (status == nfserr_retry_uncached_rep)
1571 return status;
1573 /* The sequence operation has been encoded, cstate->datap set. */
1574 memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen);
1576 resp->opcnt = slot->sl_opcnt;
1577 resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen);
1578 status = slot->sl_status;
1580 return status;
1584 * Set the exchange_id flags returned by the server.
1586 static void
1587 nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1589 /* pNFS is not supported */
1590 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1592 /* Referrals are supported, Migration is not. */
1593 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1595 /* set the wire flags to return to client. */
1596 clid->flags = new->cl_exchange_flags;
1599 static bool client_has_state(struct nfs4_client *clp)
1602 * Note clp->cl_openowners check isn't quite right: there's no
1603 * need to count owners without stateid's.
1605 * Also note we should probably be using this in 4.0 case too.
1607 return !list_empty(&clp->cl_openowners)
1608 || !list_empty(&clp->cl_delegations)
1609 || !list_empty(&clp->cl_sessions);
1612 __be32
1613 nfsd4_exchange_id(struct svc_rqst *rqstp,
1614 struct nfsd4_compound_state *cstate,
1615 struct nfsd4_exchange_id *exid)
1617 struct nfs4_client *unconf, *conf, *new;
1618 __be32 status;
1619 char addr_str[INET6_ADDRSTRLEN];
1620 nfs4_verifier verf = exid->verifier;
1621 struct sockaddr *sa = svc_addr(rqstp);
1622 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
1623 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1625 rpc_ntop(sa, addr_str, sizeof(addr_str));
1626 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
1627 "ip_addr=%s flags %x, spa_how %d\n",
1628 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
1629 addr_str, exid->flags, exid->spa_how);
1631 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
1632 return nfserr_inval;
1634 /* Currently only support SP4_NONE */
1635 switch (exid->spa_how) {
1636 case SP4_NONE:
1637 break;
1638 case SP4_SSV:
1639 return nfserr_serverfault;
1640 default:
1641 BUG(); /* checked by xdr code */
1642 case SP4_MACH_CRED:
1643 return nfserr_serverfault; /* no excuse :-/ */
1646 /* Cases below refer to rfc 5661 section 18.35.4: */
1647 nfs4_lock_state();
1648 conf = find_confirmed_client_by_name(&exid->clname);
1649 if (conf) {
1650 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
1651 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
1653 if (update) {
1654 if (!clp_used_exchangeid(conf)) { /* buggy client */
1655 status = nfserr_inval;
1656 goto out;
1658 if (!creds_match) { /* case 9 */
1659 status = nfserr_perm;
1660 goto out;
1662 if (!verfs_match) { /* case 8 */
1663 status = nfserr_not_same;
1664 goto out;
1666 /* case 6 */
1667 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1668 new = conf;
1669 goto out_copy;
1671 if (!creds_match) { /* case 3 */
1672 if (client_has_state(conf)) {
1673 status = nfserr_clid_inuse;
1674 goto out;
1676 expire_client(conf);
1677 goto out_new;
1679 if (verfs_match) { /* case 2 */
1680 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
1681 new = conf;
1682 goto out_copy;
1684 /* case 5, client reboot */
1685 goto out_new;
1688 if (update) { /* case 7 */
1689 status = nfserr_noent;
1690 goto out;
1693 unconf = find_unconfirmed_client_by_name(&exid->clname);
1694 if (unconf) /* case 4, possible retry or client restart */
1695 expire_client(unconf);
1697 /* case 1 (normal case) */
1698 out_new:
1699 new = create_client(exid->clname, rqstp, &verf);
1700 if (new == NULL) {
1701 status = nfserr_jukebox;
1702 goto out;
1704 new->cl_minorversion = 1;
1706 gen_clid(new, nn);
1707 add_to_unconfirmed(new);
1708 out_copy:
1709 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1710 exid->clientid.cl_id = new->cl_clientid.cl_id;
1712 exid->seqid = new->cl_cs_slot.sl_seqid + 1;
1713 nfsd4_set_ex_flags(new, exid);
1715 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
1716 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
1717 status = nfs_ok;
1719 out:
1720 nfs4_unlock_state();
1721 return status;
1724 static __be32
1725 check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
1727 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1728 slot_seqid);
1730 /* The slot is in use, and no response has been sent. */
1731 if (slot_inuse) {
1732 if (seqid == slot_seqid)
1733 return nfserr_jukebox;
1734 else
1735 return nfserr_seq_misordered;
1737 /* Note unsigned 32-bit arithmetic handles wraparound: */
1738 if (likely(seqid == slot_seqid + 1))
1739 return nfs_ok;
1740 if (seqid == slot_seqid)
1741 return nfserr_replay_cache;
1742 return nfserr_seq_misordered;
1746 * Cache the create session result into the create session single DRC
1747 * slot cache by saving the xdr structure. sl_seqid has been set.
1748 * Do this for solo or embedded create session operations.
1750 static void
1751 nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
1752 struct nfsd4_clid_slot *slot, __be32 nfserr)
1754 slot->sl_status = nfserr;
1755 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1758 static __be32
1759 nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1760 struct nfsd4_clid_slot *slot)
1762 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1763 return slot->sl_status;
1766 #define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
1767 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
1768 1 + /* MIN tag is length with zero, only length */ \
1769 3 + /* version, opcount, opcode */ \
1770 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1771 /* seqid, slotID, slotID, cache */ \
1772 4 ) * sizeof(__be32))
1774 #define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
1775 2 + /* verifier: AUTH_NULL, length 0 */\
1776 1 + /* status */ \
1777 1 + /* MIN tag is length with zero, only length */ \
1778 3 + /* opcount, opcode, opstatus*/ \
1779 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1780 /* seqid, slotID, slotID, slotID, status */ \
1781 5 ) * sizeof(__be32))
1783 static bool check_forechannel_attrs(struct nfsd4_channel_attrs fchannel)
1785 return fchannel.maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ
1786 || fchannel.maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ;
1789 __be32
1790 nfsd4_create_session(struct svc_rqst *rqstp,
1791 struct nfsd4_compound_state *cstate,
1792 struct nfsd4_create_session *cr_ses)
1794 struct sockaddr *sa = svc_addr(rqstp);
1795 struct nfs4_client *conf, *unconf;
1796 struct nfsd4_session *new;
1797 struct nfsd4_conn *conn;
1798 struct nfsd4_clid_slot *cs_slot = NULL;
1799 __be32 status = 0;
1801 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
1802 return nfserr_inval;
1803 if (check_forechannel_attrs(cr_ses->fore_channel))
1804 return nfserr_toosmall;
1805 new = alloc_session(&cr_ses->fore_channel);
1806 if (!new)
1807 return nfserr_jukebox;
1808 status = nfserr_jukebox;
1809 conn = alloc_conn_from_crses(rqstp, cr_ses);
1810 if (!conn)
1811 goto out_free_session;
1813 nfs4_lock_state();
1814 unconf = find_unconfirmed_client(&cr_ses->clientid, true);
1815 conf = find_confirmed_client(&cr_ses->clientid, true);
1817 if (conf) {
1818 cs_slot = &conf->cl_cs_slot;
1819 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
1820 if (status == nfserr_replay_cache) {
1821 status = nfsd4_replay_create_session(cr_ses, cs_slot);
1822 goto out_free_conn;
1823 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
1824 status = nfserr_seq_misordered;
1825 goto out_free_conn;
1827 } else if (unconf) {
1828 struct nfs4_client *old;
1829 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
1830 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
1831 status = nfserr_clid_inuse;
1832 goto out_free_conn;
1834 cs_slot = &unconf->cl_cs_slot;
1835 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
1836 if (status) {
1837 /* an unconfirmed replay returns misordered */
1838 status = nfserr_seq_misordered;
1839 goto out_free_conn;
1841 old = find_confirmed_client_by_name(&unconf->cl_name);
1842 if (old)
1843 expire_client(old);
1844 move_to_confirmed(unconf);
1845 conf = unconf;
1846 } else {
1847 status = nfserr_stale_clientid;
1848 goto out_free_conn;
1850 status = nfs_ok;
1852 * We do not support RDMA or persistent sessions
1854 cr_ses->flags &= ~SESSION4_PERSIST;
1855 cr_ses->flags &= ~SESSION4_RDMA;
1857 init_session(rqstp, new, conf, cr_ses);
1858 nfsd4_init_conn(rqstp, conn, new);
1860 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
1861 NFS4_MAX_SESSIONID_LEN);
1862 memcpy(&cr_ses->fore_channel, &new->se_fchannel,
1863 sizeof(struct nfsd4_channel_attrs));
1864 cs_slot->sl_seqid++;
1865 cr_ses->seqid = cs_slot->sl_seqid;
1867 /* cache solo and embedded create sessions under the state lock */
1868 nfsd4_cache_create_session(cr_ses, cs_slot, status);
1869 out:
1870 nfs4_unlock_state();
1871 dprintk("%s returns %d\n", __func__, ntohl(status));
1872 return status;
1873 out_free_conn:
1874 free_conn(conn);
1875 out_free_session:
1876 __free_session(new);
1877 goto out;
1880 static bool nfsd4_last_compound_op(struct svc_rqst *rqstp)
1882 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1883 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1885 return argp->opcnt == resp->opcnt;
1888 static __be32 nfsd4_map_bcts_dir(u32 *dir)
1890 switch (*dir) {
1891 case NFS4_CDFC4_FORE:
1892 case NFS4_CDFC4_BACK:
1893 return nfs_ok;
1894 case NFS4_CDFC4_FORE_OR_BOTH:
1895 case NFS4_CDFC4_BACK_OR_BOTH:
1896 *dir = NFS4_CDFC4_BOTH;
1897 return nfs_ok;
1899 return nfserr_inval;
1902 __be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc)
1904 struct nfsd4_session *session = cstate->session;
1906 spin_lock(&client_lock);
1907 session->se_cb_prog = bc->bc_cb_program;
1908 session->se_cb_sec = bc->bc_cb_sec;
1909 spin_unlock(&client_lock);
1911 nfsd4_probe_callback(session->se_client);
1913 return nfs_ok;
1916 __be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
1917 struct nfsd4_compound_state *cstate,
1918 struct nfsd4_bind_conn_to_session *bcts)
1920 __be32 status;
1921 struct nfsd4_conn *conn;
1923 if (!nfsd4_last_compound_op(rqstp))
1924 return nfserr_not_only_op;
1925 spin_lock(&client_lock);
1926 cstate->session = find_in_sessionid_hashtbl(&bcts->sessionid);
1927 /* Sorta weird: we only need the refcnt'ing because new_conn acquires
1928 * client_lock iself: */
1929 if (cstate->session) {
1930 nfsd4_get_session(cstate->session);
1931 atomic_inc(&cstate->session->se_client->cl_refcount);
1933 spin_unlock(&client_lock);
1934 if (!cstate->session)
1935 return nfserr_badsession;
1937 status = nfsd4_map_bcts_dir(&bcts->dir);
1938 if (status)
1939 return status;
1940 conn = alloc_conn(rqstp, bcts->dir);
1941 if (!conn)
1942 return nfserr_jukebox;
1943 nfsd4_init_conn(rqstp, conn, cstate->session);
1944 return nfs_ok;
1947 static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
1949 if (!session)
1950 return 0;
1951 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
1954 __be32
1955 nfsd4_destroy_session(struct svc_rqst *r,
1956 struct nfsd4_compound_state *cstate,
1957 struct nfsd4_destroy_session *sessionid)
1959 struct nfsd4_session *ses;
1960 __be32 status = nfserr_badsession;
1962 /* Notes:
1963 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1964 * - Should we return nfserr_back_chan_busy if waiting for
1965 * callbacks on to-be-destroyed session?
1966 * - Do we need to clear any callback info from previous session?
1969 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
1970 if (!nfsd4_last_compound_op(r))
1971 return nfserr_not_only_op;
1973 dump_sessionid(__func__, &sessionid->sessionid);
1974 spin_lock(&client_lock);
1975 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1976 if (!ses) {
1977 spin_unlock(&client_lock);
1978 goto out;
1981 unhash_session(ses);
1982 spin_unlock(&client_lock);
1984 nfs4_lock_state();
1985 nfsd4_probe_callback_sync(ses->se_client);
1986 nfs4_unlock_state();
1988 spin_lock(&client_lock);
1989 nfsd4_del_conns(ses);
1990 nfsd4_put_session_locked(ses);
1991 spin_unlock(&client_lock);
1992 status = nfs_ok;
1993 out:
1994 dprintk("%s returns %d\n", __func__, ntohl(status));
1995 return status;
1998 static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
2000 struct nfsd4_conn *c;
2002 list_for_each_entry(c, &s->se_conns, cn_persession) {
2003 if (c->cn_xprt == xpt) {
2004 return c;
2007 return NULL;
2010 static void nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
2012 struct nfs4_client *clp = ses->se_client;
2013 struct nfsd4_conn *c;
2014 int ret;
2016 spin_lock(&clp->cl_lock);
2017 c = __nfsd4_find_conn(new->cn_xprt, ses);
2018 if (c) {
2019 spin_unlock(&clp->cl_lock);
2020 free_conn(new);
2021 return;
2023 __nfsd4_hash_conn(new, ses);
2024 spin_unlock(&clp->cl_lock);
2025 ret = nfsd4_register_conn(new);
2026 if (ret)
2027 /* oops; xprt is already down: */
2028 nfsd4_conn_lost(&new->cn_xpt_user);
2029 return;
2032 static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
2034 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2036 return args->opcnt > session->se_fchannel.maxops;
2039 static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
2040 struct nfsd4_session *session)
2042 struct xdr_buf *xb = &rqstp->rq_arg;
2044 return xb->len > session->se_fchannel.maxreq_sz;
2047 __be32
2048 nfsd4_sequence(struct svc_rqst *rqstp,
2049 struct nfsd4_compound_state *cstate,
2050 struct nfsd4_sequence *seq)
2052 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2053 struct nfsd4_session *session;
2054 struct nfsd4_slot *slot;
2055 struct nfsd4_conn *conn;
2056 __be32 status;
2058 if (resp->opcnt != 1)
2059 return nfserr_sequence_pos;
2062 * Will be either used or freed by nfsd4_sequence_check_conn
2063 * below.
2065 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
2066 if (!conn)
2067 return nfserr_jukebox;
2069 spin_lock(&client_lock);
2070 status = nfserr_badsession;
2071 session = find_in_sessionid_hashtbl(&seq->sessionid);
2072 if (!session)
2073 goto out;
2075 status = nfserr_too_many_ops;
2076 if (nfsd4_session_too_many_ops(rqstp, session))
2077 goto out;
2079 status = nfserr_req_too_big;
2080 if (nfsd4_request_too_big(rqstp, session))
2081 goto out;
2083 status = nfserr_badslot;
2084 if (seq->slotid >= session->se_fchannel.maxreqs)
2085 goto out;
2087 slot = session->se_slots[seq->slotid];
2088 dprintk("%s: slotid %d\n", __func__, seq->slotid);
2090 /* We do not negotiate the number of slots yet, so set the
2091 * maxslots to the session maxreqs which is used to encode
2092 * sr_highest_slotid and the sr_target_slot id to maxslots */
2093 seq->maxslots = session->se_fchannel.maxreqs;
2095 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
2096 slot->sl_flags & NFSD4_SLOT_INUSE);
2097 if (status == nfserr_replay_cache) {
2098 status = nfserr_seq_misordered;
2099 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
2100 goto out;
2101 cstate->slot = slot;
2102 cstate->session = session;
2103 /* Return the cached reply status and set cstate->status
2104 * for nfsd4_proc_compound processing */
2105 status = nfsd4_replay_cache_entry(resp, seq);
2106 cstate->status = nfserr_replay_cache;
2107 goto out;
2109 if (status)
2110 goto out;
2112 nfsd4_sequence_check_conn(conn, session);
2113 conn = NULL;
2115 /* Success! bump slot seqid */
2116 slot->sl_seqid = seq->seqid;
2117 slot->sl_flags |= NFSD4_SLOT_INUSE;
2118 if (seq->cachethis)
2119 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
2120 else
2121 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
2123 cstate->slot = slot;
2124 cstate->session = session;
2126 out:
2127 /* Hold a session reference until done processing the compound. */
2128 if (cstate->session) {
2129 struct nfs4_client *clp = session->se_client;
2131 nfsd4_get_session(cstate->session);
2132 atomic_inc(&clp->cl_refcount);
2133 switch (clp->cl_cb_state) {
2134 case NFSD4_CB_DOWN:
2135 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
2136 break;
2137 case NFSD4_CB_FAULT:
2138 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
2139 break;
2140 default:
2141 seq->status_flags = 0;
2144 kfree(conn);
2145 spin_unlock(&client_lock);
2146 dprintk("%s: return %d\n", __func__, ntohl(status));
2147 return status;
2150 __be32
2151 nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
2153 struct nfs4_client *conf, *unconf, *clp;
2154 __be32 status = 0;
2156 nfs4_lock_state();
2157 unconf = find_unconfirmed_client(&dc->clientid, true);
2158 conf = find_confirmed_client(&dc->clientid, true);
2160 if (conf) {
2161 clp = conf;
2163 if (!is_client_expired(conf) && client_has_state(conf)) {
2164 status = nfserr_clientid_busy;
2165 goto out;
2168 /* rfc5661 18.50.3 */
2169 if (cstate->session && conf == cstate->session->se_client) {
2170 status = nfserr_clientid_busy;
2171 goto out;
2173 } else if (unconf)
2174 clp = unconf;
2175 else {
2176 status = nfserr_stale_clientid;
2177 goto out;
2180 expire_client(clp);
2181 out:
2182 nfs4_unlock_state();
2183 dprintk("%s return %d\n", __func__, ntohl(status));
2184 return status;
2187 __be32
2188 nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
2190 __be32 status = 0;
2192 if (rc->rca_one_fs) {
2193 if (!cstate->current_fh.fh_dentry)
2194 return nfserr_nofilehandle;
2196 * We don't take advantage of the rca_one_fs case.
2197 * That's OK, it's optional, we can safely ignore it.
2199 return nfs_ok;
2202 nfs4_lock_state();
2203 status = nfserr_complete_already;
2204 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
2205 &cstate->session->se_client->cl_flags))
2206 goto out;
2208 status = nfserr_stale_clientid;
2209 if (is_client_expired(cstate->session->se_client))
2211 * The following error isn't really legal.
2212 * But we only get here if the client just explicitly
2213 * destroyed the client. Surely it no longer cares what
2214 * error it gets back on an operation for the dead
2215 * client.
2217 goto out;
2219 status = nfs_ok;
2220 nfsd4_client_record_create(cstate->session->se_client);
2221 out:
2222 nfs4_unlock_state();
2223 return status;
2226 __be32
2227 nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2228 struct nfsd4_setclientid *setclid)
2230 struct xdr_netobj clname = setclid->se_name;
2231 nfs4_verifier clverifier = setclid->se_verf;
2232 struct nfs4_client *conf, *unconf, *new;
2233 __be32 status;
2234 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2236 /* Cases below refer to rfc 3530 section 14.2.33: */
2237 nfs4_lock_state();
2238 conf = find_confirmed_client_by_name(&clname);
2239 if (conf) {
2240 /* case 0: */
2241 status = nfserr_clid_inuse;
2242 if (clp_used_exchangeid(conf))
2243 goto out;
2244 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
2245 char addr_str[INET6_ADDRSTRLEN];
2246 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2247 sizeof(addr_str));
2248 dprintk("NFSD: setclientid: string in use by client "
2249 "at %s\n", addr_str);
2250 goto out;
2253 unconf = find_unconfirmed_client_by_name(&clname);
2254 if (unconf)
2255 expire_client(unconf);
2256 status = nfserr_jukebox;
2257 new = create_client(clname, rqstp, &clverifier);
2258 if (new == NULL)
2259 goto out;
2260 if (conf && same_verf(&conf->cl_verifier, &clverifier))
2261 /* case 1: probable callback update */
2262 copy_clid(new, conf);
2263 else /* case 4 (new client) or cases 2, 3 (client reboot): */
2264 gen_clid(new, nn);
2265 new->cl_minorversion = 0;
2266 gen_callback(new, setclid, rqstp);
2267 add_to_unconfirmed(new);
2268 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2269 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2270 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2271 status = nfs_ok;
2272 out:
2273 nfs4_unlock_state();
2274 return status;
2278 __be32
2279 nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2280 struct nfsd4_compound_state *cstate,
2281 struct nfsd4_setclientid_confirm *setclientid_confirm)
2283 struct nfs4_client *conf, *unconf;
2284 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2285 clientid_t * clid = &setclientid_confirm->sc_clientid;
2286 __be32 status;
2287 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2289 if (STALE_CLIENTID(clid, nn))
2290 return nfserr_stale_clientid;
2291 nfs4_lock_state();
2293 conf = find_confirmed_client(clid, false);
2294 unconf = find_unconfirmed_client(clid, false);
2296 * We try hard to give out unique clientid's, so if we get an
2297 * attempt to confirm the same clientid with a different cred,
2298 * there's a bug somewhere. Let's charitably assume it's our
2299 * bug.
2301 status = nfserr_serverfault;
2302 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
2303 goto out;
2304 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
2305 goto out;
2306 /* cases below refer to rfc 3530 section 14.2.34: */
2307 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
2308 if (conf && !unconf) /* case 2: probable retransmit */
2309 status = nfs_ok;
2310 else /* case 4: client hasn't noticed we rebooted yet? */
2311 status = nfserr_stale_clientid;
2312 goto out;
2314 status = nfs_ok;
2315 if (conf) { /* case 1: callback update */
2316 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2317 nfsd4_probe_callback(conf);
2318 expire_client(unconf);
2319 } else { /* case 3: normal case; new or rebooted client */
2320 conf = find_confirmed_client_by_name(&unconf->cl_name);
2321 if (conf)
2322 expire_client(conf);
2323 move_to_confirmed(unconf);
2324 nfsd4_probe_callback(unconf);
2326 out:
2327 nfs4_unlock_state();
2328 return status;
2331 static struct nfs4_file *nfsd4_alloc_file(void)
2333 return kmem_cache_alloc(file_slab, GFP_KERNEL);
2336 /* OPEN Share state helper functions */
2337 static void nfsd4_init_file(struct nfs4_file *fp, struct inode *ino)
2339 unsigned int hashval = file_hashval(ino);
2341 atomic_set(&fp->fi_ref, 1);
2342 INIT_LIST_HEAD(&fp->fi_hash);
2343 INIT_LIST_HEAD(&fp->fi_stateids);
2344 INIT_LIST_HEAD(&fp->fi_delegations);
2345 fp->fi_inode = igrab(ino);
2346 fp->fi_had_conflict = false;
2347 fp->fi_lease = NULL;
2348 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2349 memset(fp->fi_access, 0, sizeof(fp->fi_access));
2350 spin_lock(&recall_lock);
2351 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
2352 spin_unlock(&recall_lock);
2355 static void
2356 nfsd4_free_slab(struct kmem_cache **slab)
2358 if (*slab == NULL)
2359 return;
2360 kmem_cache_destroy(*slab);
2361 *slab = NULL;
2364 void
2365 nfsd4_free_slabs(void)
2367 nfsd4_free_slab(&openowner_slab);
2368 nfsd4_free_slab(&lockowner_slab);
2369 nfsd4_free_slab(&file_slab);
2370 nfsd4_free_slab(&stateid_slab);
2371 nfsd4_free_slab(&deleg_slab);
2375 nfsd4_init_slabs(void)
2377 openowner_slab = kmem_cache_create("nfsd4_openowners",
2378 sizeof(struct nfs4_openowner), 0, 0, NULL);
2379 if (openowner_slab == NULL)
2380 goto out_nomem;
2381 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
2382 sizeof(struct nfs4_lockowner), 0, 0, NULL);
2383 if (lockowner_slab == NULL)
2384 goto out_nomem;
2385 file_slab = kmem_cache_create("nfsd4_files",
2386 sizeof(struct nfs4_file), 0, 0, NULL);
2387 if (file_slab == NULL)
2388 goto out_nomem;
2389 stateid_slab = kmem_cache_create("nfsd4_stateids",
2390 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
2391 if (stateid_slab == NULL)
2392 goto out_nomem;
2393 deleg_slab = kmem_cache_create("nfsd4_delegations",
2394 sizeof(struct nfs4_delegation), 0, 0, NULL);
2395 if (deleg_slab == NULL)
2396 goto out_nomem;
2397 return 0;
2398 out_nomem:
2399 nfsd4_free_slabs();
2400 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2401 return -ENOMEM;
2404 void nfs4_free_openowner(struct nfs4_openowner *oo)
2406 kfree(oo->oo_owner.so_owner.data);
2407 kmem_cache_free(openowner_slab, oo);
2410 void nfs4_free_lockowner(struct nfs4_lockowner *lo)
2412 kfree(lo->lo_owner.so_owner.data);
2413 kmem_cache_free(lockowner_slab, lo);
2416 static void init_nfs4_replay(struct nfs4_replay *rp)
2418 rp->rp_status = nfserr_serverfault;
2419 rp->rp_buflen = 0;
2420 rp->rp_buf = rp->rp_ibuf;
2423 static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
2425 struct nfs4_stateowner *sop;
2427 sop = kmem_cache_alloc(slab, GFP_KERNEL);
2428 if (!sop)
2429 return NULL;
2431 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2432 if (!sop->so_owner.data) {
2433 kmem_cache_free(slab, sop);
2434 return NULL;
2436 sop->so_owner.len = owner->len;
2438 INIT_LIST_HEAD(&sop->so_stateids);
2439 sop->so_client = clp;
2440 init_nfs4_replay(&sop->so_replay);
2441 return sop;
2444 static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
2446 list_add(&oo->oo_owner.so_strhash, &ownerstr_hashtbl[strhashval]);
2447 list_add(&oo->oo_perclient, &clp->cl_openowners);
2450 static struct nfs4_openowner *
2451 alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
2452 struct nfs4_openowner *oo;
2454 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
2455 if (!oo)
2456 return NULL;
2457 oo->oo_owner.so_is_open_owner = 1;
2458 oo->oo_owner.so_seqid = open->op_seqid;
2459 oo->oo_flags = NFS4_OO_NEW;
2460 oo->oo_time = 0;
2461 oo->oo_last_closed_stid = NULL;
2462 INIT_LIST_HEAD(&oo->oo_close_lru);
2463 hash_openowner(oo, clp, strhashval);
2464 return oo;
2467 static void init_open_stateid(struct nfs4_ol_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
2468 struct nfs4_openowner *oo = open->op_openowner;
2469 struct nfs4_client *clp = oo->oo_owner.so_client;
2471 init_stid(&stp->st_stid, clp, NFS4_OPEN_STID);
2472 INIT_LIST_HEAD(&stp->st_lockowners);
2473 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
2474 list_add(&stp->st_perfile, &fp->fi_stateids);
2475 stp->st_stateowner = &oo->oo_owner;
2476 get_nfs4_file(fp);
2477 stp->st_file = fp;
2478 stp->st_access_bmap = 0;
2479 stp->st_deny_bmap = 0;
2480 set_access(open->op_share_access, stp);
2481 set_deny(open->op_share_deny, stp);
2482 stp->st_openstp = NULL;
2485 static void
2486 move_to_close_lru(struct nfs4_openowner *oo)
2488 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
2490 list_move_tail(&oo->oo_close_lru, &close_lru);
2491 oo->oo_time = get_seconds();
2494 static int
2495 same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
2496 clientid_t *clid)
2498 return (sop->so_owner.len == owner->len) &&
2499 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
2500 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
2503 static struct nfs4_openowner *
2504 find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open, bool sessions)
2506 struct nfs4_stateowner *so;
2507 struct nfs4_openowner *oo;
2508 struct nfs4_client *clp;
2510 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
2511 if (!so->so_is_open_owner)
2512 continue;
2513 if (same_owner_str(so, &open->op_owner, &open->op_clientid)) {
2514 oo = openowner(so);
2515 clp = oo->oo_owner.so_client;
2516 if ((bool)clp->cl_minorversion != sessions)
2517 return NULL;
2518 renew_client(oo->oo_owner.so_client);
2519 return oo;
2522 return NULL;
2525 /* search file_hashtbl[] for file */
2526 static struct nfs4_file *
2527 find_file(struct inode *ino)
2529 unsigned int hashval = file_hashval(ino);
2530 struct nfs4_file *fp;
2532 spin_lock(&recall_lock);
2533 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
2534 if (fp->fi_inode == ino) {
2535 get_nfs4_file(fp);
2536 spin_unlock(&recall_lock);
2537 return fp;
2540 spin_unlock(&recall_lock);
2541 return NULL;
2545 * Called to check deny when READ with all zero stateid or
2546 * WRITE with all zero or all one stateid
2548 static __be32
2549 nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2551 struct inode *ino = current_fh->fh_dentry->d_inode;
2552 struct nfs4_file *fp;
2553 struct nfs4_ol_stateid *stp;
2554 __be32 ret;
2556 dprintk("NFSD: nfs4_share_conflict\n");
2558 fp = find_file(ino);
2559 if (!fp)
2560 return nfs_ok;
2561 ret = nfserr_locked;
2562 /* Search for conflicting share reservations */
2563 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
2564 if (test_deny(deny_type, stp) ||
2565 test_deny(NFS4_SHARE_DENY_BOTH, stp))
2566 goto out;
2568 ret = nfs_ok;
2569 out:
2570 put_nfs4_file(fp);
2571 return ret;
2574 static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
2576 /* We're assuming the state code never drops its reference
2577 * without first removing the lease. Since we're in this lease
2578 * callback (and since the lease code is serialized by the kernel
2579 * lock) we know the server hasn't removed the lease yet, we know
2580 * it's safe to take a reference: */
2581 atomic_inc(&dp->dl_count);
2583 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
2585 /* only place dl_time is set. protected by lock_flocks*/
2586 dp->dl_time = get_seconds();
2588 nfsd4_cb_recall(dp);
2591 /* Called from break_lease() with lock_flocks() held. */
2592 static void nfsd_break_deleg_cb(struct file_lock *fl)
2594 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
2595 struct nfs4_delegation *dp;
2597 if (!fp) {
2598 WARN(1, "(%p)->fl_owner NULL\n", fl);
2599 return;
2601 if (fp->fi_had_conflict) {
2602 WARN(1, "duplicate break on %p\n", fp);
2603 return;
2606 * We don't want the locks code to timeout the lease for us;
2607 * we'll remove it ourself if a delegation isn't returned
2608 * in time:
2610 fl->fl_break_time = 0;
2612 spin_lock(&recall_lock);
2613 fp->fi_had_conflict = true;
2614 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2615 nfsd_break_one_deleg(dp);
2616 spin_unlock(&recall_lock);
2619 static
2620 int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2622 if (arg & F_UNLCK)
2623 return lease_modify(onlist, arg);
2624 else
2625 return -EAGAIN;
2628 static const struct lock_manager_operations nfsd_lease_mng_ops = {
2629 .lm_break = nfsd_break_deleg_cb,
2630 .lm_change = nfsd_change_deleg_cb,
2633 static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
2635 if (nfsd4_has_session(cstate))
2636 return nfs_ok;
2637 if (seqid == so->so_seqid - 1)
2638 return nfserr_replay_me;
2639 if (seqid == so->so_seqid)
2640 return nfs_ok;
2641 return nfserr_bad_seqid;
2644 __be32
2645 nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2646 struct nfsd4_open *open)
2648 clientid_t *clientid = &open->op_clientid;
2649 struct nfs4_client *clp = NULL;
2650 unsigned int strhashval;
2651 struct nfs4_openowner *oo = NULL;
2652 __be32 status;
2653 struct nfsd_net *nn = net_generic(&init_net, nfsd_net_id);
2655 if (STALE_CLIENTID(&open->op_clientid, nn))
2656 return nfserr_stale_clientid;
2658 * In case we need it later, after we've already created the
2659 * file and don't want to risk a further failure:
2661 open->op_file = nfsd4_alloc_file();
2662 if (open->op_file == NULL)
2663 return nfserr_jukebox;
2665 strhashval = ownerstr_hashval(clientid->cl_id, &open->op_owner);
2666 oo = find_openstateowner_str(strhashval, open, cstate->minorversion);
2667 open->op_openowner = oo;
2668 if (!oo) {
2669 clp = find_confirmed_client(clientid, cstate->minorversion);
2670 if (clp == NULL)
2671 return nfserr_expired;
2672 goto new_owner;
2674 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
2675 /* Replace unconfirmed owners without checking for replay. */
2676 clp = oo->oo_owner.so_client;
2677 release_openowner(oo);
2678 open->op_openowner = NULL;
2679 goto new_owner;
2681 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
2682 if (status)
2683 return status;
2684 clp = oo->oo_owner.so_client;
2685 goto alloc_stateid;
2686 new_owner:
2687 oo = alloc_init_open_stateowner(strhashval, clp, open);
2688 if (oo == NULL)
2689 return nfserr_jukebox;
2690 open->op_openowner = oo;
2691 alloc_stateid:
2692 open->op_stp = nfs4_alloc_stateid(clp);
2693 if (!open->op_stp)
2694 return nfserr_jukebox;
2695 return nfs_ok;
2698 static inline __be32
2699 nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2701 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2702 return nfserr_openmode;
2703 else
2704 return nfs_ok;
2707 static int share_access_to_flags(u32 share_access)
2709 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
2712 static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
2714 struct nfs4_stid *ret;
2716 ret = find_stateid_by_type(cl, s, NFS4_DELEG_STID);
2717 if (!ret)
2718 return NULL;
2719 return delegstateid(ret);
2722 static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
2724 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
2725 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
2728 static __be32
2729 nfs4_check_deleg(struct nfs4_client *cl, struct nfs4_file *fp, struct nfsd4_open *open,
2730 struct nfs4_delegation **dp)
2732 int flags;
2733 __be32 status = nfserr_bad_stateid;
2735 *dp = find_deleg_stateid(cl, &open->op_delegate_stateid);
2736 if (*dp == NULL)
2737 goto out;
2738 flags = share_access_to_flags(open->op_share_access);
2739 status = nfs4_check_delegmode(*dp, flags);
2740 if (status)
2741 *dp = NULL;
2742 out:
2743 if (!nfsd4_is_deleg_cur(open))
2744 return nfs_ok;
2745 if (status)
2746 return status;
2747 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
2748 return nfs_ok;
2751 static __be32
2752 nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_ol_stateid **stpp)
2754 struct nfs4_ol_stateid *local;
2755 struct nfs4_openowner *oo = open->op_openowner;
2757 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
2758 /* ignore lock owners */
2759 if (local->st_stateowner->so_is_open_owner == 0)
2760 continue;
2761 /* remember if we have seen this open owner */
2762 if (local->st_stateowner == &oo->oo_owner)
2763 *stpp = local;
2764 /* check for conflicting share reservations */
2765 if (!test_share(local, open))
2766 return nfserr_share_denied;
2768 return nfs_ok;
2771 static inline int nfs4_access_to_access(u32 nfs4_access)
2773 int flags = 0;
2775 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
2776 flags |= NFSD_MAY_READ;
2777 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
2778 flags |= NFSD_MAY_WRITE;
2779 return flags;
2782 static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
2783 struct svc_fh *cur_fh, struct nfsd4_open *open)
2785 __be32 status;
2786 int oflag = nfs4_access_to_omode(open->op_share_access);
2787 int access = nfs4_access_to_access(open->op_share_access);
2789 if (!fp->fi_fds[oflag]) {
2790 status = nfsd_open(rqstp, cur_fh, S_IFREG, access,
2791 &fp->fi_fds[oflag]);
2792 if (status)
2793 return status;
2795 nfs4_file_get_access(fp, oflag);
2797 return nfs_ok;
2800 static inline __be32
2801 nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2802 struct nfsd4_open *open)
2804 struct iattr iattr = {
2805 .ia_valid = ATTR_SIZE,
2806 .ia_size = 0,
2808 if (!open->op_truncate)
2809 return 0;
2810 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
2811 return nfserr_inval;
2812 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2815 static __be32
2816 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)
2818 u32 op_share_access = open->op_share_access;
2819 bool new_access;
2820 __be32 status;
2822 new_access = !test_access(op_share_access, stp);
2823 if (new_access) {
2824 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
2825 if (status)
2826 return status;
2828 status = nfsd4_truncate(rqstp, cur_fh, open);
2829 if (status) {
2830 if (new_access) {
2831 int oflag = nfs4_access_to_omode(op_share_access);
2832 nfs4_file_put_access(fp, oflag);
2834 return status;
2836 /* remember the open */
2837 set_access(op_share_access, stp);
2838 set_deny(open->op_share_deny, stp);
2840 return nfs_ok;
2844 static void
2845 nfs4_set_claim_prev(struct nfsd4_open *open, bool has_session)
2847 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
2850 /* Should we give out recallable state?: */
2851 static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
2853 if (clp->cl_cb_state == NFSD4_CB_UP)
2854 return true;
2856 * In the sessions case, since we don't have to establish a
2857 * separate connection for callbacks, we assume it's OK
2858 * until we hear otherwise:
2860 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
2863 static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag)
2865 struct file_lock *fl;
2867 fl = locks_alloc_lock();
2868 if (!fl)
2869 return NULL;
2870 locks_init_lock(fl);
2871 fl->fl_lmops = &nfsd_lease_mng_ops;
2872 fl->fl_flags = FL_LEASE;
2873 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
2874 fl->fl_end = OFFSET_MAX;
2875 fl->fl_owner = (fl_owner_t)(dp->dl_file);
2876 fl->fl_pid = current->tgid;
2877 return fl;
2880 static int nfs4_setlease(struct nfs4_delegation *dp, int flag)
2882 struct nfs4_file *fp = dp->dl_file;
2883 struct file_lock *fl;
2884 int status;
2886 fl = nfs4_alloc_init_lease(dp, flag);
2887 if (!fl)
2888 return -ENOMEM;
2889 fl->fl_file = find_readable_file(fp);
2890 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
2891 status = vfs_setlease(fl->fl_file, fl->fl_type, &fl);
2892 if (status) {
2893 list_del_init(&dp->dl_perclnt);
2894 locks_free_lock(fl);
2895 return -ENOMEM;
2897 fp->fi_lease = fl;
2898 fp->fi_deleg_file = get_file(fl->fl_file);
2899 atomic_set(&fp->fi_delegees, 1);
2900 list_add(&dp->dl_perfile, &fp->fi_delegations);
2901 return 0;
2904 static int nfs4_set_delegation(struct nfs4_delegation *dp, int flag)
2906 struct nfs4_file *fp = dp->dl_file;
2908 if (!fp->fi_lease)
2909 return nfs4_setlease(dp, flag);
2910 spin_lock(&recall_lock);
2911 if (fp->fi_had_conflict) {
2912 spin_unlock(&recall_lock);
2913 return -EAGAIN;
2915 atomic_inc(&fp->fi_delegees);
2916 list_add(&dp->dl_perfile, &fp->fi_delegations);
2917 spin_unlock(&recall_lock);
2918 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
2919 return 0;
2922 static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
2924 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
2925 if (status == -EAGAIN)
2926 open->op_why_no_deleg = WND4_CONTENTION;
2927 else {
2928 open->op_why_no_deleg = WND4_RESOURCE;
2929 switch (open->op_deleg_want) {
2930 case NFS4_SHARE_WANT_READ_DELEG:
2931 case NFS4_SHARE_WANT_WRITE_DELEG:
2932 case NFS4_SHARE_WANT_ANY_DELEG:
2933 break;
2934 case NFS4_SHARE_WANT_CANCEL:
2935 open->op_why_no_deleg = WND4_CANCELLED;
2936 break;
2937 case NFS4_SHARE_WANT_NO_DELEG:
2938 BUG(); /* not supposed to get here */
2944 * Attempt to hand out a delegation.
2946 static void
2947 nfs4_open_delegation(struct net *net, struct svc_fh *fh,
2948 struct nfsd4_open *open, struct nfs4_ol_stateid *stp)
2950 struct nfs4_delegation *dp;
2951 struct nfs4_openowner *oo = container_of(stp->st_stateowner, struct nfs4_openowner, oo_owner);
2952 int cb_up;
2953 int status = 0, flag = 0;
2955 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
2956 flag = NFS4_OPEN_DELEGATE_NONE;
2957 open->op_recall = 0;
2958 switch (open->op_claim_type) {
2959 case NFS4_OPEN_CLAIM_PREVIOUS:
2960 if (!cb_up)
2961 open->op_recall = 1;
2962 flag = open->op_delegate_type;
2963 if (flag == NFS4_OPEN_DELEGATE_NONE)
2964 goto out;
2965 break;
2966 case NFS4_OPEN_CLAIM_NULL:
2967 /* Let's not give out any delegations till everyone's
2968 * had the chance to reclaim theirs.... */
2969 if (locks_in_grace(net))
2970 goto out;
2971 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
2972 goto out;
2973 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2974 flag = NFS4_OPEN_DELEGATE_WRITE;
2975 else
2976 flag = NFS4_OPEN_DELEGATE_READ;
2977 break;
2978 default:
2979 goto out;
2982 dp = alloc_init_deleg(oo->oo_owner.so_client, stp, fh, flag);
2983 if (dp == NULL)
2984 goto out_no_deleg;
2985 status = nfs4_set_delegation(dp, flag);
2986 if (status)
2987 goto out_free;
2989 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
2991 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
2992 STATEID_VAL(&dp->dl_stid.sc_stateid));
2993 out:
2994 open->op_delegate_type = flag;
2995 if (flag == NFS4_OPEN_DELEGATE_NONE) {
2996 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
2997 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
2998 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
3000 /* 4.1 client asking for a delegation? */
3001 if (open->op_deleg_want)
3002 nfsd4_open_deleg_none_ext(open, status);
3004 return;
3005 out_free:
3006 nfs4_put_delegation(dp);
3007 out_no_deleg:
3008 flag = NFS4_OPEN_DELEGATE_NONE;
3009 goto out;
3012 static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
3013 struct nfs4_delegation *dp)
3015 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
3016 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3017 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3018 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
3019 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
3020 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3021 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3022 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
3024 /* Otherwise the client must be confused wanting a delegation
3025 * it already has, therefore we don't return
3026 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
3031 * called with nfs4_lock_state() held.
3033 __be32
3034 nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
3036 struct nfsd4_compoundres *resp = rqstp->rq_resp;
3037 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
3038 struct nfs4_file *fp = NULL;
3039 struct inode *ino = current_fh->fh_dentry->d_inode;
3040 struct nfs4_ol_stateid *stp = NULL;
3041 struct nfs4_delegation *dp = NULL;
3042 __be32 status;
3045 * Lookup file; if found, lookup stateid and check open request,
3046 * and check for delegations in the process of being recalled.
3047 * If not found, create the nfs4_file struct
3049 fp = find_file(ino);
3050 if (fp) {
3051 if ((status = nfs4_check_open(fp, open, &stp)))
3052 goto out;
3053 status = nfs4_check_deleg(cl, fp, open, &dp);
3054 if (status)
3055 goto out;
3056 } else {
3057 status = nfserr_bad_stateid;
3058 if (nfsd4_is_deleg_cur(open))
3059 goto out;
3060 status = nfserr_jukebox;
3061 fp = open->op_file;
3062 open->op_file = NULL;
3063 nfsd4_init_file(fp, ino);
3067 * OPEN the file, or upgrade an existing OPEN.
3068 * If truncate fails, the OPEN fails.
3070 if (stp) {
3071 /* Stateid was found, this is an OPEN upgrade */
3072 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
3073 if (status)
3074 goto out;
3075 } else {
3076 status = nfs4_get_vfs_file(rqstp, fp, current_fh, open);
3077 if (status)
3078 goto out;
3079 status = nfsd4_truncate(rqstp, current_fh, open);
3080 if (status)
3081 goto out;
3082 stp = open->op_stp;
3083 open->op_stp = NULL;
3084 init_open_stateid(stp, fp, open);
3086 update_stateid(&stp->st_stid.sc_stateid);
3087 memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3089 if (nfsd4_has_session(&resp->cstate)) {
3090 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
3092 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
3093 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3094 open->op_why_no_deleg = WND4_NOT_WANTED;
3095 goto nodeleg;
3100 * Attempt to hand out a delegation. No error return, because the
3101 * OPEN succeeds even if we fail.
3103 nfs4_open_delegation(SVC_NET(rqstp), current_fh, open, stp);
3104 nodeleg:
3105 status = nfs_ok;
3107 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
3108 STATEID_VAL(&stp->st_stid.sc_stateid));
3109 out:
3110 /* 4.1 client trying to upgrade/downgrade delegation? */
3111 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
3112 open->op_deleg_want)
3113 nfsd4_deleg_xgrade_none_ext(open, dp);
3115 if (fp)
3116 put_nfs4_file(fp);
3117 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
3118 nfs4_set_claim_prev(open, nfsd4_has_session(&resp->cstate));
3120 * To finish the open response, we just need to set the rflags.
3122 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
3123 if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED) &&
3124 !nfsd4_has_session(&resp->cstate))
3125 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
3127 return status;
3130 void nfsd4_cleanup_open_state(struct nfsd4_open *open, __be32 status)
3132 if (open->op_openowner) {
3133 struct nfs4_openowner *oo = open->op_openowner;
3135 if (!list_empty(&oo->oo_owner.so_stateids))
3136 list_del_init(&oo->oo_close_lru);
3137 if (oo->oo_flags & NFS4_OO_NEW) {
3138 if (status) {
3139 release_openowner(oo);
3140 open->op_openowner = NULL;
3141 } else
3142 oo->oo_flags &= ~NFS4_OO_NEW;
3145 if (open->op_file)
3146 nfsd4_free_file(open->op_file);
3147 if (open->op_stp)
3148 free_generic_stateid(open->op_stp);
3151 __be32
3152 nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3153 clientid_t *clid)
3155 struct nfs4_client *clp;
3156 __be32 status;
3157 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3159 nfs4_lock_state();
3160 dprintk("process_renew(%08x/%08x): starting\n",
3161 clid->cl_boot, clid->cl_id);
3162 status = nfserr_stale_clientid;
3163 if (STALE_CLIENTID(clid, nn))
3164 goto out;
3165 clp = find_confirmed_client(clid, cstate->minorversion);
3166 status = nfserr_expired;
3167 if (clp == NULL) {
3168 /* We assume the client took too long to RENEW. */
3169 dprintk("nfsd4_renew: clientid not found!\n");
3170 goto out;
3172 status = nfserr_cb_path_down;
3173 if (!list_empty(&clp->cl_delegations)
3174 && clp->cl_cb_state != NFSD4_CB_UP)
3175 goto out;
3176 status = nfs_ok;
3177 out:
3178 nfs4_unlock_state();
3179 return status;
3182 static void
3183 nfsd4_end_grace(struct net *net)
3185 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
3187 /* do nothing if grace period already ended */
3188 if (nn->grace_ended)
3189 return;
3191 dprintk("NFSD: end of grace period\n");
3192 nn->grace_ended = true;
3193 nfsd4_record_grace_done(net, nn->boot_time);
3194 locks_end_grace(&nn->nfsd4_manager);
3196 * Now that every NFSv4 client has had the chance to recover and
3197 * to see the (possibly new, possibly shorter) lease time, we
3198 * can safely set the next grace time to the current lease time:
3200 nfsd4_grace = nfsd4_lease;
3203 static time_t
3204 nfs4_laundromat(void)
3206 struct nfs4_client *clp;
3207 struct nfs4_openowner *oo;
3208 struct nfs4_delegation *dp;
3209 struct list_head *pos, *next, reaplist;
3210 time_t cutoff = get_seconds() - nfsd4_lease;
3211 time_t t, clientid_val = nfsd4_lease;
3212 time_t u, test_val = nfsd4_lease;
3214 nfs4_lock_state();
3216 dprintk("NFSD: laundromat service - starting\n");
3217 nfsd4_end_grace(&init_net);
3218 INIT_LIST_HEAD(&reaplist);
3219 spin_lock(&client_lock);
3220 list_for_each_safe(pos, next, &client_lru) {
3221 clp = list_entry(pos, struct nfs4_client, cl_lru);
3222 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3223 t = clp->cl_time - cutoff;
3224 if (clientid_val > t)
3225 clientid_val = t;
3226 break;
3228 if (atomic_read(&clp->cl_refcount)) {
3229 dprintk("NFSD: client in use (clientid %08x)\n",
3230 clp->cl_clientid.cl_id);
3231 continue;
3233 unhash_client_locked(clp);
3234 list_add(&clp->cl_lru, &reaplist);
3236 spin_unlock(&client_lock);
3237 list_for_each_safe(pos, next, &reaplist) {
3238 clp = list_entry(pos, struct nfs4_client, cl_lru);
3239 dprintk("NFSD: purging unused client (clientid %08x)\n",
3240 clp->cl_clientid.cl_id);
3241 expire_client(clp);
3243 spin_lock(&recall_lock);
3244 list_for_each_safe(pos, next, &del_recall_lru) {
3245 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3246 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
3247 u = dp->dl_time - cutoff;
3248 if (test_val > u)
3249 test_val = u;
3250 break;
3252 list_move(&dp->dl_recall_lru, &reaplist);
3254 spin_unlock(&recall_lock);
3255 list_for_each_safe(pos, next, &reaplist) {
3256 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3257 unhash_delegation(dp);
3259 test_val = nfsd4_lease;
3260 list_for_each_safe(pos, next, &close_lru) {
3261 oo = container_of(pos, struct nfs4_openowner, oo_close_lru);
3262 if (time_after((unsigned long)oo->oo_time, (unsigned long)cutoff)) {
3263 u = oo->oo_time - cutoff;
3264 if (test_val > u)
3265 test_val = u;
3266 break;
3268 release_openowner(oo);
3270 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
3271 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
3272 nfs4_unlock_state();
3273 return clientid_val;
3276 static struct workqueue_struct *laundry_wq;
3277 static void laundromat_main(struct work_struct *);
3278 static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
3280 static void
3281 laundromat_main(struct work_struct *not_used)
3283 time_t t;
3285 t = nfs4_laundromat();
3286 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
3287 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
3290 static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
3292 if (fhp->fh_dentry->d_inode != stp->st_file->fi_inode)
3293 return nfserr_bad_stateid;
3294 return nfs_ok;
3297 static int
3298 STALE_STATEID(stateid_t *stateid, struct nfsd_net *nn)
3300 if (stateid->si_opaque.so_clid.cl_boot == nn->boot_time)
3301 return 0;
3302 dprintk("NFSD: stale stateid " STATEID_FMT "!\n",
3303 STATEID_VAL(stateid));
3304 return 1;
3307 static inline int
3308 access_permit_read(struct nfs4_ol_stateid *stp)
3310 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
3311 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
3312 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
3315 static inline int
3316 access_permit_write(struct nfs4_ol_stateid *stp)
3318 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
3319 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
3322 static
3323 __be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
3325 __be32 status = nfserr_openmode;
3327 /* For lock stateid's, we test the parent open, not the lock: */
3328 if (stp->st_openstp)
3329 stp = stp->st_openstp;
3330 if ((flags & WR_STATE) && !access_permit_write(stp))
3331 goto out;
3332 if ((flags & RD_STATE) && !access_permit_read(stp))
3333 goto out;
3334 status = nfs_ok;
3335 out:
3336 return status;
3339 static inline __be32
3340 check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
3342 if (ONE_STATEID(stateid) && (flags & RD_STATE))
3343 return nfs_ok;
3344 else if (locks_in_grace(net)) {
3345 /* Answer in remaining cases depends on existence of
3346 * conflicting state; so we must wait out the grace period. */
3347 return nfserr_grace;
3348 } else if (flags & WR_STATE)
3349 return nfs4_share_conflict(current_fh,
3350 NFS4_SHARE_DENY_WRITE);
3351 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
3352 return nfs4_share_conflict(current_fh,
3353 NFS4_SHARE_DENY_READ);
3357 * Allow READ/WRITE during grace period on recovered state only for files
3358 * that are not able to provide mandatory locking.
3360 static inline int
3361 grace_disallows_io(struct net *net, struct inode *inode)
3363 return locks_in_grace(net) && mandatory_lock(inode);
3366 /* Returns true iff a is later than b: */
3367 static bool stateid_generation_after(stateid_t *a, stateid_t *b)
3369 return (s32)a->si_generation - (s32)b->si_generation > 0;
3372 static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
3375 * When sessions are used the stateid generation number is ignored
3376 * when it is zero.
3378 if (has_session && in->si_generation == 0)
3379 return nfs_ok;
3381 if (in->si_generation == ref->si_generation)
3382 return nfs_ok;
3384 /* If the client sends us a stateid from the future, it's buggy: */
3385 if (stateid_generation_after(in, ref))
3386 return nfserr_bad_stateid;
3388 * However, we could see a stateid from the past, even from a
3389 * non-buggy client. For example, if the client sends a lock
3390 * while some IO is outstanding, the lock may bump si_generation
3391 * while the IO is still in flight. The client could avoid that
3392 * situation by waiting for responses on all the IO requests,
3393 * but better performance may result in retrying IO that
3394 * receives an old_stateid error if requests are rarely
3395 * reordered in flight:
3397 return nfserr_old_stateid;
3400 static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
3402 struct nfs4_stid *s;
3403 struct nfs4_ol_stateid *ols;
3404 __be32 status;
3406 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3407 return nfserr_bad_stateid;
3408 /* Client debugging aid. */
3409 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
3410 char addr_str[INET6_ADDRSTRLEN];
3411 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
3412 sizeof(addr_str));
3413 pr_warn_ratelimited("NFSD: client %s testing state ID "
3414 "with incorrect client ID\n", addr_str);
3415 return nfserr_bad_stateid;
3417 s = find_stateid(cl, stateid);
3418 if (!s)
3419 return nfserr_bad_stateid;
3420 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
3421 if (status)
3422 return status;
3423 if (!(s->sc_type & (NFS4_OPEN_STID | NFS4_LOCK_STID)))
3424 return nfs_ok;
3425 ols = openlockstateid(s);
3426 if (ols->st_stateowner->so_is_open_owner
3427 && !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
3428 return nfserr_bad_stateid;
3429 return nfs_ok;
3432 static __be32 nfsd4_lookup_stateid(stateid_t *stateid, unsigned char typemask, struct nfs4_stid **s, bool sessions)
3434 struct nfs4_client *cl;
3435 struct nfsd_net *nn = net_generic(&init_net, nfsd_net_id);
3437 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3438 return nfserr_bad_stateid;
3439 if (STALE_STATEID(stateid, nn))
3440 return nfserr_stale_stateid;
3441 cl = find_confirmed_client(&stateid->si_opaque.so_clid, sessions);
3442 if (!cl)
3443 return nfserr_expired;
3444 *s = find_stateid_by_type(cl, stateid, typemask);
3445 if (!*s)
3446 return nfserr_bad_stateid;
3447 return nfs_ok;
3452 * Checks for stateid operations
3454 __be32
3455 nfs4_preprocess_stateid_op(struct net *net, struct nfsd4_compound_state *cstate,
3456 stateid_t *stateid, int flags, struct file **filpp)
3458 struct nfs4_stid *s;
3459 struct nfs4_ol_stateid *stp = NULL;
3460 struct nfs4_delegation *dp = NULL;
3461 struct svc_fh *current_fh = &cstate->current_fh;
3462 struct inode *ino = current_fh->fh_dentry->d_inode;
3463 __be32 status;
3465 if (filpp)
3466 *filpp = NULL;
3468 if (grace_disallows_io(net, ino))
3469 return nfserr_grace;
3471 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3472 return check_special_stateids(net, current_fh, stateid, flags);
3474 status = nfsd4_lookup_stateid(stateid, NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID, &s, cstate->minorversion);
3475 if (status)
3476 return status;
3477 status = check_stateid_generation(stateid, &s->sc_stateid, nfsd4_has_session(cstate));
3478 if (status)
3479 goto out;
3480 switch (s->sc_type) {
3481 case NFS4_DELEG_STID:
3482 dp = delegstateid(s);
3483 status = nfs4_check_delegmode(dp, flags);
3484 if (status)
3485 goto out;
3486 if (filpp) {
3487 *filpp = dp->dl_file->fi_deleg_file;
3488 BUG_ON(!*filpp);
3490 break;
3491 case NFS4_OPEN_STID:
3492 case NFS4_LOCK_STID:
3493 stp = openlockstateid(s);
3494 status = nfs4_check_fh(current_fh, stp);
3495 if (status)
3496 goto out;
3497 if (stp->st_stateowner->so_is_open_owner
3498 && !(openowner(stp->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
3499 goto out;
3500 status = nfs4_check_openmode(stp, flags);
3501 if (status)
3502 goto out;
3503 if (filpp) {
3504 if (flags & RD_STATE)
3505 *filpp = find_readable_file(stp->st_file);
3506 else
3507 *filpp = find_writeable_file(stp->st_file);
3509 break;
3510 default:
3511 return nfserr_bad_stateid;
3513 status = nfs_ok;
3514 out:
3515 return status;
3518 static __be32
3519 nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp)
3521 if (check_for_locks(stp->st_file, lockowner(stp->st_stateowner)))
3522 return nfserr_locks_held;
3523 release_lock_stateid(stp);
3524 return nfs_ok;
3528 * Test if the stateid is valid
3530 __be32
3531 nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3532 struct nfsd4_test_stateid *test_stateid)
3534 struct nfsd4_test_stateid_id *stateid;
3535 struct nfs4_client *cl = cstate->session->se_client;
3537 nfs4_lock_state();
3538 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
3539 stateid->ts_id_status =
3540 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
3541 nfs4_unlock_state();
3543 return nfs_ok;
3546 __be32
3547 nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3548 struct nfsd4_free_stateid *free_stateid)
3550 stateid_t *stateid = &free_stateid->fr_stateid;
3551 struct nfs4_stid *s;
3552 struct nfs4_client *cl = cstate->session->se_client;
3553 __be32 ret = nfserr_bad_stateid;
3555 nfs4_lock_state();
3556 s = find_stateid(cl, stateid);
3557 if (!s)
3558 goto out;
3559 switch (s->sc_type) {
3560 case NFS4_DELEG_STID:
3561 ret = nfserr_locks_held;
3562 goto out;
3563 case NFS4_OPEN_STID:
3564 case NFS4_LOCK_STID:
3565 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
3566 if (ret)
3567 goto out;
3568 if (s->sc_type == NFS4_LOCK_STID)
3569 ret = nfsd4_free_lock_stateid(openlockstateid(s));
3570 else
3571 ret = nfserr_locks_held;
3572 break;
3573 default:
3574 ret = nfserr_bad_stateid;
3576 out:
3577 nfs4_unlock_state();
3578 return ret;
3581 static inline int
3582 setlkflg (int type)
3584 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
3585 RD_STATE : WR_STATE;
3588 static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
3590 struct svc_fh *current_fh = &cstate->current_fh;
3591 struct nfs4_stateowner *sop = stp->st_stateowner;
3592 __be32 status;
3594 status = nfsd4_check_seqid(cstate, sop, seqid);
3595 if (status)
3596 return status;
3597 if (stp->st_stid.sc_type == NFS4_CLOSED_STID)
3599 * "Closed" stateid's exist *only* to return
3600 * nfserr_replay_me from the previous step.
3602 return nfserr_bad_stateid;
3603 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
3604 if (status)
3605 return status;
3606 return nfs4_check_fh(current_fh, stp);
3610 * Checks for sequence id mutating operations.
3612 static __be32
3613 nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
3614 stateid_t *stateid, char typemask,
3615 struct nfs4_ol_stateid **stpp)
3617 __be32 status;
3618 struct nfs4_stid *s;
3620 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
3621 seqid, STATEID_VAL(stateid));
3623 *stpp = NULL;
3624 status = nfsd4_lookup_stateid(stateid, typemask, &s, cstate->minorversion);
3625 if (status)
3626 return status;
3627 *stpp = openlockstateid(s);
3628 cstate->replay_owner = (*stpp)->st_stateowner;
3630 return nfs4_seqid_op_checks(cstate, stateid, seqid, *stpp);
3633 static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid, stateid_t *stateid, struct nfs4_ol_stateid **stpp)
3635 __be32 status;
3636 struct nfs4_openowner *oo;
3638 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
3639 NFS4_OPEN_STID, stpp);
3640 if (status)
3641 return status;
3642 oo = openowner((*stpp)->st_stateowner);
3643 if (!(oo->oo_flags & NFS4_OO_CONFIRMED))
3644 return nfserr_bad_stateid;
3645 return nfs_ok;
3648 __be32
3649 nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3650 struct nfsd4_open_confirm *oc)
3652 __be32 status;
3653 struct nfs4_openowner *oo;
3654 struct nfs4_ol_stateid *stp;
3656 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
3657 (int)cstate->current_fh.fh_dentry->d_name.len,
3658 cstate->current_fh.fh_dentry->d_name.name);
3660 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
3661 if (status)
3662 return status;
3664 nfs4_lock_state();
3666 status = nfs4_preprocess_seqid_op(cstate,
3667 oc->oc_seqid, &oc->oc_req_stateid,
3668 NFS4_OPEN_STID, &stp);
3669 if (status)
3670 goto out;
3671 oo = openowner(stp->st_stateowner);
3672 status = nfserr_bad_stateid;
3673 if (oo->oo_flags & NFS4_OO_CONFIRMED)
3674 goto out;
3675 oo->oo_flags |= NFS4_OO_CONFIRMED;
3676 update_stateid(&stp->st_stid.sc_stateid);
3677 memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3678 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
3679 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
3681 nfsd4_client_record_create(oo->oo_owner.so_client);
3682 status = nfs_ok;
3683 out:
3684 if (!cstate->replay_owner)
3685 nfs4_unlock_state();
3686 return status;
3689 static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
3691 if (!test_access(access, stp))
3692 return;
3693 nfs4_file_put_access(stp->st_file, nfs4_access_to_omode(access));
3694 clear_access(access, stp);
3697 static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
3699 switch (to_access) {
3700 case NFS4_SHARE_ACCESS_READ:
3701 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
3702 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
3703 break;
3704 case NFS4_SHARE_ACCESS_WRITE:
3705 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
3706 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
3707 break;
3708 case NFS4_SHARE_ACCESS_BOTH:
3709 break;
3710 default:
3711 BUG();
3715 static void
3716 reset_union_bmap_deny(unsigned long deny, struct nfs4_ol_stateid *stp)
3718 int i;
3719 for (i = 0; i < 4; i++) {
3720 if ((i & deny) != i)
3721 clear_deny(i, stp);
3725 __be32
3726 nfsd4_open_downgrade(struct svc_rqst *rqstp,
3727 struct nfsd4_compound_state *cstate,
3728 struct nfsd4_open_downgrade *od)
3730 __be32 status;
3731 struct nfs4_ol_stateid *stp;
3733 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
3734 (int)cstate->current_fh.fh_dentry->d_name.len,
3735 cstate->current_fh.fh_dentry->d_name.name);
3737 /* We don't yet support WANT bits: */
3738 if (od->od_deleg_want)
3739 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
3740 od->od_deleg_want);
3742 nfs4_lock_state();
3743 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
3744 &od->od_stateid, &stp);
3745 if (status)
3746 goto out;
3747 status = nfserr_inval;
3748 if (!test_access(od->od_share_access, stp)) {
3749 dprintk("NFSD: access not a subset current bitmap: 0x%lx, input access=%08x\n",
3750 stp->st_access_bmap, od->od_share_access);
3751 goto out;
3753 if (!test_deny(od->od_share_deny, stp)) {
3754 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3755 stp->st_deny_bmap, od->od_share_deny);
3756 goto out;
3758 nfs4_stateid_downgrade(stp, od->od_share_access);
3760 reset_union_bmap_deny(od->od_share_deny, stp);
3762 update_stateid(&stp->st_stid.sc_stateid);
3763 memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3764 status = nfs_ok;
3765 out:
3766 if (!cstate->replay_owner)
3767 nfs4_unlock_state();
3768 return status;
3771 void nfsd4_purge_closed_stateid(struct nfs4_stateowner *so)
3773 struct nfs4_openowner *oo;
3774 struct nfs4_ol_stateid *s;
3776 if (!so->so_is_open_owner)
3777 return;
3778 oo = openowner(so);
3779 s = oo->oo_last_closed_stid;
3780 if (!s)
3781 return;
3782 if (!(oo->oo_flags & NFS4_OO_PURGE_CLOSE)) {
3783 /* Release the last_closed_stid on the next seqid bump: */
3784 oo->oo_flags |= NFS4_OO_PURGE_CLOSE;
3785 return;
3787 oo->oo_flags &= ~NFS4_OO_PURGE_CLOSE;
3788 release_last_closed_stateid(oo);
3791 static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
3793 unhash_open_stateid(s);
3794 s->st_stid.sc_type = NFS4_CLOSED_STID;
3798 * nfs4_unlock_state() called after encode
3800 __be32
3801 nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3802 struct nfsd4_close *close)
3804 __be32 status;
3805 struct nfs4_openowner *oo;
3806 struct nfs4_ol_stateid *stp;
3808 dprintk("NFSD: nfsd4_close on file %.*s\n",
3809 (int)cstate->current_fh.fh_dentry->d_name.len,
3810 cstate->current_fh.fh_dentry->d_name.name);
3812 nfs4_lock_state();
3813 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
3814 &close->cl_stateid,
3815 NFS4_OPEN_STID|NFS4_CLOSED_STID,
3816 &stp);
3817 if (status)
3818 goto out;
3819 oo = openowner(stp->st_stateowner);
3820 status = nfs_ok;
3821 update_stateid(&stp->st_stid.sc_stateid);
3822 memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3824 nfsd4_close_open_stateid(stp);
3825 release_last_closed_stateid(oo);
3826 oo->oo_last_closed_stid = stp;
3828 if (list_empty(&oo->oo_owner.so_stateids)) {
3829 if (cstate->minorversion) {
3830 release_openowner(oo);
3831 cstate->replay_owner = NULL;
3832 } else {
3834 * In the 4.0 case we need to keep the owners around a
3835 * little while to handle CLOSE replay.
3837 if (list_empty(&oo->oo_owner.so_stateids))
3838 move_to_close_lru(oo);
3841 out:
3842 if (!cstate->replay_owner)
3843 nfs4_unlock_state();
3844 return status;
3847 __be32
3848 nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3849 struct nfsd4_delegreturn *dr)
3851 struct nfs4_delegation *dp;
3852 stateid_t *stateid = &dr->dr_stateid;
3853 struct nfs4_stid *s;
3854 __be32 status;
3856 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
3857 return status;
3859 nfs4_lock_state();
3860 status = nfsd4_lookup_stateid(stateid, NFS4_DELEG_STID, &s, cstate->minorversion);
3861 if (status)
3862 goto out;
3863 dp = delegstateid(s);
3864 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
3865 if (status)
3866 goto out;
3868 unhash_delegation(dp);
3869 out:
3870 nfs4_unlock_state();
3872 return status;
3876 #define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
3878 #define LOCKOWNER_INO_HASH_BITS 8
3879 #define LOCKOWNER_INO_HASH_SIZE (1 << LOCKOWNER_INO_HASH_BITS)
3880 #define LOCKOWNER_INO_HASH_MASK (LOCKOWNER_INO_HASH_SIZE - 1)
3882 static inline u64
3883 end_offset(u64 start, u64 len)
3885 u64 end;
3887 end = start + len;
3888 return end >= start ? end: NFS4_MAX_UINT64;
3891 /* last octet in a range */
3892 static inline u64
3893 last_byte_offset(u64 start, u64 len)
3895 u64 end;
3897 BUG_ON(!len);
3898 end = start + len;
3899 return end > start ? end - 1: NFS4_MAX_UINT64;
3902 static unsigned int lockowner_ino_hashval(struct inode *inode, u32 cl_id, struct xdr_netobj *ownername)
3904 return (file_hashval(inode) + cl_id
3905 + opaque_hashval(ownername->data, ownername->len))
3906 & LOCKOWNER_INO_HASH_MASK;
3909 static struct list_head lockowner_ino_hashtbl[LOCKOWNER_INO_HASH_SIZE];
3912 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3913 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3914 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3915 * locking, this prevents us from being completely protocol-compliant. The
3916 * real solution to this problem is to start using unsigned file offsets in
3917 * the VFS, but this is a very deep change!
3919 static inline void
3920 nfs4_transform_lock_offset(struct file_lock *lock)
3922 if (lock->fl_start < 0)
3923 lock->fl_start = OFFSET_MAX;
3924 if (lock->fl_end < 0)
3925 lock->fl_end = OFFSET_MAX;
3928 /* Hack!: For now, we're defining this just so we can use a pointer to it
3929 * as a unique cookie to identify our (NFSv4's) posix locks. */
3930 static const struct lock_manager_operations nfsd_posix_mng_ops = {
3933 static inline void
3934 nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3936 struct nfs4_lockowner *lo;
3938 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3939 lo = (struct nfs4_lockowner *) fl->fl_owner;
3940 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
3941 lo->lo_owner.so_owner.len, GFP_KERNEL);
3942 if (!deny->ld_owner.data)
3943 /* We just don't care that much */
3944 goto nevermind;
3945 deny->ld_owner.len = lo->lo_owner.so_owner.len;
3946 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
3947 } else {
3948 nevermind:
3949 deny->ld_owner.len = 0;
3950 deny->ld_owner.data = NULL;
3951 deny->ld_clientid.cl_boot = 0;
3952 deny->ld_clientid.cl_id = 0;
3954 deny->ld_start = fl->fl_start;
3955 deny->ld_length = NFS4_MAX_UINT64;
3956 if (fl->fl_end != NFS4_MAX_UINT64)
3957 deny->ld_length = fl->fl_end - fl->fl_start + 1;
3958 deny->ld_type = NFS4_READ_LT;
3959 if (fl->fl_type != F_RDLCK)
3960 deny->ld_type = NFS4_WRITE_LT;
3963 static bool same_lockowner_ino(struct nfs4_lockowner *lo, struct inode *inode, clientid_t *clid, struct xdr_netobj *owner)
3965 struct nfs4_ol_stateid *lst;
3967 if (!same_owner_str(&lo->lo_owner, owner, clid))
3968 return false;
3969 lst = list_first_entry(&lo->lo_owner.so_stateids,
3970 struct nfs4_ol_stateid, st_perstateowner);
3971 return lst->st_file->fi_inode == inode;
3974 static struct nfs4_lockowner *
3975 find_lockowner_str(struct inode *inode, clientid_t *clid,
3976 struct xdr_netobj *owner)
3978 unsigned int hashval = lockowner_ino_hashval(inode, clid->cl_id, owner);
3979 struct nfs4_lockowner *lo;
3981 list_for_each_entry(lo, &lockowner_ino_hashtbl[hashval], lo_owner_ino_hash) {
3982 if (same_lockowner_ino(lo, inode, clid, owner))
3983 return lo;
3985 return NULL;
3988 static void hash_lockowner(struct nfs4_lockowner *lo, unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp)
3990 struct inode *inode = open_stp->st_file->fi_inode;
3991 unsigned int inohash = lockowner_ino_hashval(inode,
3992 clp->cl_clientid.cl_id, &lo->lo_owner.so_owner);
3994 list_add(&lo->lo_owner.so_strhash, &ownerstr_hashtbl[strhashval]);
3995 list_add(&lo->lo_owner_ino_hash, &lockowner_ino_hashtbl[inohash]);
3996 list_add(&lo->lo_perstateid, &open_stp->st_lockowners);
4000 * Alloc a lock owner structure.
4001 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
4002 * occurred.
4004 * strhashval = ownerstr_hashval
4007 static struct nfs4_lockowner *
4008 alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp, struct nfsd4_lock *lock) {
4009 struct nfs4_lockowner *lo;
4011 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
4012 if (!lo)
4013 return NULL;
4014 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
4015 lo->lo_owner.so_is_open_owner = 0;
4016 /* It is the openowner seqid that will be incremented in encode in the
4017 * case of new lockowners; so increment the lock seqid manually: */
4018 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid + 1;
4019 hash_lockowner(lo, strhashval, clp, open_stp);
4020 return lo;
4023 static struct nfs4_ol_stateid *
4024 alloc_init_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp, struct nfs4_ol_stateid *open_stp)
4026 struct nfs4_ol_stateid *stp;
4027 struct nfs4_client *clp = lo->lo_owner.so_client;
4029 stp = nfs4_alloc_stateid(clp);
4030 if (stp == NULL)
4031 return NULL;
4032 init_stid(&stp->st_stid, clp, NFS4_LOCK_STID);
4033 list_add(&stp->st_perfile, &fp->fi_stateids);
4034 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
4035 stp->st_stateowner = &lo->lo_owner;
4036 get_nfs4_file(fp);
4037 stp->st_file = fp;
4038 stp->st_access_bmap = 0;
4039 stp->st_deny_bmap = open_stp->st_deny_bmap;
4040 stp->st_openstp = open_stp;
4041 return stp;
4044 static int
4045 check_lock_length(u64 offset, u64 length)
4047 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
4048 LOFF_OVERFLOW(offset, length)));
4051 static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
4053 struct nfs4_file *fp = lock_stp->st_file;
4054 int oflag = nfs4_access_to_omode(access);
4056 if (test_access(access, lock_stp))
4057 return;
4058 nfs4_file_get_access(fp, oflag);
4059 set_access(access, lock_stp);
4062 static __be32 lookup_or_create_lock_state(struct nfsd4_compound_state *cstate, struct nfs4_ol_stateid *ost, struct nfsd4_lock *lock, struct nfs4_ol_stateid **lst, bool *new)
4064 struct nfs4_file *fi = ost->st_file;
4065 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4066 struct nfs4_client *cl = oo->oo_owner.so_client;
4067 struct nfs4_lockowner *lo;
4068 unsigned int strhashval;
4070 lo = find_lockowner_str(fi->fi_inode, &cl->cl_clientid, &lock->v.new.owner);
4071 if (lo) {
4072 if (!cstate->minorversion)
4073 return nfserr_bad_seqid;
4074 /* XXX: a lockowner always has exactly one stateid: */
4075 *lst = list_first_entry(&lo->lo_owner.so_stateids,
4076 struct nfs4_ol_stateid, st_perstateowner);
4077 return nfs_ok;
4079 strhashval = ownerstr_hashval(cl->cl_clientid.cl_id,
4080 &lock->v.new.owner);
4081 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
4082 if (lo == NULL)
4083 return nfserr_jukebox;
4084 *lst = alloc_init_lock_stateid(lo, fi, ost);
4085 if (*lst == NULL) {
4086 release_lockowner(lo);
4087 return nfserr_jukebox;
4089 *new = true;
4090 return nfs_ok;
4094 * LOCK operation
4096 __be32
4097 nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4098 struct nfsd4_lock *lock)
4100 struct nfs4_openowner *open_sop = NULL;
4101 struct nfs4_lockowner *lock_sop = NULL;
4102 struct nfs4_ol_stateid *lock_stp;
4103 struct file *filp = NULL;
4104 struct file_lock *file_lock = NULL;
4105 struct file_lock *conflock = NULL;
4106 __be32 status = 0;
4107 bool new_state = false;
4108 int lkflg;
4109 int err;
4110 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
4112 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
4113 (long long) lock->lk_offset,
4114 (long long) lock->lk_length);
4116 if (check_lock_length(lock->lk_offset, lock->lk_length))
4117 return nfserr_inval;
4119 if ((status = fh_verify(rqstp, &cstate->current_fh,
4120 S_IFREG, NFSD_MAY_LOCK))) {
4121 dprintk("NFSD: nfsd4_lock: permission denied!\n");
4122 return status;
4125 nfs4_lock_state();
4127 if (lock->lk_is_new) {
4128 struct nfs4_ol_stateid *open_stp = NULL;
4130 if (nfsd4_has_session(cstate))
4131 /* See rfc 5661 18.10.3: given clientid is ignored: */
4132 memcpy(&lock->v.new.clientid,
4133 &cstate->session->se_client->cl_clientid,
4134 sizeof(clientid_t));
4136 status = nfserr_stale_clientid;
4137 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
4138 goto out;
4140 /* validate and update open stateid and open seqid */
4141 status = nfs4_preprocess_confirmed_seqid_op(cstate,
4142 lock->lk_new_open_seqid,
4143 &lock->lk_new_open_stateid,
4144 &open_stp);
4145 if (status)
4146 goto out;
4147 open_sop = openowner(open_stp->st_stateowner);
4148 status = nfserr_bad_stateid;
4149 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
4150 &lock->v.new.clientid))
4151 goto out;
4152 status = lookup_or_create_lock_state(cstate, open_stp, lock,
4153 &lock_stp, &new_state);
4154 } else
4155 status = nfs4_preprocess_seqid_op(cstate,
4156 lock->lk_old_lock_seqid,
4157 &lock->lk_old_lock_stateid,
4158 NFS4_LOCK_STID, &lock_stp);
4159 if (status)
4160 goto out;
4161 lock_sop = lockowner(lock_stp->st_stateowner);
4163 lkflg = setlkflg(lock->lk_type);
4164 status = nfs4_check_openmode(lock_stp, lkflg);
4165 if (status)
4166 goto out;
4168 status = nfserr_grace;
4169 if (locks_in_grace(SVC_NET(rqstp)) && !lock->lk_reclaim)
4170 goto out;
4171 status = nfserr_no_grace;
4172 if (!locks_in_grace(SVC_NET(rqstp)) && lock->lk_reclaim)
4173 goto out;
4175 file_lock = locks_alloc_lock();
4176 if (!file_lock) {
4177 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4178 status = nfserr_jukebox;
4179 goto out;
4182 locks_init_lock(file_lock);
4183 switch (lock->lk_type) {
4184 case NFS4_READ_LT:
4185 case NFS4_READW_LT:
4186 filp = find_readable_file(lock_stp->st_file);
4187 if (filp)
4188 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
4189 file_lock->fl_type = F_RDLCK;
4190 break;
4191 case NFS4_WRITE_LT:
4192 case NFS4_WRITEW_LT:
4193 filp = find_writeable_file(lock_stp->st_file);
4194 if (filp)
4195 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
4196 file_lock->fl_type = F_WRLCK;
4197 break;
4198 default:
4199 status = nfserr_inval;
4200 goto out;
4202 if (!filp) {
4203 status = nfserr_openmode;
4204 goto out;
4206 file_lock->fl_owner = (fl_owner_t)lock_sop;
4207 file_lock->fl_pid = current->tgid;
4208 file_lock->fl_file = filp;
4209 file_lock->fl_flags = FL_POSIX;
4210 file_lock->fl_lmops = &nfsd_posix_mng_ops;
4211 file_lock->fl_start = lock->lk_offset;
4212 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
4213 nfs4_transform_lock_offset(file_lock);
4215 conflock = locks_alloc_lock();
4216 if (!conflock) {
4217 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4218 status = nfserr_jukebox;
4219 goto out;
4222 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
4223 switch (-err) {
4224 case 0: /* success! */
4225 update_stateid(&lock_stp->st_stid.sc_stateid);
4226 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid,
4227 sizeof(stateid_t));
4228 status = 0;
4229 break;
4230 case (EAGAIN): /* conflock holds conflicting lock */
4231 status = nfserr_denied;
4232 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
4233 nfs4_set_lock_denied(conflock, &lock->lk_denied);
4234 break;
4235 case (EDEADLK):
4236 status = nfserr_deadlock;
4237 break;
4238 default:
4239 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
4240 status = nfserrno(err);
4241 break;
4243 out:
4244 if (status && new_state)
4245 release_lockowner(lock_sop);
4246 if (!cstate->replay_owner)
4247 nfs4_unlock_state();
4248 if (file_lock)
4249 locks_free_lock(file_lock);
4250 if (conflock)
4251 locks_free_lock(conflock);
4252 return status;
4256 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
4257 * so we do a temporary open here just to get an open file to pass to
4258 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
4259 * inode operation.)
4261 static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
4263 struct file *file;
4264 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
4265 if (!err) {
4266 err = nfserrno(vfs_test_lock(file, lock));
4267 nfsd_close(file);
4269 return err;
4273 * LOCKT operation
4275 __be32
4276 nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4277 struct nfsd4_lockt *lockt)
4279 struct inode *inode;
4280 struct file_lock *file_lock = NULL;
4281 struct nfs4_lockowner *lo;
4282 __be32 status;
4283 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
4285 if (locks_in_grace(SVC_NET(rqstp)))
4286 return nfserr_grace;
4288 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
4289 return nfserr_inval;
4291 nfs4_lock_state();
4293 status = nfserr_stale_clientid;
4294 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid, nn))
4295 goto out;
4297 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
4298 goto out;
4300 inode = cstate->current_fh.fh_dentry->d_inode;
4301 file_lock = locks_alloc_lock();
4302 if (!file_lock) {
4303 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4304 status = nfserr_jukebox;
4305 goto out;
4307 locks_init_lock(file_lock);
4308 switch (lockt->lt_type) {
4309 case NFS4_READ_LT:
4310 case NFS4_READW_LT:
4311 file_lock->fl_type = F_RDLCK;
4312 break;
4313 case NFS4_WRITE_LT:
4314 case NFS4_WRITEW_LT:
4315 file_lock->fl_type = F_WRLCK;
4316 break;
4317 default:
4318 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
4319 status = nfserr_inval;
4320 goto out;
4323 lo = find_lockowner_str(inode, &lockt->lt_clientid, &lockt->lt_owner);
4324 if (lo)
4325 file_lock->fl_owner = (fl_owner_t)lo;
4326 file_lock->fl_pid = current->tgid;
4327 file_lock->fl_flags = FL_POSIX;
4329 file_lock->fl_start = lockt->lt_offset;
4330 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
4332 nfs4_transform_lock_offset(file_lock);
4334 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
4335 if (status)
4336 goto out;
4338 if (file_lock->fl_type != F_UNLCK) {
4339 status = nfserr_denied;
4340 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
4342 out:
4343 nfs4_unlock_state();
4344 if (file_lock)
4345 locks_free_lock(file_lock);
4346 return status;
4349 __be32
4350 nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4351 struct nfsd4_locku *locku)
4353 struct nfs4_ol_stateid *stp;
4354 struct file *filp = NULL;
4355 struct file_lock *file_lock = NULL;
4356 __be32 status;
4357 int err;
4359 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
4360 (long long) locku->lu_offset,
4361 (long long) locku->lu_length);
4363 if (check_lock_length(locku->lu_offset, locku->lu_length))
4364 return nfserr_inval;
4366 nfs4_lock_state();
4368 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
4369 &locku->lu_stateid, NFS4_LOCK_STID, &stp);
4370 if (status)
4371 goto out;
4372 filp = find_any_file(stp->st_file);
4373 if (!filp) {
4374 status = nfserr_lock_range;
4375 goto out;
4377 file_lock = locks_alloc_lock();
4378 if (!file_lock) {
4379 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4380 status = nfserr_jukebox;
4381 goto out;
4383 locks_init_lock(file_lock);
4384 file_lock->fl_type = F_UNLCK;
4385 file_lock->fl_owner = (fl_owner_t)lockowner(stp->st_stateowner);
4386 file_lock->fl_pid = current->tgid;
4387 file_lock->fl_file = filp;
4388 file_lock->fl_flags = FL_POSIX;
4389 file_lock->fl_lmops = &nfsd_posix_mng_ops;
4390 file_lock->fl_start = locku->lu_offset;
4392 file_lock->fl_end = last_byte_offset(locku->lu_offset,
4393 locku->lu_length);
4394 nfs4_transform_lock_offset(file_lock);
4397 * Try to unlock the file in the VFS.
4399 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
4400 if (err) {
4401 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
4402 goto out_nfserr;
4405 * OK, unlock succeeded; the only thing left to do is update the stateid.
4407 update_stateid(&stp->st_stid.sc_stateid);
4408 memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
4410 out:
4411 if (!cstate->replay_owner)
4412 nfs4_unlock_state();
4413 if (file_lock)
4414 locks_free_lock(file_lock);
4415 return status;
4417 out_nfserr:
4418 status = nfserrno(err);
4419 goto out;
4423 * returns
4424 * 1: locks held by lockowner
4425 * 0: no locks held by lockowner
4427 static int
4428 check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner)
4430 struct file_lock **flpp;
4431 struct inode *inode = filp->fi_inode;
4432 int status = 0;
4434 lock_flocks();
4435 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
4436 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
4437 status = 1;
4438 goto out;
4441 out:
4442 unlock_flocks();
4443 return status;
4446 __be32
4447 nfsd4_release_lockowner(struct svc_rqst *rqstp,
4448 struct nfsd4_compound_state *cstate,
4449 struct nfsd4_release_lockowner *rlockowner)
4451 clientid_t *clid = &rlockowner->rl_clientid;
4452 struct nfs4_stateowner *sop;
4453 struct nfs4_lockowner *lo;
4454 struct nfs4_ol_stateid *stp;
4455 struct xdr_netobj *owner = &rlockowner->rl_owner;
4456 struct list_head matches;
4457 unsigned int hashval = ownerstr_hashval(clid->cl_id, owner);
4458 __be32 status;
4459 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
4461 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
4462 clid->cl_boot, clid->cl_id);
4464 /* XXX check for lease expiration */
4466 status = nfserr_stale_clientid;
4467 if (STALE_CLIENTID(clid, nn))
4468 return status;
4470 nfs4_lock_state();
4472 status = nfserr_locks_held;
4473 INIT_LIST_HEAD(&matches);
4475 list_for_each_entry(sop, &ownerstr_hashtbl[hashval], so_strhash) {
4476 if (sop->so_is_open_owner)
4477 continue;
4478 if (!same_owner_str(sop, owner, clid))
4479 continue;
4480 list_for_each_entry(stp, &sop->so_stateids,
4481 st_perstateowner) {
4482 lo = lockowner(sop);
4483 if (check_for_locks(stp->st_file, lo))
4484 goto out;
4485 list_add(&lo->lo_list, &matches);
4488 /* Clients probably won't expect us to return with some (but not all)
4489 * of the lockowner state released; so don't release any until all
4490 * have been checked. */
4491 status = nfs_ok;
4492 while (!list_empty(&matches)) {
4493 lo = list_entry(matches.next, struct nfs4_lockowner,
4494 lo_list);
4495 /* unhash_stateowner deletes so_perclient only
4496 * for openowners. */
4497 list_del(&lo->lo_list);
4498 release_lockowner(lo);
4500 out:
4501 nfs4_unlock_state();
4502 return status;
4505 static inline struct nfs4_client_reclaim *
4506 alloc_reclaim(void)
4508 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
4511 bool
4512 nfs4_has_reclaimed_state(const char *name)
4514 struct nfs4_client_reclaim *crp;
4516 crp = nfsd4_find_reclaim_client(name);
4517 return (crp && crp->cr_clp);
4521 * failure => all reset bets are off, nfserr_no_grace...
4523 struct nfs4_client_reclaim *
4524 nfs4_client_to_reclaim(const char *name)
4526 unsigned int strhashval;
4527 struct nfs4_client_reclaim *crp;
4529 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
4530 crp = alloc_reclaim();
4531 if (crp) {
4532 strhashval = clientstr_hashval(name);
4533 INIT_LIST_HEAD(&crp->cr_strhash);
4534 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
4535 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
4536 crp->cr_clp = NULL;
4537 reclaim_str_hashtbl_size++;
4539 return crp;
4542 void
4543 nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp)
4545 list_del(&crp->cr_strhash);
4546 kfree(crp);
4547 reclaim_str_hashtbl_size--;
4550 void
4551 nfs4_release_reclaim(void)
4553 struct nfs4_client_reclaim *crp = NULL;
4554 int i;
4556 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4557 while (!list_empty(&reclaim_str_hashtbl[i])) {
4558 crp = list_entry(reclaim_str_hashtbl[i].next,
4559 struct nfs4_client_reclaim, cr_strhash);
4560 nfs4_remove_reclaim_record(crp);
4563 BUG_ON(reclaim_str_hashtbl_size);
4567 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
4568 struct nfs4_client_reclaim *
4569 nfsd4_find_reclaim_client(const char *recdir)
4571 unsigned int strhashval;
4572 struct nfs4_client_reclaim *crp = NULL;
4574 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
4576 strhashval = clientstr_hashval(recdir);
4577 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
4578 if (same_name(crp->cr_recdir, recdir)) {
4579 return crp;
4582 return NULL;
4586 * Called from OPEN. Look for clientid in reclaim list.
4588 __be32
4589 nfs4_check_open_reclaim(clientid_t *clid, bool sessions)
4591 struct nfs4_client *clp;
4593 /* find clientid in conf_id_hashtbl */
4594 clp = find_confirmed_client(clid, sessions);
4595 if (clp == NULL)
4596 return nfserr_reclaim_bad;
4598 return nfsd4_client_record_check(clp) ? nfserr_reclaim_bad : nfs_ok;
4601 #ifdef CONFIG_NFSD_FAULT_INJECTION
4603 void nfsd_forget_clients(u64 num)
4605 struct nfs4_client *clp, *next;
4606 int count = 0;
4608 nfs4_lock_state();
4609 list_for_each_entry_safe(clp, next, &client_lru, cl_lru) {
4610 expire_client(clp);
4611 if (++count == num)
4612 break;
4614 nfs4_unlock_state();
4616 printk(KERN_INFO "NFSD: Forgot %d clients", count);
4619 static void release_lockowner_sop(struct nfs4_stateowner *sop)
4621 release_lockowner(lockowner(sop));
4624 static void release_openowner_sop(struct nfs4_stateowner *sop)
4626 release_openowner(openowner(sop));
4629 static int nfsd_release_n_owners(u64 num, bool is_open_owner,
4630 void (*release_sop)(struct nfs4_stateowner *))
4632 int i, count = 0;
4633 struct nfs4_stateowner *sop, *next;
4635 for (i = 0; i < OWNER_HASH_SIZE; i++) {
4636 list_for_each_entry_safe(sop, next, &ownerstr_hashtbl[i], so_strhash) {
4637 if (sop->so_is_open_owner != is_open_owner)
4638 continue;
4639 release_sop(sop);
4640 if (++count == num)
4641 return count;
4644 return count;
4647 void nfsd_forget_locks(u64 num)
4649 int count;
4651 nfs4_lock_state();
4652 count = nfsd_release_n_owners(num, false, release_lockowner_sop);
4653 nfs4_unlock_state();
4655 printk(KERN_INFO "NFSD: Forgot %d locks", count);
4658 void nfsd_forget_openowners(u64 num)
4660 int count;
4662 nfs4_lock_state();
4663 count = nfsd_release_n_owners(num, true, release_openowner_sop);
4664 nfs4_unlock_state();
4666 printk(KERN_INFO "NFSD: Forgot %d open owners", count);
4669 static int nfsd_process_n_delegations(u64 num, struct list_head *list)
4671 int i, count = 0;
4672 struct nfs4_file *fp, *fnext;
4673 struct nfs4_delegation *dp, *dnext;
4675 for (i = 0; i < FILE_HASH_SIZE; i++) {
4676 list_for_each_entry_safe(fp, fnext, &file_hashtbl[i], fi_hash) {
4677 list_for_each_entry_safe(dp, dnext, &fp->fi_delegations, dl_perfile) {
4678 list_move(&dp->dl_recall_lru, list);
4679 if (++count == num)
4680 return count;
4685 return count;
4688 void nfsd_forget_delegations(u64 num)
4690 unsigned int count;
4691 LIST_HEAD(victims);
4692 struct nfs4_delegation *dp, *dnext;
4694 spin_lock(&recall_lock);
4695 count = nfsd_process_n_delegations(num, &victims);
4696 spin_unlock(&recall_lock);
4698 nfs4_lock_state();
4699 list_for_each_entry_safe(dp, dnext, &victims, dl_recall_lru)
4700 unhash_delegation(dp);
4701 nfs4_unlock_state();
4703 printk(KERN_INFO "NFSD: Forgot %d delegations", count);
4706 void nfsd_recall_delegations(u64 num)
4708 unsigned int count;
4709 LIST_HEAD(victims);
4710 struct nfs4_delegation *dp, *dnext;
4712 spin_lock(&recall_lock);
4713 count = nfsd_process_n_delegations(num, &victims);
4714 list_for_each_entry_safe(dp, dnext, &victims, dl_recall_lru) {
4715 list_del(&dp->dl_recall_lru);
4716 nfsd_break_one_deleg(dp);
4718 spin_unlock(&recall_lock);
4720 printk(KERN_INFO "NFSD: Recalled %d delegations", count);
4723 #endif /* CONFIG_NFSD_FAULT_INJECTION */
4725 /* initialization to perform at module load time: */
4727 void
4728 nfs4_state_init(void)
4730 int i;
4732 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4733 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
4734 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
4735 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
4737 conf_name_tree = RB_ROOT;
4738 unconf_name_tree = RB_ROOT;
4739 for (i = 0; i < SESSION_HASH_SIZE; i++)
4740 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
4741 for (i = 0; i < FILE_HASH_SIZE; i++) {
4742 INIT_LIST_HEAD(&file_hashtbl[i]);
4744 for (i = 0; i < OWNER_HASH_SIZE; i++) {
4745 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
4747 for (i = 0; i < LOCKOWNER_INO_HASH_SIZE; i++)
4748 INIT_LIST_HEAD(&lockowner_ino_hashtbl[i]);
4749 INIT_LIST_HEAD(&close_lru);
4750 INIT_LIST_HEAD(&client_lru);
4751 INIT_LIST_HEAD(&del_recall_lru);
4752 reclaim_str_hashtbl_size = 0;
4756 * Since the lifetime of a delegation isn't limited to that of an open, a
4757 * client may quite reasonably hang on to a delegation as long as it has
4758 * the inode cached. This becomes an obvious problem the first time a
4759 * client's inode cache approaches the size of the server's total memory.
4761 * For now we avoid this problem by imposing a hard limit on the number
4762 * of delegations, which varies according to the server's memory size.
4764 static void
4765 set_max_delegations(void)
4768 * Allow at most 4 delegations per megabyte of RAM. Quick
4769 * estimates suggest that in the worst case (where every delegation
4770 * is for a different inode), a delegation could take about 1.5K,
4771 * giving a worst case usage of about 6% of memory.
4773 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4776 /* initialization to perform when the nfsd service is started: */
4779 nfs4_state_start(void)
4781 struct net *net = &init_net;
4782 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
4783 int ret;
4786 * FIXME: For now, we hang most of the pernet global stuff off of
4787 * init_net until nfsd is fully containerized. Eventually, we'll
4788 * need to pass a net pointer into this function, take a reference
4789 * to that instead and then do most of the rest of this on a per-net
4790 * basis.
4792 get_net(net);
4793 nfsd4_client_tracking_init(net);
4794 nn->boot_time = get_seconds();
4795 locks_start_grace(net, &nn->nfsd4_manager);
4796 nn->grace_ended = false;
4797 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
4798 nfsd4_grace);
4799 ret = set_callback_cred();
4800 if (ret) {
4801 ret = -ENOMEM;
4802 goto out_recovery;
4804 laundry_wq = create_singlethread_workqueue("nfsd4");
4805 if (laundry_wq == NULL) {
4806 ret = -ENOMEM;
4807 goto out_recovery;
4809 ret = nfsd4_create_callback_queue();
4810 if (ret)
4811 goto out_free_laundry;
4812 queue_delayed_work(laundry_wq, &laundromat_work, nfsd4_grace * HZ);
4813 set_max_delegations();
4814 return 0;
4815 out_free_laundry:
4816 destroy_workqueue(laundry_wq);
4817 out_recovery:
4818 nfsd4_client_tracking_exit(net);
4819 put_net(net);
4820 return ret;
4823 /* should be called with the state lock held */
4824 static void
4825 __nfs4_state_shutdown(void)
4827 int i;
4828 struct nfs4_client *clp = NULL;
4829 struct nfs4_delegation *dp = NULL;
4830 struct list_head *pos, *next, reaplist;
4831 struct rb_node *node, *tmp;
4833 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4834 while (!list_empty(&conf_id_hashtbl[i])) {
4835 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4836 destroy_client(clp);
4840 node = rb_first(&unconf_name_tree);
4841 while (node != NULL) {
4842 tmp = node;
4843 node = rb_next(tmp);
4844 clp = rb_entry(tmp, struct nfs4_client, cl_namenode);
4845 rb_erase(tmp, &unconf_name_tree);
4846 destroy_client(clp);
4849 INIT_LIST_HEAD(&reaplist);
4850 spin_lock(&recall_lock);
4851 list_for_each_safe(pos, next, &del_recall_lru) {
4852 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4853 list_move(&dp->dl_recall_lru, &reaplist);
4855 spin_unlock(&recall_lock);
4856 list_for_each_safe(pos, next, &reaplist) {
4857 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4858 unhash_delegation(dp);
4861 nfsd4_client_tracking_exit(&init_net);
4862 put_net(&init_net);
4865 void
4866 nfs4_state_shutdown(void)
4868 struct net *net = &init_net;
4869 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
4871 cancel_delayed_work_sync(&laundromat_work);
4872 destroy_workqueue(laundry_wq);
4873 locks_end_grace(&nn->nfsd4_manager);
4874 nfs4_lock_state();
4875 __nfs4_state_shutdown();
4876 nfs4_unlock_state();
4877 nfsd4_destroy_callback_queue();
4880 static void
4881 get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
4883 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
4884 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
4887 static void
4888 put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
4890 if (cstate->minorversion) {
4891 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
4892 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
4896 void
4897 clear_current_stateid(struct nfsd4_compound_state *cstate)
4899 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
4903 * functions to set current state id
4905 void
4906 nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
4908 put_stateid(cstate, &odp->od_stateid);
4911 void
4912 nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
4914 put_stateid(cstate, &open->op_stateid);
4917 void
4918 nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
4920 put_stateid(cstate, &close->cl_stateid);
4923 void
4924 nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
4926 put_stateid(cstate, &lock->lk_resp_stateid);
4930 * functions to consume current state id
4933 void
4934 nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
4936 get_stateid(cstate, &odp->od_stateid);
4939 void
4940 nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
4942 get_stateid(cstate, &drp->dr_stateid);
4945 void
4946 nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
4948 get_stateid(cstate, &fsp->fr_stateid);
4951 void
4952 nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
4954 get_stateid(cstate, &setattr->sa_stateid);
4957 void
4958 nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
4960 get_stateid(cstate, &close->cl_stateid);
4963 void
4964 nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
4966 get_stateid(cstate, &locku->lu_stateid);
4969 void
4970 nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
4972 get_stateid(cstate, &read->rd_stateid);
4975 void
4976 nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
4978 get_stateid(cstate, &write->wr_stateid);