]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/nfsd/nfs4state.c
locks: move lease-specific code out of locks_delete_lock
[mirror_ubuntu-zesty-kernel.git] / fs / nfsd / nfs4state.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2* Copyright (c) 2001 The Regents of the University of Michigan.
3* All rights reserved.
4*
5* Kendrick Smith <kmsmith@umich.edu>
6* Andy Adamson <kandros@umich.edu>
7*
8* Redistribution and use in source and binary forms, with or without
9* modification, are permitted provided that the following conditions
10* are met:
11*
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.
20*
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.
32*
33*/
34
aceaf78d 35#include <linux/file.h>
b89f4321 36#include <linux/fs.h>
5a0e3ad6 37#include <linux/slab.h>
0964a3d3 38#include <linux/namei.h>
c2f1a551 39#include <linux/swap.h>
17456804 40#include <linux/pagemap.h>
7df302f7 41#include <linux/ratelimit.h>
68e76ad0 42#include <linux/sunrpc/svcauth_gss.h>
363168b4 43#include <linux/sunrpc/clnt.h>
9a74af21 44#include "xdr4.h"
0a3adade 45#include "vfs.h"
bfa4b365 46#include "current_stateid.h"
1da177e4
LT
47
48#define NFSDDBG_FACILITY NFSDDBG_PROC
49
50/* Globals */
cf07d2ea 51time_t nfsd4_lease = 90; /* default lease time */
efc4bb4f 52time_t nfsd4_grace = 90;
fd39ca9a 53static time_t boot_time;
f32f3c2d
BF
54
55#define all_ones {{~0,~0},~0}
56static const stateid_t one_stateid = {
57 .si_generation = ~0,
58 .si_opaque = all_ones,
59};
60static const stateid_t zero_stateid = {
61 /* all fields zero */
62};
19ff0f28
TM
63static const stateid_t currentstateid = {
64 .si_generation = 1,
65};
f32f3c2d 66
ec6b5d7b 67static u64 current_sessionid = 1;
fd39ca9a 68
f32f3c2d
BF
69#define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
70#define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
19ff0f28 71#define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
1da177e4 72
1da177e4 73/* forward declarations */
fe0750e5 74static int check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner);
1da177e4 75
8b671b80
BF
76/* Locking: */
77
78/* Currently used for almost all code touching nfsv4 state: */
353ab6e9 79static DEFINE_MUTEX(client_mutex);
1da177e4 80
8b671b80
BF
81/*
82 * Currently used for the del_recall_lru and file hash table. In an
83 * effort to decrease the scope of the client_mutex, this spinlock may
84 * eventually cover more:
85 */
86static DEFINE_SPINLOCK(recall_lock);
87
fe0750e5
BF
88static struct kmem_cache *openowner_slab = NULL;
89static struct kmem_cache *lockowner_slab = NULL;
e18b890b
CL
90static struct kmem_cache *file_slab = NULL;
91static struct kmem_cache *stateid_slab = NULL;
92static struct kmem_cache *deleg_slab = NULL;
e60d4398 93
1da177e4
LT
94void
95nfs4_lock_state(void)
96{
353ab6e9 97 mutex_lock(&client_mutex);
1da177e4
LT
98}
99
508dc6e1
BH
100static void free_session(struct kref *);
101
102/* Must be called under the client_lock */
103static void nfsd4_put_session_locked(struct nfsd4_session *ses)
104{
105 kref_put(&ses->se_ref, free_session);
106}
107
108static void nfsd4_get_session(struct nfsd4_session *ses)
109{
110 kref_get(&ses->se_ref);
111}
112
1da177e4
LT
113void
114nfs4_unlock_state(void)
115{
353ab6e9 116 mutex_unlock(&client_mutex);
1da177e4
LT
117}
118
119static inline u32
120opaque_hashval(const void *ptr, int nbytes)
121{
122 unsigned char *cptr = (unsigned char *) ptr;
123
124 u32 x = 0;
125 while (nbytes--) {
126 x *= 37;
127 x += *cptr++;
128 }
129 return x;
130}
131
1da177e4
LT
132static struct list_head del_recall_lru;
133
32513b40
BF
134static void nfsd4_free_file(struct nfs4_file *f)
135{
136 kmem_cache_free(file_slab, f);
137}
138
13cd2184
N
139static inline void
140put_nfs4_file(struct nfs4_file *fi)
141{
8b671b80
BF
142 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
143 list_del(&fi->fi_hash);
144 spin_unlock(&recall_lock);
145 iput(fi->fi_inode);
32513b40 146 nfsd4_free_file(fi);
8b671b80 147 }
13cd2184
N
148}
149
150static inline void
151get_nfs4_file(struct nfs4_file *fi)
152{
8b671b80 153 atomic_inc(&fi->fi_ref);
13cd2184
N
154}
155
ef0f3390 156static int num_delegations;
c2f1a551 157unsigned int max_delegations;
ef0f3390
N
158
159/*
160 * Open owner state (share locks)
161 */
162
16bfdaaf
BF
163/* hash tables for lock and open owners */
164#define OWNER_HASH_BITS 8
165#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
166#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
ef0f3390 167
16bfdaaf 168static unsigned int ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
ddc04c41
BF
169{
170 unsigned int ret;
171
172 ret = opaque_hashval(ownername->data, ownername->len);
173 ret += clientid;
16bfdaaf 174 return ret & OWNER_HASH_MASK;
ddc04c41 175}
ef0f3390 176
16bfdaaf 177static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
ef0f3390
N
178
179/* hash table for nfs4_file */
180#define FILE_HASH_BITS 8
181#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
35079582 182
ddc04c41
BF
183static unsigned int file_hashval(struct inode *ino)
184{
185 /* XXX: why are we hashing on inode pointer, anyway? */
186 return hash_ptr(ino, FILE_HASH_BITS);
187}
188
ef0f3390 189static struct list_head file_hashtbl[FILE_HASH_SIZE];
ef0f3390 190
998db52c 191static void __nfs4_file_get_access(struct nfs4_file *fp, int oflag)
f9d7562f
BF
192{
193 BUG_ON(!(fp->fi_fds[oflag] || fp->fi_fds[O_RDWR]));
194 atomic_inc(&fp->fi_access[oflag]);
195}
196
998db52c
BF
197static void nfs4_file_get_access(struct nfs4_file *fp, int oflag)
198{
199 if (oflag == O_RDWR) {
200 __nfs4_file_get_access(fp, O_RDONLY);
201 __nfs4_file_get_access(fp, O_WRONLY);
202 } else
203 __nfs4_file_get_access(fp, oflag);
204}
205
206static void nfs4_file_put_fd(struct nfs4_file *fp, int oflag)
f9d7562f
BF
207{
208 if (fp->fi_fds[oflag]) {
209 fput(fp->fi_fds[oflag]);
210 fp->fi_fds[oflag] = NULL;
211 }
212}
213
998db52c 214static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
f9d7562f
BF
215{
216 if (atomic_dec_and_test(&fp->fi_access[oflag])) {
f9d7562f 217 nfs4_file_put_fd(fp, oflag);
3d02fa29
BF
218 /*
219 * It's also safe to get rid of the RDWR open *if*
220 * we no longer have need of the other kind of access
221 * or if we already have the other kind of open:
222 */
223 if (fp->fi_fds[1-oflag]
224 || atomic_read(&fp->fi_access[1 - oflag]) == 0)
225 nfs4_file_put_fd(fp, O_RDWR);
f9d7562f
BF
226 }
227}
228
998db52c
BF
229static void nfs4_file_put_access(struct nfs4_file *fp, int oflag)
230{
231 if (oflag == O_RDWR) {
232 __nfs4_file_put_access(fp, O_RDONLY);
233 __nfs4_file_put_access(fp, O_WRONLY);
234 } else
235 __nfs4_file_put_access(fp, oflag);
236}
237
6136d2b4 238static inline int get_new_stid(struct nfs4_stid *stid)
36d44c60 239{
6136d2b4 240 static int min_stateid = 0;
38c2f4b1 241 struct idr *stateids = &stid->sc_client->cl_stateids;
6136d2b4
BF
242 int new_stid;
243 int error;
244
38c2f4b1 245 error = idr_get_new_above(stateids, stid, min_stateid, &new_stid);
6136d2b4 246 /*
996e0938
BF
247 * Note: the necessary preallocation was done in
248 * nfs4_alloc_stateid(). The idr code caps the number of
249 * preallocations that can exist at a time, but the state lock
250 * prevents anyone from using ours before we get here:
6136d2b4
BF
251 */
252 BUG_ON(error);
253 /*
254 * It shouldn't be a problem to reuse an opaque stateid value.
255 * I don't think it is for 4.1. But with 4.0 I worry that, for
256 * example, a stray write retransmission could be accepted by
257 * the server when it should have been rejected. Therefore,
258 * adopt a trick from the sctp code to attempt to maximize the
259 * amount of time until an id is reused, by ensuring they always
260 * "increase" (mod INT_MAX):
261 */
36d44c60 262
6136d2b4
BF
263 min_stateid = new_stid+1;
264 if (min_stateid == INT_MAX)
265 min_stateid = 0;
266 return new_stid;
36d44c60
BF
267}
268
996e0938 269static void init_stid(struct nfs4_stid *stid, struct nfs4_client *cl, unsigned char type)
2a74aba7
BF
270{
271 stateid_t *s = &stid->sc_stateid;
6136d2b4 272 int new_id;
2a74aba7
BF
273
274 stid->sc_type = type;
275 stid->sc_client = cl;
276 s->si_opaque.so_clid = cl->cl_clientid;
6136d2b4 277 new_id = get_new_stid(stid);
6136d2b4 278 s->si_opaque.so_id = (u32)new_id;
2a74aba7
BF
279 /* Will be incremented before return to client: */
280 s->si_generation = 0;
996e0938
BF
281}
282
283static struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab)
284{
285 struct idr *stateids = &cl->cl_stateids;
286
287 if (!idr_pre_get(stateids, GFP_KERNEL))
288 return NULL;
289 /*
290 * Note: if we fail here (or any time between now and the time
291 * we actually get the new idr), we won't need to undo the idr
292 * preallocation, since the idr code caps the number of
293 * preallocated entries.
294 */
295 return kmem_cache_alloc(slab, GFP_KERNEL);
2a74aba7
BF
296}
297
4cdc951b
BF
298static struct nfs4_ol_stateid * nfs4_alloc_stateid(struct nfs4_client *clp)
299{
300 return openlockstateid(nfs4_alloc_stid(clp, stateid_slab));
301}
302
1da177e4 303static struct nfs4_delegation *
dcef0413 304alloc_init_deleg(struct nfs4_client *clp, struct nfs4_ol_stateid *stp, struct svc_fh *current_fh, u32 type)
1da177e4
LT
305{
306 struct nfs4_delegation *dp;
307 struct nfs4_file *fp = stp->st_file;
1da177e4
LT
308
309 dprintk("NFSD alloc_init_deleg\n");
c3e48080
BF
310 /*
311 * Major work on the lease subsystem (for example, to support
312 * calbacks on stat) will be required before we can support
313 * write delegations properly.
314 */
315 if (type != NFS4_OPEN_DELEGATE_READ)
316 return NULL;
47f9940c
MS
317 if (fp->fi_had_conflict)
318 return NULL;
c2f1a551 319 if (num_delegations > max_delegations)
ef0f3390 320 return NULL;
996e0938 321 dp = delegstateid(nfs4_alloc_stid(clp, deleg_slab));
5b2d21c1 322 if (dp == NULL)
1da177e4 323 return dp;
996e0938 324 init_stid(&dp->dl_stid, clp, NFS4_DELEG_STID);
2a74aba7
BF
325 /*
326 * delegation seqid's are never incremented. The 4.1 special
6136d2b4
BF
327 * meaning of seqid 0 isn't meaningful, really, but let's avoid
328 * 0 anyway just for consistency and use 1:
2a74aba7
BF
329 */
330 dp->dl_stid.sc_stateid.si_generation = 1;
ef0f3390 331 num_delegations++;
ea1da636
N
332 INIT_LIST_HEAD(&dp->dl_perfile);
333 INIT_LIST_HEAD(&dp->dl_perclnt);
1da177e4 334 INIT_LIST_HEAD(&dp->dl_recall_lru);
13cd2184 335 get_nfs4_file(fp);
1da177e4 336 dp->dl_file = fp;
1da177e4 337 dp->dl_type = type;
6c02eaa1 338 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
1da177e4
LT
339 dp->dl_time = 0;
340 atomic_set(&dp->dl_count, 1);
b5a1a81e 341 INIT_WORK(&dp->dl_recall.cb_work, nfsd4_do_callback_rpc);
1da177e4
LT
342 return dp;
343}
344
345void
346nfs4_put_delegation(struct nfs4_delegation *dp)
347{
348 if (atomic_dec_and_test(&dp->dl_count)) {
349 dprintk("NFSD: freeing dp %p\n",dp);
13cd2184 350 put_nfs4_file(dp->dl_file);
5b2d21c1 351 kmem_cache_free(deleg_slab, dp);
ef0f3390 352 num_delegations--;
1da177e4
LT
353 }
354}
355
acfdf5c3 356static void nfs4_put_deleg_lease(struct nfs4_file *fp)
1da177e4 357{
acfdf5c3
BF
358 if (atomic_dec_and_test(&fp->fi_delegees)) {
359 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
360 fp->fi_lease = NULL;
4ee63624 361 fput(fp->fi_deleg_file);
acfdf5c3
BF
362 fp->fi_deleg_file = NULL;
363 }
1da177e4
LT
364}
365
6136d2b4
BF
366static void unhash_stid(struct nfs4_stid *s)
367{
38c2f4b1
BF
368 struct idr *stateids = &s->sc_client->cl_stateids;
369
370 idr_remove(stateids, s->sc_stateid.si_opaque.so_id);
6136d2b4
BF
371}
372
1da177e4
LT
373/* Called under the state lock. */
374static void
375unhash_delegation(struct nfs4_delegation *dp)
376{
6136d2b4 377 unhash_stid(&dp->dl_stid);
ea1da636 378 list_del_init(&dp->dl_perclnt);
1da177e4 379 spin_lock(&recall_lock);
5d926e8c 380 list_del_init(&dp->dl_perfile);
1da177e4
LT
381 list_del_init(&dp->dl_recall_lru);
382 spin_unlock(&recall_lock);
acfdf5c3 383 nfs4_put_deleg_lease(dp->dl_file);
1da177e4
LT
384 nfs4_put_delegation(dp);
385}
386
387/*
388 * SETCLIENTID state
389 */
390
36acb66b 391/* client_lock protects the client lru list and session hash table */
9089f1b4
BH
392static DEFINE_SPINLOCK(client_lock);
393
1da177e4
LT
394/* Hash tables for nfs4_clientid state */
395#define CLIENT_HASH_BITS 4
396#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
397#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
398
ddc04c41
BF
399static unsigned int clientid_hashval(u32 id)
400{
401 return id & CLIENT_HASH_MASK;
402}
403
404static unsigned int clientstr_hashval(const char *name)
405{
406 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
407}
408
1da177e4
LT
409/*
410 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
411 * used in reboot/reset lease grace period processing
412 *
413 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
414 * setclientid_confirmed info.
415 *
416 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
417 * setclientid info.
418 *
419 * client_lru holds client queue ordered by nfs4_client.cl_time
420 * for lease renewal.
421 *
422 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
423 * for last close replay.
424 */
425static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
426static int reclaim_str_hashtbl_size = 0;
427static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
428static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
429static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
430static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
431static struct list_head client_lru;
432static struct list_head close_lru;
433
f9d7562f
BF
434/*
435 * We store the NONE, READ, WRITE, and BOTH bits separately in the
436 * st_{access,deny}_bmap field of the stateid, in order to track not
437 * only what share bits are currently in force, but also what
438 * combinations of share bits previous opens have used. This allows us
439 * to enforce the recommendation of rfc 3530 14.2.19 that the server
440 * return an error if the client attempt to downgrade to a combination
441 * of share bits not explicable by closing some of its previous opens.
442 *
443 * XXX: This enforcement is actually incomplete, since we don't keep
444 * track of access/deny bit combinations; so, e.g., we allow:
445 *
446 * OPEN allow read, deny write
447 * OPEN allow both, deny none
448 * DOWNGRADE allow read, deny none
449 *
450 * which we should reject.
451 */
5ae037e5
JL
452static unsigned int
453bmap_to_share_mode(unsigned long bmap) {
f9d7562f 454 int i;
5ae037e5 455 unsigned int access = 0;
f9d7562f 456
f9d7562f
BF
457 for (i = 1; i < 4; i++) {
458 if (test_bit(i, &bmap))
5ae037e5 459 access |= i;
f9d7562f 460 }
5ae037e5 461 return access;
f9d7562f
BF
462}
463
3a328614 464static bool
dcef0413 465test_share(struct nfs4_ol_stateid *stp, struct nfsd4_open *open) {
f9d7562f
BF
466 unsigned int access, deny;
467
5ae037e5
JL
468 access = bmap_to_share_mode(stp->st_access_bmap);
469 deny = bmap_to_share_mode(stp->st_deny_bmap);
f9d7562f 470 if ((access & open->op_share_deny) || (deny & open->op_share_access))
3a328614
JL
471 return false;
472 return true;
f9d7562f
BF
473}
474
82c5ff1b
JL
475/* set share access for a given stateid */
476static inline void
477set_access(u32 access, struct nfs4_ol_stateid *stp)
478{
479 __set_bit(access, &stp->st_access_bmap);
480}
481
482/* clear share access for a given stateid */
483static inline void
484clear_access(u32 access, struct nfs4_ol_stateid *stp)
485{
486 __clear_bit(access, &stp->st_access_bmap);
487}
488
489/* test whether a given stateid has access */
490static inline bool
491test_access(u32 access, struct nfs4_ol_stateid *stp)
492{
493 return test_bit(access, &stp->st_access_bmap);
494}
495
ce0fc43c
JL
496/* set share deny for a given stateid */
497static inline void
498set_deny(u32 access, struct nfs4_ol_stateid *stp)
499{
500 __set_bit(access, &stp->st_deny_bmap);
501}
502
503/* clear share deny for a given stateid */
504static inline void
505clear_deny(u32 access, struct nfs4_ol_stateid *stp)
506{
507 __clear_bit(access, &stp->st_deny_bmap);
508}
509
510/* test whether a given stateid is denying specific access */
511static inline bool
512test_deny(u32 access, struct nfs4_ol_stateid *stp)
513{
514 return test_bit(access, &stp->st_deny_bmap);
f9d7562f
BF
515}
516
517static int nfs4_access_to_omode(u32 access)
518{
8f34a430 519 switch (access & NFS4_SHARE_ACCESS_BOTH) {
f9d7562f
BF
520 case NFS4_SHARE_ACCESS_READ:
521 return O_RDONLY;
522 case NFS4_SHARE_ACCESS_WRITE:
523 return O_WRONLY;
524 case NFS4_SHARE_ACCESS_BOTH:
525 return O_RDWR;
526 }
527 BUG();
528}
529
82c5ff1b
JL
530/* release all access and file references for a given stateid */
531static void
532release_all_access(struct nfs4_ol_stateid *stp)
533{
534 int i;
535
536 for (i = 1; i < 4; i++) {
537 if (test_access(i, stp))
538 nfs4_file_put_access(stp->st_file,
539 nfs4_access_to_omode(i));
540 clear_access(i, stp);
541 }
542}
543
dcef0413 544static void unhash_generic_stateid(struct nfs4_ol_stateid *stp)
529d7b2a 545{
529d7b2a
BF
546 list_del(&stp->st_perfile);
547 list_del(&stp->st_perstateowner);
548}
549
dcef0413 550static void close_generic_stateid(struct nfs4_ol_stateid *stp)
529d7b2a 551{
82c5ff1b 552 release_all_access(stp);
a96e5b90 553 put_nfs4_file(stp->st_file);
4665e2ba
BF
554 stp->st_file = NULL;
555}
556
dcef0413 557static void free_generic_stateid(struct nfs4_ol_stateid *stp)
4665e2ba 558{
529d7b2a
BF
559 kmem_cache_free(stateid_slab, stp);
560}
561
dcef0413 562static void release_lock_stateid(struct nfs4_ol_stateid *stp)
529d7b2a
BF
563{
564 struct file *file;
565
566 unhash_generic_stateid(stp);
6136d2b4 567 unhash_stid(&stp->st_stid);
529d7b2a
BF
568 file = find_any_file(stp->st_file);
569 if (file)
fe0750e5 570 locks_remove_posix(file, (fl_owner_t)lockowner(stp->st_stateowner));
38c387b5 571 close_generic_stateid(stp);
529d7b2a
BF
572 free_generic_stateid(stp);
573}
574
fe0750e5 575static void unhash_lockowner(struct nfs4_lockowner *lo)
529d7b2a 576{
dcef0413 577 struct nfs4_ol_stateid *stp;
529d7b2a 578
fe0750e5
BF
579 list_del(&lo->lo_owner.so_strhash);
580 list_del(&lo->lo_perstateid);
009673b4 581 list_del(&lo->lo_owner_ino_hash);
fe0750e5
BF
582 while (!list_empty(&lo->lo_owner.so_stateids)) {
583 stp = list_first_entry(&lo->lo_owner.so_stateids,
dcef0413 584 struct nfs4_ol_stateid, st_perstateowner);
529d7b2a
BF
585 release_lock_stateid(stp);
586 }
587}
588
fe0750e5 589static void release_lockowner(struct nfs4_lockowner *lo)
529d7b2a 590{
fe0750e5
BF
591 unhash_lockowner(lo);
592 nfs4_free_lockowner(lo);
529d7b2a
BF
593}
594
595static void
dcef0413 596release_stateid_lockowners(struct nfs4_ol_stateid *open_stp)
529d7b2a 597{
fe0750e5 598 struct nfs4_lockowner *lo;
529d7b2a
BF
599
600 while (!list_empty(&open_stp->st_lockowners)) {
fe0750e5
BF
601 lo = list_entry(open_stp->st_lockowners.next,
602 struct nfs4_lockowner, lo_perstateid);
603 release_lockowner(lo);
529d7b2a
BF
604 }
605}
606
38c387b5 607static void unhash_open_stateid(struct nfs4_ol_stateid *stp)
2283963f
BF
608{
609 unhash_generic_stateid(stp);
610 release_stateid_lockowners(stp);
38c387b5
BF
611 close_generic_stateid(stp);
612}
613
614static void release_open_stateid(struct nfs4_ol_stateid *stp)
615{
616 unhash_open_stateid(stp);
6136d2b4 617 unhash_stid(&stp->st_stid);
2283963f
BF
618 free_generic_stateid(stp);
619}
620
fe0750e5 621static void unhash_openowner(struct nfs4_openowner *oo)
f1d110ca 622{
dcef0413 623 struct nfs4_ol_stateid *stp;
f1d110ca 624
fe0750e5
BF
625 list_del(&oo->oo_owner.so_strhash);
626 list_del(&oo->oo_perclient);
627 while (!list_empty(&oo->oo_owner.so_stateids)) {
628 stp = list_first_entry(&oo->oo_owner.so_stateids,
dcef0413 629 struct nfs4_ol_stateid, st_perstateowner);
f044ff83 630 release_open_stateid(stp);
f1d110ca
BF
631 }
632}
633
f7a4d872
BF
634static void release_last_closed_stateid(struct nfs4_openowner *oo)
635{
636 struct nfs4_ol_stateid *s = oo->oo_last_closed_stid;
637
638 if (s) {
6136d2b4 639 unhash_stid(&s->st_stid);
f7a4d872
BF
640 free_generic_stateid(s);
641 oo->oo_last_closed_stid = NULL;
642 }
643}
644
fe0750e5 645static void release_openowner(struct nfs4_openowner *oo)
f1d110ca 646{
fe0750e5
BF
647 unhash_openowner(oo);
648 list_del(&oo->oo_close_lru);
f7a4d872 649 release_last_closed_stateid(oo);
fe0750e5 650 nfs4_free_openowner(oo);
f1d110ca
BF
651}
652
5282fd72
ME
653#define SESSION_HASH_SIZE 512
654static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
655
656static inline int
657hash_sessionid(struct nfs4_sessionid *sessionid)
658{
659 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
660
661 return sid->sequence % SESSION_HASH_SIZE;
662}
663
8f199b82 664#ifdef NFSD_DEBUG
5282fd72
ME
665static inline void
666dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
667{
668 u32 *ptr = (u32 *)(&sessionid->data[0]);
669 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
670}
8f199b82
TM
671#else
672static inline void
673dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
674{
675}
676#endif
677
5282fd72 678
ec6b5d7b
AA
679static void
680gen_sessionid(struct nfsd4_session *ses)
681{
682 struct nfs4_client *clp = ses->se_client;
683 struct nfsd4_sessionid *sid;
684
685 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
686 sid->clientid = clp->cl_clientid;
687 sid->sequence = current_sessionid++;
688 sid->reserved = 0;
689}
690
691/*
a649637c
AA
692 * The protocol defines ca_maxresponssize_cached to include the size of
693 * the rpc header, but all we need to cache is the data starting after
694 * the end of the initial SEQUENCE operation--the rest we regenerate
695 * each time. Therefore we can advertise a ca_maxresponssize_cached
696 * value that is the number of bytes in our cache plus a few additional
697 * bytes. In order to stay on the safe side, and not promise more than
698 * we can cache, those additional bytes must be the minimum possible: 24
699 * bytes of rpc header (xid through accept state, with AUTH_NULL
700 * verifier), 12 for the compound header (with zero-length tag), and 44
701 * for the SEQUENCE op response:
702 */
703#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
704
557ce264
AA
705static void
706free_session_slots(struct nfsd4_session *ses)
707{
708 int i;
709
710 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
711 kfree(ses->se_slots[i]);
712}
713
a649637c 714/*
efe0cb6d
BF
715 * We don't actually need to cache the rpc and session headers, so we
716 * can allocate a little less for each slot:
717 */
718static inline int slot_bytes(struct nfsd4_channel_attrs *ca)
719{
720 return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
721}
722
5b6feee9 723static int nfsd4_sanitize_slot_size(u32 size)
ec6b5d7b 724{
5b6feee9
BF
725 size -= NFSD_MIN_HDR_SEQ_SZ; /* We don't cache the rpc header */
726 size = min_t(u32, size, NFSD_SLOT_CACHE_SIZE);
ec6b5d7b 727
5b6feee9
BF
728 return size;
729}
ec6b5d7b 730
5b6feee9
BF
731/*
732 * XXX: If we run out of reserved DRC memory we could (up to a point)
a649637c 733 * re-negotiate active sessions and reduce their slot usage to make
42b2aa86 734 * room for new connections. For now we just fail the create session.
ec6b5d7b 735 */
5b6feee9 736static int nfsd4_get_drc_mem(int slotsize, u32 num)
ec6b5d7b 737{
5b6feee9 738 int avail;
ec6b5d7b 739
5b6feee9 740 num = min_t(u32, num, NFSD_MAX_SLOTS_PER_SESSION);
5d77ddfb 741
5b6feee9
BF
742 spin_lock(&nfsd_drc_lock);
743 avail = min_t(int, NFSD_MAX_MEM_PER_SESSION,
744 nfsd_drc_max_mem - nfsd_drc_mem_used);
745 num = min_t(int, num, avail / slotsize);
746 nfsd_drc_mem_used += num * slotsize;
747 spin_unlock(&nfsd_drc_lock);
ec6b5d7b 748
5b6feee9
BF
749 return num;
750}
ec6b5d7b 751
5b6feee9
BF
752static void nfsd4_put_drc_mem(int slotsize, int num)
753{
4bd9b0f4 754 spin_lock(&nfsd_drc_lock);
5b6feee9 755 nfsd_drc_mem_used -= slotsize * num;
4bd9b0f4 756 spin_unlock(&nfsd_drc_lock);
5b6feee9 757}
ec6b5d7b 758
5b6feee9
BF
759static struct nfsd4_session *alloc_session(int slotsize, int numslots)
760{
761 struct nfsd4_session *new;
762 int mem, i;
a649637c 763
5b6feee9
BF
764 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
765 + sizeof(struct nfsd4_session) > PAGE_SIZE);
766 mem = numslots * sizeof(struct nfsd4_slot *);
ec6b5d7b 767
5b6feee9
BF
768 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
769 if (!new)
770 return NULL;
557ce264 771 /* allocate each struct nfsd4_slot and data cache in one piece */
5b6feee9
BF
772 for (i = 0; i < numslots; i++) {
773 mem = sizeof(struct nfsd4_slot) + slotsize;
774 new->se_slots[i] = kzalloc(mem, GFP_KERNEL);
775 if (!new->se_slots[i])
557ce264 776 goto out_free;
557ce264 777 }
5b6feee9
BF
778 return new;
779out_free:
780 while (i--)
781 kfree(new->se_slots[i]);
782 kfree(new);
783 return NULL;
ec6b5d7b
AA
784}
785
5b6feee9 786static void init_forechannel_attrs(struct nfsd4_channel_attrs *new, struct nfsd4_channel_attrs *req, int numslots, int slotsize)
ec6b5d7b 787{
5b6feee9 788 u32 maxrpc = nfsd_serv->sv_max_mesg;
ec6b5d7b 789
5b6feee9 790 new->maxreqs = numslots;
d2b21743
MJ
791 new->maxresp_cached = min_t(u32, req->maxresp_cached,
792 slotsize + NFSD_MIN_HDR_SEQ_SZ);
5b6feee9
BF
793 new->maxreq_sz = min_t(u32, req->maxreq_sz, maxrpc);
794 new->maxresp_sz = min_t(u32, req->maxresp_sz, maxrpc);
795 new->maxops = min_t(u32, req->maxops, NFSD_MAX_OPS_PER_COMPOUND);
796}
ec6b5d7b 797
19cf5c02
BF
798static void free_conn(struct nfsd4_conn *c)
799{
800 svc_xprt_put(c->cn_xprt);
801 kfree(c);
802}
ec6b5d7b 803
19cf5c02
BF
804static void nfsd4_conn_lost(struct svc_xpt_user *u)
805{
806 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
807 struct nfs4_client *clp = c->cn_session->se_client;
ec6b5d7b 808
19cf5c02
BF
809 spin_lock(&clp->cl_lock);
810 if (!list_empty(&c->cn_persession)) {
811 list_del(&c->cn_persession);
812 free_conn(c);
813 }
814 spin_unlock(&clp->cl_lock);
eea49806 815 nfsd4_probe_callback(clp);
19cf5c02 816}
ec6b5d7b 817
d29c374c 818static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
c7662518 819{
c7662518 820 struct nfsd4_conn *conn;
ec6b5d7b 821
c7662518
BF
822 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
823 if (!conn)
db90681d 824 return NULL;
c7662518
BF
825 svc_xprt_get(rqstp->rq_xprt);
826 conn->cn_xprt = rqstp->rq_xprt;
d29c374c 827 conn->cn_flags = flags;
db90681d
BF
828 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
829 return conn;
830}
a649637c 831
328ead28
BF
832static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
833{
834 conn->cn_session = ses;
835 list_add(&conn->cn_persession, &ses->se_conns);
ec6b5d7b
AA
836}
837
db90681d 838static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
557ce264 839{
db90681d 840 struct nfs4_client *clp = ses->se_client;
557ce264 841
c7662518 842 spin_lock(&clp->cl_lock);
328ead28 843 __nfsd4_hash_conn(conn, ses);
c7662518 844 spin_unlock(&clp->cl_lock);
557ce264
AA
845}
846
21b75b01 847static int nfsd4_register_conn(struct nfsd4_conn *conn)
efe0cb6d 848{
19cf5c02 849 conn->cn_xpt_user.callback = nfsd4_conn_lost;
21b75b01 850 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
efe0cb6d
BF
851}
852
1d1bc8f2 853static __be32 nfsd4_new_conn(struct svc_rqst *rqstp, struct nfsd4_session *ses, u32 dir)
ec6b5d7b 854{
db90681d 855 struct nfsd4_conn *conn;
21b75b01 856 int ret;
ec6b5d7b 857
1d1bc8f2 858 conn = alloc_conn(rqstp, dir);
db90681d
BF
859 if (!conn)
860 return nfserr_jukebox;
861 nfsd4_hash_conn(conn, ses);
21b75b01
BF
862 ret = nfsd4_register_conn(conn);
863 if (ret)
864 /* oops; xprt is already down: */
865 nfsd4_conn_lost(&conn->cn_xpt_user);
24119673
WAA
866 if (ses->se_client->cl_cb_state == NFSD4_CB_DOWN &&
867 dir & NFS4_CDFC4_BACK) {
868 /* callback channel may be back up */
869 nfsd4_probe_callback(ses->se_client);
870 }
c7662518
BF
871 return nfs_ok;
872}
ec6b5d7b 873
1d1bc8f2
BF
874static __be32 nfsd4_new_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_session *ses)
875{
876 u32 dir = NFS4_CDFC4_FORE;
877
878 if (ses->se_flags & SESSION4_BACK_CHAN)
879 dir |= NFS4_CDFC4_BACK;
880
881 return nfsd4_new_conn(rqstp, ses, dir);
882}
883
884/* must be called under client_lock */
19cf5c02 885static void nfsd4_del_conns(struct nfsd4_session *s)
c7662518 886{
19cf5c02
BF
887 struct nfs4_client *clp = s->se_client;
888 struct nfsd4_conn *c;
ec6b5d7b 889
19cf5c02
BF
890 spin_lock(&clp->cl_lock);
891 while (!list_empty(&s->se_conns)) {
892 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
893 list_del_init(&c->cn_persession);
894 spin_unlock(&clp->cl_lock);
557ce264 895
19cf5c02
BF
896 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
897 free_conn(c);
ec6b5d7b 898
19cf5c02
BF
899 spin_lock(&clp->cl_lock);
900 }
901 spin_unlock(&clp->cl_lock);
c7662518 902}
ec6b5d7b 903
508dc6e1 904static void free_session(struct kref *kref)
c7662518
BF
905{
906 struct nfsd4_session *ses;
907 int mem;
908
bc2df47a 909 lockdep_assert_held(&client_lock);
c7662518 910 ses = container_of(kref, struct nfsd4_session, se_ref);
19cf5c02 911 nfsd4_del_conns(ses);
c7662518
BF
912 spin_lock(&nfsd_drc_lock);
913 mem = ses->se_fchannel.maxreqs * slot_bytes(&ses->se_fchannel);
914 nfsd_drc_mem_used -= mem;
915 spin_unlock(&nfsd_drc_lock);
916 free_session_slots(ses);
917 kfree(ses);
918}
919
508dc6e1
BH
920void nfsd4_put_session(struct nfsd4_session *ses)
921{
922 spin_lock(&client_lock);
923 nfsd4_put_session_locked(ses);
924 spin_unlock(&client_lock);
925}
926
ac7c46f2 927static struct nfsd4_session *alloc_init_session(struct svc_rqst *rqstp, struct nfs4_client *clp, struct nfsd4_create_session *cses)
5b6feee9
BF
928{
929 struct nfsd4_session *new;
930 struct nfsd4_channel_attrs *fchan = &cses->fore_channel;
931 int numslots, slotsize;
57b7b43b 932 __be32 status;
5b6feee9
BF
933 int idx;
934
935 /*
936 * Note decreasing slot size below client's request may
937 * make it difficult for client to function correctly, whereas
938 * decreasing the number of slots will (just?) affect
939 * performance. When short on memory we therefore prefer to
940 * decrease number of slots instead of their size.
941 */
942 slotsize = nfsd4_sanitize_slot_size(fchan->maxresp_cached);
943 numslots = nfsd4_get_drc_mem(slotsize, fchan->maxreqs);
ced6dfe9
MJ
944 if (numslots < 1)
945 return NULL;
5b6feee9
BF
946
947 new = alloc_session(slotsize, numslots);
948 if (!new) {
949 nfsd4_put_drc_mem(slotsize, fchan->maxreqs);
ac7c46f2 950 return NULL;
557ce264 951 }
5b6feee9 952 init_forechannel_attrs(&new->se_fchannel, fchan, numslots, slotsize);
557ce264 953
ec6b5d7b
AA
954 new->se_client = clp;
955 gen_sessionid(new);
ec6b5d7b 956
c7662518
BF
957 INIT_LIST_HEAD(&new->se_conns);
958
ac7c46f2 959 new->se_cb_seq_nr = 1;
ec6b5d7b 960 new->se_flags = cses->flags;
8b5ce5cd 961 new->se_cb_prog = cses->callback_prog;
ec6b5d7b 962 kref_init(&new->se_ref);
5b6feee9 963 idx = hash_sessionid(&new->se_sessionid);
9089f1b4 964 spin_lock(&client_lock);
ec6b5d7b 965 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
4c649378 966 spin_lock(&clp->cl_lock);
ec6b5d7b 967 list_add(&new->se_perclnt, &clp->cl_sessions);
4c649378 968 spin_unlock(&clp->cl_lock);
9089f1b4 969 spin_unlock(&client_lock);
ec6b5d7b 970
1d1bc8f2 971 status = nfsd4_new_conn_from_crses(rqstp, new);
ac7c46f2 972 /* whoops: benny points out, status is ignored! (err, or bogus) */
c7662518 973 if (status) {
508dc6e1 974 spin_lock(&client_lock);
c7662518 975 free_session(&new->se_ref);
508dc6e1 976 spin_unlock(&client_lock);
ac7c46f2 977 return NULL;
c7662518 978 }
dcbeaa68 979 if (cses->flags & SESSION4_BACK_CHAN) {
edd76786 980 struct sockaddr *sa = svc_addr(rqstp);
dcbeaa68
BF
981 /*
982 * This is a little silly; with sessions there's no real
983 * use for the callback address. Use the peer address
984 * as a reasonable default for now, but consider fixing
985 * the rpc client not to require an address in the
986 * future:
987 */
edd76786
BF
988 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
989 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
edd76786 990 }
dcbeaa68 991 nfsd4_probe_callback(clp);
ac7c46f2 992 return new;
ec6b5d7b
AA
993}
994
9089f1b4 995/* caller must hold client_lock */
5282fd72
ME
996static struct nfsd4_session *
997find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
998{
999 struct nfsd4_session *elem;
1000 int idx;
1001
1002 dump_sessionid(__func__, sessionid);
1003 idx = hash_sessionid(sessionid);
5282fd72
ME
1004 /* Search in the appropriate list */
1005 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
5282fd72
ME
1006 if (!memcmp(elem->se_sessionid.data, sessionid->data,
1007 NFS4_MAX_SESSIONID_LEN)) {
1008 return elem;
1009 }
1010 }
1011
1012 dprintk("%s: session not found\n", __func__);
1013 return NULL;
1014}
1015
9089f1b4 1016/* caller must hold client_lock */
7116ed6b 1017static void
5282fd72 1018unhash_session(struct nfsd4_session *ses)
7116ed6b
AA
1019{
1020 list_del(&ses->se_hash);
4c649378 1021 spin_lock(&ses->se_client->cl_lock);
7116ed6b 1022 list_del(&ses->se_perclnt);
4c649378 1023 spin_unlock(&ses->se_client->cl_lock);
5282fd72
ME
1024}
1025
36acb66b 1026/* must be called under the client_lock */
1da177e4 1027static inline void
36acb66b 1028renew_client_locked(struct nfs4_client *clp)
1da177e4 1029{
07cd4909 1030 if (is_client_expired(clp)) {
7447758b
BF
1031 WARN_ON(1);
1032 printk("%s: client (clientid %08x/%08x) already expired\n",
07cd4909
BH
1033 __func__,
1034 clp->cl_clientid.cl_boot,
1035 clp->cl_clientid.cl_id);
1036 return;
1037 }
1038
1da177e4
LT
1039 dprintk("renewing client (clientid %08x/%08x)\n",
1040 clp->cl_clientid.cl_boot,
1041 clp->cl_clientid.cl_id);
1042 list_move_tail(&clp->cl_lru, &client_lru);
1043 clp->cl_time = get_seconds();
1044}
1045
36acb66b
BH
1046static inline void
1047renew_client(struct nfs4_client *clp)
1048{
1049 spin_lock(&client_lock);
1050 renew_client_locked(clp);
1051 spin_unlock(&client_lock);
1052}
1053
1da177e4
LT
1054/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
1055static int
1056STALE_CLIENTID(clientid_t *clid)
1057{
1058 if (clid->cl_boot == boot_time)
1059 return 0;
60adfc50
AA
1060 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
1061 clid->cl_boot, clid->cl_id, boot_time);
1da177e4
LT
1062 return 1;
1063}
1064
1065/*
1066 * XXX Should we use a slab cache ?
1067 * This type of memory management is somewhat inefficient, but we use it
1068 * anyway since SETCLIENTID is not a common operation.
1069 */
35bba9a3 1070static struct nfs4_client *alloc_client(struct xdr_netobj name)
1da177e4
LT
1071{
1072 struct nfs4_client *clp;
1073
35bba9a3
BF
1074 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
1075 if (clp == NULL)
1076 return NULL;
67114fe6 1077 clp->cl_name.data = kmemdup(name.data, name.len, GFP_KERNEL);
35bba9a3
BF
1078 if (clp->cl_name.data == NULL) {
1079 kfree(clp);
1080 return NULL;
1da177e4 1081 }
35bba9a3 1082 clp->cl_name.len = name.len;
1da177e4
LT
1083 return clp;
1084}
1085
1086static inline void
1087free_client(struct nfs4_client *clp)
1088{
bc2df47a 1089 lockdep_assert_held(&client_lock);
792c95dd
BF
1090 while (!list_empty(&clp->cl_sessions)) {
1091 struct nfsd4_session *ses;
1092 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
1093 se_perclnt);
1094 list_del(&ses->se_perclnt);
508dc6e1 1095 nfsd4_put_session_locked(ses);
792c95dd 1096 }
03a4e1f6 1097 free_svc_cred(&clp->cl_cred);
1da177e4
LT
1098 kfree(clp->cl_name.data);
1099 kfree(clp);
1100}
1101
d7682988
BH
1102void
1103release_session_client(struct nfsd4_session *session)
1104{
1105 struct nfs4_client *clp = session->se_client;
1106
1107 if (!atomic_dec_and_lock(&clp->cl_refcount, &client_lock))
1108 return;
1109 if (is_client_expired(clp)) {
1110 free_client(clp);
1111 session->se_client = NULL;
1112 } else
1113 renew_client_locked(clp);
1114 spin_unlock(&client_lock);
d7682988
BH
1115}
1116
84d38ac9
BH
1117/* must be called under the client_lock */
1118static inline void
1119unhash_client_locked(struct nfs4_client *clp)
1120{
792c95dd
BF
1121 struct nfsd4_session *ses;
1122
07cd4909 1123 mark_client_expired(clp);
84d38ac9 1124 list_del(&clp->cl_lru);
4c649378 1125 spin_lock(&clp->cl_lock);
792c95dd
BF
1126 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
1127 list_del_init(&ses->se_hash);
4c649378 1128 spin_unlock(&clp->cl_lock);
84d38ac9
BH
1129}
1130
1da177e4
LT
1131static void
1132expire_client(struct nfs4_client *clp)
1133{
fe0750e5 1134 struct nfs4_openowner *oo;
1da177e4 1135 struct nfs4_delegation *dp;
1da177e4
LT
1136 struct list_head reaplist;
1137
1da177e4
LT
1138 INIT_LIST_HEAD(&reaplist);
1139 spin_lock(&recall_lock);
ea1da636
N
1140 while (!list_empty(&clp->cl_delegations)) {
1141 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
ea1da636 1142 list_del_init(&dp->dl_perclnt);
1da177e4
LT
1143 list_move(&dp->dl_recall_lru, &reaplist);
1144 }
1145 spin_unlock(&recall_lock);
1146 while (!list_empty(&reaplist)) {
1147 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
1da177e4
LT
1148 unhash_delegation(dp);
1149 }
ea1da636 1150 while (!list_empty(&clp->cl_openowners)) {
fe0750e5
BF
1151 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
1152 release_openowner(oo);
1da177e4 1153 }
6ff8da08 1154 nfsd4_shutdown_callback(clp);
84d38ac9
BH
1155 if (clp->cl_cb_conn.cb_xprt)
1156 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
36acb66b
BH
1157 list_del(&clp->cl_idhash);
1158 list_del(&clp->cl_strhash);
be1fdf6c 1159 spin_lock(&client_lock);
84d38ac9 1160 unhash_client_locked(clp);
46583e25
BH
1161 if (atomic_read(&clp->cl_refcount) == 0)
1162 free_client(clp);
be1fdf6c 1163 spin_unlock(&client_lock);
1da177e4
LT
1164}
1165
35bba9a3
BF
1166static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1167{
1168 memcpy(target->cl_verifier.data, source->data,
1169 sizeof(target->cl_verifier.data));
1da177e4
LT
1170}
1171
35bba9a3
BF
1172static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1173{
1da177e4
LT
1174 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1175 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1176}
1177
03a4e1f6 1178static int copy_cred(struct svc_cred *target, struct svc_cred *source)
35bba9a3 1179{
03a4e1f6
BF
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;
d5497fc6 1187 target->cr_flavor = source->cr_flavor;
1da177e4
LT
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);
03a4e1f6 1192 return 0;
1da177e4
LT
1193}
1194
35bba9a3 1195static int same_name(const char *n1, const char *n2)
599e0a22 1196{
a55370a3 1197 return 0 == memcmp(n1, n2, HEXDIR_LEN);
1da177e4
LT
1198}
1199
1200static int
599e0a22
BF
1201same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1202{
1203 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
1da177e4
LT
1204}
1205
1206static int
599e0a22
BF
1207same_clid(clientid_t *cl1, clientid_t *cl2)
1208{
1209 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
1da177e4
LT
1210}
1211
8fbba96e
BF
1212static bool groups_equal(struct group_info *g1, struct group_info *g2)
1213{
1214 int i;
1215
1216 if (g1->ngroups != g2->ngroups)
1217 return false;
1218 for (i=0; i<g1->ngroups; i++)
1219 if (GROUP_AT(g1, i) != GROUP_AT(g2, i))
1220 return false;
1221 return true;
1222}
1223
5559b50a 1224static bool
599e0a22
BF
1225same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1226{
d5497fc6
BF
1227 if ((cr1->cr_flavor != cr2->cr_flavor)
1228 || (cr1->cr_uid != cr2->cr_uid)
8fbba96e
BF
1229 || (cr1->cr_gid != cr2->cr_gid)
1230 || !groups_equal(cr1->cr_group_info, cr2->cr_group_info))
1231 return false;
1232 if (cr1->cr_principal == cr2->cr_principal)
1233 return true;
1234 if (!cr1->cr_principal || !cr2->cr_principal)
1235 return false;
5559b50a 1236 return 0 == strcmp(cr1->cr_principal, cr2->cr_principal);
1da177e4
LT
1237}
1238
5ec7b46c
BF
1239static void gen_clid(struct nfs4_client *clp)
1240{
1241 static u32 current_clientid = 1;
1242
1da177e4
LT
1243 clp->cl_clientid.cl_boot = boot_time;
1244 clp->cl_clientid.cl_id = current_clientid++;
1245}
1246
deda2faa
BF
1247static void gen_confirm(struct nfs4_client *clp)
1248{
ab4684d1 1249 __be32 verf[2];
deda2faa 1250 static u32 i;
1da177e4 1251
ab4684d1
CL
1252 verf[0] = (__be32)get_seconds();
1253 verf[1] = (__be32)i++;
1254 memcpy(clp->cl_confirm.data, verf, sizeof(clp->cl_confirm.data));
1da177e4
LT
1255}
1256
38c2f4b1 1257static struct nfs4_stid *find_stateid(struct nfs4_client *cl, stateid_t *t)
4581d140 1258{
38c2f4b1 1259 return idr_find(&cl->cl_stateids, t->si_opaque.so_id);
4d71ab87
BF
1260}
1261
38c2f4b1 1262static struct nfs4_stid *find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, char typemask)
f459e453
BF
1263{
1264 struct nfs4_stid *s;
4d71ab87 1265
38c2f4b1 1266 s = find_stateid(cl, t);
4d71ab87
BF
1267 if (!s)
1268 return NULL;
f459e453 1269 if (typemask & s->sc_type)
4581d140 1270 return s;
4581d140
BF
1271 return NULL;
1272}
1273
b09333c4
RL
1274static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir,
1275 struct svc_rqst *rqstp, nfs4_verifier *verf)
1276{
1277 struct nfs4_client *clp;
1278 struct sockaddr *sa = svc_addr(rqstp);
03a4e1f6 1279 int ret;
b09333c4
RL
1280
1281 clp = alloc_client(name);
1282 if (clp == NULL)
1283 return NULL;
1284
792c95dd 1285 INIT_LIST_HEAD(&clp->cl_sessions);
03a4e1f6
BF
1286 ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1287 if (ret) {
1288 spin_lock(&client_lock);
1289 free_client(clp);
1290 spin_unlock(&client_lock);
1291 return NULL;
b09333c4 1292 }
38c2f4b1 1293 idr_init(&clp->cl_stateids);
b09333c4 1294 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
46583e25 1295 atomic_set(&clp->cl_refcount, 0);
77a3569d 1296 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
b09333c4
RL
1297 INIT_LIST_HEAD(&clp->cl_idhash);
1298 INIT_LIST_HEAD(&clp->cl_strhash);
1299 INIT_LIST_HEAD(&clp->cl_openowners);
1300 INIT_LIST_HEAD(&clp->cl_delegations);
b09333c4 1301 INIT_LIST_HEAD(&clp->cl_lru);
5ce8ba25 1302 INIT_LIST_HEAD(&clp->cl_callbacks);
6ff8da08 1303 spin_lock_init(&clp->cl_lock);
cee277d9 1304 INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_do_callback_rpc);
07cd4909 1305 clp->cl_time = get_seconds();
b09333c4
RL
1306 clear_bit(0, &clp->cl_cb_slot_busy);
1307 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
1308 copy_verf(clp, verf);
1309 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
b09333c4 1310 gen_confirm(clp);
edd76786 1311 clp->cl_cb_session = NULL;
b09333c4
RL
1312 return clp;
1313}
1314
fd39ca9a 1315static void
1da177e4
LT
1316add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
1317{
1318 unsigned int idhashval;
1319
1320 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
1321 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1322 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
36acb66b 1323 renew_client(clp);
1da177e4
LT
1324}
1325
fd39ca9a 1326static void
1da177e4
LT
1327move_to_confirmed(struct nfs4_client *clp)
1328{
1329 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1330 unsigned int strhashval;
1331
1332 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
f116629d 1333 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
a55370a3 1334 strhashval = clientstr_hashval(clp->cl_recdir);
328efbab 1335 list_move(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
1da177e4
LT
1336 renew_client(clp);
1337}
1338
1339static struct nfs4_client *
1340find_confirmed_client(clientid_t *clid)
1341{
1342 struct nfs4_client *clp;
1343 unsigned int idhashval = clientid_hashval(clid->cl_id);
1344
1345 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
a50d2ad1
BF
1346 if (same_clid(&clp->cl_clientid, clid)) {
1347 renew_client(clp);
1da177e4 1348 return clp;
a50d2ad1 1349 }
1da177e4
LT
1350 }
1351 return NULL;
1352}
1353
1354static struct nfs4_client *
1355find_unconfirmed_client(clientid_t *clid)
1356{
1357 struct nfs4_client *clp;
1358 unsigned int idhashval = clientid_hashval(clid->cl_id);
1359
1360 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
599e0a22 1361 if (same_clid(&clp->cl_clientid, clid))
1da177e4
LT
1362 return clp;
1363 }
1364 return NULL;
1365}
1366
6e5f15c9 1367static bool clp_used_exchangeid(struct nfs4_client *clp)
a1bcecd2 1368{
6e5f15c9 1369 return clp->cl_exchange_flags != 0;
e203d506 1370}
a1bcecd2 1371
28ce6054 1372static struct nfs4_client *
e203d506 1373find_confirmed_client_by_str(const char *dname, unsigned int hashval)
28ce6054
N
1374{
1375 struct nfs4_client *clp;
1376
1377 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
e203d506 1378 if (same_name(clp->cl_recdir, dname))
28ce6054
N
1379 return clp;
1380 }
1381 return NULL;
1382}
1383
1384static struct nfs4_client *
e203d506 1385find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
28ce6054
N
1386{
1387 struct nfs4_client *clp;
1388
1389 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
e203d506 1390 if (same_name(clp->cl_recdir, dname))
28ce6054
N
1391 return clp;
1392 }
1393 return NULL;
1394}
1395
fd39ca9a 1396static void
6f3d772f 1397gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
1da177e4 1398{
07263f1e 1399 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
6f3d772f
TU
1400 struct sockaddr *sa = svc_addr(rqstp);
1401 u32 scopeid = rpc_get_scope_id(sa);
7077ecba
JL
1402 unsigned short expected_family;
1403
1404 /* Currently, we only support tcp and tcp6 for the callback channel */
1405 if (se->se_callback_netid_len == 3 &&
1406 !memcmp(se->se_callback_netid_val, "tcp", 3))
1407 expected_family = AF_INET;
1408 else if (se->se_callback_netid_len == 4 &&
1409 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1410 expected_family = AF_INET6;
1411 else
1da177e4
LT
1412 goto out_err;
1413
f2ac4dc9 1414 conn->cb_addrlen = rpc_uaddr2sockaddr(&init_net, se->se_callback_addr_val,
aa9a4ec7 1415 se->se_callback_addr_len,
07263f1e
BF
1416 (struct sockaddr *)&conn->cb_addr,
1417 sizeof(conn->cb_addr));
aa9a4ec7 1418
07263f1e 1419 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
1da177e4 1420 goto out_err;
aa9a4ec7 1421
07263f1e
BF
1422 if (conn->cb_addr.ss_family == AF_INET6)
1423 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
fbf4665f 1424
07263f1e
BF
1425 conn->cb_prog = se->se_callback_prog;
1426 conn->cb_ident = se->se_callback_ident;
849a1cf1 1427 memcpy(&conn->cb_saddr, &rqstp->rq_daddr, rqstp->rq_daddrlen);
1da177e4
LT
1428 return;
1429out_err:
07263f1e
BF
1430 conn->cb_addr.ss_family = AF_UNSPEC;
1431 conn->cb_addrlen = 0;
849823c5 1432 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
1da177e4
LT
1433 "will not receive delegations\n",
1434 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1435
1da177e4
LT
1436 return;
1437}
1438
074fe897 1439/*
557ce264 1440 * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
074fe897 1441 */
074fe897
AA
1442void
1443nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
074fe897 1444{
557ce264
AA
1445 struct nfsd4_slot *slot = resp->cstate.slot;
1446 unsigned int base;
074fe897 1447
557ce264 1448 dprintk("--> %s slot %p\n", __func__, slot);
074fe897 1449
557ce264
AA
1450 slot->sl_opcnt = resp->opcnt;
1451 slot->sl_status = resp->cstate.status;
074fe897 1452
bf5c43c8 1453 slot->sl_flags |= NFSD4_SLOT_INITIALIZED;
bf864a31 1454 if (nfsd4_not_cached(resp)) {
557ce264 1455 slot->sl_datalen = 0;
bf864a31 1456 return;
074fe897 1457 }
557ce264
AA
1458 slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap;
1459 base = (char *)resp->cstate.datap -
1460 (char *)resp->xbuf->head[0].iov_base;
1461 if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data,
1462 slot->sl_datalen))
1463 WARN("%s: sessions DRC could not cache compound\n", __func__);
1464 return;
074fe897
AA
1465}
1466
1467/*
abfabf8c
AA
1468 * Encode the replay sequence operation from the slot values.
1469 * If cachethis is FALSE encode the uncached rep error on the next
1470 * operation which sets resp->p and increments resp->opcnt for
1471 * nfs4svc_encode_compoundres.
074fe897 1472 *
074fe897 1473 */
abfabf8c
AA
1474static __be32
1475nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1476 struct nfsd4_compoundres *resp)
074fe897 1477{
abfabf8c
AA
1478 struct nfsd4_op *op;
1479 struct nfsd4_slot *slot = resp->cstate.slot;
bf864a31 1480
abfabf8c
AA
1481 /* Encode the replayed sequence operation */
1482 op = &args->ops[resp->opcnt - 1];
1483 nfsd4_encode_operation(resp, op);
bf864a31 1484
abfabf8c 1485 /* Return nfserr_retry_uncached_rep in next operation. */
73e79482 1486 if (args->opcnt > 1 && !(slot->sl_flags & NFSD4_SLOT_CACHETHIS)) {
abfabf8c
AA
1487 op = &args->ops[resp->opcnt++];
1488 op->status = nfserr_retry_uncached_rep;
1489 nfsd4_encode_operation(resp, op);
074fe897 1490 }
abfabf8c 1491 return op->status;
074fe897
AA
1492}
1493
1494/*
557ce264
AA
1495 * The sequence operation is not cached because we can use the slot and
1496 * session values.
074fe897
AA
1497 */
1498__be32
bf864a31
AA
1499nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1500 struct nfsd4_sequence *seq)
074fe897 1501{
557ce264 1502 struct nfsd4_slot *slot = resp->cstate.slot;
074fe897
AA
1503 __be32 status;
1504
557ce264 1505 dprintk("--> %s slot %p\n", __func__, slot);
074fe897 1506
abfabf8c
AA
1507 /* Either returns 0 or nfserr_retry_uncached */
1508 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1509 if (status == nfserr_retry_uncached_rep)
1510 return status;
074fe897 1511
557ce264
AA
1512 /* The sequence operation has been encoded, cstate->datap set. */
1513 memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen);
074fe897 1514
557ce264
AA
1515 resp->opcnt = slot->sl_opcnt;
1516 resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen);
1517 status = slot->sl_status;
074fe897
AA
1518
1519 return status;
1520}
1521
0733d213
AA
1522/*
1523 * Set the exchange_id flags returned by the server.
1524 */
1525static void
1526nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1527{
1528 /* pNFS is not supported */
1529 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1530
1531 /* Referrals are supported, Migration is not. */
1532 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1533
1534 /* set the wire flags to return to client. */
1535 clid->flags = new->cl_exchange_flags;
1536}
1537
631fc9ea
BF
1538static bool client_has_state(struct nfs4_client *clp)
1539{
1540 /*
1541 * Note clp->cl_openowners check isn't quite right: there's no
1542 * need to count owners without stateid's.
1543 *
1544 * Also note we should probably be using this in 4.0 case too.
1545 */
6eccece9
BF
1546 return !list_empty(&clp->cl_openowners)
1547 || !list_empty(&clp->cl_delegations)
1548 || !list_empty(&clp->cl_sessions);
631fc9ea
BF
1549}
1550
069b6ad4
AA
1551__be32
1552nfsd4_exchange_id(struct svc_rqst *rqstp,
1553 struct nfsd4_compound_state *cstate,
1554 struct nfsd4_exchange_id *exid)
1555{
0733d213 1556 struct nfs4_client *unconf, *conf, *new;
57b7b43b 1557 __be32 status;
0733d213
AA
1558 unsigned int strhashval;
1559 char dname[HEXDIR_LEN];
363168b4 1560 char addr_str[INET6_ADDRSTRLEN];
0733d213 1561 nfs4_verifier verf = exid->verifier;
363168b4 1562 struct sockaddr *sa = svc_addr(rqstp);
83e08fd4 1563 bool update = exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A;
0733d213 1564
363168b4 1565 rpc_ntop(sa, addr_str, sizeof(addr_str));
0733d213 1566 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
363168b4 1567 "ip_addr=%s flags %x, spa_how %d\n",
0733d213 1568 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
363168b4 1569 addr_str, exid->flags, exid->spa_how);
0733d213 1570
a084daf5 1571 if (exid->flags & ~EXCHGID4_FLAG_MASK_A)
0733d213
AA
1572 return nfserr_inval;
1573
1574 /* Currently only support SP4_NONE */
1575 switch (exid->spa_how) {
1576 case SP4_NONE:
1577 break;
1578 case SP4_SSV:
044bc1d4 1579 return nfserr_serverfault;
0733d213
AA
1580 default:
1581 BUG(); /* checked by xdr code */
1582 case SP4_MACH_CRED:
1583 return nfserr_serverfault; /* no excuse :-/ */
1584 }
1585
1586 status = nfs4_make_rec_clidname(dname, &exid->clname);
1587
1588 if (status)
2786cc3a 1589 return status;
0733d213
AA
1590
1591 strhashval = clientstr_hashval(dname);
1592
2dbb269d 1593 /* Cases below refer to rfc 5661 section 18.35.4: */
0733d213 1594 nfs4_lock_state();
e203d506 1595 conf = find_confirmed_client_by_str(dname, strhashval);
0733d213 1596 if (conf) {
83e08fd4
BF
1597 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
1598 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
1599
136e658d
BF
1600 if (update) {
1601 if (!clp_used_exchangeid(conf)) { /* buggy client */
2dbb269d 1602 status = nfserr_inval;
1a308118
BF
1603 goto out;
1604 }
136e658d 1605 if (!creds_match) { /* case 9 */
ea236d07 1606 status = nfserr_perm;
136e658d
BF
1607 goto out;
1608 }
1609 if (!verfs_match) { /* case 8 */
0733d213
AA
1610 status = nfserr_not_same;
1611 goto out;
1612 }
136e658d
BF
1613 /* case 6 */
1614 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1615 new = conf;
1616 goto out_copy;
0733d213 1617 }
136e658d 1618 if (!creds_match) { /* case 3 */
631fc9ea
BF
1619 if (client_has_state(conf)) {
1620 status = nfserr_clid_inuse;
0733d213
AA
1621 goto out;
1622 }
1623 expire_client(conf);
1624 goto out_new;
1625 }
136e658d 1626 if (verfs_match) { /* case 2 */
0f1ba0ef 1627 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
136e658d
BF
1628 new = conf;
1629 goto out_copy;
1630 }
1631 /* case 5, client reboot */
136e658d 1632 goto out_new;
6ddbbbfe
MS
1633 }
1634
2dbb269d 1635 if (update) { /* case 7 */
6ddbbbfe
MS
1636 status = nfserr_noent;
1637 goto out;
0733d213
AA
1638 }
1639
e203d506 1640 unconf = find_unconfirmed_client_by_str(dname, strhashval);
2dbb269d 1641 if (unconf) /* case 4, possible retry or client restart */
0733d213 1642 expire_client(unconf);
0733d213 1643
2dbb269d 1644 /* case 1 (normal case) */
0733d213 1645out_new:
b09333c4 1646 new = create_client(exid->clname, dname, rqstp, &verf);
0733d213 1647 if (new == NULL) {
4731030d 1648 status = nfserr_jukebox;
0733d213
AA
1649 goto out;
1650 }
1651
0733d213 1652 gen_clid(new);
0733d213
AA
1653 add_to_unconfirmed(new, strhashval);
1654out_copy:
1655 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1656 exid->clientid.cl_id = new->cl_clientid.cl_id;
1657
778df3f0 1658 exid->seqid = new->cl_cs_slot.sl_seqid + 1;
0733d213
AA
1659 nfsd4_set_ex_flags(new, exid);
1660
1661 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
49557cc7 1662 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
0733d213
AA
1663 status = nfs_ok;
1664
1665out:
1666 nfs4_unlock_state();
0733d213 1667 return status;
069b6ad4
AA
1668}
1669
57b7b43b 1670static __be32
88e588d5 1671check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
b85d4c01 1672{
88e588d5
AA
1673 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1674 slot_seqid);
b85d4c01
BH
1675
1676 /* The slot is in use, and no response has been sent. */
88e588d5
AA
1677 if (slot_inuse) {
1678 if (seqid == slot_seqid)
b85d4c01
BH
1679 return nfserr_jukebox;
1680 else
1681 return nfserr_seq_misordered;
1682 }
f6d82485 1683 /* Note unsigned 32-bit arithmetic handles wraparound: */
88e588d5 1684 if (likely(seqid == slot_seqid + 1))
b85d4c01 1685 return nfs_ok;
88e588d5 1686 if (seqid == slot_seqid)
b85d4c01 1687 return nfserr_replay_cache;
b85d4c01
BH
1688 return nfserr_seq_misordered;
1689}
1690
49557cc7
AA
1691/*
1692 * Cache the create session result into the create session single DRC
1693 * slot cache by saving the xdr structure. sl_seqid has been set.
1694 * Do this for solo or embedded create session operations.
1695 */
1696static void
1697nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
57b7b43b 1698 struct nfsd4_clid_slot *slot, __be32 nfserr)
49557cc7
AA
1699{
1700 slot->sl_status = nfserr;
1701 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1702}
1703
1704static __be32
1705nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1706 struct nfsd4_clid_slot *slot)
1707{
1708 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1709 return slot->sl_status;
1710}
1711
1b74c25b
MJ
1712#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
1713 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
1714 1 + /* MIN tag is length with zero, only length */ \
1715 3 + /* version, opcount, opcode */ \
1716 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1717 /* seqid, slotID, slotID, cache */ \
1718 4 ) * sizeof(__be32))
1719
1720#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
1721 2 + /* verifier: AUTH_NULL, length 0 */\
1722 1 + /* status */ \
1723 1 + /* MIN tag is length with zero, only length */ \
1724 3 + /* opcount, opcode, opstatus*/ \
1725 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1726 /* seqid, slotID, slotID, slotID, status */ \
1727 5 ) * sizeof(__be32))
1728
57b7b43b 1729static bool check_forechannel_attrs(struct nfsd4_channel_attrs fchannel)
1b74c25b
MJ
1730{
1731 return fchannel.maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ
1732 || fchannel.maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ;
1733}
1734
069b6ad4
AA
1735__be32
1736nfsd4_create_session(struct svc_rqst *rqstp,
1737 struct nfsd4_compound_state *cstate,
1738 struct nfsd4_create_session *cr_ses)
1739{
363168b4 1740 struct sockaddr *sa = svc_addr(rqstp);
ec6b5d7b 1741 struct nfs4_client *conf, *unconf;
ac7c46f2 1742 struct nfsd4_session *new;
49557cc7 1743 struct nfsd4_clid_slot *cs_slot = NULL;
86c3e16c 1744 bool confirm_me = false;
57b7b43b 1745 __be32 status = 0;
ec6b5d7b 1746
a62573dc
MJ
1747 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
1748 return nfserr_inval;
1749
ec6b5d7b
AA
1750 nfs4_lock_state();
1751 unconf = find_unconfirmed_client(&cr_ses->clientid);
1752 conf = find_confirmed_client(&cr_ses->clientid);
1753
1754 if (conf) {
49557cc7
AA
1755 cs_slot = &conf->cl_cs_slot;
1756 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
38eb76a5 1757 if (status == nfserr_replay_cache) {
49557cc7 1758 status = nfsd4_replay_create_session(cr_ses, cs_slot);
38eb76a5 1759 goto out;
49557cc7 1760 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
ec6b5d7b 1761 status = nfserr_seq_misordered;
ec6b5d7b
AA
1762 goto out;
1763 }
ec6b5d7b
AA
1764 } else if (unconf) {
1765 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
363168b4 1766 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
ec6b5d7b
AA
1767 status = nfserr_clid_inuse;
1768 goto out;
1769 }
49557cc7
AA
1770 cs_slot = &unconf->cl_cs_slot;
1771 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
38eb76a5
AA
1772 if (status) {
1773 /* an unconfirmed replay returns misordered */
ec6b5d7b 1774 status = nfserr_seq_misordered;
cd5b8144 1775 goto out;
ec6b5d7b 1776 }
86c3e16c 1777 confirm_me = true;
ec6b5d7b
AA
1778 conf = unconf;
1779 } else {
1780 status = nfserr_stale_clientid;
1781 goto out;
1782 }
1783
8323c3b2
BF
1784 /*
1785 * XXX: we should probably set this at creation time, and check
1786 * for consistent minorversion use throughout:
1787 */
1788 conf->cl_minorversion = 1;
408b79bc
BF
1789 /*
1790 * We do not support RDMA or persistent sessions
1791 */
1792 cr_ses->flags &= ~SESSION4_PERSIST;
1793 cr_ses->flags &= ~SESSION4_RDMA;
1794
1b74c25b
MJ
1795 status = nfserr_toosmall;
1796 if (check_forechannel_attrs(cr_ses->fore_channel))
1797 goto out;
1798
ac7c46f2
BF
1799 status = nfserr_jukebox;
1800 new = alloc_init_session(rqstp, conf, cr_ses);
1801 if (!new)
ec6b5d7b 1802 goto out;
ac7c46f2
BF
1803 status = nfs_ok;
1804 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
ec6b5d7b 1805 NFS4_MAX_SESSIONID_LEN);
12050657
MJ
1806 memcpy(&cr_ses->fore_channel, &new->se_fchannel,
1807 sizeof(struct nfsd4_channel_attrs));
86c3e16c 1808 cs_slot->sl_seqid++;
49557cc7 1809 cr_ses->seqid = cs_slot->sl_seqid;
ec6b5d7b 1810
49557cc7
AA
1811 /* cache solo and embedded create sessions under the state lock */
1812 nfsd4_cache_create_session(cr_ses, cs_slot, status);
b9831b59
BF
1813 if (confirm_me) {
1814 unsigned int hash = clientstr_hashval(unconf->cl_recdir);
1815 struct nfs4_client *old =
1816 find_confirmed_client_by_str(conf->cl_recdir, hash);
1817 if (old)
1818 expire_client(old);
86c3e16c 1819 move_to_confirmed(conf);
b9831b59 1820 }
ec6b5d7b
AA
1821out:
1822 nfs4_unlock_state();
1823 dprintk("%s returns %d\n", __func__, ntohl(status));
1824 return status;
069b6ad4
AA
1825}
1826
57716355
BF
1827static bool nfsd4_last_compound_op(struct svc_rqst *rqstp)
1828{
1829 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1830 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1831
1832 return argp->opcnt == resp->opcnt;
1833}
1834
1d1bc8f2
BF
1835static __be32 nfsd4_map_bcts_dir(u32 *dir)
1836{
1837 switch (*dir) {
1838 case NFS4_CDFC4_FORE:
1839 case NFS4_CDFC4_BACK:
1840 return nfs_ok;
1841 case NFS4_CDFC4_FORE_OR_BOTH:
1842 case NFS4_CDFC4_BACK_OR_BOTH:
1843 *dir = NFS4_CDFC4_BOTH;
1844 return nfs_ok;
1845 };
1846 return nfserr_inval;
1847}
1848
1849__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
1850 struct nfsd4_compound_state *cstate,
1851 struct nfsd4_bind_conn_to_session *bcts)
1852{
1853 __be32 status;
1854
1855 if (!nfsd4_last_compound_op(rqstp))
1856 return nfserr_not_only_op;
1857 spin_lock(&client_lock);
1858 cstate->session = find_in_sessionid_hashtbl(&bcts->sessionid);
1859 /* Sorta weird: we only need the refcnt'ing because new_conn acquires
1860 * client_lock iself: */
1861 if (cstate->session) {
1862 nfsd4_get_session(cstate->session);
1863 atomic_inc(&cstate->session->se_client->cl_refcount);
1864 }
1865 spin_unlock(&client_lock);
1866 if (!cstate->session)
1867 return nfserr_badsession;
1868
1869 status = nfsd4_map_bcts_dir(&bcts->dir);
1db2b9dd
BS
1870 if (!status)
1871 nfsd4_new_conn(rqstp, cstate->session, bcts->dir);
1872 return status;
1d1bc8f2
BF
1873}
1874
5d4cec2f
BF
1875static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
1876{
1877 if (!session)
1878 return 0;
1879 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
1880}
1881
069b6ad4
AA
1882__be32
1883nfsd4_destroy_session(struct svc_rqst *r,
1884 struct nfsd4_compound_state *cstate,
1885 struct nfsd4_destroy_session *sessionid)
1886{
e10e0cfc 1887 struct nfsd4_session *ses;
57b7b43b 1888 __be32 status = nfserr_badsession;
e10e0cfc
BH
1889
1890 /* Notes:
1891 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1892 * - Should we return nfserr_back_chan_busy if waiting for
1893 * callbacks on to-be-destroyed session?
1894 * - Do we need to clear any callback info from previous session?
1895 */
1896
5d4cec2f 1897 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
57716355
BF
1898 if (!nfsd4_last_compound_op(r))
1899 return nfserr_not_only_op;
1900 }
e10e0cfc 1901 dump_sessionid(__func__, &sessionid->sessionid);
9089f1b4 1902 spin_lock(&client_lock);
e10e0cfc
BH
1903 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1904 if (!ses) {
9089f1b4 1905 spin_unlock(&client_lock);
e10e0cfc
BH
1906 goto out;
1907 }
1908
1909 unhash_session(ses);
9089f1b4 1910 spin_unlock(&client_lock);
e10e0cfc 1911
ab707e15 1912 nfs4_lock_state();
84f5f7cc 1913 nfsd4_probe_callback_sync(ses->se_client);
ab707e15 1914 nfs4_unlock_state();
19cf5c02 1915
508dc6e1 1916 spin_lock(&client_lock);
19cf5c02 1917 nfsd4_del_conns(ses);
508dc6e1
BH
1918 nfsd4_put_session_locked(ses);
1919 spin_unlock(&client_lock);
e10e0cfc
BH
1920 status = nfs_ok;
1921out:
1922 dprintk("%s returns %d\n", __func__, ntohl(status));
1923 return status;
069b6ad4
AA
1924}
1925
a663bdd8 1926static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
328ead28
BF
1927{
1928 struct nfsd4_conn *c;
1929
1930 list_for_each_entry(c, &s->se_conns, cn_persession) {
a663bdd8 1931 if (c->cn_xprt == xpt) {
328ead28
BF
1932 return c;
1933 }
1934 }
1935 return NULL;
1936}
1937
a663bdd8 1938static void nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
328ead28
BF
1939{
1940 struct nfs4_client *clp = ses->se_client;
a663bdd8 1941 struct nfsd4_conn *c;
21b75b01 1942 int ret;
328ead28
BF
1943
1944 spin_lock(&clp->cl_lock);
a663bdd8 1945 c = __nfsd4_find_conn(new->cn_xprt, ses);
328ead28
BF
1946 if (c) {
1947 spin_unlock(&clp->cl_lock);
1948 free_conn(new);
1949 return;
1950 }
1951 __nfsd4_hash_conn(new, ses);
1952 spin_unlock(&clp->cl_lock);
21b75b01
BF
1953 ret = nfsd4_register_conn(new);
1954 if (ret)
1955 /* oops; xprt is already down: */
1956 nfsd4_conn_lost(&new->cn_xpt_user);
328ead28
BF
1957 return;
1958}
1959
868b89c3
MJ
1960static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
1961{
1962 struct nfsd4_compoundargs *args = rqstp->rq_argp;
1963
1964 return args->opcnt > session->se_fchannel.maxops;
1965}
1966
ae82a8d0
MJ
1967static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
1968 struct nfsd4_session *session)
1969{
1970 struct xdr_buf *xb = &rqstp->rq_arg;
1971
1972 return xb->len > session->se_fchannel.maxreq_sz;
1973}
1974
069b6ad4 1975__be32
b85d4c01 1976nfsd4_sequence(struct svc_rqst *rqstp,
069b6ad4
AA
1977 struct nfsd4_compound_state *cstate,
1978 struct nfsd4_sequence *seq)
1979{
f9bb94c4 1980 struct nfsd4_compoundres *resp = rqstp->rq_resp;
b85d4c01
BH
1981 struct nfsd4_session *session;
1982 struct nfsd4_slot *slot;
a663bdd8 1983 struct nfsd4_conn *conn;
57b7b43b 1984 __be32 status;
b85d4c01 1985
f9bb94c4
AA
1986 if (resp->opcnt != 1)
1987 return nfserr_sequence_pos;
1988
a663bdd8
BF
1989 /*
1990 * Will be either used or freed by nfsd4_sequence_check_conn
1991 * below.
1992 */
1993 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
1994 if (!conn)
1995 return nfserr_jukebox;
1996
9089f1b4 1997 spin_lock(&client_lock);
b85d4c01
BH
1998 status = nfserr_badsession;
1999 session = find_in_sessionid_hashtbl(&seq->sessionid);
2000 if (!session)
2001 goto out;
2002
868b89c3
MJ
2003 status = nfserr_too_many_ops;
2004 if (nfsd4_session_too_many_ops(rqstp, session))
2005 goto out;
2006
ae82a8d0
MJ
2007 status = nfserr_req_too_big;
2008 if (nfsd4_request_too_big(rqstp, session))
2009 goto out;
2010
b85d4c01 2011 status = nfserr_badslot;
6c18ba9f 2012 if (seq->slotid >= session->se_fchannel.maxreqs)
b85d4c01
BH
2013 goto out;
2014
557ce264 2015 slot = session->se_slots[seq->slotid];
b85d4c01
BH
2016 dprintk("%s: slotid %d\n", __func__, seq->slotid);
2017
a8dfdaeb
AA
2018 /* We do not negotiate the number of slots yet, so set the
2019 * maxslots to the session maxreqs which is used to encode
2020 * sr_highest_slotid and the sr_target_slot id to maxslots */
2021 seq->maxslots = session->se_fchannel.maxreqs;
2022
73e79482
BF
2023 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
2024 slot->sl_flags & NFSD4_SLOT_INUSE);
b85d4c01 2025 if (status == nfserr_replay_cache) {
bf5c43c8
BF
2026 status = nfserr_seq_misordered;
2027 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
2028 goto out;
b85d4c01
BH
2029 cstate->slot = slot;
2030 cstate->session = session;
da3846a2 2031 /* Return the cached reply status and set cstate->status
557ce264 2032 * for nfsd4_proc_compound processing */
bf864a31 2033 status = nfsd4_replay_cache_entry(resp, seq);
da3846a2 2034 cstate->status = nfserr_replay_cache;
aaf84eb9 2035 goto out;
b85d4c01
BH
2036 }
2037 if (status)
2038 goto out;
2039
a663bdd8
BF
2040 nfsd4_sequence_check_conn(conn, session);
2041 conn = NULL;
328ead28 2042
b85d4c01 2043 /* Success! bump slot seqid */
b85d4c01 2044 slot->sl_seqid = seq->seqid;
bf5c43c8 2045 slot->sl_flags |= NFSD4_SLOT_INUSE;
73e79482
BF
2046 if (seq->cachethis)
2047 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
bf5c43c8
BF
2048 else
2049 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
b85d4c01
BH
2050
2051 cstate->slot = slot;
2052 cstate->session = session;
2053
b85d4c01 2054out:
26c0c75e 2055 /* Hold a session reference until done processing the compound. */
aaf84eb9 2056 if (cstate->session) {
0d7bb719
BF
2057 struct nfs4_client *clp = session->se_client;
2058
36acb66b 2059 nfsd4_get_session(cstate->session);
0d7bb719 2060 atomic_inc(&clp->cl_refcount);
5423732a
BH
2061 switch (clp->cl_cb_state) {
2062 case NFSD4_CB_DOWN:
fc0c3dd1 2063 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
5423732a
BH
2064 break;
2065 case NFSD4_CB_FAULT:
fc0c3dd1 2066 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
5423732a 2067 break;
fc0c3dd1
BH
2068 default:
2069 seq->status_flags = 0;
5423732a 2070 }
aaf84eb9 2071 }
a663bdd8 2072 kfree(conn);
36acb66b 2073 spin_unlock(&client_lock);
b85d4c01
BH
2074 dprintk("%s: return %d\n", __func__, ntohl(status));
2075 return status;
069b6ad4
AA
2076}
2077
345c2842
MJ
2078__be32
2079nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
2080{
2081 struct nfs4_client *conf, *unconf, *clp;
57b7b43b 2082 __be32 status = 0;
345c2842
MJ
2083
2084 nfs4_lock_state();
2085 unconf = find_unconfirmed_client(&dc->clientid);
2086 conf = find_confirmed_client(&dc->clientid);
2087
2088 if (conf) {
2089 clp = conf;
2090
6eccece9 2091 if (!is_client_expired(conf) && client_has_state(conf)) {
345c2842
MJ
2092 status = nfserr_clientid_busy;
2093 goto out;
2094 }
2095
2096 /* rfc5661 18.50.3 */
2097 if (cstate->session && conf == cstate->session->se_client) {
2098 status = nfserr_clientid_busy;
2099 goto out;
2100 }
2101 } else if (unconf)
2102 clp = unconf;
2103 else {
2104 status = nfserr_stale_clientid;
2105 goto out;
2106 }
2107
2108 expire_client(clp);
2109out:
2110 nfs4_unlock_state();
2111 dprintk("%s return %d\n", __func__, ntohl(status));
2112 return status;
2113}
2114
4dc6ec00
BF
2115__be32
2116nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
2117{
57b7b43b 2118 __be32 status = 0;
bcecf1cc 2119
4dc6ec00
BF
2120 if (rc->rca_one_fs) {
2121 if (!cstate->current_fh.fh_dentry)
2122 return nfserr_nofilehandle;
2123 /*
2124 * We don't take advantage of the rca_one_fs case.
2125 * That's OK, it's optional, we can safely ignore it.
2126 */
2127 return nfs_ok;
2128 }
bcecf1cc 2129
4dc6ec00 2130 nfs4_lock_state();
bcecf1cc 2131 status = nfserr_complete_already;
a52d726b
JL
2132 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
2133 &cstate->session->se_client->cl_flags))
bcecf1cc
MJ
2134 goto out;
2135
2136 status = nfserr_stale_clientid;
2137 if (is_client_expired(cstate->session->se_client))
4dc6ec00
BF
2138 /*
2139 * The following error isn't really legal.
2140 * But we only get here if the client just explicitly
2141 * destroyed the client. Surely it no longer cares what
2142 * error it gets back on an operation for the dead
2143 * client.
2144 */
bcecf1cc
MJ
2145 goto out;
2146
2147 status = nfs_ok;
2a4317c5 2148 nfsd4_client_record_create(cstate->session->se_client);
bcecf1cc 2149out:
4dc6ec00 2150 nfs4_unlock_state();
bcecf1cc 2151 return status;
4dc6ec00
BF
2152}
2153
b37ad28b 2154__be32
b591480b
BF
2155nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2156 struct nfsd4_setclientid *setclid)
1da177e4 2157{
a084daf5 2158 struct xdr_netobj clname = setclid->se_name;
1da177e4
LT
2159 nfs4_verifier clverifier = setclid->se_verf;
2160 unsigned int strhashval;
28ce6054 2161 struct nfs4_client *conf, *unconf, *new;
b37ad28b 2162 __be32 status;
a55370a3 2163 char dname[HEXDIR_LEN];
1da177e4 2164
a55370a3
N
2165 status = nfs4_make_rec_clidname(dname, &clname);
2166 if (status)
73aea4ec 2167 return status;
a55370a3 2168
a55370a3 2169 strhashval = clientstr_hashval(dname);
1da177e4 2170
63db4632 2171 /* Cases below refer to rfc 3530 section 14.2.33: */
1da177e4 2172 nfs4_lock_state();
e203d506 2173 conf = find_confirmed_client_by_str(dname, strhashval);
28ce6054 2174 if (conf) {
63db4632 2175 /* case 0: */
1da177e4 2176 status = nfserr_clid_inuse;
e203d506
BF
2177 if (clp_used_exchangeid(conf))
2178 goto out;
026722c2 2179 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
363168b4
JL
2180 char addr_str[INET6_ADDRSTRLEN];
2181 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2182 sizeof(addr_str));
2183 dprintk("NFSD: setclientid: string in use by client "
2184 "at %s\n", addr_str);
1da177e4
LT
2185 goto out;
2186 }
1da177e4 2187 }
e203d506 2188 unconf = find_unconfirmed_client_by_str(dname, strhashval);
8f930711
BF
2189 if (unconf)
2190 expire_client(unconf);
3e772463 2191 status = nfserr_jukebox;
8f930711
BF
2192 new = create_client(clname, dname, rqstp, &clverifier);
2193 if (new == NULL)
2194 goto out;
34b232bb 2195 if (conf && same_verf(&conf->cl_verifier, &clverifier))
63db4632 2196 /* case 1: probable callback update */
1da177e4 2197 copy_clid(new, conf);
34b232bb 2198 else /* case 4 (new client) or cases 2, 3 (client reboot): */
1da177e4 2199 gen_clid(new);
8323c3b2
BF
2200 /*
2201 * XXX: we should probably set this at creation time, and check
2202 * for consistent minorversion use throughout:
2203 */
2204 new->cl_minorversion = 0;
6f3d772f 2205 gen_callback(new, setclid, rqstp);
c175b83c 2206 add_to_unconfirmed(new, strhashval);
1da177e4
LT
2207 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2208 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2209 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2210 status = nfs_ok;
2211out:
2212 nfs4_unlock_state();
2213 return status;
2214}
2215
2216
b37ad28b 2217__be32
b591480b
BF
2218nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2219 struct nfsd4_compound_state *cstate,
2220 struct nfsd4_setclientid_confirm *setclientid_confirm)
1da177e4 2221{
21ab45a4 2222 struct nfs4_client *conf, *unconf;
1da177e4
LT
2223 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2224 clientid_t * clid = &setclientid_confirm->sc_clientid;
b37ad28b 2225 __be32 status;
1da177e4
LT
2226
2227 if (STALE_CLIENTID(clid))
2228 return nfserr_stale_clientid;
1da177e4 2229 nfs4_lock_state();
21ab45a4
N
2230
2231 conf = find_confirmed_client(clid);
2232 unconf = find_unconfirmed_client(clid);
a186e767 2233 /*
8695b90a
BF
2234 * We try hard to give out unique clientid's, so if we get an
2235 * attempt to confirm the same clientid with a different cred,
2236 * there's a bug somewhere. Let's charitably assume it's our
2237 * bug.
a186e767 2238 */
8695b90a
BF
2239 status = nfserr_serverfault;
2240 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
2241 goto out;
2242 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
2243 goto out;
63db4632 2244 /* cases below refer to rfc 3530 section 14.2.34: */
90d700b7
BF
2245 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
2246 if (conf && !unconf) /* case 2: probable retransmit */
1da177e4 2247 status = nfs_ok;
90d700b7
BF
2248 else /* case 4: client hasn't noticed we rebooted yet? */
2249 status = nfserr_stale_clientid;
2250 goto out;
2251 }
2252 status = nfs_ok;
2253 if (conf) { /* case 1: callback update */
8695b90a
BF
2254 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2255 nfsd4_probe_callback(conf);
2256 expire_client(unconf);
90d700b7 2257 } else { /* case 3: normal case; new or rebooted client */
8695b90a 2258 unsigned int hash = clientstr_hashval(unconf->cl_recdir);
1a69c179 2259
8695b90a
BF
2260 conf = find_confirmed_client_by_str(unconf->cl_recdir, hash);
2261 if (conf) {
2262 nfsd4_client_record_remove(conf);
2263 expire_client(conf);
1da177e4 2264 }
8695b90a 2265 move_to_confirmed(unconf);
f3d03b92 2266 nfsd4_probe_callback(unconf);
08e8987c 2267 }
1da177e4 2268out:
1da177e4
LT
2269 nfs4_unlock_state();
2270 return status;
2271}
2272
32513b40
BF
2273static struct nfs4_file *nfsd4_alloc_file(void)
2274{
2275 return kmem_cache_alloc(file_slab, GFP_KERNEL);
2276}
2277
1da177e4 2278/* OPEN Share state helper functions */
32513b40 2279static void nfsd4_init_file(struct nfs4_file *fp, struct inode *ino)
1da177e4 2280{
1da177e4
LT
2281 unsigned int hashval = file_hashval(ino);
2282
32513b40
BF
2283 atomic_set(&fp->fi_ref, 1);
2284 INIT_LIST_HEAD(&fp->fi_hash);
2285 INIT_LIST_HEAD(&fp->fi_stateids);
2286 INIT_LIST_HEAD(&fp->fi_delegations);
2287 fp->fi_inode = igrab(ino);
2288 fp->fi_had_conflict = false;
2289 fp->fi_lease = NULL;
2290 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2291 memset(fp->fi_access, 0, sizeof(fp->fi_access));
2292 spin_lock(&recall_lock);
2293 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
2294 spin_unlock(&recall_lock);
1da177e4
LT
2295}
2296
e60d4398 2297static void
e18b890b 2298nfsd4_free_slab(struct kmem_cache **slab)
1da177e4 2299{
e60d4398
N
2300 if (*slab == NULL)
2301 return;
1a1d92c1 2302 kmem_cache_destroy(*slab);
e60d4398 2303 *slab = NULL;
1da177e4
LT
2304}
2305
e8ff2a84 2306void
1da177e4
LT
2307nfsd4_free_slabs(void)
2308{
fe0750e5
BF
2309 nfsd4_free_slab(&openowner_slab);
2310 nfsd4_free_slab(&lockowner_slab);
e60d4398 2311 nfsd4_free_slab(&file_slab);
5ac049ac 2312 nfsd4_free_slab(&stateid_slab);
5b2d21c1 2313 nfsd4_free_slab(&deleg_slab);
e60d4398 2314}
1da177e4 2315
72083396 2316int
e60d4398
N
2317nfsd4_init_slabs(void)
2318{
fe0750e5
BF
2319 openowner_slab = kmem_cache_create("nfsd4_openowners",
2320 sizeof(struct nfs4_openowner), 0, 0, NULL);
2321 if (openowner_slab == NULL)
2322 goto out_nomem;
2323 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
2324 sizeof(struct nfs4_openowner), 0, 0, NULL);
2325 if (lockowner_slab == NULL)
e60d4398
N
2326 goto out_nomem;
2327 file_slab = kmem_cache_create("nfsd4_files",
20c2df83 2328 sizeof(struct nfs4_file), 0, 0, NULL);
e60d4398
N
2329 if (file_slab == NULL)
2330 goto out_nomem;
5ac049ac 2331 stateid_slab = kmem_cache_create("nfsd4_stateids",
dcef0413 2332 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
5ac049ac
N
2333 if (stateid_slab == NULL)
2334 goto out_nomem;
5b2d21c1 2335 deleg_slab = kmem_cache_create("nfsd4_delegations",
20c2df83 2336 sizeof(struct nfs4_delegation), 0, 0, NULL);
5b2d21c1
N
2337 if (deleg_slab == NULL)
2338 goto out_nomem;
e60d4398
N
2339 return 0;
2340out_nomem:
2341 nfsd4_free_slabs();
2342 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2343 return -ENOMEM;
1da177e4
LT
2344}
2345
fe0750e5
BF
2346void nfs4_free_openowner(struct nfs4_openowner *oo)
2347{
2348 kfree(oo->oo_owner.so_owner.data);
2349 kmem_cache_free(openowner_slab, oo);
2350}
2351
2352void nfs4_free_lockowner(struct nfs4_lockowner *lo)
1da177e4 2353{
fe0750e5
BF
2354 kfree(lo->lo_owner.so_owner.data);
2355 kmem_cache_free(lockowner_slab, lo);
1da177e4
LT
2356}
2357
ff194bd9 2358static void init_nfs4_replay(struct nfs4_replay *rp)
1da177e4 2359{
ff194bd9
BF
2360 rp->rp_status = nfserr_serverfault;
2361 rp->rp_buflen = 0;
2362 rp->rp_buf = rp->rp_ibuf;
1da177e4
LT
2363}
2364
fe0750e5 2365static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
ff194bd9 2366{
1da177e4 2367 struct nfs4_stateowner *sop;
1da177e4 2368
fe0750e5 2369 sop = kmem_cache_alloc(slab, GFP_KERNEL);
ff194bd9
BF
2370 if (!sop)
2371 return NULL;
2372
2373 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2374 if (!sop->so_owner.data) {
fe0750e5 2375 kmem_cache_free(slab, sop);
1da177e4 2376 return NULL;
ff194bd9
BF
2377 }
2378 sop->so_owner.len = owner->len;
2379
ea1da636 2380 INIT_LIST_HEAD(&sop->so_stateids);
ff194bd9
BF
2381 sop->so_client = clp;
2382 init_nfs4_replay(&sop->so_replay);
2383 return sop;
2384}
2385
fe0750e5 2386static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
ff194bd9 2387{
16bfdaaf 2388 list_add(&oo->oo_owner.so_strhash, &ownerstr_hashtbl[strhashval]);
fe0750e5 2389 list_add(&oo->oo_perclient, &clp->cl_openowners);
ff194bd9
BF
2390}
2391
fe0750e5 2392static struct nfs4_openowner *
ff194bd9 2393alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
fe0750e5 2394 struct nfs4_openowner *oo;
ff194bd9 2395
fe0750e5
BF
2396 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
2397 if (!oo)
ff194bd9 2398 return NULL;
fe0750e5
BF
2399 oo->oo_owner.so_is_open_owner = 1;
2400 oo->oo_owner.so_seqid = open->op_seqid;
d29b20cd 2401 oo->oo_flags = NFS4_OO_NEW;
fe0750e5 2402 oo->oo_time = 0;
38c387b5 2403 oo->oo_last_closed_stid = NULL;
fe0750e5
BF
2404 INIT_LIST_HEAD(&oo->oo_close_lru);
2405 hash_openowner(oo, clp, strhashval);
2406 return oo;
1da177e4
LT
2407}
2408
996e0938 2409static void init_open_stateid(struct nfs4_ol_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
fe0750e5 2410 struct nfs4_openowner *oo = open->op_openowner;
d3b313a4 2411 struct nfs4_client *clp = oo->oo_owner.so_client;
1da177e4 2412
996e0938 2413 init_stid(&stp->st_stid, clp, NFS4_OPEN_STID);
ea1da636 2414 INIT_LIST_HEAD(&stp->st_lockowners);
fe0750e5 2415 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
8beefa24 2416 list_add(&stp->st_perfile, &fp->fi_stateids);
fe0750e5 2417 stp->st_stateowner = &oo->oo_owner;
13cd2184 2418 get_nfs4_file(fp);
1da177e4 2419 stp->st_file = fp;
1da177e4
LT
2420 stp->st_access_bmap = 0;
2421 stp->st_deny_bmap = 0;
82c5ff1b 2422 set_access(open->op_share_access, stp);
ce0fc43c 2423 set_deny(open->op_share_deny, stp);
4c4cd222 2424 stp->st_openstp = NULL;
1da177e4
LT
2425}
2426
fd39ca9a 2427static void
fe0750e5 2428move_to_close_lru(struct nfs4_openowner *oo)
1da177e4 2429{
fe0750e5 2430 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
1da177e4 2431
fe0750e5
BF
2432 list_move_tail(&oo->oo_close_lru, &close_lru);
2433 oo->oo_time = get_seconds();
1da177e4
LT
2434}
2435
1da177e4 2436static int
599e0a22
BF
2437same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
2438 clientid_t *clid)
2439{
2440 return (sop->so_owner.len == owner->len) &&
2441 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
2442 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
1da177e4
LT
2443}
2444
fe0750e5 2445static struct nfs4_openowner *
1da177e4
LT
2446find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
2447{
a50d2ad1
BF
2448 struct nfs4_stateowner *so;
2449 struct nfs4_openowner *oo;
1da177e4 2450
16bfdaaf
BF
2451 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
2452 if (!so->so_is_open_owner)
2453 continue;
a50d2ad1
BF
2454 if (same_owner_str(so, &open->op_owner, &open->op_clientid)) {
2455 oo = openowner(so);
2456 renew_client(oo->oo_owner.so_client);
2457 return oo;
2458 }
1da177e4
LT
2459 }
2460 return NULL;
2461}
2462
2463/* search file_hashtbl[] for file */
2464static struct nfs4_file *
2465find_file(struct inode *ino)
2466{
2467 unsigned int hashval = file_hashval(ino);
2468 struct nfs4_file *fp;
2469
8b671b80 2470 spin_lock(&recall_lock);
1da177e4 2471 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
13cd2184
N
2472 if (fp->fi_inode == ino) {
2473 get_nfs4_file(fp);
8b671b80 2474 spin_unlock(&recall_lock);
1da177e4 2475 return fp;
13cd2184 2476 }
1da177e4 2477 }
8b671b80 2478 spin_unlock(&recall_lock);
1da177e4
LT
2479 return NULL;
2480}
2481
1da177e4
LT
2482/*
2483 * Called to check deny when READ with all zero stateid or
2484 * WRITE with all zero or all one stateid
2485 */
b37ad28b 2486static __be32
1da177e4
LT
2487nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2488{
2489 struct inode *ino = current_fh->fh_dentry->d_inode;
2490 struct nfs4_file *fp;
dcef0413 2491 struct nfs4_ol_stateid *stp;
b37ad28b 2492 __be32 ret;
1da177e4
LT
2493
2494 dprintk("NFSD: nfs4_share_conflict\n");
2495
2496 fp = find_file(ino);
13cd2184
N
2497 if (!fp)
2498 return nfs_ok;
b700949b 2499 ret = nfserr_locked;
1da177e4 2500 /* Search for conflicting share reservations */
13cd2184 2501 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
ce0fc43c
JL
2502 if (test_deny(deny_type, stp) ||
2503 test_deny(NFS4_SHARE_DENY_BOTH, stp))
13cd2184 2504 goto out;
1da177e4 2505 }
13cd2184
N
2506 ret = nfs_ok;
2507out:
2508 put_nfs4_file(fp);
2509 return ret;
1da177e4
LT
2510}
2511
6b57d9c8 2512static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
1da177e4 2513{
1da177e4
LT
2514 /* We're assuming the state code never drops its reference
2515 * without first removing the lease. Since we're in this lease
2516 * callback (and since the lease code is serialized by the kernel
2517 * lock) we know the server hasn't removed the lease yet, we know
2518 * it's safe to take a reference: */
2519 atomic_inc(&dp->dl_count);
2520
1da177e4 2521 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
1da177e4 2522
460781b5 2523 /* only place dl_time is set. protected by lock_flocks*/
1da177e4
LT
2524 dp->dl_time = get_seconds();
2525
6b57d9c8
BF
2526 nfsd4_cb_recall(dp);
2527}
2528
acfdf5c3 2529/* Called from break_lease() with lock_flocks() held. */
6b57d9c8
BF
2530static void nfsd_break_deleg_cb(struct file_lock *fl)
2531{
acfdf5c3
BF
2532 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
2533 struct nfs4_delegation *dp;
6b57d9c8 2534
acfdf5c3
BF
2535 BUG_ON(!fp);
2536 /* We assume break_lease is only called once per lease: */
2537 BUG_ON(fp->fi_had_conflict);
0272e1fd
BF
2538 /*
2539 * We don't want the locks code to timeout the lease for us;
acfdf5c3 2540 * we'll remove it ourself if a delegation isn't returned
6b57d9c8 2541 * in time:
0272e1fd
BF
2542 */
2543 fl->fl_break_time = 0;
1da177e4 2544
5d926e8c 2545 spin_lock(&recall_lock);
acfdf5c3
BF
2546 fp->fi_had_conflict = true;
2547 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2548 nfsd_break_one_deleg(dp);
5d926e8c 2549 spin_unlock(&recall_lock);
1da177e4
LT
2550}
2551
1da177e4
LT
2552static
2553int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2554{
2555 if (arg & F_UNLCK)
2556 return lease_modify(onlist, arg);
2557 else
2558 return -EAGAIN;
2559}
2560
7b021967 2561static const struct lock_manager_operations nfsd_lease_mng_ops = {
8fb47a4f
BF
2562 .lm_break = nfsd_break_deleg_cb,
2563 .lm_change = nfsd_change_deleg_cb,
1da177e4
LT
2564};
2565
7a8711c9
BF
2566static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
2567{
2568 if (nfsd4_has_session(cstate))
2569 return nfs_ok;
2570 if (seqid == so->so_seqid - 1)
2571 return nfserr_replay_me;
2572 if (seqid == so->so_seqid)
2573 return nfs_ok;
2574 return nfserr_bad_seqid;
2575}
1da177e4 2576
b37ad28b 2577__be32
6668958f
AA
2578nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2579 struct nfsd4_open *open)
1da177e4 2580{
1da177e4
LT
2581 clientid_t *clientid = &open->op_clientid;
2582 struct nfs4_client *clp = NULL;
2583 unsigned int strhashval;
fe0750e5 2584 struct nfs4_openowner *oo = NULL;
4cdc951b 2585 __be32 status;
1da177e4 2586
1da177e4
LT
2587 if (STALE_CLIENTID(&open->op_clientid))
2588 return nfserr_stale_clientid;
32513b40
BF
2589 /*
2590 * In case we need it later, after we've already created the
2591 * file and don't want to risk a further failure:
2592 */
2593 open->op_file = nfsd4_alloc_file();
2594 if (open->op_file == NULL)
2595 return nfserr_jukebox;
1da177e4 2596
16bfdaaf 2597 strhashval = ownerstr_hashval(clientid->cl_id, &open->op_owner);
fe0750e5
BF
2598 oo = find_openstateowner_str(strhashval, open);
2599 open->op_openowner = oo;
2600 if (!oo) {
1da177e4
LT
2601 clp = find_confirmed_client(clientid);
2602 if (clp == NULL)
0f442aa2 2603 return nfserr_expired;
bcf130f9 2604 goto new_owner;
1da177e4 2605 }
dad1c067 2606 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
0f442aa2 2607 /* Replace unconfirmed owners without checking for replay. */
fe0750e5
BF
2608 clp = oo->oo_owner.so_client;
2609 release_openowner(oo);
2610 open->op_openowner = NULL;
bcf130f9 2611 goto new_owner;
0f442aa2 2612 }
4cdc951b
BF
2613 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
2614 if (status)
2615 return status;
2616 clp = oo->oo_owner.so_client;
2617 goto alloc_stateid;
bcf130f9
BF
2618new_owner:
2619 oo = alloc_init_open_stateowner(strhashval, clp, open);
2620 if (oo == NULL)
2621 return nfserr_jukebox;
2622 open->op_openowner = oo;
4cdc951b
BF
2623alloc_stateid:
2624 open->op_stp = nfs4_alloc_stateid(clp);
2625 if (!open->op_stp)
2626 return nfserr_jukebox;
0f442aa2 2627 return nfs_ok;
1da177e4
LT
2628}
2629
b37ad28b 2630static inline __be32
4a6e43e6
N
2631nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2632{
2633 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2634 return nfserr_openmode;
2635 else
2636 return nfs_ok;
2637}
2638
f459e453 2639static int share_access_to_flags(u32 share_access)
52f4fb43 2640{
f459e453 2641 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
52f4fb43
N
2642}
2643
38c2f4b1 2644static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
24a0111e 2645{
f459e453 2646 struct nfs4_stid *ret;
24a0111e 2647
38c2f4b1 2648 ret = find_stateid_by_type(cl, s, NFS4_DELEG_STID);
f459e453
BF
2649 if (!ret)
2650 return NULL;
2651 return delegstateid(ret);
24a0111e
BF
2652}
2653
8b289b2c
BF
2654static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
2655{
2656 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
2657 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
2658}
2659
b37ad28b 2660static __be32
38c2f4b1 2661nfs4_check_deleg(struct nfs4_client *cl, struct nfs4_file *fp, struct nfsd4_open *open,
567d9829
N
2662 struct nfs4_delegation **dp)
2663{
2664 int flags;
b37ad28b 2665 __be32 status = nfserr_bad_stateid;
567d9829 2666
38c2f4b1 2667 *dp = find_deleg_stateid(cl, &open->op_delegate_stateid);
567d9829 2668 if (*dp == NULL)
c44c5eeb 2669 goto out;
24a0111e 2670 flags = share_access_to_flags(open->op_share_access);
567d9829
N
2671 status = nfs4_check_delegmode(*dp, flags);
2672 if (status)
2673 *dp = NULL;
c44c5eeb 2674out:
8b289b2c 2675 if (!nfsd4_is_deleg_cur(open))
c44c5eeb
N
2676 return nfs_ok;
2677 if (status)
2678 return status;
dad1c067 2679 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
c44c5eeb 2680 return nfs_ok;
567d9829
N
2681}
2682
b37ad28b 2683static __be32
dcef0413 2684nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_ol_stateid **stpp)
1da177e4 2685{
dcef0413 2686 struct nfs4_ol_stateid *local;
fe0750e5 2687 struct nfs4_openowner *oo = open->op_openowner;
1da177e4 2688
8beefa24 2689 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
1da177e4
LT
2690 /* ignore lock owners */
2691 if (local->st_stateowner->so_is_open_owner == 0)
2692 continue;
2693 /* remember if we have seen this open owner */
fe0750e5 2694 if (local->st_stateowner == &oo->oo_owner)
1da177e4
LT
2695 *stpp = local;
2696 /* check for conflicting share reservations */
2697 if (!test_share(local, open))
77eaae8d 2698 return nfserr_share_denied;
1da177e4 2699 }
77eaae8d 2700 return nfs_ok;
1da177e4
LT
2701}
2702
996e0938
BF
2703static void nfs4_free_stateid(struct nfs4_ol_stateid *s)
2704{
2705 kmem_cache_free(stateid_slab, s);
5ac049ac
N
2706}
2707
21fb4016
BF
2708static inline int nfs4_access_to_access(u32 nfs4_access)
2709{
2710 int flags = 0;
2711
2712 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
2713 flags |= NFSD_MAY_READ;
2714 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
2715 flags |= NFSD_MAY_WRITE;
2716 return flags;
2717}
2718
0c12eaff
CB
2719static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
2720 struct svc_fh *cur_fh, struct nfsd4_open *open)
f9d7562f
BF
2721{
2722 __be32 status;
0c12eaff
CB
2723 int oflag = nfs4_access_to_omode(open->op_share_access);
2724 int access = nfs4_access_to_access(open->op_share_access);
2725
f9d7562f
BF
2726 if (!fp->fi_fds[oflag]) {
2727 status = nfsd_open(rqstp, cur_fh, S_IFREG, access,
2728 &fp->fi_fds[oflag]);
f9d7562f
BF
2729 if (status)
2730 return status;
2731 }
2732 nfs4_file_get_access(fp, oflag);
2733
2734 return nfs_ok;
2735}
2736
b37ad28b 2737static inline __be32
1da177e4
LT
2738nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2739 struct nfsd4_open *open)
2740{
2741 struct iattr iattr = {
2742 .ia_valid = ATTR_SIZE,
2743 .ia_size = 0,
2744 };
2745 if (!open->op_truncate)
2746 return 0;
2747 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
9246585a 2748 return nfserr_inval;
1da177e4
LT
2749 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2750}
2751
b37ad28b 2752static __be32
dcef0413 2753nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp, struct nfsd4_open *open)
1da177e4 2754{
b6d2f1ca 2755 u32 op_share_access = open->op_share_access;
7d947842 2756 bool new_access;
b37ad28b 2757 __be32 status;
1da177e4 2758
82c5ff1b 2759 new_access = !test_access(op_share_access, stp);
f9d7562f 2760 if (new_access) {
0c12eaff 2761 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
f9d7562f
BF
2762 if (status)
2763 return status;
6c26d08f 2764 }
1da177e4
LT
2765 status = nfsd4_truncate(rqstp, cur_fh, open);
2766 if (status) {
f9d7562f 2767 if (new_access) {
f197c271 2768 int oflag = nfs4_access_to_omode(op_share_access);
f9d7562f
BF
2769 nfs4_file_put_access(fp, oflag);
2770 }
1da177e4
LT
2771 return status;
2772 }
2773 /* remember the open */
82c5ff1b 2774 set_access(op_share_access, stp);
ce0fc43c 2775 set_deny(open->op_share_deny, stp);
1da177e4
LT
2776
2777 return nfs_ok;
2778}
2779
2780
1da177e4 2781static void
1255a8f3 2782nfs4_set_claim_prev(struct nfsd4_open *open, bool has_session)
1da177e4 2783{
dad1c067 2784 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
1da177e4
LT
2785}
2786
14a24e99
BF
2787/* Should we give out recallable state?: */
2788static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
2789{
2790 if (clp->cl_cb_state == NFSD4_CB_UP)
2791 return true;
2792 /*
2793 * In the sessions case, since we don't have to establish a
2794 * separate connection for callbacks, we assume it's OK
2795 * until we hear otherwise:
2796 */
2797 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
2798}
2799
22d38c4c
BF
2800static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag)
2801{
2802 struct file_lock *fl;
2803
2804 fl = locks_alloc_lock();
2805 if (!fl)
2806 return NULL;
2807 locks_init_lock(fl);
2808 fl->fl_lmops = &nfsd_lease_mng_ops;
2809 fl->fl_flags = FL_LEASE;
2810 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
2811 fl->fl_end = OFFSET_MAX;
acfdf5c3 2812 fl->fl_owner = (fl_owner_t)(dp->dl_file);
22d38c4c 2813 fl->fl_pid = current->tgid;
22d38c4c
BF
2814 return fl;
2815}
2816
edab9782
BF
2817static int nfs4_setlease(struct nfs4_delegation *dp, int flag)
2818{
acfdf5c3 2819 struct nfs4_file *fp = dp->dl_file;
edab9782
BF
2820 struct file_lock *fl;
2821 int status;
2822
2823 fl = nfs4_alloc_init_lease(dp, flag);
2824 if (!fl)
2825 return -ENOMEM;
acfdf5c3 2826 fl->fl_file = find_readable_file(fp);
2a74aba7 2827 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
acfdf5c3 2828 status = vfs_setlease(fl->fl_file, fl->fl_type, &fl);
edab9782 2829 if (status) {
acfdf5c3 2830 list_del_init(&dp->dl_perclnt);
edab9782
BF
2831 locks_free_lock(fl);
2832 return -ENOMEM;
2833 }
acfdf5c3
BF
2834 fp->fi_lease = fl;
2835 fp->fi_deleg_file = fl->fl_file;
2836 get_file(fp->fi_deleg_file);
2837 atomic_set(&fp->fi_delegees, 1);
2838 list_add(&dp->dl_perfile, &fp->fi_delegations);
2839 return 0;
2840}
2841
2842static int nfs4_set_delegation(struct nfs4_delegation *dp, int flag)
2843{
2844 struct nfs4_file *fp = dp->dl_file;
2845
2846 if (!fp->fi_lease)
2847 return nfs4_setlease(dp, flag);
2848 spin_lock(&recall_lock);
2849 if (fp->fi_had_conflict) {
2850 spin_unlock(&recall_lock);
2851 return -EAGAIN;
2852 }
2853 atomic_inc(&fp->fi_delegees);
2854 list_add(&dp->dl_perfile, &fp->fi_delegations);
2855 spin_unlock(&recall_lock);
2a74aba7 2856 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
edab9782
BF
2857 return 0;
2858}
2859
4aa8913c
BH
2860static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
2861{
2862 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
2863 if (status == -EAGAIN)
2864 open->op_why_no_deleg = WND4_CONTENTION;
2865 else {
2866 open->op_why_no_deleg = WND4_RESOURCE;
2867 switch (open->op_deleg_want) {
2868 case NFS4_SHARE_WANT_READ_DELEG:
2869 case NFS4_SHARE_WANT_WRITE_DELEG:
2870 case NFS4_SHARE_WANT_ANY_DELEG:
2871 break;
2872 case NFS4_SHARE_WANT_CANCEL:
2873 open->op_why_no_deleg = WND4_CANCELLED;
2874 break;
2875 case NFS4_SHARE_WANT_NO_DELEG:
2876 BUG(); /* not supposed to get here */
2877 }
2878 }
2879}
2880
1da177e4
LT
2881/*
2882 * Attempt to hand out a delegation.
2883 */
2884static void
dcef0413 2885nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_ol_stateid *stp)
1da177e4
LT
2886{
2887 struct nfs4_delegation *dp;
fe0750e5 2888 struct nfs4_openowner *oo = container_of(stp->st_stateowner, struct nfs4_openowner, oo_owner);
14a24e99 2889 int cb_up;
d24433cd 2890 int status = 0, flag = 0;
1da177e4 2891
fe0750e5 2892 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
1da177e4 2893 flag = NFS4_OPEN_DELEGATE_NONE;
7b190fec
N
2894 open->op_recall = 0;
2895 switch (open->op_claim_type) {
2896 case NFS4_OPEN_CLAIM_PREVIOUS:
2bf23875 2897 if (!cb_up)
7b190fec
N
2898 open->op_recall = 1;
2899 flag = open->op_delegate_type;
2900 if (flag == NFS4_OPEN_DELEGATE_NONE)
2901 goto out;
2902 break;
2903 case NFS4_OPEN_CLAIM_NULL:
2904 /* Let's not give out any delegations till everyone's
2905 * had the chance to reclaim theirs.... */
af558e33 2906 if (locks_in_grace())
7b190fec 2907 goto out;
dad1c067 2908 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
7b190fec
N
2909 goto out;
2910 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2911 flag = NFS4_OPEN_DELEGATE_WRITE;
2912 else
2913 flag = NFS4_OPEN_DELEGATE_READ;
2914 break;
2915 default:
2916 goto out;
2917 }
1da177e4 2918
fe0750e5 2919 dp = alloc_init_deleg(oo->oo_owner.so_client, stp, fh, flag);
dd239cc0
BF
2920 if (dp == NULL)
2921 goto out_no_deleg;
acfdf5c3 2922 status = nfs4_set_delegation(dp, flag);
edab9782 2923 if (status)
dd239cc0 2924 goto out_free;
1da177e4 2925
d5477a8d 2926 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
1da177e4 2927
8c10cbdb 2928 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
d5477a8d 2929 STATEID_VAL(&dp->dl_stid.sc_stateid));
1da177e4
LT
2930out:
2931 open->op_delegate_type = flag;
d24433cd
BH
2932 if (flag == NFS4_OPEN_DELEGATE_NONE) {
2933 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
2934 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
2935 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
2936
4aa8913c
BH
2937 /* 4.1 client asking for a delegation? */
2938 if (open->op_deleg_want)
2939 nfsd4_open_deleg_none_ext(open, status);
d24433cd 2940 }
dd239cc0
BF
2941 return;
2942out_free:
acfdf5c3 2943 nfs4_put_delegation(dp);
dd239cc0
BF
2944out_no_deleg:
2945 flag = NFS4_OPEN_DELEGATE_NONE;
2946 goto out;
1da177e4
LT
2947}
2948
e27f49c3
BH
2949static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
2950 struct nfs4_delegation *dp)
2951{
2952 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
2953 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
2954 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
2955 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
2956 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
2957 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
2958 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
2959 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
2960 }
2961 /* Otherwise the client must be confused wanting a delegation
2962 * it already has, therefore we don't return
2963 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
2964 */
2965}
2966
1da177e4
LT
2967/*
2968 * called with nfs4_lock_state() held.
2969 */
b37ad28b 2970__be32
1da177e4
LT
2971nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2972{
6668958f 2973 struct nfsd4_compoundres *resp = rqstp->rq_resp;
38c2f4b1 2974 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
1da177e4
LT
2975 struct nfs4_file *fp = NULL;
2976 struct inode *ino = current_fh->fh_dentry->d_inode;
dcef0413 2977 struct nfs4_ol_stateid *stp = NULL;
567d9829 2978 struct nfs4_delegation *dp = NULL;
b37ad28b 2979 __be32 status;
1da177e4 2980
1da177e4
LT
2981 /*
2982 * Lookup file; if found, lookup stateid and check open request,
2983 * and check for delegations in the process of being recalled.
2984 * If not found, create the nfs4_file struct
2985 */
2986 fp = find_file(ino);
2987 if (fp) {
2988 if ((status = nfs4_check_open(fp, open, &stp)))
2989 goto out;
38c2f4b1 2990 status = nfs4_check_deleg(cl, fp, open, &dp);
c44c5eeb
N
2991 if (status)
2992 goto out;
1da177e4 2993 } else {
c44c5eeb 2994 status = nfserr_bad_stateid;
8b289b2c 2995 if (nfsd4_is_deleg_cur(open))
c44c5eeb 2996 goto out;
3e772463 2997 status = nfserr_jukebox;
32513b40
BF
2998 fp = open->op_file;
2999 open->op_file = NULL;
3000 nfsd4_init_file(fp, ino);
1da177e4
LT
3001 }
3002
3003 /*
3004 * OPEN the file, or upgrade an existing OPEN.
3005 * If truncate fails, the OPEN fails.
3006 */
3007 if (stp) {
3008 /* Stateid was found, this is an OPEN upgrade */
f9d7562f 3009 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
1da177e4
LT
3010 if (status)
3011 goto out;
3012 } else {
4cdc951b 3013 status = nfs4_get_vfs_file(rqstp, fp, current_fh, open);
4af82504
BF
3014 if (status)
3015 goto out;
3016 status = nfsd4_truncate(rqstp, current_fh, open);
567d9829 3017 if (status)
1da177e4 3018 goto out;
4cdc951b
BF
3019 stp = open->op_stp;
3020 open->op_stp = NULL;
996e0938 3021 init_open_stateid(stp, fp, open);
1da177e4 3022 }
dcef0413
BF
3023 update_stateid(&stp->st_stid.sc_stateid);
3024 memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4 3025
d24433cd 3026 if (nfsd4_has_session(&resp->cstate)) {
dad1c067 3027 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
6668958f 3028
d24433cd
BH
3029 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
3030 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3031 open->op_why_no_deleg = WND4_NOT_WANTED;
3032 goto nodeleg;
3033 }
3034 }
3035
1da177e4
LT
3036 /*
3037 * Attempt to hand out a delegation. No error return, because the
3038 * OPEN succeeds even if we fail.
3039 */
3040 nfs4_open_delegation(current_fh, open, stp);
d24433cd 3041nodeleg:
1da177e4
LT
3042 status = nfs_ok;
3043
8c10cbdb 3044 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
dcef0413 3045 STATEID_VAL(&stp->st_stid.sc_stateid));
1da177e4 3046out:
d24433cd
BH
3047 /* 4.1 client trying to upgrade/downgrade delegation? */
3048 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
e27f49c3
BH
3049 open->op_deleg_want)
3050 nfsd4_deleg_xgrade_none_ext(open, dp);
d24433cd 3051
13cd2184
N
3052 if (fp)
3053 put_nfs4_file(fp);
37515177 3054 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1255a8f3 3055 nfs4_set_claim_prev(open, nfsd4_has_session(&resp->cstate));
1da177e4
LT
3056 /*
3057 * To finish the open response, we just need to set the rflags.
3058 */
3059 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
dad1c067 3060 if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED) &&
6668958f 3061 !nfsd4_has_session(&resp->cstate))
1da177e4
LT
3062 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
3063
3064 return status;
3065}
3066
d29b20cd
BF
3067void nfsd4_cleanup_open_state(struct nfsd4_open *open, __be32 status)
3068{
3069 if (open->op_openowner) {
3070 struct nfs4_openowner *oo = open->op_openowner;
3071
3072 if (!list_empty(&oo->oo_owner.so_stateids))
3073 list_del_init(&oo->oo_close_lru);
3074 if (oo->oo_flags & NFS4_OO_NEW) {
3075 if (status) {
3076 release_openowner(oo);
3077 open->op_openowner = NULL;
3078 } else
3079 oo->oo_flags &= ~NFS4_OO_NEW;
3080 }
3081 }
32513b40
BF
3082 if (open->op_file)
3083 nfsd4_free_file(open->op_file);
4cdc951b
BF
3084 if (open->op_stp)
3085 nfs4_free_stateid(open->op_stp);
d29b20cd
BF
3086}
3087
b37ad28b 3088__be32
b591480b
BF
3089nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3090 clientid_t *clid)
1da177e4
LT
3091{
3092 struct nfs4_client *clp;
b37ad28b 3093 __be32 status;
1da177e4
LT
3094
3095 nfs4_lock_state();
3096 dprintk("process_renew(%08x/%08x): starting\n",
3097 clid->cl_boot, clid->cl_id);
3098 status = nfserr_stale_clientid;
3099 if (STALE_CLIENTID(clid))
3100 goto out;
3101 clp = find_confirmed_client(clid);
3102 status = nfserr_expired;
3103 if (clp == NULL) {
3104 /* We assume the client took too long to RENEW. */
3105 dprintk("nfsd4_renew: clientid not found!\n");
3106 goto out;
3107 }
1da177e4 3108 status = nfserr_cb_path_down;
ea1da636 3109 if (!list_empty(&clp->cl_delegations)
77a3569d 3110 && clp->cl_cb_state != NFSD4_CB_UP)
1da177e4
LT
3111 goto out;
3112 status = nfs_ok;
3113out:
3114 nfs4_unlock_state();
3115 return status;
3116}
3117
c47d832b 3118static struct lock_manager nfsd4_manager = {
af558e33
BF
3119};
3120
33dcc481
JL
3121static bool grace_ended;
3122
a76b4319 3123static void
af558e33 3124nfsd4_end_grace(void)
a76b4319 3125{
33dcc481
JL
3126 /* do nothing if grace period already ended */
3127 if (grace_ended)
3128 return;
3129
a76b4319 3130 dprintk("NFSD: end of grace period\n");
33dcc481 3131 grace_ended = true;
2a4317c5 3132 nfsd4_record_grace_done(&init_net, boot_time);
af558e33 3133 locks_end_grace(&nfsd4_manager);
e46b498c
BF
3134 /*
3135 * Now that every NFSv4 client has had the chance to recover and
3136 * to see the (possibly new, possibly shorter) lease time, we
3137 * can safely set the next grace time to the current lease time:
3138 */
3139 nfsd4_grace = nfsd4_lease;
a76b4319
N
3140}
3141
fd39ca9a 3142static time_t
1da177e4
LT
3143nfs4_laundromat(void)
3144{
3145 struct nfs4_client *clp;
fe0750e5 3146 struct nfs4_openowner *oo;
1da177e4
LT
3147 struct nfs4_delegation *dp;
3148 struct list_head *pos, *next, reaplist;
cf07d2ea
BF
3149 time_t cutoff = get_seconds() - nfsd4_lease;
3150 time_t t, clientid_val = nfsd4_lease;
3151 time_t u, test_val = nfsd4_lease;
1da177e4
LT
3152
3153 nfs4_lock_state();
3154
3155 dprintk("NFSD: laundromat service - starting\n");
33dcc481 3156 nfsd4_end_grace();
36acb66b
BH
3157 INIT_LIST_HEAD(&reaplist);
3158 spin_lock(&client_lock);
1da177e4
LT
3159 list_for_each_safe(pos, next, &client_lru) {
3160 clp = list_entry(pos, struct nfs4_client, cl_lru);
3161 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3162 t = clp->cl_time - cutoff;
3163 if (clientid_val > t)
3164 clientid_val = t;
3165 break;
3166 }
d7682988
BH
3167 if (atomic_read(&clp->cl_refcount)) {
3168 dprintk("NFSD: client in use (clientid %08x)\n",
3169 clp->cl_clientid.cl_id);
3170 continue;
3171 }
3172 unhash_client_locked(clp);
3173 list_add(&clp->cl_lru, &reaplist);
36acb66b
BH
3174 }
3175 spin_unlock(&client_lock);
3176 list_for_each_safe(pos, next, &reaplist) {
3177 clp = list_entry(pos, struct nfs4_client, cl_lru);
1da177e4
LT
3178 dprintk("NFSD: purging unused client (clientid %08x)\n",
3179 clp->cl_clientid.cl_id);
2a4317c5 3180 nfsd4_client_record_remove(clp);
1da177e4
LT
3181 expire_client(clp);
3182 }
1da177e4
LT
3183 spin_lock(&recall_lock);
3184 list_for_each_safe(pos, next, &del_recall_lru) {
3185 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3186 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
3187 u = dp->dl_time - cutoff;
3188 if (test_val > u)
3189 test_val = u;
3190 break;
3191 }
1da177e4
LT
3192 list_move(&dp->dl_recall_lru, &reaplist);
3193 }
3194 spin_unlock(&recall_lock);
3195 list_for_each_safe(pos, next, &reaplist) {
3196 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1da177e4
LT
3197 unhash_delegation(dp);
3198 }
cf07d2ea 3199 test_val = nfsd4_lease;
1da177e4 3200 list_for_each_safe(pos, next, &close_lru) {
fe0750e5
BF
3201 oo = container_of(pos, struct nfs4_openowner, oo_close_lru);
3202 if (time_after((unsigned long)oo->oo_time, (unsigned long)cutoff)) {
3203 u = oo->oo_time - cutoff;
1da177e4
LT
3204 if (test_val > u)
3205 test_val = u;
3206 break;
3207 }
fe0750e5 3208 release_openowner(oo);
1da177e4
LT
3209 }
3210 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
3211 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
3212 nfs4_unlock_state();
3213 return clientid_val;
3214}
3215
a254b246
HH
3216static struct workqueue_struct *laundry_wq;
3217static void laundromat_main(struct work_struct *);
3218static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
3219
3220static void
c4028958 3221laundromat_main(struct work_struct *not_used)
1da177e4
LT
3222{
3223 time_t t;
3224
3225 t = nfs4_laundromat();
3226 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
58da282b 3227 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
1da177e4
LT
3228}
3229
f7a4d872 3230static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
1da177e4 3231{
f7a4d872
BF
3232 if (fhp->fh_dentry->d_inode != stp->st_file->fi_inode)
3233 return nfserr_bad_stateid;
3234 return nfs_ok;
1da177e4
LT
3235}
3236
3237static int
3238STALE_STATEID(stateid_t *stateid)
3239{
d3b313a4 3240 if (stateid->si_opaque.so_clid.cl_boot == boot_time)
e4e83ea4
BF
3241 return 0;
3242 dprintk("NFSD: stale stateid " STATEID_FMT "!\n",
8c10cbdb 3243 STATEID_VAL(stateid));
e4e83ea4 3244 return 1;
1da177e4
LT
3245}
3246
3247static inline int
82c5ff1b 3248access_permit_read(struct nfs4_ol_stateid *stp)
1da177e4 3249{
82c5ff1b
JL
3250 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
3251 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
3252 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
1da177e4
LT
3253}
3254
3255static inline int
82c5ff1b 3256access_permit_write(struct nfs4_ol_stateid *stp)
1da177e4 3257{
82c5ff1b
JL
3258 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
3259 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
1da177e4
LT
3260}
3261
3262static
dcef0413 3263__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
1da177e4 3264{
b37ad28b 3265 __be32 status = nfserr_openmode;
1da177e4 3266
02921914
BF
3267 /* For lock stateid's, we test the parent open, not the lock: */
3268 if (stp->st_openstp)
3269 stp = stp->st_openstp;
82c5ff1b 3270 if ((flags & WR_STATE) && !access_permit_write(stp))
1da177e4 3271 goto out;
82c5ff1b 3272 if ((flags & RD_STATE) && !access_permit_read(stp))
1da177e4
LT
3273 goto out;
3274 status = nfs_ok;
3275out:
3276 return status;
3277}
3278
b37ad28b 3279static inline __be32
1da177e4
LT
3280check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
3281{
203a8c8e 3282 if (ONE_STATEID(stateid) && (flags & RD_STATE))
1da177e4 3283 return nfs_ok;
af558e33 3284 else if (locks_in_grace()) {
25985edc 3285 /* Answer in remaining cases depends on existence of
1da177e4
LT
3286 * conflicting state; so we must wait out the grace period. */
3287 return nfserr_grace;
3288 } else if (flags & WR_STATE)
3289 return nfs4_share_conflict(current_fh,
3290 NFS4_SHARE_DENY_WRITE);
3291 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
3292 return nfs4_share_conflict(current_fh,
3293 NFS4_SHARE_DENY_READ);
3294}
3295
3296/*
3297 * Allow READ/WRITE during grace period on recovered state only for files
3298 * that are not able to provide mandatory locking.
3299 */
3300static inline int
18f82731 3301grace_disallows_io(struct inode *inode)
1da177e4 3302{
203a8c8e 3303 return locks_in_grace() && mandatory_lock(inode);
1da177e4
LT
3304}
3305
81b82965
BF
3306/* Returns true iff a is later than b: */
3307static bool stateid_generation_after(stateid_t *a, stateid_t *b)
3308{
3309 return (s32)a->si_generation - (s32)b->si_generation > 0;
3310}
3311
57b7b43b 3312static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
0836f587 3313{
6668958f
AA
3314 /*
3315 * When sessions are used the stateid generation number is ignored
3316 * when it is zero.
3317 */
28dde241 3318 if (has_session && in->si_generation == 0)
81b82965
BF
3319 return nfs_ok;
3320
3321 if (in->si_generation == ref->si_generation)
3322 return nfs_ok;
6668958f 3323
0836f587 3324 /* If the client sends us a stateid from the future, it's buggy: */
81b82965 3325 if (stateid_generation_after(in, ref))
0836f587
BF
3326 return nfserr_bad_stateid;
3327 /*
81b82965
BF
3328 * However, we could see a stateid from the past, even from a
3329 * non-buggy client. For example, if the client sends a lock
3330 * while some IO is outstanding, the lock may bump si_generation
3331 * while the IO is still in flight. The client could avoid that
3332 * situation by waiting for responses on all the IO requests,
3333 * but better performance may result in retrying IO that
3334 * receives an old_stateid error if requests are rarely
3335 * reordered in flight:
0836f587 3336 */
81b82965 3337 return nfserr_old_stateid;
0836f587
BF
3338}
3339
7df302f7 3340static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
17456804 3341{
97b7e3b6
BF
3342 struct nfs4_stid *s;
3343 struct nfs4_ol_stateid *ols;
3344 __be32 status;
17456804 3345
7df302f7
CL
3346 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3347 return nfserr_bad_stateid;
3348 /* Client debugging aid. */
3349 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
3350 char addr_str[INET6_ADDRSTRLEN];
3351 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
3352 sizeof(addr_str));
3353 pr_warn_ratelimited("NFSD: client %s testing state ID "
3354 "with incorrect client ID\n", addr_str);
3355 return nfserr_bad_stateid;
3356 }
38c2f4b1 3357 s = find_stateid(cl, stateid);
97b7e3b6 3358 if (!s)
7df302f7 3359 return nfserr_bad_stateid;
36279ac1 3360 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
17456804 3361 if (status)
97b7e3b6
BF
3362 return status;
3363 if (!(s->sc_type & (NFS4_OPEN_STID | NFS4_LOCK_STID)))
3364 return nfs_ok;
3365 ols = openlockstateid(s);
3366 if (ols->st_stateowner->so_is_open_owner
dad1c067 3367 && !(openowner(ols->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
97b7e3b6
BF
3368 return nfserr_bad_stateid;
3369 return nfs_ok;
17456804
BS
3370}
3371
38c2f4b1
BF
3372static __be32 nfsd4_lookup_stateid(stateid_t *stateid, unsigned char typemask, struct nfs4_stid **s)
3373{
3374 struct nfs4_client *cl;
3375
3376 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3377 return nfserr_bad_stateid;
3378 if (STALE_STATEID(stateid))
3379 return nfserr_stale_stateid;
3380 cl = find_confirmed_client(&stateid->si_opaque.so_clid);
3381 if (!cl)
3382 return nfserr_expired;
3383 *s = find_stateid_by_type(cl, stateid, typemask);
3384 if (!*s)
3385 return nfserr_bad_stateid;
3386 return nfs_ok;
3387
3388}
3389
1da177e4
LT
3390/*
3391* Checks for stateid operations
3392*/
b37ad28b 3393__be32
dd453dfd
BH
3394nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
3395 stateid_t *stateid, int flags, struct file **filpp)
1da177e4 3396{
69064a27 3397 struct nfs4_stid *s;
dcef0413 3398 struct nfs4_ol_stateid *stp = NULL;
1da177e4 3399 struct nfs4_delegation *dp = NULL;
dd453dfd 3400 struct svc_fh *current_fh = &cstate->current_fh;
1da177e4 3401 struct inode *ino = current_fh->fh_dentry->d_inode;
b37ad28b 3402 __be32 status;
1da177e4 3403
1da177e4
LT
3404 if (filpp)
3405 *filpp = NULL;
3406
18f82731 3407 if (grace_disallows_io(ino))
1da177e4
LT
3408 return nfserr_grace;
3409
3410 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3411 return check_special_stateids(current_fh, stateid, flags);
3412
38c2f4b1
BF
3413 status = nfsd4_lookup_stateid(stateid, NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID, &s);
3414 if (status)
3415 return status;
69064a27
BF
3416 status = check_stateid_generation(stateid, &s->sc_stateid, nfsd4_has_session(cstate));
3417 if (status)
3418 goto out;
f7a4d872
BF
3419 switch (s->sc_type) {
3420 case NFS4_DELEG_STID:
69064a27 3421 dp = delegstateid(s);
dc9bf700
BF
3422 status = nfs4_check_delegmode(dp, flags);
3423 if (status)
3424 goto out;
43b0178e 3425 if (filpp) {
acfdf5c3 3426 *filpp = dp->dl_file->fi_deleg_file;
43b0178e
DC
3427 BUG_ON(!*filpp);
3428 }
f7a4d872
BF
3429 break;
3430 case NFS4_OPEN_STID:
3431 case NFS4_LOCK_STID:
69064a27 3432 stp = openlockstateid(s);
f7a4d872
BF
3433 status = nfs4_check_fh(current_fh, stp);
3434 if (status)
1da177e4 3435 goto out;
fe0750e5 3436 if (stp->st_stateowner->so_is_open_owner
dad1c067 3437 && !(openowner(stp->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
1da177e4 3438 goto out;
a4455be0
BF
3439 status = nfs4_check_openmode(stp, flags);
3440 if (status)
1da177e4 3441 goto out;
f9d7562f
BF
3442 if (filpp) {
3443 if (flags & RD_STATE)
3444 *filpp = find_readable_file(stp->st_file);
3445 else
3446 *filpp = find_writeable_file(stp->st_file);
f9d7562f 3447 }
f7a4d872
BF
3448 break;
3449 default:
3450 return nfserr_bad_stateid;
1da177e4
LT
3451 }
3452 status = nfs_ok;
3453out:
3454 return status;
3455}
3456
e1ca12df 3457static __be32
dcef0413 3458nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp)
e1ca12df 3459{
fe0750e5 3460 if (check_for_locks(stp->st_file, lockowner(stp->st_stateowner)))
e1ca12df
BS
3461 return nfserr_locks_held;
3462 release_lock_stateid(stp);
3463 return nfs_ok;
3464}
3465
17456804
BS
3466/*
3467 * Test if the stateid is valid
3468 */
3469__be32
3470nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3471 struct nfsd4_test_stateid *test_stateid)
3472{
03cfb420
BS
3473 struct nfsd4_test_stateid_id *stateid;
3474 struct nfs4_client *cl = cstate->session->se_client;
3475
3476 nfs4_lock_state();
3477 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
7df302f7
CL
3478 stateid->ts_id_status =
3479 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
03cfb420
BS
3480 nfs4_unlock_state();
3481
17456804
BS
3482 return nfs_ok;
3483}
3484
e1ca12df
BS
3485__be32
3486nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3487 struct nfsd4_free_stateid *free_stateid)
3488{
3489 stateid_t *stateid = &free_stateid->fr_stateid;
2da1cec7 3490 struct nfs4_stid *s;
38c2f4b1 3491 struct nfs4_client *cl = cstate->session->se_client;
2da1cec7 3492 __be32 ret = nfserr_bad_stateid;
e1ca12df
BS
3493
3494 nfs4_lock_state();
38c2f4b1 3495 s = find_stateid(cl, stateid);
2da1cec7 3496 if (!s)
81b82965 3497 goto out;
2da1cec7
BF
3498 switch (s->sc_type) {
3499 case NFS4_DELEG_STID:
e1ca12df
BS
3500 ret = nfserr_locks_held;
3501 goto out;
2da1cec7
BF
3502 case NFS4_OPEN_STID:
3503 case NFS4_LOCK_STID:
3504 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
3505 if (ret)
3506 goto out;
3507 if (s->sc_type == NFS4_LOCK_STID)
3508 ret = nfsd4_free_lock_stateid(openlockstateid(s));
3509 else
3510 ret = nfserr_locks_held;
f7a4d872
BF
3511 break;
3512 default:
3513 ret = nfserr_bad_stateid;
e1ca12df 3514 }
e1ca12df
BS
3515out:
3516 nfs4_unlock_state();
3517 return ret;
3518}
3519
4c4cd222
N
3520static inline int
3521setlkflg (int type)
3522{
3523 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
3524 RD_STATE : WR_STATE;
3525}
1da177e4 3526
dcef0413 3527static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
c0a5d93e
BF
3528{
3529 struct svc_fh *current_fh = &cstate->current_fh;
3530 struct nfs4_stateowner *sop = stp->st_stateowner;
3531 __be32 status;
3532
c0a5d93e
BF
3533 status = nfsd4_check_seqid(cstate, sop, seqid);
3534 if (status)
3535 return status;
f7a4d872
BF
3536 if (stp->st_stid.sc_type == NFS4_CLOSED_STID)
3537 /*
3538 * "Closed" stateid's exist *only* to return
3539 * nfserr_replay_me from the previous step.
3540 */
3541 return nfserr_bad_stateid;
3542 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
3543 if (status)
3544 return status;
3545 return nfs4_check_fh(current_fh, stp);
c0a5d93e
BF
3546}
3547
1da177e4
LT
3548/*
3549 * Checks for sequence id mutating operations.
3550 */
b37ad28b 3551static __be32
dd453dfd 3552nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
2288d0e3 3553 stateid_t *stateid, char typemask,
dcef0413 3554 struct nfs4_ol_stateid **stpp)
1da177e4 3555{
0836f587 3556 __be32 status;
38c2f4b1 3557 struct nfs4_stid *s;
1da177e4 3558
8c10cbdb
BH
3559 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
3560 seqid, STATEID_VAL(stateid));
3a4f98bb 3561
1da177e4 3562 *stpp = NULL;
38c2f4b1 3563 status = nfsd4_lookup_stateid(stateid, typemask, &s);
c0a5d93e
BF
3564 if (status)
3565 return status;
38c2f4b1 3566 *stpp = openlockstateid(s);
c0a5d93e 3567 cstate->replay_owner = (*stpp)->st_stateowner;
1da177e4 3568
c0a5d93e
BF
3569 return nfs4_seqid_op_checks(cstate, stateid, seqid, *stpp);
3570}
39325bd0 3571
dcef0413 3572static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid, stateid_t *stateid, struct nfs4_ol_stateid **stpp)
c0a5d93e
BF
3573{
3574 __be32 status;
3575 struct nfs4_openowner *oo;
1da177e4 3576
c0a5d93e 3577 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
2288d0e3 3578 NFS4_OPEN_STID, stpp);
7a8711c9
BF
3579 if (status)
3580 return status;
c0a5d93e 3581 oo = openowner((*stpp)->st_stateowner);
dad1c067 3582 if (!(oo->oo_flags & NFS4_OO_CONFIRMED))
3a4f98bb 3583 return nfserr_bad_stateid;
3a4f98bb 3584 return nfs_ok;
1da177e4
LT
3585}
3586
b37ad28b 3587__be32
ca364317 3588nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 3589 struct nfsd4_open_confirm *oc)
1da177e4 3590{
b37ad28b 3591 __be32 status;
fe0750e5 3592 struct nfs4_openowner *oo;
dcef0413 3593 struct nfs4_ol_stateid *stp;
1da177e4
LT
3594
3595 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
ca364317
BF
3596 (int)cstate->current_fh.fh_dentry->d_name.len,
3597 cstate->current_fh.fh_dentry->d_name.name);
1da177e4 3598
ca364317 3599 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
a8cddc5d
BF
3600 if (status)
3601 return status;
1da177e4
LT
3602
3603 nfs4_lock_state();
3604
9072d5c6 3605 status = nfs4_preprocess_seqid_op(cstate,
ca364317 3606 oc->oc_seqid, &oc->oc_req_stateid,
2288d0e3 3607 NFS4_OPEN_STID, &stp);
9072d5c6 3608 if (status)
68b66e82 3609 goto out;
fe0750e5 3610 oo = openowner(stp->st_stateowner);
68b66e82 3611 status = nfserr_bad_stateid;
dad1c067 3612 if (oo->oo_flags & NFS4_OO_CONFIRMED)
68b66e82 3613 goto out;
dad1c067 3614 oo->oo_flags |= NFS4_OO_CONFIRMED;
dcef0413
BF
3615 update_stateid(&stp->st_stid.sc_stateid);
3616 memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
8c10cbdb 3617 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
dcef0413 3618 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
c7b9a459 3619
2a4317c5 3620 nfsd4_client_record_create(oo->oo_owner.so_client);
68b66e82 3621 status = nfs_ok;
1da177e4 3622out:
5ec094c1
BF
3623 if (!cstate->replay_owner)
3624 nfs4_unlock_state();
1da177e4
LT
3625 return status;
3626}
3627
6409a5a6 3628static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
1da177e4 3629{
82c5ff1b 3630 if (!test_access(access, stp))
6409a5a6
BF
3631 return;
3632 nfs4_file_put_access(stp->st_file, nfs4_access_to_omode(access));
82c5ff1b 3633 clear_access(access, stp);
6409a5a6 3634}
f197c271 3635
6409a5a6
BF
3636static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
3637{
3638 switch (to_access) {
3639 case NFS4_SHARE_ACCESS_READ:
3640 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
3641 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
3642 break;
3643 case NFS4_SHARE_ACCESS_WRITE:
3644 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
3645 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
3646 break;
3647 case NFS4_SHARE_ACCESS_BOTH:
3648 break;
3649 default:
3650 BUG();
1da177e4
LT
3651 }
3652}
3653
3654static void
ce0fc43c 3655reset_union_bmap_deny(unsigned long deny, struct nfs4_ol_stateid *stp)
1da177e4
LT
3656{
3657 int i;
3658 for (i = 0; i < 4; i++) {
3659 if ((i & deny) != i)
ce0fc43c 3660 clear_deny(i, stp);
1da177e4
LT
3661 }
3662}
3663
b37ad28b 3664__be32
ca364317
BF
3665nfsd4_open_downgrade(struct svc_rqst *rqstp,
3666 struct nfsd4_compound_state *cstate,
a4f1706a 3667 struct nfsd4_open_downgrade *od)
1da177e4 3668{
b37ad28b 3669 __be32 status;
dcef0413 3670 struct nfs4_ol_stateid *stp;
1da177e4
LT
3671
3672 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
ca364317
BF
3673 (int)cstate->current_fh.fh_dentry->d_name.len,
3674 cstate->current_fh.fh_dentry->d_name.name);
1da177e4 3675
c30e92df 3676 /* We don't yet support WANT bits: */
2c8bd7e0
BH
3677 if (od->od_deleg_want)
3678 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
3679 od->od_deleg_want);
1da177e4
LT
3680
3681 nfs4_lock_state();
c0a5d93e
BF
3682 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
3683 &od->od_stateid, &stp);
9072d5c6 3684 if (status)
1da177e4 3685 goto out;
1da177e4 3686 status = nfserr_inval;
82c5ff1b
JL
3687 if (!test_access(od->od_share_access, stp)) {
3688 dprintk("NFSD: access not a subset current bitmap: 0x%lx, input access=%08x\n",
1da177e4
LT
3689 stp->st_access_bmap, od->od_share_access);
3690 goto out;
3691 }
ce0fc43c 3692 if (!test_deny(od->od_share_deny, stp)) {
1da177e4
LT
3693 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3694 stp->st_deny_bmap, od->od_share_deny);
3695 goto out;
3696 }
6409a5a6 3697 nfs4_stateid_downgrade(stp, od->od_share_access);
1da177e4 3698
ce0fc43c 3699 reset_union_bmap_deny(od->od_share_deny, stp);
1da177e4 3700
dcef0413
BF
3701 update_stateid(&stp->st_stid.sc_stateid);
3702 memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4
LT
3703 status = nfs_ok;
3704out:
5ec094c1
BF
3705 if (!cstate->replay_owner)
3706 nfs4_unlock_state();
1da177e4
LT
3707 return status;
3708}
3709
38c387b5
BF
3710void nfsd4_purge_closed_stateid(struct nfs4_stateowner *so)
3711{
3712 struct nfs4_openowner *oo;
3713 struct nfs4_ol_stateid *s;
3714
3715 if (!so->so_is_open_owner)
3716 return;
3717 oo = openowner(so);
3718 s = oo->oo_last_closed_stid;
3719 if (!s)
3720 return;
3721 if (!(oo->oo_flags & NFS4_OO_PURGE_CLOSE)) {
3722 /* Release the last_closed_stid on the next seqid bump: */
3723 oo->oo_flags |= NFS4_OO_PURGE_CLOSE;
3724 return;
3725 }
3726 oo->oo_flags &= ~NFS4_OO_PURGE_CLOSE;
f7a4d872
BF
3727 release_last_closed_stateid(oo);
3728}
3729
3730static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
3731{
3732 unhash_open_stateid(s);
3733 s->st_stid.sc_type = NFS4_CLOSED_STID;
38c387b5
BF
3734}
3735
1da177e4
LT
3736/*
3737 * nfs4_unlock_state() called after encode
3738 */
b37ad28b 3739__be32
ca364317 3740nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 3741 struct nfsd4_close *close)
1da177e4 3742{
b37ad28b 3743 __be32 status;
fe0750e5 3744 struct nfs4_openowner *oo;
dcef0413 3745 struct nfs4_ol_stateid *stp;
1da177e4
LT
3746
3747 dprintk("NFSD: nfsd4_close on file %.*s\n",
ca364317
BF
3748 (int)cstate->current_fh.fh_dentry->d_name.len,
3749 cstate->current_fh.fh_dentry->d_name.name);
1da177e4
LT
3750
3751 nfs4_lock_state();
f7a4d872
BF
3752 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
3753 &close->cl_stateid,
3754 NFS4_OPEN_STID|NFS4_CLOSED_STID,
3755 &stp);
9072d5c6 3756 if (status)
1da177e4 3757 goto out;
fe0750e5 3758 oo = openowner(stp->st_stateowner);
1da177e4 3759 status = nfs_ok;
dcef0413
BF
3760 update_stateid(&stp->st_stid.sc_stateid);
3761 memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4 3762
f7a4d872 3763 nfsd4_close_open_stateid(stp);
38c387b5 3764 oo->oo_last_closed_stid = stp;
04ef5954 3765
74dbafaf
BF
3766 if (list_empty(&oo->oo_owner.so_stateids)) {
3767 if (cstate->minorversion) {
3768 release_openowner(oo);
3769 cstate->replay_owner = NULL;
3770 } else {
3771 /*
3772 * In the 4.0 case we need to keep the owners around a
3773 * little while to handle CLOSE replay.
3774 */
3775 if (list_empty(&oo->oo_owner.so_stateids))
3776 move_to_close_lru(oo);
3777 }
3778 }
1da177e4 3779out:
5ec094c1
BF
3780 if (!cstate->replay_owner)
3781 nfs4_unlock_state();
1da177e4
LT
3782 return status;
3783}
3784
b37ad28b 3785__be32
ca364317
BF
3786nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3787 struct nfsd4_delegreturn *dr)
1da177e4 3788{
203a8c8e
BF
3789 struct nfs4_delegation *dp;
3790 stateid_t *stateid = &dr->dr_stateid;
38c2f4b1 3791 struct nfs4_stid *s;
203a8c8e 3792 struct inode *inode;
b37ad28b 3793 __be32 status;
1da177e4 3794
ca364317 3795 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
203a8c8e
BF
3796 return status;
3797 inode = cstate->current_fh.fh_dentry->d_inode;
1da177e4
LT
3798
3799 nfs4_lock_state();
38c2f4b1
BF
3800 status = nfsd4_lookup_stateid(stateid, NFS4_DELEG_STID, &s);
3801 if (status)
203a8c8e 3802 goto out;
38c2f4b1 3803 dp = delegstateid(s);
d5477a8d 3804 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
203a8c8e
BF
3805 if (status)
3806 goto out;
203a8c8e
BF
3807
3808 unhash_delegation(dp);
1da177e4 3809out:
203a8c8e
BF
3810 nfs4_unlock_state();
3811
1da177e4
LT
3812 return status;
3813}
3814
3815
1da177e4 3816#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
1da177e4 3817
009673b4
BF
3818#define LOCKOWNER_INO_HASH_BITS 8
3819#define LOCKOWNER_INO_HASH_SIZE (1 << LOCKOWNER_INO_HASH_BITS)
3820#define LOCKOWNER_INO_HASH_MASK (LOCKOWNER_INO_HASH_SIZE - 1)
1da177e4 3821
87df4de8
BH
3822static inline u64
3823end_offset(u64 start, u64 len)
3824{
3825 u64 end;
3826
3827 end = start + len;
3828 return end >= start ? end: NFS4_MAX_UINT64;
3829}
3830
3831/* last octet in a range */
3832static inline u64
3833last_byte_offset(u64 start, u64 len)
3834{
3835 u64 end;
3836
3837 BUG_ON(!len);
3838 end = start + len;
3839 return end > start ? end - 1: NFS4_MAX_UINT64;
3840}
3841
009673b4 3842static unsigned int lockowner_ino_hashval(struct inode *inode, u32 cl_id, struct xdr_netobj *ownername)
1da177e4
LT
3843{
3844 return (file_hashval(inode) + cl_id
3845 + opaque_hashval(ownername->data, ownername->len))
009673b4 3846 & LOCKOWNER_INO_HASH_MASK;
1da177e4
LT
3847}
3848
009673b4 3849static struct list_head lockowner_ino_hashtbl[LOCKOWNER_INO_HASH_SIZE];
1da177e4 3850
1da177e4
LT
3851/*
3852 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3853 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3854 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3855 * locking, this prevents us from being completely protocol-compliant. The
3856 * real solution to this problem is to start using unsigned file offsets in
3857 * the VFS, but this is a very deep change!
3858 */
3859static inline void
3860nfs4_transform_lock_offset(struct file_lock *lock)
3861{
3862 if (lock->fl_start < 0)
3863 lock->fl_start = OFFSET_MAX;
3864 if (lock->fl_end < 0)
3865 lock->fl_end = OFFSET_MAX;
3866}
3867
d5b9026a
N
3868/* Hack!: For now, we're defining this just so we can use a pointer to it
3869 * as a unique cookie to identify our (NFSv4's) posix locks. */
7b021967 3870static const struct lock_manager_operations nfsd_posix_mng_ops = {
d5b9026a 3871};
1da177e4
LT
3872
3873static inline void
3874nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3875{
fe0750e5 3876 struct nfs4_lockowner *lo;
1da177e4 3877
d5b9026a 3878 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
fe0750e5
BF
3879 lo = (struct nfs4_lockowner *) fl->fl_owner;
3880 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
3881 lo->lo_owner.so_owner.len, GFP_KERNEL);
7c13f344
BF
3882 if (!deny->ld_owner.data)
3883 /* We just don't care that much */
3884 goto nevermind;
fe0750e5
BF
3885 deny->ld_owner.len = lo->lo_owner.so_owner.len;
3886 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
d5b9026a 3887 } else {
7c13f344
BF
3888nevermind:
3889 deny->ld_owner.len = 0;
3890 deny->ld_owner.data = NULL;
d5b9026a
N
3891 deny->ld_clientid.cl_boot = 0;
3892 deny->ld_clientid.cl_id = 0;
1da177e4
LT
3893 }
3894 deny->ld_start = fl->fl_start;
87df4de8
BH
3895 deny->ld_length = NFS4_MAX_UINT64;
3896 if (fl->fl_end != NFS4_MAX_UINT64)
1da177e4
LT
3897 deny->ld_length = fl->fl_end - fl->fl_start + 1;
3898 deny->ld_type = NFS4_READ_LT;
3899 if (fl->fl_type != F_RDLCK)
3900 deny->ld_type = NFS4_WRITE_LT;
3901}
3902
b93d87c1
BF
3903static bool same_lockowner_ino(struct nfs4_lockowner *lo, struct inode *inode, clientid_t *clid, struct xdr_netobj *owner)
3904{
3905 struct nfs4_ol_stateid *lst;
3906
3907 if (!same_owner_str(&lo->lo_owner, owner, clid))
3908 return false;
3909 lst = list_first_entry(&lo->lo_owner.so_stateids,
3910 struct nfs4_ol_stateid, st_perstateowner);
3911 return lst->st_file->fi_inode == inode;
3912}
3913
fe0750e5
BF
3914static struct nfs4_lockowner *
3915find_lockowner_str(struct inode *inode, clientid_t *clid,
1da177e4
LT
3916 struct xdr_netobj *owner)
3917{
009673b4 3918 unsigned int hashval = lockowner_ino_hashval(inode, clid->cl_id, owner);
b93d87c1 3919 struct nfs4_lockowner *lo;
1da177e4 3920
009673b4 3921 list_for_each_entry(lo, &lockowner_ino_hashtbl[hashval], lo_owner_ino_hash) {
b93d87c1
BF
3922 if (same_lockowner_ino(lo, inode, clid, owner))
3923 return lo;
1da177e4
LT
3924 }
3925 return NULL;
3926}
3927
dcef0413 3928static void hash_lockowner(struct nfs4_lockowner *lo, unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp)
ff194bd9 3929{
009673b4
BF
3930 struct inode *inode = open_stp->st_file->fi_inode;
3931 unsigned int inohash = lockowner_ino_hashval(inode,
3932 clp->cl_clientid.cl_id, &lo->lo_owner.so_owner);
3933
16bfdaaf 3934 list_add(&lo->lo_owner.so_strhash, &ownerstr_hashtbl[strhashval]);
009673b4 3935 list_add(&lo->lo_owner_ino_hash, &lockowner_ino_hashtbl[inohash]);
fe0750e5 3936 list_add(&lo->lo_perstateid, &open_stp->st_lockowners);
ff194bd9
BF
3937}
3938
1da177e4
LT
3939/*
3940 * Alloc a lock owner structure.
3941 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
25985edc 3942 * occurred.
1da177e4 3943 *
16bfdaaf 3944 * strhashval = ownerstr_hashval
1da177e4
LT
3945 */
3946
fe0750e5 3947static struct nfs4_lockowner *
dcef0413 3948alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp, struct nfsd4_lock *lock) {
fe0750e5 3949 struct nfs4_lockowner *lo;
1da177e4 3950
fe0750e5
BF
3951 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
3952 if (!lo)
1da177e4 3953 return NULL;
fe0750e5
BF
3954 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
3955 lo->lo_owner.so_is_open_owner = 0;
b59e3c0e
NB
3956 /* It is the openowner seqid that will be incremented in encode in the
3957 * case of new lockowners; so increment the lock seqid manually: */
fe0750e5
BF
3958 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid + 1;
3959 hash_lockowner(lo, strhashval, clp, open_stp);
3960 return lo;
1da177e4
LT
3961}
3962
dcef0413
BF
3963static struct nfs4_ol_stateid *
3964alloc_init_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp, struct nfs4_ol_stateid *open_stp)
1da177e4 3965{
dcef0413 3966 struct nfs4_ol_stateid *stp;
d3b313a4 3967 struct nfs4_client *clp = lo->lo_owner.so_client;
1da177e4 3968
996e0938 3969 stp = nfs4_alloc_stateid(clp);
5ac049ac 3970 if (stp == NULL)
6136d2b4 3971 return NULL;
996e0938 3972 init_stid(&stp->st_stid, clp, NFS4_LOCK_STID);
8beefa24 3973 list_add(&stp->st_perfile, &fp->fi_stateids);
fe0750e5
BF
3974 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
3975 stp->st_stateowner = &lo->lo_owner;
13cd2184 3976 get_nfs4_file(fp);
1da177e4 3977 stp->st_file = fp;
0997b173 3978 stp->st_access_bmap = 0;
1da177e4 3979 stp->st_deny_bmap = open_stp->st_deny_bmap;
4c4cd222 3980 stp->st_openstp = open_stp;
1da177e4
LT
3981 return stp;
3982}
3983
fd39ca9a 3984static int
1da177e4
LT
3985check_lock_length(u64 offset, u64 length)
3986{
87df4de8 3987 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
1da177e4
LT
3988 LOFF_OVERFLOW(offset, length)));
3989}
3990
dcef0413 3991static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
0997b173
BF
3992{
3993 struct nfs4_file *fp = lock_stp->st_file;
3994 int oflag = nfs4_access_to_omode(access);
3995
82c5ff1b 3996 if (test_access(access, lock_stp))
0997b173
BF
3997 return;
3998 nfs4_file_get_access(fp, oflag);
82c5ff1b 3999 set_access(access, lock_stp);
0997b173
BF
4000}
4001
2355c596 4002static __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)
64a284d0
BF
4003{
4004 struct nfs4_file *fi = ost->st_file;
4005 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4006 struct nfs4_client *cl = oo->oo_owner.so_client;
4007 struct nfs4_lockowner *lo;
4008 unsigned int strhashval;
4009
4010 lo = find_lockowner_str(fi->fi_inode, &cl->cl_clientid, &lock->v.new.owner);
4011 if (lo) {
4012 if (!cstate->minorversion)
4013 return nfserr_bad_seqid;
4014 /* XXX: a lockowner always has exactly one stateid: */
4015 *lst = list_first_entry(&lo->lo_owner.so_stateids,
4016 struct nfs4_ol_stateid, st_perstateowner);
4017 return nfs_ok;
4018 }
16bfdaaf 4019 strhashval = ownerstr_hashval(cl->cl_clientid.cl_id,
64a284d0
BF
4020 &lock->v.new.owner);
4021 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
4022 if (lo == NULL)
4023 return nfserr_jukebox;
4024 *lst = alloc_init_lock_stateid(lo, fi, ost);
4025 if (*lst == NULL) {
4026 release_lockowner(lo);
4027 return nfserr_jukebox;
4028 }
4029 *new = true;
4030 return nfs_ok;
4031}
4032
1da177e4
LT
4033/*
4034 * LOCK operation
4035 */
b37ad28b 4036__be32
ca364317 4037nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 4038 struct nfsd4_lock *lock)
1da177e4 4039{
fe0750e5
BF
4040 struct nfs4_openowner *open_sop = NULL;
4041 struct nfs4_lockowner *lock_sop = NULL;
dcef0413 4042 struct nfs4_ol_stateid *lock_stp;
7d947842 4043 struct file *filp = NULL;
1da177e4 4044 struct file_lock file_lock;
8dc7c311 4045 struct file_lock conflock;
b37ad28b 4046 __be32 status = 0;
64a284d0 4047 bool new_state = false;
b34f27aa 4048 int lkflg;
b8dd7b9a 4049 int err;
1da177e4
LT
4050
4051 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
4052 (long long) lock->lk_offset,
4053 (long long) lock->lk_length);
4054
1da177e4
LT
4055 if (check_lock_length(lock->lk_offset, lock->lk_length))
4056 return nfserr_inval;
4057
ca364317 4058 if ((status = fh_verify(rqstp, &cstate->current_fh,
8837abca 4059 S_IFREG, NFSD_MAY_LOCK))) {
a6f6ef2f
AA
4060 dprintk("NFSD: nfsd4_lock: permission denied!\n");
4061 return status;
4062 }
4063
1da177e4
LT
4064 nfs4_lock_state();
4065
4066 if (lock->lk_is_new) {
dcef0413 4067 struct nfs4_ol_stateid *open_stp = NULL;
684e5638
BF
4068
4069 if (nfsd4_has_session(cstate))
4070 /* See rfc 5661 18.10.3: given clientid is ignored: */
4071 memcpy(&lock->v.new.clientid,
4072 &cstate->session->se_client->cl_clientid,
4073 sizeof(clientid_t));
4074
1da177e4 4075 status = nfserr_stale_clientid;
684e5638 4076 if (STALE_CLIENTID(&lock->lk_new_clientid))
1da177e4 4077 goto out;
1da177e4 4078
1da177e4 4079 /* validate and update open stateid and open seqid */
c0a5d93e 4080 status = nfs4_preprocess_confirmed_seqid_op(cstate,
1da177e4
LT
4081 lock->lk_new_open_seqid,
4082 &lock->lk_new_open_stateid,
c0a5d93e 4083 &open_stp);
37515177 4084 if (status)
1da177e4 4085 goto out;
fe0750e5 4086 open_sop = openowner(open_stp->st_stateowner);
b34f27aa 4087 status = nfserr_bad_stateid;
684e5638 4088 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
b34f27aa
BF
4089 &lock->v.new.clientid))
4090 goto out;
64a284d0
BF
4091 status = lookup_or_create_lock_state(cstate, open_stp, lock,
4092 &lock_stp, &new_state);
e1aaa891 4093 } else
dd453dfd 4094 status = nfs4_preprocess_seqid_op(cstate,
fe0750e5
BF
4095 lock->lk_old_lock_seqid,
4096 &lock->lk_old_lock_stateid,
2288d0e3 4097 NFS4_LOCK_STID, &lock_stp);
e1aaa891
BF
4098 if (status)
4099 goto out;
64a284d0 4100 lock_sop = lockowner(lock_stp->st_stateowner);
1da177e4 4101
b34f27aa
BF
4102 lkflg = setlkflg(lock->lk_type);
4103 status = nfs4_check_openmode(lock_stp, lkflg);
4104 if (status)
4105 goto out;
4106
0dd395dc 4107 status = nfserr_grace;
af558e33 4108 if (locks_in_grace() && !lock->lk_reclaim)
0dd395dc
N
4109 goto out;
4110 status = nfserr_no_grace;
af558e33 4111 if (!locks_in_grace() && lock->lk_reclaim)
0dd395dc
N
4112 goto out;
4113
1da177e4
LT
4114 locks_init_lock(&file_lock);
4115 switch (lock->lk_type) {
4116 case NFS4_READ_LT:
4117 case NFS4_READW_LT:
0997b173
BF
4118 filp = find_readable_file(lock_stp->st_file);
4119 if (filp)
4120 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
1da177e4 4121 file_lock.fl_type = F_RDLCK;
529d7b2a 4122 break;
1da177e4
LT
4123 case NFS4_WRITE_LT:
4124 case NFS4_WRITEW_LT:
0997b173
BF
4125 filp = find_writeable_file(lock_stp->st_file);
4126 if (filp)
4127 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
1da177e4 4128 file_lock.fl_type = F_WRLCK;
529d7b2a 4129 break;
1da177e4
LT
4130 default:
4131 status = nfserr_inval;
4132 goto out;
4133 }
f9d7562f
BF
4134 if (!filp) {
4135 status = nfserr_openmode;
4136 goto out;
4137 }
b59e3c0e 4138 file_lock.fl_owner = (fl_owner_t)lock_sop;
1da177e4
LT
4139 file_lock.fl_pid = current->tgid;
4140 file_lock.fl_file = filp;
4141 file_lock.fl_flags = FL_POSIX;
d5b9026a 4142 file_lock.fl_lmops = &nfsd_posix_mng_ops;
1da177e4
LT
4143
4144 file_lock.fl_start = lock->lk_offset;
87df4de8 4145 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
1da177e4
LT
4146 nfs4_transform_lock_offset(&file_lock);
4147
4148 /*
4149 * Try to lock the file in the VFS.
4150 * Note: locks.c uses the BKL to protect the inode's lock list.
4151 */
4152
529d7b2a 4153 err = vfs_lock_file(filp, F_SETLK, &file_lock, &conflock);
b8dd7b9a 4154 switch (-err) {
1da177e4 4155 case 0: /* success! */
dcef0413
BF
4156 update_stateid(&lock_stp->st_stid.sc_stateid);
4157 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid,
1da177e4 4158 sizeof(stateid_t));
b8dd7b9a 4159 status = 0;
eb76b3fd
AA
4160 break;
4161 case (EAGAIN): /* conflock holds conflicting lock */
4162 status = nfserr_denied;
4163 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
4164 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
4165 break;
1da177e4
LT
4166 case (EDEADLK):
4167 status = nfserr_deadlock;
eb76b3fd 4168 break;
3e772463 4169 default:
fd85b817 4170 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
3e772463 4171 status = nfserrno(err);
eb76b3fd 4172 break;
1da177e4 4173 }
1da177e4 4174out:
64a284d0 4175 if (status && new_state)
f044ff83 4176 release_lockowner(lock_sop);
5ec094c1
BF
4177 if (!cstate->replay_owner)
4178 nfs4_unlock_state();
1da177e4
LT
4179 return status;
4180}
4181
55ef1274
BF
4182/*
4183 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
4184 * so we do a temporary open here just to get an open file to pass to
4185 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
4186 * inode operation.)
4187 */
04da6e9d 4188static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
55ef1274
BF
4189{
4190 struct file *file;
04da6e9d
AV
4191 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
4192 if (!err) {
4193 err = nfserrno(vfs_test_lock(file, lock));
4194 nfsd_close(file);
4195 }
55ef1274
BF
4196 return err;
4197}
4198
1da177e4
LT
4199/*
4200 * LOCKT operation
4201 */
b37ad28b 4202__be32
ca364317
BF
4203nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4204 struct nfsd4_lockt *lockt)
1da177e4
LT
4205{
4206 struct inode *inode;
1da177e4 4207 struct file_lock file_lock;
fe0750e5 4208 struct nfs4_lockowner *lo;
b37ad28b 4209 __be32 status;
1da177e4 4210
af558e33 4211 if (locks_in_grace())
1da177e4
LT
4212 return nfserr_grace;
4213
4214 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
4215 return nfserr_inval;
4216
1da177e4
LT
4217 nfs4_lock_state();
4218
4219 status = nfserr_stale_clientid;
60adfc50 4220 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
1da177e4 4221 goto out;
1da177e4 4222
75c096f7 4223 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
1da177e4 4224 goto out;
1da177e4 4225
ca364317 4226 inode = cstate->current_fh.fh_dentry->d_inode;
1da177e4
LT
4227 locks_init_lock(&file_lock);
4228 switch (lockt->lt_type) {
4229 case NFS4_READ_LT:
4230 case NFS4_READW_LT:
4231 file_lock.fl_type = F_RDLCK;
4232 break;
4233 case NFS4_WRITE_LT:
4234 case NFS4_WRITEW_LT:
4235 file_lock.fl_type = F_WRLCK;
4236 break;
4237 default:
2fdada03 4238 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
1da177e4
LT
4239 status = nfserr_inval;
4240 goto out;
4241 }
4242
fe0750e5
BF
4243 lo = find_lockowner_str(inode, &lockt->lt_clientid, &lockt->lt_owner);
4244 if (lo)
4245 file_lock.fl_owner = (fl_owner_t)lo;
1da177e4
LT
4246 file_lock.fl_pid = current->tgid;
4247 file_lock.fl_flags = FL_POSIX;
4248
4249 file_lock.fl_start = lockt->lt_offset;
87df4de8 4250 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
1da177e4
LT
4251
4252 nfs4_transform_lock_offset(&file_lock);
4253
04da6e9d
AV
4254 status = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
4255 if (status)
fd85b817 4256 goto out;
04da6e9d 4257
9d6a8c5c 4258 if (file_lock.fl_type != F_UNLCK) {
1da177e4 4259 status = nfserr_denied;
9d6a8c5c 4260 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
1da177e4
LT
4261 }
4262out:
4263 nfs4_unlock_state();
4264 return status;
4265}
4266
b37ad28b 4267__be32
ca364317 4268nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 4269 struct nfsd4_locku *locku)
1da177e4 4270{
dcef0413 4271 struct nfs4_ol_stateid *stp;
1da177e4
LT
4272 struct file *filp = NULL;
4273 struct file_lock file_lock;
b37ad28b 4274 __be32 status;
b8dd7b9a 4275 int err;
1da177e4
LT
4276
4277 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
4278 (long long) locku->lu_offset,
4279 (long long) locku->lu_length);
4280
4281 if (check_lock_length(locku->lu_offset, locku->lu_length))
4282 return nfserr_inval;
4283
4284 nfs4_lock_state();
4285
9072d5c6 4286 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
2288d0e3 4287 &locku->lu_stateid, NFS4_LOCK_STID, &stp);
9072d5c6 4288 if (status)
1da177e4 4289 goto out;
f9d7562f
BF
4290 filp = find_any_file(stp->st_file);
4291 if (!filp) {
4292 status = nfserr_lock_range;
4293 goto out;
4294 }
1da177e4
LT
4295 BUG_ON(!filp);
4296 locks_init_lock(&file_lock);
4297 file_lock.fl_type = F_UNLCK;
fe0750e5 4298 file_lock.fl_owner = (fl_owner_t)lockowner(stp->st_stateowner);
1da177e4
LT
4299 file_lock.fl_pid = current->tgid;
4300 file_lock.fl_file = filp;
4301 file_lock.fl_flags = FL_POSIX;
d5b9026a 4302 file_lock.fl_lmops = &nfsd_posix_mng_ops;
1da177e4
LT
4303 file_lock.fl_start = locku->lu_offset;
4304
87df4de8 4305 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
1da177e4
LT
4306 nfs4_transform_lock_offset(&file_lock);
4307
4308 /*
4309 * Try to unlock the file in the VFS.
4310 */
fd85b817 4311 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
b8dd7b9a 4312 if (err) {
fd85b817 4313 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
1da177e4
LT
4314 goto out_nfserr;
4315 }
4316 /*
4317 * OK, unlock succeeded; the only thing left to do is update the stateid.
4318 */
dcef0413
BF
4319 update_stateid(&stp->st_stid.sc_stateid);
4320 memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4
LT
4321
4322out:
71c3bcd7
BF
4323 if (!cstate->replay_owner)
4324 nfs4_unlock_state();
1da177e4
LT
4325 return status;
4326
4327out_nfserr:
b8dd7b9a 4328 status = nfserrno(err);
1da177e4
LT
4329 goto out;
4330}
4331
4332/*
4333 * returns
4334 * 1: locks held by lockowner
4335 * 0: no locks held by lockowner
4336 */
4337static int
fe0750e5 4338check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner)
1da177e4
LT
4339{
4340 struct file_lock **flpp;
f9d7562f 4341 struct inode *inode = filp->fi_inode;
1da177e4
LT
4342 int status = 0;
4343
b89f4321 4344 lock_flocks();
1da177e4 4345 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
796dadfd 4346 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
1da177e4
LT
4347 status = 1;
4348 goto out;
796dadfd 4349 }
1da177e4
LT
4350 }
4351out:
b89f4321 4352 unlock_flocks();
1da177e4
LT
4353 return status;
4354}
4355
b37ad28b 4356__be32
b591480b
BF
4357nfsd4_release_lockowner(struct svc_rqst *rqstp,
4358 struct nfsd4_compound_state *cstate,
4359 struct nfsd4_release_lockowner *rlockowner)
1da177e4
LT
4360{
4361 clientid_t *clid = &rlockowner->rl_clientid;
3e9e3dbe 4362 struct nfs4_stateowner *sop;
fe0750e5 4363 struct nfs4_lockowner *lo;
dcef0413 4364 struct nfs4_ol_stateid *stp;
1da177e4 4365 struct xdr_netobj *owner = &rlockowner->rl_owner;
3e9e3dbe 4366 struct list_head matches;
16bfdaaf 4367 unsigned int hashval = ownerstr_hashval(clid->cl_id, owner);
b37ad28b 4368 __be32 status;
1da177e4
LT
4369
4370 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
4371 clid->cl_boot, clid->cl_id);
4372
4373 /* XXX check for lease expiration */
4374
4375 status = nfserr_stale_clientid;
849823c5 4376 if (STALE_CLIENTID(clid))
1da177e4 4377 return status;
1da177e4
LT
4378
4379 nfs4_lock_state();
4380
3e9e3dbe 4381 status = nfserr_locks_held;
3e9e3dbe 4382 INIT_LIST_HEAD(&matches);
06f1f864 4383
16bfdaaf
BF
4384 list_for_each_entry(sop, &ownerstr_hashtbl[hashval], so_strhash) {
4385 if (sop->so_is_open_owner)
4386 continue;
06f1f864
BF
4387 if (!same_owner_str(sop, owner, clid))
4388 continue;
4389 list_for_each_entry(stp, &sop->so_stateids,
4390 st_perstateowner) {
4391 lo = lockowner(sop);
4392 if (check_for_locks(stp->st_file, lo))
4393 goto out;
4394 list_add(&lo->lo_list, &matches);
1da177e4 4395 }
3e9e3dbe
N
4396 }
4397 /* Clients probably won't expect us to return with some (but not all)
4398 * of the lockowner state released; so don't release any until all
4399 * have been checked. */
4400 status = nfs_ok;
0fa822e4 4401 while (!list_empty(&matches)) {
fe0750e5
BF
4402 lo = list_entry(matches.next, struct nfs4_lockowner,
4403 lo_list);
0fa822e4
N
4404 /* unhash_stateowner deletes so_perclient only
4405 * for openowners. */
fe0750e5
BF
4406 list_del(&lo->lo_list);
4407 release_lockowner(lo);
1da177e4
LT
4408 }
4409out:
4410 nfs4_unlock_state();
4411 return status;
4412}
4413
4414static inline struct nfs4_client_reclaim *
a55370a3 4415alloc_reclaim(void)
1da177e4 4416{
a55370a3 4417 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
1da177e4
LT
4418}
4419
c7b9a459 4420int
a1bcecd2 4421nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
c7b9a459
N
4422{
4423 unsigned int strhashval = clientstr_hashval(name);
4424 struct nfs4_client *clp;
4425
e203d506 4426 clp = find_confirmed_client_by_str(name, strhashval);
393d8ed8
BF
4427 if (!clp)
4428 return 0;
a52d726b 4429 return test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
c7b9a459
N
4430}
4431
1da177e4
LT
4432/*
4433 * failure => all reset bets are off, nfserr_no_grace...
4434 */
190e4fbf
N
4435int
4436nfs4_client_to_reclaim(const char *name)
1da177e4
LT
4437{
4438 unsigned int strhashval;
4439 struct nfs4_client_reclaim *crp = NULL;
4440
a55370a3
N
4441 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
4442 crp = alloc_reclaim();
1da177e4
LT
4443 if (!crp)
4444 return 0;
a55370a3 4445 strhashval = clientstr_hashval(name);
1da177e4
LT
4446 INIT_LIST_HEAD(&crp->cr_strhash);
4447 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
a55370a3 4448 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
1da177e4
LT
4449 reclaim_str_hashtbl_size++;
4450 return 1;
4451}
4452
2a4317c5 4453void
1da177e4
LT
4454nfs4_release_reclaim(void)
4455{
4456 struct nfs4_client_reclaim *crp = NULL;
4457 int i;
4458
1da177e4
LT
4459 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4460 while (!list_empty(&reclaim_str_hashtbl[i])) {
4461 crp = list_entry(reclaim_str_hashtbl[i].next,
4462 struct nfs4_client_reclaim, cr_strhash);
4463 list_del(&crp->cr_strhash);
1da177e4
LT
4464 kfree(crp);
4465 reclaim_str_hashtbl_size--;
4466 }
4467 }
4468 BUG_ON(reclaim_str_hashtbl_size);
4469}
4470
4471/*
4472 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
2a4317c5 4473struct nfs4_client_reclaim *
a52d726b 4474nfsd4_find_reclaim_client(struct nfs4_client *clp)
1da177e4
LT
4475{
4476 unsigned int strhashval;
1da177e4
LT
4477 struct nfs4_client_reclaim *crp = NULL;
4478
a55370a3
N
4479 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
4480 clp->cl_name.len, clp->cl_name.data,
4481 clp->cl_recdir);
1da177e4
LT
4482
4483 /* find clp->cl_name in reclaim_str_hashtbl */
a55370a3 4484 strhashval = clientstr_hashval(clp->cl_recdir);
1da177e4 4485 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
a55370a3 4486 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
1da177e4
LT
4487 return crp;
4488 }
4489 }
4490 return NULL;
4491}
4492
4493/*
4494* Called from OPEN. Look for clientid in reclaim list.
4495*/
b37ad28b 4496__be32
1da177e4
LT
4497nfs4_check_open_reclaim(clientid_t *clid)
4498{
a52d726b
JL
4499 struct nfs4_client *clp;
4500
4501 /* find clientid in conf_id_hashtbl */
4502 clp = find_confirmed_client(clid);
4503 if (clp == NULL)
4504 return nfserr_reclaim_bad;
4505
4506 return nfsd4_client_record_check(clp) ? nfserr_reclaim_bad : nfs_ok;
1da177e4
LT
4507}
4508
65178db4
BS
4509#ifdef CONFIG_NFSD_FAULT_INJECTION
4510
4511void nfsd_forget_clients(u64 num)
4512{
4513 struct nfs4_client *clp, *next;
4514 int count = 0;
4515
4516 nfs4_lock_state();
4517 list_for_each_entry_safe(clp, next, &client_lru, cl_lru) {
2a4317c5 4518 nfsd4_client_record_remove(clp);
65178db4
BS
4519 expire_client(clp);
4520 if (++count == num)
4521 break;
4522 }
4523 nfs4_unlock_state();
4524
4525 printk(KERN_INFO "NFSD: Forgot %d clients", count);
4526}
4527
4528static void release_lockowner_sop(struct nfs4_stateowner *sop)
4529{
4530 release_lockowner(lockowner(sop));
4531}
4532
4533static void release_openowner_sop(struct nfs4_stateowner *sop)
4534{
4535 release_openowner(openowner(sop));
4536}
4537
353de31b 4538static int nfsd_release_n_owners(u64 num, bool is_open_owner,
65178db4
BS
4539 void (*release_sop)(struct nfs4_stateowner *))
4540{
4541 int i, count = 0;
4542 struct nfs4_stateowner *sop, *next;
4543
16bfdaaf
BF
4544 for (i = 0; i < OWNER_HASH_SIZE; i++) {
4545 list_for_each_entry_safe(sop, next, &ownerstr_hashtbl[i], so_strhash) {
4546 if (sop->so_is_open_owner != is_open_owner)
4547 continue;
65178db4
BS
4548 release_sop(sop);
4549 if (++count == num)
4550 return count;
4551 }
4552 }
4553 return count;
4554}
4555
4556void nfsd_forget_locks(u64 num)
4557{
4558 int count;
4559
4560 nfs4_lock_state();
16bfdaaf 4561 count = nfsd_release_n_owners(num, false, release_lockowner_sop);
65178db4
BS
4562 nfs4_unlock_state();
4563
4564 printk(KERN_INFO "NFSD: Forgot %d locks", count);
4565}
4566
4567void nfsd_forget_openowners(u64 num)
4568{
4569 int count;
4570
4571 nfs4_lock_state();
16bfdaaf 4572 count = nfsd_release_n_owners(num, true, release_openowner_sop);
65178db4
BS
4573 nfs4_unlock_state();
4574
4575 printk(KERN_INFO "NFSD: Forgot %d open owners", count);
4576}
4577
a6d88f29 4578int nfsd_process_n_delegations(u64 num, struct list_head *list)
65178db4
BS
4579{
4580 int i, count = 0;
2d3475c0
BS
4581 struct nfs4_file *fp, *fnext;
4582 struct nfs4_delegation *dp, *dnext;
65178db4
BS
4583
4584 for (i = 0; i < FILE_HASH_SIZE; i++) {
2d3475c0
BS
4585 list_for_each_entry_safe(fp, fnext, &file_hashtbl[i], fi_hash) {
4586 list_for_each_entry_safe(dp, dnext, &fp->fi_delegations, dl_perfile) {
a6d88f29 4587 list_move(&dp->dl_recall_lru, list);
65178db4
BS
4588 if (++count == num)
4589 return count;
4590 }
4591 }
4592 }
2d3475c0 4593
65178db4
BS
4594 return count;
4595}
4596
4597void nfsd_forget_delegations(u64 num)
4598{
4599 unsigned int count;
a6d88f29
SK
4600 LIST_HEAD(victims);
4601 struct nfs4_delegation *dp, *dnext;
4602
4603 spin_lock(&recall_lock);
4604 count = nfsd_process_n_delegations(num, &victims);
4605 spin_unlock(&recall_lock);
65178db4
BS
4606
4607 nfs4_lock_state();
a6d88f29
SK
4608 list_for_each_entry_safe(dp, dnext, &victims, dl_recall_lru)
4609 unhash_delegation(dp);
65178db4
BS
4610 nfs4_unlock_state();
4611
4612 printk(KERN_INFO "NFSD: Forgot %d delegations", count);
4613}
4614
4615void nfsd_recall_delegations(u64 num)
4616{
4617 unsigned int count;
a6d88f29
SK
4618 LIST_HEAD(victims);
4619 struct nfs4_delegation *dp, *dnext;
65178db4 4620
65178db4 4621 spin_lock(&recall_lock);
a6d88f29
SK
4622 count = nfsd_process_n_delegations(num, &victims);
4623 list_for_each_entry_safe(dp, dnext, &victims, dl_recall_lru) {
4624 list_del(&dp->dl_recall_lru);
4625 nfsd_break_one_deleg(dp);
4626 }
65178db4 4627 spin_unlock(&recall_lock);
65178db4
BS
4628
4629 printk(KERN_INFO "NFSD: Recalled %d delegations", count);
4630}
4631
4632#endif /* CONFIG_NFSD_FAULT_INJECTION */
4633
ac4d8ff2 4634/* initialization to perform at module load time: */
1da177e4 4635
72083396 4636void
ac4d8ff2 4637nfs4_state_init(void)
1da177e4 4638{
72083396 4639 int i;
1da177e4 4640
1da177e4
LT
4641 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4642 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
4643 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
4644 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
4645 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
02cb2858 4646 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
1da177e4 4647 }
5282fd72
ME
4648 for (i = 0; i < SESSION_HASH_SIZE; i++)
4649 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
1da177e4
LT
4650 for (i = 0; i < FILE_HASH_SIZE; i++) {
4651 INIT_LIST_HEAD(&file_hashtbl[i]);
4652 }
16bfdaaf
BF
4653 for (i = 0; i < OWNER_HASH_SIZE; i++) {
4654 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
1da177e4 4655 }
009673b4
BF
4656 for (i = 0; i < LOCKOWNER_INO_HASH_SIZE; i++)
4657 INIT_LIST_HEAD(&lockowner_ino_hashtbl[i]);
1da177e4
LT
4658 INIT_LIST_HEAD(&close_lru);
4659 INIT_LIST_HEAD(&client_lru);
4660 INIT_LIST_HEAD(&del_recall_lru);
ac4d8ff2 4661 reclaim_str_hashtbl_size = 0;
ac4d8ff2
N
4662}
4663
c2f1a551
MS
4664/*
4665 * Since the lifetime of a delegation isn't limited to that of an open, a
4666 * client may quite reasonably hang on to a delegation as long as it has
4667 * the inode cached. This becomes an obvious problem the first time a
4668 * client's inode cache approaches the size of the server's total memory.
4669 *
4670 * For now we avoid this problem by imposing a hard limit on the number
4671 * of delegations, which varies according to the server's memory size.
4672 */
4673static void
4674set_max_delegations(void)
4675{
4676 /*
4677 * Allow at most 4 delegations per megabyte of RAM. Quick
4678 * estimates suggest that in the worst case (where every delegation
4679 * is for a different inode), a delegation could take about 1.5K,
4680 * giving a worst case usage of about 6% of memory.
4681 */
4682 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4683}
4684
ac4d8ff2
N
4685/* initialization to perform when the nfsd service is started: */
4686
a6d6b781
JL
4687int
4688nfs4_state_start(void)
ac4d8ff2 4689{
b5a1a81e
BF
4690 int ret;
4691
2a4317c5
JL
4692 /*
4693 * FIXME: For now, we hang most of the pernet global stuff off of
4694 * init_net until nfsd is fully containerized. Eventually, we'll
4695 * need to pass a net pointer into this function, take a reference
4696 * to that instead and then do most of the rest of this on a per-net
4697 * basis.
4698 */
4699 get_net(&init_net);
4700 nfsd4_client_tracking_init(&init_net);
1da177e4 4701 boot_time = get_seconds();
af558e33 4702 locks_start_grace(&nfsd4_manager);
33dcc481 4703 grace_ended = false;
9a8db97e 4704 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
e46b498c 4705 nfsd4_grace);
b5a1a81e 4706 ret = set_callback_cred();
a6d6b781
JL
4707 if (ret) {
4708 ret = -ENOMEM;
4709 goto out_recovery;
4710 }
58da282b 4711 laundry_wq = create_singlethread_workqueue("nfsd4");
a6d6b781
JL
4712 if (laundry_wq == NULL) {
4713 ret = -ENOMEM;
4714 goto out_recovery;
4715 }
b5a1a81e
BF
4716 ret = nfsd4_create_callback_queue();
4717 if (ret)
4718 goto out_free_laundry;
e46b498c 4719 queue_delayed_work(laundry_wq, &laundromat_work, nfsd4_grace * HZ);
c2f1a551 4720 set_max_delegations();
b5a1a81e
BF
4721 return 0;
4722out_free_laundry:
4723 destroy_workqueue(laundry_wq);
a6d6b781 4724out_recovery:
2a4317c5
JL
4725 nfsd4_client_tracking_exit(&init_net);
4726 put_net(&init_net);
b5a1a81e 4727 return ret;
1da177e4
LT
4728}
4729
1da177e4
LT
4730static void
4731__nfs4_state_shutdown(void)
4732{
4733 int i;
4734 struct nfs4_client *clp = NULL;
4735 struct nfs4_delegation *dp = NULL;
1da177e4
LT
4736 struct list_head *pos, *next, reaplist;
4737
1da177e4
LT
4738 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4739 while (!list_empty(&conf_id_hashtbl[i])) {
4740 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4741 expire_client(clp);
4742 }
4743 while (!list_empty(&unconf_str_hashtbl[i])) {
4744 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4745 expire_client(clp);
4746 }
4747 }
4748 INIT_LIST_HEAD(&reaplist);
4749 spin_lock(&recall_lock);
4750 list_for_each_safe(pos, next, &del_recall_lru) {
4751 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4752 list_move(&dp->dl_recall_lru, &reaplist);
4753 }
4754 spin_unlock(&recall_lock);
4755 list_for_each_safe(pos, next, &reaplist) {
4756 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1da177e4
LT
4757 unhash_delegation(dp);
4758 }
4759
2a4317c5
JL
4760 nfsd4_client_tracking_exit(&init_net);
4761 put_net(&init_net);
1da177e4
LT
4762}
4763
4764void
4765nfs4_state_shutdown(void)
4766{
afe2c511 4767 cancel_delayed_work_sync(&laundromat_work);
5e8d5c29 4768 destroy_workqueue(laundry_wq);
2c5e7615 4769 locks_end_grace(&nfsd4_manager);
1da177e4 4770 nfs4_lock_state();
1da177e4 4771 __nfs4_state_shutdown();
1da177e4 4772 nfs4_unlock_state();
c3935e30 4773 nfsd4_destroy_callback_queue();
1da177e4 4774}
8b70484c
TM
4775
4776static void
4777get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
4778{
37c593c5
TM
4779 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
4780 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
8b70484c
TM
4781}
4782
4783static void
4784put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
4785{
37c593c5
TM
4786 if (cstate->minorversion) {
4787 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
4788 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
4789 }
4790}
4791
4792void
4793clear_current_stateid(struct nfsd4_compound_state *cstate)
4794{
4795 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
8b70484c
TM
4796}
4797
62cd4a59
TM
4798/*
4799 * functions to set current state id
4800 */
9428fe1a
TM
4801void
4802nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
4803{
4804 put_stateid(cstate, &odp->od_stateid);
4805}
4806
8b70484c
TM
4807void
4808nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
4809{
4810 put_stateid(cstate, &open->op_stateid);
4811}
4812
62cd4a59
TM
4813void
4814nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
4815{
4816 put_stateid(cstate, &close->cl_stateid);
4817}
4818
4819void
4820nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
4821{
4822 put_stateid(cstate, &lock->lk_resp_stateid);
4823}
4824
4825/*
4826 * functions to consume current state id
4827 */
1e97b519 4828
9428fe1a
TM
4829void
4830nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
4831{
4832 get_stateid(cstate, &odp->od_stateid);
4833}
4834
4835void
4836nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
4837{
4838 get_stateid(cstate, &drp->dr_stateid);
4839}
4840
1e97b519
TM
4841void
4842nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
4843{
4844 get_stateid(cstate, &fsp->fr_stateid);
4845}
4846
4847void
4848nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
4849{
4850 get_stateid(cstate, &setattr->sa_stateid);
4851}
4852
8b70484c
TM
4853void
4854nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
4855{
4856 get_stateid(cstate, &close->cl_stateid);
4857}
4858
4859void
62cd4a59 4860nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
8b70484c 4861{
62cd4a59 4862 get_stateid(cstate, &locku->lu_stateid);
8b70484c 4863}
30813e27
TM
4864
4865void
4866nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
4867{
4868 get_stateid(cstate, &read->rd_stateid);
4869}
4870
4871void
4872nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
4873{
4874 get_stateid(cstate, &write->wr_stateid);
4875}