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