NFSD: fix a leak which can cause CREATE_SESSION failures
[deliverable/linux.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
06b332a5 1856static __be32 check_backchannel_attrs(struct nfsd4_channel_attrs *ca)
1b74c25b 1857{
06b332a5
BF
1858 ca->headerpadsz = 0;
1859
1860 /*
1861 * These RPC_MAX_HEADER macros are overkill, especially since we
1862 * don't even do gss on the backchannel yet. But this is still
1863 * less than 1k. Tighten up this estimate in the unlikely event
1864 * it turns out to be a problem for some client:
1865 */
1866 if (ca->maxreq_sz < NFS4_enc_cb_recall_sz + RPC_MAX_HEADER_WITH_AUTH)
1867 return nfserr_toosmall;
1868 if (ca->maxresp_sz < NFS4_dec_cb_recall_sz + RPC_MAX_REPHEADER_WITH_AUTH)
1869 return nfserr_toosmall;
1870 ca->maxresp_cached = 0;
1871 if (ca->maxops < 2)
1872 return nfserr_toosmall;
1873
1874 return nfs_ok;
1b74c25b
MJ
1875}
1876
b78724b7
BF
1877static __be32 nfsd4_check_cb_sec(struct nfsd4_cb_sec *cbs)
1878{
1879 switch (cbs->flavor) {
1880 case RPC_AUTH_NULL:
1881 case RPC_AUTH_UNIX:
1882 return nfs_ok;
1883 default:
1884 /*
1885 * GSS case: the spec doesn't allow us to return this
1886 * error. But it also doesn't allow us not to support
1887 * GSS.
1888 * I'd rather this fail hard than return some error the
1889 * client might think it can already handle:
1890 */
1891 return nfserr_encr_alg_unsupp;
1892 }
1893}
1894
069b6ad4
AA
1895__be32
1896nfsd4_create_session(struct svc_rqst *rqstp,
1897 struct nfsd4_compound_state *cstate,
1898 struct nfsd4_create_session *cr_ses)
1899{
363168b4 1900 struct sockaddr *sa = svc_addr(rqstp);
ec6b5d7b 1901 struct nfs4_client *conf, *unconf;
ac7c46f2 1902 struct nfsd4_session *new;
81f0b2a4 1903 struct nfsd4_conn *conn;
49557cc7 1904 struct nfsd4_clid_slot *cs_slot = NULL;
57b7b43b 1905 __be32 status = 0;
8daae4dc 1906 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
ec6b5d7b 1907
a62573dc
MJ
1908 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
1909 return nfserr_inval;
b78724b7
BF
1910 status = nfsd4_check_cb_sec(&cr_ses->cb_sec);
1911 if (status)
1912 return status;
55c760cf 1913 status = check_forechannel_attrs(&cr_ses->fore_channel, nn);
06b332a5
BF
1914 if (status)
1915 return status;
1916 status = check_backchannel_attrs(&cr_ses->back_channel);
373cd409 1917 if (status)
f403e450 1918 goto out_release_drc_mem;
81f0b2a4 1919 status = nfserr_jukebox;
55c760cf
BF
1920 new = alloc_session(&cr_ses->fore_channel);
1921 if (!new)
1922 goto out_release_drc_mem;
81f0b2a4
BF
1923 conn = alloc_conn_from_crses(rqstp, cr_ses);
1924 if (!conn)
1925 goto out_free_session;
a62573dc 1926
ec6b5d7b 1927 nfs4_lock_state();
0a7ec377 1928 unconf = find_unconfirmed_client(&cr_ses->clientid, true, nn);
8daae4dc 1929 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
78389046 1930 WARN_ON_ONCE(conf && unconf);
ec6b5d7b
AA
1931
1932 if (conf) {
57266a6e
BF
1933 status = nfserr_wrong_cred;
1934 if (!mach_creds_match(conf, rqstp))
1935 goto out_free_conn;
49557cc7
AA
1936 cs_slot = &conf->cl_cs_slot;
1937 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
38eb76a5 1938 if (status == nfserr_replay_cache) {
49557cc7 1939 status = nfsd4_replay_create_session(cr_ses, cs_slot);
81f0b2a4 1940 goto out_free_conn;
49557cc7 1941 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
ec6b5d7b 1942 status = nfserr_seq_misordered;
81f0b2a4 1943 goto out_free_conn;
ec6b5d7b 1944 }
ec6b5d7b 1945 } else if (unconf) {
8f9d3d3b 1946 struct nfs4_client *old;
ec6b5d7b 1947 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
363168b4 1948 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
ec6b5d7b 1949 status = nfserr_clid_inuse;
81f0b2a4 1950 goto out_free_conn;
ec6b5d7b 1951 }
57266a6e
BF
1952 status = nfserr_wrong_cred;
1953 if (!mach_creds_match(unconf, rqstp))
1954 goto out_free_conn;
49557cc7
AA
1955 cs_slot = &unconf->cl_cs_slot;
1956 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
38eb76a5
AA
1957 if (status) {
1958 /* an unconfirmed replay returns misordered */
ec6b5d7b 1959 status = nfserr_seq_misordered;
81f0b2a4 1960 goto out_free_conn;
ec6b5d7b 1961 }
382a62e7 1962 old = find_confirmed_client_by_name(&unconf->cl_name, nn);
221a6876
BF
1963 if (old) {
1964 status = mark_client_expired(old);
1965 if (status)
1966 goto out_free_conn;
8f9d3d3b 1967 expire_client(old);
221a6876 1968 }
8f9d3d3b 1969 move_to_confirmed(unconf);
ec6b5d7b
AA
1970 conf = unconf;
1971 } else {
1972 status = nfserr_stale_clientid;
81f0b2a4 1973 goto out_free_conn;
ec6b5d7b 1974 }
81f0b2a4 1975 status = nfs_ok;
408b79bc
BF
1976 /*
1977 * We do not support RDMA or persistent sessions
1978 */
1979 cr_ses->flags &= ~SESSION4_PERSIST;
1980 cr_ses->flags &= ~SESSION4_RDMA;
1981
81f0b2a4
BF
1982 init_session(rqstp, new, conf, cr_ses);
1983 nfsd4_init_conn(rqstp, conn, new);
1984
ac7c46f2 1985 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
ec6b5d7b 1986 NFS4_MAX_SESSIONID_LEN);
86c3e16c 1987 cs_slot->sl_seqid++;
49557cc7 1988 cr_ses->seqid = cs_slot->sl_seqid;
ec6b5d7b 1989
49557cc7
AA
1990 /* cache solo and embedded create sessions under the state lock */
1991 nfsd4_cache_create_session(cr_ses, cs_slot, status);
ec6b5d7b 1992 nfs4_unlock_state();
ec6b5d7b 1993 return status;
81f0b2a4 1994out_free_conn:
266533c6 1995 nfs4_unlock_state();
81f0b2a4
BF
1996 free_conn(conn);
1997out_free_session:
1998 __free_session(new);
55c760cf
BF
1999out_release_drc_mem:
2000 nfsd4_put_drc_mem(&cr_ses->fore_channel);
1ca50792 2001 return status;
069b6ad4
AA
2002}
2003
1d1bc8f2
BF
2004static __be32 nfsd4_map_bcts_dir(u32 *dir)
2005{
2006 switch (*dir) {
2007 case NFS4_CDFC4_FORE:
2008 case NFS4_CDFC4_BACK:
2009 return nfs_ok;
2010 case NFS4_CDFC4_FORE_OR_BOTH:
2011 case NFS4_CDFC4_BACK_OR_BOTH:
2012 *dir = NFS4_CDFC4_BOTH;
2013 return nfs_ok;
2014 };
2015 return nfserr_inval;
2016}
2017
cb73a9f4
BF
2018__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc)
2019{
2020 struct nfsd4_session *session = cstate->session;
c9a49628 2021 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
b78724b7 2022 __be32 status;
cb73a9f4 2023
b78724b7
BF
2024 status = nfsd4_check_cb_sec(&bc->bc_cb_sec);
2025 if (status)
2026 return status;
c9a49628 2027 spin_lock(&nn->client_lock);
cb73a9f4
BF
2028 session->se_cb_prog = bc->bc_cb_program;
2029 session->se_cb_sec = bc->bc_cb_sec;
c9a49628 2030 spin_unlock(&nn->client_lock);
cb73a9f4
BF
2031
2032 nfsd4_probe_callback(session->se_client);
2033
2034 return nfs_ok;
2035}
2036
1d1bc8f2
BF
2037__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
2038 struct nfsd4_compound_state *cstate,
2039 struct nfsd4_bind_conn_to_session *bcts)
2040{
2041 __be32 status;
3ba63671 2042 struct nfsd4_conn *conn;
4f6e6c17 2043 struct nfsd4_session *session;
c9a49628 2044 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1d1bc8f2
BF
2045
2046 if (!nfsd4_last_compound_op(rqstp))
2047 return nfserr_not_only_op;
4f6e6c17 2048 nfs4_lock_state();
c9a49628 2049 spin_lock(&nn->client_lock);
4f6e6c17 2050 session = find_in_sessionid_hashtbl(&bcts->sessionid, SVC_NET(rqstp));
c9a49628 2051 spin_unlock(&nn->client_lock);
4f6e6c17
BF
2052 status = nfserr_badsession;
2053 if (!session)
2054 goto out;
57266a6e
BF
2055 status = nfserr_wrong_cred;
2056 if (!mach_creds_match(session->se_client, rqstp))
2057 goto out;
1d1bc8f2 2058 status = nfsd4_map_bcts_dir(&bcts->dir);
3ba63671 2059 if (status)
4f6e6c17 2060 goto out;
3ba63671 2061 conn = alloc_conn(rqstp, bcts->dir);
4f6e6c17 2062 status = nfserr_jukebox;
3ba63671 2063 if (!conn)
4f6e6c17
BF
2064 goto out;
2065 nfsd4_init_conn(rqstp, conn, session);
2066 status = nfs_ok;
2067out:
2068 nfs4_unlock_state();
2069 return status;
1d1bc8f2
BF
2070}
2071
5d4cec2f
BF
2072static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
2073{
2074 if (!session)
2075 return 0;
2076 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
2077}
2078
069b6ad4
AA
2079__be32
2080nfsd4_destroy_session(struct svc_rqst *r,
2081 struct nfsd4_compound_state *cstate,
2082 struct nfsd4_destroy_session *sessionid)
2083{
e10e0cfc 2084 struct nfsd4_session *ses;
abcdff09 2085 __be32 status;
f0f51f5c 2086 int ref_held_by_me = 0;
c9a49628 2087 struct nfsd_net *nn = net_generic(SVC_NET(r), nfsd_net_id);
e10e0cfc 2088
abcdff09
BF
2089 nfs4_lock_state();
2090 status = nfserr_not_only_op;
5d4cec2f 2091 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
57716355 2092 if (!nfsd4_last_compound_op(r))
abcdff09 2093 goto out;
f0f51f5c 2094 ref_held_by_me++;
57716355 2095 }
e10e0cfc 2096 dump_sessionid(__func__, &sessionid->sessionid);
c9a49628 2097 spin_lock(&nn->client_lock);
1872de0e 2098 ses = find_in_sessionid_hashtbl(&sessionid->sessionid, SVC_NET(r));
abcdff09
BF
2099 status = nfserr_badsession;
2100 if (!ses)
2101 goto out_client_lock;
57266a6e
BF
2102 status = nfserr_wrong_cred;
2103 if (!mach_creds_match(ses->se_client, r))
66b2b9b2 2104 goto out_client_lock;
f0f51f5c
BF
2105 nfsd4_get_session_locked(ses);
2106 status = mark_session_dead_locked(ses, 1 + ref_held_by_me);
66b2b9b2 2107 if (status)
f0f51f5c 2108 goto out_put_session;
e10e0cfc 2109 unhash_session(ses);
c9a49628 2110 spin_unlock(&nn->client_lock);
e10e0cfc 2111
84f5f7cc 2112 nfsd4_probe_callback_sync(ses->se_client);
19cf5c02 2113
c9a49628 2114 spin_lock(&nn->client_lock);
e10e0cfc 2115 status = nfs_ok;
f0f51f5c
BF
2116out_put_session:
2117 nfsd4_put_session(ses);
abcdff09
BF
2118out_client_lock:
2119 spin_unlock(&nn->client_lock);
e10e0cfc 2120out:
abcdff09 2121 nfs4_unlock_state();
e10e0cfc 2122 return status;
069b6ad4
AA
2123}
2124
a663bdd8 2125static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
328ead28
BF
2126{
2127 struct nfsd4_conn *c;
2128
2129 list_for_each_entry(c, &s->se_conns, cn_persession) {
a663bdd8 2130 if (c->cn_xprt == xpt) {
328ead28
BF
2131 return c;
2132 }
2133 }
2134 return NULL;
2135}
2136
57266a6e 2137static __be32 nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
328ead28
BF
2138{
2139 struct nfs4_client *clp = ses->se_client;
a663bdd8 2140 struct nfsd4_conn *c;
57266a6e 2141 __be32 status = nfs_ok;
21b75b01 2142 int ret;
328ead28
BF
2143
2144 spin_lock(&clp->cl_lock);
a663bdd8 2145 c = __nfsd4_find_conn(new->cn_xprt, ses);
57266a6e
BF
2146 if (c)
2147 goto out_free;
2148 status = nfserr_conn_not_bound_to_session;
2149 if (clp->cl_mach_cred)
2150 goto out_free;
328ead28
BF
2151 __nfsd4_hash_conn(new, ses);
2152 spin_unlock(&clp->cl_lock);
21b75b01
BF
2153 ret = nfsd4_register_conn(new);
2154 if (ret)
2155 /* oops; xprt is already down: */
2156 nfsd4_conn_lost(&new->cn_xpt_user);
57266a6e
BF
2157 return nfs_ok;
2158out_free:
2159 spin_unlock(&clp->cl_lock);
2160 free_conn(new);
2161 return status;
328ead28
BF
2162}
2163
868b89c3
MJ
2164static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
2165{
2166 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2167
2168 return args->opcnt > session->se_fchannel.maxops;
2169}
2170
ae82a8d0
MJ
2171static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
2172 struct nfsd4_session *session)
2173{
2174 struct xdr_buf *xb = &rqstp->rq_arg;
2175
2176 return xb->len > session->se_fchannel.maxreq_sz;
2177}
2178
069b6ad4 2179__be32
b85d4c01 2180nfsd4_sequence(struct svc_rqst *rqstp,
069b6ad4
AA
2181 struct nfsd4_compound_state *cstate,
2182 struct nfsd4_sequence *seq)
2183{
f9bb94c4 2184 struct nfsd4_compoundres *resp = rqstp->rq_resp;
b85d4c01 2185 struct nfsd4_session *session;
221a6876 2186 struct nfs4_client *clp;
b85d4c01 2187 struct nfsd4_slot *slot;
a663bdd8 2188 struct nfsd4_conn *conn;
57b7b43b 2189 __be32 status;
c9a49628 2190 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
b85d4c01 2191
f9bb94c4
AA
2192 if (resp->opcnt != 1)
2193 return nfserr_sequence_pos;
2194
a663bdd8
BF
2195 /*
2196 * Will be either used or freed by nfsd4_sequence_check_conn
2197 * below.
2198 */
2199 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
2200 if (!conn)
2201 return nfserr_jukebox;
2202
c9a49628 2203 spin_lock(&nn->client_lock);
b85d4c01 2204 status = nfserr_badsession;
1872de0e 2205 session = find_in_sessionid_hashtbl(&seq->sessionid, SVC_NET(rqstp));
b85d4c01 2206 if (!session)
221a6876
BF
2207 goto out_no_session;
2208 clp = session->se_client;
2209 status = get_client_locked(clp);
2210 if (status)
2211 goto out_no_session;
66b2b9b2
BF
2212 status = nfsd4_get_session_locked(session);
2213 if (status)
2214 goto out_put_client;
b85d4c01 2215
868b89c3
MJ
2216 status = nfserr_too_many_ops;
2217 if (nfsd4_session_too_many_ops(rqstp, session))
66b2b9b2 2218 goto out_put_session;
868b89c3 2219
ae82a8d0
MJ
2220 status = nfserr_req_too_big;
2221 if (nfsd4_request_too_big(rqstp, session))
66b2b9b2 2222 goto out_put_session;
ae82a8d0 2223
b85d4c01 2224 status = nfserr_badslot;
6c18ba9f 2225 if (seq->slotid >= session->se_fchannel.maxreqs)
66b2b9b2 2226 goto out_put_session;
b85d4c01 2227
557ce264 2228 slot = session->se_slots[seq->slotid];
b85d4c01
BH
2229 dprintk("%s: slotid %d\n", __func__, seq->slotid);
2230
a8dfdaeb
AA
2231 /* We do not negotiate the number of slots yet, so set the
2232 * maxslots to the session maxreqs which is used to encode
2233 * sr_highest_slotid and the sr_target_slot id to maxslots */
2234 seq->maxslots = session->se_fchannel.maxreqs;
2235
73e79482
BF
2236 status = check_slot_seqid(seq->seqid, slot->sl_seqid,
2237 slot->sl_flags & NFSD4_SLOT_INUSE);
b85d4c01 2238 if (status == nfserr_replay_cache) {
bf5c43c8
BF
2239 status = nfserr_seq_misordered;
2240 if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
66b2b9b2 2241 goto out_put_session;
b85d4c01
BH
2242 cstate->slot = slot;
2243 cstate->session = session;
da3846a2 2244 /* Return the cached reply status and set cstate->status
557ce264 2245 * for nfsd4_proc_compound processing */
bf864a31 2246 status = nfsd4_replay_cache_entry(resp, seq);
da3846a2 2247 cstate->status = nfserr_replay_cache;
aaf84eb9 2248 goto out;
b85d4c01
BH
2249 }
2250 if (status)
66b2b9b2 2251 goto out_put_session;
b85d4c01 2252
57266a6e 2253 status = nfsd4_sequence_check_conn(conn, session);
a663bdd8 2254 conn = NULL;
57266a6e
BF
2255 if (status)
2256 goto out_put_session;
328ead28 2257
b85d4c01 2258 /* Success! bump slot seqid */
b85d4c01 2259 slot->sl_seqid = seq->seqid;
bf5c43c8 2260 slot->sl_flags |= NFSD4_SLOT_INUSE;
73e79482
BF
2261 if (seq->cachethis)
2262 slot->sl_flags |= NFSD4_SLOT_CACHETHIS;
bf5c43c8
BF
2263 else
2264 slot->sl_flags &= ~NFSD4_SLOT_CACHETHIS;
b85d4c01
BH
2265
2266 cstate->slot = slot;
2267 cstate->session = session;
2268
b85d4c01 2269out:
221a6876
BF
2270 switch (clp->cl_cb_state) {
2271 case NFSD4_CB_DOWN:
2272 seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
2273 break;
2274 case NFSD4_CB_FAULT:
2275 seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
2276 break;
2277 default:
2278 seq->status_flags = 0;
aaf84eb9 2279 }
3bd64a5b
BF
2280 if (!list_empty(&clp->cl_revoked))
2281 seq->status_flags |= SEQ4_STATUS_RECALLABLE_STATE_REVOKED;
221a6876 2282out_no_session:
a663bdd8 2283 kfree(conn);
c9a49628 2284 spin_unlock(&nn->client_lock);
b85d4c01 2285 return status;
66b2b9b2
BF
2286out_put_session:
2287 nfsd4_put_session(session);
221a6876
BF
2288out_put_client:
2289 put_client_renew_locked(clp);
2290 goto out_no_session;
069b6ad4
AA
2291}
2292
345c2842
MJ
2293__be32
2294nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
2295{
2296 struct nfs4_client *conf, *unconf, *clp;
57b7b43b 2297 __be32 status = 0;
8daae4dc 2298 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
345c2842
MJ
2299
2300 nfs4_lock_state();
0a7ec377 2301 unconf = find_unconfirmed_client(&dc->clientid, true, nn);
8daae4dc 2302 conf = find_confirmed_client(&dc->clientid, true, nn);
78389046 2303 WARN_ON_ONCE(conf && unconf);
345c2842
MJ
2304
2305 if (conf) {
2306 clp = conf;
2307
c0293b01 2308 if (client_has_state(conf)) {
345c2842
MJ
2309 status = nfserr_clientid_busy;
2310 goto out;
2311 }
2312 } else if (unconf)
2313 clp = unconf;
2314 else {
2315 status = nfserr_stale_clientid;
2316 goto out;
2317 }
57266a6e
BF
2318 if (!mach_creds_match(clp, rqstp)) {
2319 status = nfserr_wrong_cred;
2320 goto out;
2321 }
345c2842
MJ
2322 expire_client(clp);
2323out:
2324 nfs4_unlock_state();
345c2842
MJ
2325 return status;
2326}
2327
4dc6ec00
BF
2328__be32
2329nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
2330{
57b7b43b 2331 __be32 status = 0;
bcecf1cc 2332
4dc6ec00
BF
2333 if (rc->rca_one_fs) {
2334 if (!cstate->current_fh.fh_dentry)
2335 return nfserr_nofilehandle;
2336 /*
2337 * We don't take advantage of the rca_one_fs case.
2338 * That's OK, it's optional, we can safely ignore it.
2339 */
2340 return nfs_ok;
2341 }
bcecf1cc 2342
4dc6ec00 2343 nfs4_lock_state();
bcecf1cc 2344 status = nfserr_complete_already;
a52d726b
JL
2345 if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
2346 &cstate->session->se_client->cl_flags))
bcecf1cc
MJ
2347 goto out;
2348
2349 status = nfserr_stale_clientid;
2350 if (is_client_expired(cstate->session->se_client))
4dc6ec00
BF
2351 /*
2352 * The following error isn't really legal.
2353 * But we only get here if the client just explicitly
2354 * destroyed the client. Surely it no longer cares what
2355 * error it gets back on an operation for the dead
2356 * client.
2357 */
bcecf1cc
MJ
2358 goto out;
2359
2360 status = nfs_ok;
2a4317c5 2361 nfsd4_client_record_create(cstate->session->se_client);
bcecf1cc 2362out:
4dc6ec00 2363 nfs4_unlock_state();
bcecf1cc 2364 return status;
4dc6ec00
BF
2365}
2366
b37ad28b 2367__be32
b591480b
BF
2368nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2369 struct nfsd4_setclientid *setclid)
1da177e4 2370{
a084daf5 2371 struct xdr_netobj clname = setclid->se_name;
1da177e4 2372 nfs4_verifier clverifier = setclid->se_verf;
28ce6054 2373 struct nfs4_client *conf, *unconf, *new;
b37ad28b 2374 __be32 status;
c212cecf
SK
2375 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2376
63db4632 2377 /* Cases below refer to rfc 3530 section 14.2.33: */
1da177e4 2378 nfs4_lock_state();
382a62e7 2379 conf = find_confirmed_client_by_name(&clname, nn);
28ce6054 2380 if (conf) {
63db4632 2381 /* case 0: */
1da177e4 2382 status = nfserr_clid_inuse;
e203d506
BF
2383 if (clp_used_exchangeid(conf))
2384 goto out;
026722c2 2385 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
363168b4
JL
2386 char addr_str[INET6_ADDRSTRLEN];
2387 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2388 sizeof(addr_str));
2389 dprintk("NFSD: setclientid: string in use by client "
2390 "at %s\n", addr_str);
1da177e4
LT
2391 goto out;
2392 }
1da177e4 2393 }
a99454aa 2394 unconf = find_unconfirmed_client_by_name(&clname, nn);
8f930711
BF
2395 if (unconf)
2396 expire_client(unconf);
3e772463 2397 status = nfserr_jukebox;
2216d449 2398 new = create_client(clname, rqstp, &clverifier);
8f930711
BF
2399 if (new == NULL)
2400 goto out;
34b232bb 2401 if (conf && same_verf(&conf->cl_verifier, &clverifier))
63db4632 2402 /* case 1: probable callback update */
1da177e4 2403 copy_clid(new, conf);
34b232bb 2404 else /* case 4 (new client) or cases 2, 3 (client reboot): */
c212cecf 2405 gen_clid(new, nn);
8323c3b2 2406 new->cl_minorversion = 0;
6f3d772f 2407 gen_callback(new, setclid, rqstp);
ac55fdc4 2408 add_to_unconfirmed(new);
1da177e4
LT
2409 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2410 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2411 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2412 status = nfs_ok;
2413out:
2414 nfs4_unlock_state();
2415 return status;
2416}
2417
2418
b37ad28b 2419__be32
b591480b
BF
2420nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2421 struct nfsd4_compound_state *cstate,
2422 struct nfsd4_setclientid_confirm *setclientid_confirm)
1da177e4 2423{
21ab45a4 2424 struct nfs4_client *conf, *unconf;
1da177e4
LT
2425 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2426 clientid_t * clid = &setclientid_confirm->sc_clientid;
b37ad28b 2427 __be32 status;
7f2210fa 2428 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 2429
2c142baa 2430 if (STALE_CLIENTID(clid, nn))
1da177e4 2431 return nfserr_stale_clientid;
1da177e4 2432 nfs4_lock_state();
21ab45a4 2433
8daae4dc 2434 conf = find_confirmed_client(clid, false, nn);
0a7ec377 2435 unconf = find_unconfirmed_client(clid, false, nn);
a186e767 2436 /*
8695b90a
BF
2437 * We try hard to give out unique clientid's, so if we get an
2438 * attempt to confirm the same clientid with a different cred,
2439 * there's a bug somewhere. Let's charitably assume it's our
2440 * bug.
a186e767 2441 */
8695b90a
BF
2442 status = nfserr_serverfault;
2443 if (unconf && !same_creds(&unconf->cl_cred, &rqstp->rq_cred))
2444 goto out;
2445 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
2446 goto out;
63db4632 2447 /* cases below refer to rfc 3530 section 14.2.34: */
90d700b7
BF
2448 if (!unconf || !same_verf(&confirm, &unconf->cl_confirm)) {
2449 if (conf && !unconf) /* case 2: probable retransmit */
1da177e4 2450 status = nfs_ok;
90d700b7
BF
2451 else /* case 4: client hasn't noticed we rebooted yet? */
2452 status = nfserr_stale_clientid;
2453 goto out;
2454 }
2455 status = nfs_ok;
2456 if (conf) { /* case 1: callback update */
8695b90a
BF
2457 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2458 nfsd4_probe_callback(conf);
2459 expire_client(unconf);
90d700b7 2460 } else { /* case 3: normal case; new or rebooted client */
382a62e7 2461 conf = find_confirmed_client_by_name(&unconf->cl_name, nn);
221a6876
BF
2462 if (conf) {
2463 status = mark_client_expired(conf);
2464 if (status)
2465 goto out;
8695b90a 2466 expire_client(conf);
221a6876 2467 }
8695b90a 2468 move_to_confirmed(unconf);
f3d03b92 2469 nfsd4_probe_callback(unconf);
08e8987c 2470 }
1da177e4 2471out:
1da177e4
LT
2472 nfs4_unlock_state();
2473 return status;
2474}
2475
32513b40
BF
2476static struct nfs4_file *nfsd4_alloc_file(void)
2477{
2478 return kmem_cache_alloc(file_slab, GFP_KERNEL);
2479}
2480
1da177e4 2481/* OPEN Share state helper functions */
32513b40 2482static void nfsd4_init_file(struct nfs4_file *fp, struct inode *ino)
1da177e4 2483{
1da177e4
LT
2484 unsigned int hashval = file_hashval(ino);
2485
32513b40 2486 atomic_set(&fp->fi_ref, 1);
32513b40
BF
2487 INIT_LIST_HEAD(&fp->fi_stateids);
2488 INIT_LIST_HEAD(&fp->fi_delegations);
2489 fp->fi_inode = igrab(ino);
2490 fp->fi_had_conflict = false;
2491 fp->fi_lease = NULL;
2492 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2493 memset(fp->fi_access, 0, sizeof(fp->fi_access));
2494 spin_lock(&recall_lock);
89876f8c 2495 hlist_add_head(&fp->fi_hash, &file_hashtbl[hashval]);
32513b40 2496 spin_unlock(&recall_lock);
1da177e4
LT
2497}
2498
e60d4398 2499static void
e18b890b 2500nfsd4_free_slab(struct kmem_cache **slab)
1da177e4 2501{
e60d4398
N
2502 if (*slab == NULL)
2503 return;
1a1d92c1 2504 kmem_cache_destroy(*slab);
e60d4398 2505 *slab = NULL;
1da177e4
LT
2506}
2507
e8ff2a84 2508void
1da177e4
LT
2509nfsd4_free_slabs(void)
2510{
fe0750e5
BF
2511 nfsd4_free_slab(&openowner_slab);
2512 nfsd4_free_slab(&lockowner_slab);
e60d4398 2513 nfsd4_free_slab(&file_slab);
5ac049ac 2514 nfsd4_free_slab(&stateid_slab);
5b2d21c1 2515 nfsd4_free_slab(&deleg_slab);
e60d4398 2516}
1da177e4 2517
72083396 2518int
e60d4398
N
2519nfsd4_init_slabs(void)
2520{
fe0750e5
BF
2521 openowner_slab = kmem_cache_create("nfsd4_openowners",
2522 sizeof(struct nfs4_openowner), 0, 0, NULL);
2523 if (openowner_slab == NULL)
2524 goto out_nomem;
2525 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
3c40794b 2526 sizeof(struct nfs4_lockowner), 0, 0, NULL);
fe0750e5 2527 if (lockowner_slab == NULL)
e60d4398
N
2528 goto out_nomem;
2529 file_slab = kmem_cache_create("nfsd4_files",
20c2df83 2530 sizeof(struct nfs4_file), 0, 0, NULL);
e60d4398
N
2531 if (file_slab == NULL)
2532 goto out_nomem;
5ac049ac 2533 stateid_slab = kmem_cache_create("nfsd4_stateids",
dcef0413 2534 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
5ac049ac
N
2535 if (stateid_slab == NULL)
2536 goto out_nomem;
5b2d21c1 2537 deleg_slab = kmem_cache_create("nfsd4_delegations",
20c2df83 2538 sizeof(struct nfs4_delegation), 0, 0, NULL);
5b2d21c1
N
2539 if (deleg_slab == NULL)
2540 goto out_nomem;
e60d4398
N
2541 return 0;
2542out_nomem:
2543 nfsd4_free_slabs();
2544 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2545 return -ENOMEM;
1da177e4
LT
2546}
2547
fe0750e5
BF
2548void nfs4_free_openowner(struct nfs4_openowner *oo)
2549{
2550 kfree(oo->oo_owner.so_owner.data);
2551 kmem_cache_free(openowner_slab, oo);
2552}
2553
2554void nfs4_free_lockowner(struct nfs4_lockowner *lo)
1da177e4 2555{
fe0750e5
BF
2556 kfree(lo->lo_owner.so_owner.data);
2557 kmem_cache_free(lockowner_slab, lo);
1da177e4
LT
2558}
2559
ff194bd9 2560static void init_nfs4_replay(struct nfs4_replay *rp)
1da177e4 2561{
ff194bd9
BF
2562 rp->rp_status = nfserr_serverfault;
2563 rp->rp_buflen = 0;
2564 rp->rp_buf = rp->rp_ibuf;
1da177e4
LT
2565}
2566
fe0750e5 2567static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
ff194bd9 2568{
1da177e4 2569 struct nfs4_stateowner *sop;
1da177e4 2570
fe0750e5 2571 sop = kmem_cache_alloc(slab, GFP_KERNEL);
ff194bd9
BF
2572 if (!sop)
2573 return NULL;
2574
2575 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2576 if (!sop->so_owner.data) {
fe0750e5 2577 kmem_cache_free(slab, sop);
1da177e4 2578 return NULL;
ff194bd9
BF
2579 }
2580 sop->so_owner.len = owner->len;
2581
ea1da636 2582 INIT_LIST_HEAD(&sop->so_stateids);
ff194bd9
BF
2583 sop->so_client = clp;
2584 init_nfs4_replay(&sop->so_replay);
2585 return sop;
2586}
2587
fe0750e5 2588static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
ff194bd9 2589{
9b531137
SK
2590 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2591
2592 list_add(&oo->oo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
fe0750e5 2593 list_add(&oo->oo_perclient, &clp->cl_openowners);
ff194bd9
BF
2594}
2595
fe0750e5 2596static struct nfs4_openowner *
ff194bd9 2597alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
fe0750e5 2598 struct nfs4_openowner *oo;
ff194bd9 2599
fe0750e5
BF
2600 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
2601 if (!oo)
ff194bd9 2602 return NULL;
fe0750e5
BF
2603 oo->oo_owner.so_is_open_owner = 1;
2604 oo->oo_owner.so_seqid = open->op_seqid;
d29b20cd 2605 oo->oo_flags = NFS4_OO_NEW;
fe0750e5 2606 oo->oo_time = 0;
38c387b5 2607 oo->oo_last_closed_stid = NULL;
fe0750e5
BF
2608 INIT_LIST_HEAD(&oo->oo_close_lru);
2609 hash_openowner(oo, clp, strhashval);
2610 return oo;
1da177e4
LT
2611}
2612
996e0938 2613static void init_open_stateid(struct nfs4_ol_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
fe0750e5 2614 struct nfs4_openowner *oo = open->op_openowner;
1da177e4 2615
3abdb607 2616 stp->st_stid.sc_type = NFS4_OPEN_STID;
ea1da636 2617 INIT_LIST_HEAD(&stp->st_lockowners);
fe0750e5 2618 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
8beefa24 2619 list_add(&stp->st_perfile, &fp->fi_stateids);
fe0750e5 2620 stp->st_stateowner = &oo->oo_owner;
13cd2184 2621 get_nfs4_file(fp);
1da177e4 2622 stp->st_file = fp;
1da177e4
LT
2623 stp->st_access_bmap = 0;
2624 stp->st_deny_bmap = 0;
82c5ff1b 2625 set_access(open->op_share_access, stp);
ce0fc43c 2626 set_deny(open->op_share_deny, stp);
4c4cd222 2627 stp->st_openstp = NULL;
1da177e4
LT
2628}
2629
fd39ca9a 2630static void
73758fed 2631move_to_close_lru(struct nfs4_openowner *oo, struct net *net)
1da177e4 2632{
73758fed
SK
2633 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
2634
fe0750e5 2635 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
1da177e4 2636
73758fed 2637 list_move_tail(&oo->oo_close_lru, &nn->close_lru);
fe0750e5 2638 oo->oo_time = get_seconds();
1da177e4
LT
2639}
2640
1da177e4 2641static int
599e0a22
BF
2642same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
2643 clientid_t *clid)
2644{
2645 return (sop->so_owner.len == owner->len) &&
2646 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
2647 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
1da177e4
LT
2648}
2649
fe0750e5 2650static struct nfs4_openowner *
9b531137
SK
2651find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
2652 bool sessions, struct nfsd_net *nn)
1da177e4 2653{
a50d2ad1
BF
2654 struct nfs4_stateowner *so;
2655 struct nfs4_openowner *oo;
d15c077e 2656 struct nfs4_client *clp;
1da177e4 2657
9b531137 2658 list_for_each_entry(so, &nn->ownerstr_hashtbl[hashval], so_strhash) {
16bfdaaf
BF
2659 if (!so->so_is_open_owner)
2660 continue;
a50d2ad1
BF
2661 if (same_owner_str(so, &open->op_owner, &open->op_clientid)) {
2662 oo = openowner(so);
d15c077e
BF
2663 clp = oo->oo_owner.so_client;
2664 if ((bool)clp->cl_minorversion != sessions)
2665 return NULL;
a50d2ad1
BF
2666 renew_client(oo->oo_owner.so_client);
2667 return oo;
2668 }
1da177e4
LT
2669 }
2670 return NULL;
2671}
2672
2673/* search file_hashtbl[] for file */
2674static struct nfs4_file *
2675find_file(struct inode *ino)
2676{
2677 unsigned int hashval = file_hashval(ino);
2678 struct nfs4_file *fp;
2679
8b671b80 2680 spin_lock(&recall_lock);
89876f8c 2681 hlist_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
13cd2184
N
2682 if (fp->fi_inode == ino) {
2683 get_nfs4_file(fp);
8b671b80 2684 spin_unlock(&recall_lock);
1da177e4 2685 return fp;
13cd2184 2686 }
1da177e4 2687 }
8b671b80 2688 spin_unlock(&recall_lock);
1da177e4
LT
2689 return NULL;
2690}
2691
1da177e4
LT
2692/*
2693 * Called to check deny when READ with all zero stateid or
2694 * WRITE with all zero or all one stateid
2695 */
b37ad28b 2696static __be32
1da177e4
LT
2697nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2698{
2699 struct inode *ino = current_fh->fh_dentry->d_inode;
2700 struct nfs4_file *fp;
dcef0413 2701 struct nfs4_ol_stateid *stp;
b37ad28b 2702 __be32 ret;
1da177e4 2703
1da177e4 2704 fp = find_file(ino);
13cd2184
N
2705 if (!fp)
2706 return nfs_ok;
b700949b 2707 ret = nfserr_locked;
1da177e4 2708 /* Search for conflicting share reservations */
13cd2184 2709 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
ce0fc43c
JL
2710 if (test_deny(deny_type, stp) ||
2711 test_deny(NFS4_SHARE_DENY_BOTH, stp))
13cd2184 2712 goto out;
1da177e4 2713 }
13cd2184
N
2714 ret = nfs_ok;
2715out:
2716 put_nfs4_file(fp);
2717 return ret;
1da177e4
LT
2718}
2719
6b57d9c8 2720static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
1da177e4 2721{
e8c69d17
BF
2722 struct nfs4_client *clp = dp->dl_stid.sc_client;
2723 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2724
1da177e4
LT
2725 /* We're assuming the state code never drops its reference
2726 * without first removing the lease. Since we're in this lease
2727 * callback (and since the lease code is serialized by the kernel
2728 * lock) we know the server hasn't removed the lease yet, we know
2729 * it's safe to take a reference: */
2730 atomic_inc(&dp->dl_count);
2731
e8c69d17 2732 list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru);
1da177e4 2733
1c8c601a 2734 /* Only place dl_time is set; protected by i_lock: */
1da177e4
LT
2735 dp->dl_time = get_seconds();
2736
6b57d9c8
BF
2737 nfsd4_cb_recall(dp);
2738}
2739
1c8c601a 2740/* Called from break_lease() with i_lock held. */
6b57d9c8
BF
2741static void nfsd_break_deleg_cb(struct file_lock *fl)
2742{
acfdf5c3
BF
2743 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
2744 struct nfs4_delegation *dp;
6b57d9c8 2745
7fa10cd1
BF
2746 if (!fp) {
2747 WARN(1, "(%p)->fl_owner NULL\n", fl);
2748 return;
2749 }
2750 if (fp->fi_had_conflict) {
2751 WARN(1, "duplicate break on %p\n", fp);
2752 return;
2753 }
0272e1fd
BF
2754 /*
2755 * We don't want the locks code to timeout the lease for us;
acfdf5c3 2756 * we'll remove it ourself if a delegation isn't returned
6b57d9c8 2757 * in time:
0272e1fd
BF
2758 */
2759 fl->fl_break_time = 0;
1da177e4 2760
5d926e8c 2761 spin_lock(&recall_lock);
acfdf5c3
BF
2762 fp->fi_had_conflict = true;
2763 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2764 nfsd_break_one_deleg(dp);
5d926e8c 2765 spin_unlock(&recall_lock);
1da177e4
LT
2766}
2767
1da177e4
LT
2768static
2769int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2770{
2771 if (arg & F_UNLCK)
2772 return lease_modify(onlist, arg);
2773 else
2774 return -EAGAIN;
2775}
2776
7b021967 2777static const struct lock_manager_operations nfsd_lease_mng_ops = {
8fb47a4f
BF
2778 .lm_break = nfsd_break_deleg_cb,
2779 .lm_change = nfsd_change_deleg_cb,
1da177e4
LT
2780};
2781
7a8711c9
BF
2782static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
2783{
2784 if (nfsd4_has_session(cstate))
2785 return nfs_ok;
2786 if (seqid == so->so_seqid - 1)
2787 return nfserr_replay_me;
2788 if (seqid == so->so_seqid)
2789 return nfs_ok;
2790 return nfserr_bad_seqid;
2791}
1da177e4 2792
b37ad28b 2793__be32
6668958f 2794nfsd4_process_open1(struct nfsd4_compound_state *cstate,
3320fef1 2795 struct nfsd4_open *open, struct nfsd_net *nn)
1da177e4 2796{
1da177e4
LT
2797 clientid_t *clientid = &open->op_clientid;
2798 struct nfs4_client *clp = NULL;
2799 unsigned int strhashval;
fe0750e5 2800 struct nfs4_openowner *oo = NULL;
4cdc951b 2801 __be32 status;
1da177e4 2802
2c142baa 2803 if (STALE_CLIENTID(&open->op_clientid, nn))
1da177e4 2804 return nfserr_stale_clientid;
32513b40
BF
2805 /*
2806 * In case we need it later, after we've already created the
2807 * file and don't want to risk a further failure:
2808 */
2809 open->op_file = nfsd4_alloc_file();
2810 if (open->op_file == NULL)
2811 return nfserr_jukebox;
1da177e4 2812
16bfdaaf 2813 strhashval = ownerstr_hashval(clientid->cl_id, &open->op_owner);
9b531137 2814 oo = find_openstateowner_str(strhashval, open, cstate->minorversion, nn);
fe0750e5
BF
2815 open->op_openowner = oo;
2816 if (!oo) {
8daae4dc
SK
2817 clp = find_confirmed_client(clientid, cstate->minorversion,
2818 nn);
1da177e4 2819 if (clp == NULL)
0f442aa2 2820 return nfserr_expired;
bcf130f9 2821 goto new_owner;
1da177e4 2822 }
dad1c067 2823 if (!(oo->oo_flags & NFS4_OO_CONFIRMED)) {
0f442aa2 2824 /* Replace unconfirmed owners without checking for replay. */
fe0750e5
BF
2825 clp = oo->oo_owner.so_client;
2826 release_openowner(oo);
2827 open->op_openowner = NULL;
bcf130f9 2828 goto new_owner;
0f442aa2 2829 }
4cdc951b
BF
2830 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
2831 if (status)
2832 return status;
2833 clp = oo->oo_owner.so_client;
2834 goto alloc_stateid;
bcf130f9
BF
2835new_owner:
2836 oo = alloc_init_open_stateowner(strhashval, clp, open);
2837 if (oo == NULL)
2838 return nfserr_jukebox;
2839 open->op_openowner = oo;
4cdc951b
BF
2840alloc_stateid:
2841 open->op_stp = nfs4_alloc_stateid(clp);
2842 if (!open->op_stp)
2843 return nfserr_jukebox;
0f442aa2 2844 return nfs_ok;
1da177e4
LT
2845}
2846
b37ad28b 2847static inline __be32
4a6e43e6
N
2848nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2849{
2850 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2851 return nfserr_openmode;
2852 else
2853 return nfs_ok;
2854}
2855
f459e453 2856static int share_access_to_flags(u32 share_access)
52f4fb43 2857{
f459e453 2858 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
52f4fb43
N
2859}
2860
38c2f4b1 2861static struct nfs4_delegation *find_deleg_stateid(struct nfs4_client *cl, stateid_t *s)
24a0111e 2862{
f459e453 2863 struct nfs4_stid *ret;
24a0111e 2864
38c2f4b1 2865 ret = find_stateid_by_type(cl, s, NFS4_DELEG_STID);
f459e453
BF
2866 if (!ret)
2867 return NULL;
2868 return delegstateid(ret);
24a0111e
BF
2869}
2870
8b289b2c
BF
2871static bool nfsd4_is_deleg_cur(struct nfsd4_open *open)
2872{
2873 return open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR ||
2874 open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH;
2875}
2876
b37ad28b 2877static __be32
41d22663 2878nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open,
567d9829
N
2879 struct nfs4_delegation **dp)
2880{
2881 int flags;
b37ad28b 2882 __be32 status = nfserr_bad_stateid;
567d9829 2883
38c2f4b1 2884 *dp = find_deleg_stateid(cl, &open->op_delegate_stateid);
567d9829 2885 if (*dp == NULL)
c44c5eeb 2886 goto out;
24a0111e 2887 flags = share_access_to_flags(open->op_share_access);
567d9829
N
2888 status = nfs4_check_delegmode(*dp, flags);
2889 if (status)
2890 *dp = NULL;
c44c5eeb 2891out:
8b289b2c 2892 if (!nfsd4_is_deleg_cur(open))
c44c5eeb
N
2893 return nfs_ok;
2894 if (status)
2895 return status;
dad1c067 2896 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
c44c5eeb 2897 return nfs_ok;
567d9829
N
2898}
2899
b37ad28b 2900static __be32
dcef0413 2901nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_ol_stateid **stpp)
1da177e4 2902{
dcef0413 2903 struct nfs4_ol_stateid *local;
fe0750e5 2904 struct nfs4_openowner *oo = open->op_openowner;
1da177e4 2905
8beefa24 2906 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
1da177e4
LT
2907 /* ignore lock owners */
2908 if (local->st_stateowner->so_is_open_owner == 0)
2909 continue;
2910 /* remember if we have seen this open owner */
fe0750e5 2911 if (local->st_stateowner == &oo->oo_owner)
1da177e4
LT
2912 *stpp = local;
2913 /* check for conflicting share reservations */
2914 if (!test_share(local, open))
77eaae8d 2915 return nfserr_share_denied;
1da177e4 2916 }
77eaae8d 2917 return nfs_ok;
1da177e4
LT
2918}
2919
21fb4016
BF
2920static inline int nfs4_access_to_access(u32 nfs4_access)
2921{
2922 int flags = 0;
2923
2924 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
2925 flags |= NFSD_MAY_READ;
2926 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
2927 flags |= NFSD_MAY_WRITE;
2928 return flags;
2929}
2930
0c12eaff
CB
2931static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
2932 struct svc_fh *cur_fh, struct nfsd4_open *open)
f9d7562f
BF
2933{
2934 __be32 status;
0c12eaff
CB
2935 int oflag = nfs4_access_to_omode(open->op_share_access);
2936 int access = nfs4_access_to_access(open->op_share_access);
2937
f9d7562f
BF
2938 if (!fp->fi_fds[oflag]) {
2939 status = nfsd_open(rqstp, cur_fh, S_IFREG, access,
2940 &fp->fi_fds[oflag]);
f9d7562f
BF
2941 if (status)
2942 return status;
2943 }
2944 nfs4_file_get_access(fp, oflag);
2945
2946 return nfs_ok;
2947}
2948
b37ad28b 2949static inline __be32
1da177e4
LT
2950nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2951 struct nfsd4_open *open)
2952{
2953 struct iattr iattr = {
2954 .ia_valid = ATTR_SIZE,
2955 .ia_size = 0,
2956 };
2957 if (!open->op_truncate)
2958 return 0;
2959 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
9246585a 2960 return nfserr_inval;
1da177e4
LT
2961 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2962}
2963
b37ad28b 2964static __be32
dcef0413 2965nfs4_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 2966{
b6d2f1ca 2967 u32 op_share_access = open->op_share_access;
7d947842 2968 bool new_access;
b37ad28b 2969 __be32 status;
1da177e4 2970
82c5ff1b 2971 new_access = !test_access(op_share_access, stp);
f9d7562f 2972 if (new_access) {
0c12eaff 2973 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
f9d7562f
BF
2974 if (status)
2975 return status;
6c26d08f 2976 }
1da177e4
LT
2977 status = nfsd4_truncate(rqstp, cur_fh, open);
2978 if (status) {
f9d7562f 2979 if (new_access) {
f197c271 2980 int oflag = nfs4_access_to_omode(op_share_access);
f9d7562f
BF
2981 nfs4_file_put_access(fp, oflag);
2982 }
1da177e4
LT
2983 return status;
2984 }
2985 /* remember the open */
82c5ff1b 2986 set_access(op_share_access, stp);
ce0fc43c 2987 set_deny(open->op_share_deny, stp);
1da177e4
LT
2988
2989 return nfs_ok;
2990}
2991
2992
1da177e4 2993static void
1255a8f3 2994nfs4_set_claim_prev(struct nfsd4_open *open, bool has_session)
1da177e4 2995{
dad1c067 2996 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
1da177e4
LT
2997}
2998
14a24e99
BF
2999/* Should we give out recallable state?: */
3000static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
3001{
3002 if (clp->cl_cb_state == NFSD4_CB_UP)
3003 return true;
3004 /*
3005 * In the sessions case, since we don't have to establish a
3006 * separate connection for callbacks, we assume it's OK
3007 * until we hear otherwise:
3008 */
3009 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
3010}
3011
22d38c4c
BF
3012static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag)
3013{
3014 struct file_lock *fl;
3015
3016 fl = locks_alloc_lock();
3017 if (!fl)
3018 return NULL;
3019 locks_init_lock(fl);
3020 fl->fl_lmops = &nfsd_lease_mng_ops;
617588d5 3021 fl->fl_flags = FL_DELEG;
22d38c4c
BF
3022 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
3023 fl->fl_end = OFFSET_MAX;
acfdf5c3 3024 fl->fl_owner = (fl_owner_t)(dp->dl_file);
22d38c4c 3025 fl->fl_pid = current->tgid;
22d38c4c
BF
3026 return fl;
3027}
3028
99c41515 3029static int nfs4_setlease(struct nfs4_delegation *dp)
edab9782 3030{
acfdf5c3 3031 struct nfs4_file *fp = dp->dl_file;
edab9782
BF
3032 struct file_lock *fl;
3033 int status;
3034
99c41515 3035 fl = nfs4_alloc_init_lease(dp, NFS4_OPEN_DELEGATE_READ);
edab9782
BF
3036 if (!fl)
3037 return -ENOMEM;
acfdf5c3 3038 fl->fl_file = find_readable_file(fp);
2a74aba7 3039 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
acfdf5c3 3040 status = vfs_setlease(fl->fl_file, fl->fl_type, &fl);
edab9782 3041 if (status) {
acfdf5c3 3042 list_del_init(&dp->dl_perclnt);
edab9782 3043 locks_free_lock(fl);
b1948a64 3044 return status;
edab9782 3045 }
acfdf5c3 3046 fp->fi_lease = fl;
cb0942b8 3047 fp->fi_deleg_file = get_file(fl->fl_file);
acfdf5c3
BF
3048 atomic_set(&fp->fi_delegees, 1);
3049 list_add(&dp->dl_perfile, &fp->fi_delegations);
3050 return 0;
3051}
3052
bf7bd3e9 3053static int nfs4_set_delegation(struct nfs4_delegation *dp, struct nfs4_file *fp)
acfdf5c3 3054{
bf7bd3e9 3055 int status;
acfdf5c3 3056
bf7bd3e9
BF
3057 if (fp->fi_had_conflict)
3058 return -EAGAIN;
3059 get_nfs4_file(fp);
3060 dp->dl_file = fp;
3061 if (!fp->fi_lease) {
3062 status = nfs4_setlease(dp);
3063 if (status)
3064 goto out_free;
3065 return 0;
3066 }
acfdf5c3
BF
3067 spin_lock(&recall_lock);
3068 if (fp->fi_had_conflict) {
3069 spin_unlock(&recall_lock);
bf7bd3e9
BF
3070 status = -EAGAIN;
3071 goto out_free;
acfdf5c3
BF
3072 }
3073 atomic_inc(&fp->fi_delegees);
3074 list_add(&dp->dl_perfile, &fp->fi_delegations);
3075 spin_unlock(&recall_lock);
2a74aba7 3076 list_add(&dp->dl_perclnt, &dp->dl_stid.sc_client->cl_delegations);
edab9782 3077 return 0;
bf7bd3e9
BF
3078out_free:
3079 put_nfs4_file(fp);
3080 dp->dl_file = fp;
3081 return status;
edab9782
BF
3082}
3083
4aa8913c
BH
3084static void nfsd4_open_deleg_none_ext(struct nfsd4_open *open, int status)
3085{
3086 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3087 if (status == -EAGAIN)
3088 open->op_why_no_deleg = WND4_CONTENTION;
3089 else {
3090 open->op_why_no_deleg = WND4_RESOURCE;
3091 switch (open->op_deleg_want) {
3092 case NFS4_SHARE_WANT_READ_DELEG:
3093 case NFS4_SHARE_WANT_WRITE_DELEG:
3094 case NFS4_SHARE_WANT_ANY_DELEG:
3095 break;
3096 case NFS4_SHARE_WANT_CANCEL:
3097 open->op_why_no_deleg = WND4_CANCELLED;
3098 break;
3099 case NFS4_SHARE_WANT_NO_DELEG:
063b0fb9 3100 WARN_ON_ONCE(1);
4aa8913c
BH
3101 }
3102 }
3103}
3104
1da177e4
LT
3105/*
3106 * Attempt to hand out a delegation.
99c41515
BF
3107 *
3108 * Note we don't support write delegations, and won't until the vfs has
3109 * proper support for them.
1da177e4
LT
3110 */
3111static void
5ccb0066
SK
3112nfs4_open_delegation(struct net *net, struct svc_fh *fh,
3113 struct nfsd4_open *open, struct nfs4_ol_stateid *stp)
1da177e4
LT
3114{
3115 struct nfs4_delegation *dp;
fe0750e5 3116 struct nfs4_openowner *oo = container_of(stp->st_stateowner, struct nfs4_openowner, oo_owner);
14a24e99 3117 int cb_up;
99c41515 3118 int status = 0;
1da177e4 3119
fe0750e5 3120 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
7b190fec
N
3121 open->op_recall = 0;
3122 switch (open->op_claim_type) {
3123 case NFS4_OPEN_CLAIM_PREVIOUS:
2bf23875 3124 if (!cb_up)
7b190fec 3125 open->op_recall = 1;
99c41515
BF
3126 if (open->op_delegate_type != NFS4_OPEN_DELEGATE_READ)
3127 goto out_no_deleg;
7b190fec
N
3128 break;
3129 case NFS4_OPEN_CLAIM_NULL:
99c41515
BF
3130 /*
3131 * Let's not give out any delegations till everyone's
3132 * had the chance to reclaim theirs....
3133 */
5ccb0066 3134 if (locks_in_grace(net))
99c41515 3135 goto out_no_deleg;
dad1c067 3136 if (!cb_up || !(oo->oo_flags & NFS4_OO_CONFIRMED))
99c41515 3137 goto out_no_deleg;
9a0590ae
SD
3138 /*
3139 * Also, if the file was opened for write or
3140 * create, there's a good chance the client's
3141 * about to write to it, resulting in an
3142 * immediate recall (since we don't support
3143 * write delegations):
3144 */
7b190fec 3145 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
99c41515
BF
3146 goto out_no_deleg;
3147 if (open->op_create == NFS4_OPEN_CREATE)
3148 goto out_no_deleg;
7b190fec
N
3149 break;
3150 default:
99c41515 3151 goto out_no_deleg;
7b190fec 3152 }
99c41515 3153 dp = alloc_init_deleg(oo->oo_owner.so_client, stp, fh);
dd239cc0
BF
3154 if (dp == NULL)
3155 goto out_no_deleg;
bf7bd3e9 3156 status = nfs4_set_delegation(dp, stp->st_file);
edab9782 3157 if (status)
dd239cc0 3158 goto out_free;
1da177e4 3159
d5477a8d 3160 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
1da177e4 3161
8c10cbdb 3162 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
d5477a8d 3163 STATEID_VAL(&dp->dl_stid.sc_stateid));
99c41515 3164 open->op_delegate_type = NFS4_OPEN_DELEGATE_READ;
dd239cc0
BF
3165 return;
3166out_free:
b78800ba 3167 remove_stid(&dp->dl_stid);
acfdf5c3 3168 nfs4_put_delegation(dp);
dd239cc0 3169out_no_deleg:
99c41515
BF
3170 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE;
3171 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS &&
d08d32e6 3172 open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) {
99c41515 3173 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
d08d32e6
BF
3174 open->op_recall = 1;
3175 }
99c41515
BF
3176
3177 /* 4.1 client asking for a delegation? */
3178 if (open->op_deleg_want)
3179 nfsd4_open_deleg_none_ext(open, status);
3180 return;
1da177e4
LT
3181}
3182
e27f49c3
BH
3183static void nfsd4_deleg_xgrade_none_ext(struct nfsd4_open *open,
3184 struct nfs4_delegation *dp)
3185{
3186 if (open->op_deleg_want == NFS4_SHARE_WANT_READ_DELEG &&
3187 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3188 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3189 open->op_why_no_deleg = WND4_NOT_SUPP_DOWNGRADE;
3190 } else if (open->op_deleg_want == NFS4_SHARE_WANT_WRITE_DELEG &&
3191 dp->dl_type == NFS4_OPEN_DELEGATE_WRITE) {
3192 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3193 open->op_why_no_deleg = WND4_NOT_SUPP_UPGRADE;
3194 }
3195 /* Otherwise the client must be confused wanting a delegation
3196 * it already has, therefore we don't return
3197 * NFS4_OPEN_DELEGATE_NONE_EXT and reason.
3198 */
3199}
3200
1da177e4
LT
3201/*
3202 * called with nfs4_lock_state() held.
3203 */
b37ad28b 3204__be32
1da177e4
LT
3205nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
3206{
6668958f 3207 struct nfsd4_compoundres *resp = rqstp->rq_resp;
38c2f4b1 3208 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client;
1da177e4
LT
3209 struct nfs4_file *fp = NULL;
3210 struct inode *ino = current_fh->fh_dentry->d_inode;
dcef0413 3211 struct nfs4_ol_stateid *stp = NULL;
567d9829 3212 struct nfs4_delegation *dp = NULL;
b37ad28b 3213 __be32 status;
1da177e4 3214
1da177e4
LT
3215 /*
3216 * Lookup file; if found, lookup stateid and check open request,
3217 * and check for delegations in the process of being recalled.
3218 * If not found, create the nfs4_file struct
3219 */
3220 fp = find_file(ino);
3221 if (fp) {
3222 if ((status = nfs4_check_open(fp, open, &stp)))
3223 goto out;
41d22663 3224 status = nfs4_check_deleg(cl, open, &dp);
c44c5eeb
N
3225 if (status)
3226 goto out;
1da177e4 3227 } else {
c44c5eeb 3228 status = nfserr_bad_stateid;
8b289b2c 3229 if (nfsd4_is_deleg_cur(open))
c44c5eeb 3230 goto out;
3e772463 3231 status = nfserr_jukebox;
32513b40
BF
3232 fp = open->op_file;
3233 open->op_file = NULL;
3234 nfsd4_init_file(fp, ino);
1da177e4
LT
3235 }
3236
3237 /*
3238 * OPEN the file, or upgrade an existing OPEN.
3239 * If truncate fails, the OPEN fails.
3240 */
3241 if (stp) {
3242 /* Stateid was found, this is an OPEN upgrade */
f9d7562f 3243 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
1da177e4
LT
3244 if (status)
3245 goto out;
3246 } else {
4cdc951b 3247 status = nfs4_get_vfs_file(rqstp, fp, current_fh, open);
4af82504
BF
3248 if (status)
3249 goto out;
3250 status = nfsd4_truncate(rqstp, current_fh, open);
567d9829 3251 if (status)
1da177e4 3252 goto out;
4cdc951b
BF
3253 stp = open->op_stp;
3254 open->op_stp = NULL;
996e0938 3255 init_open_stateid(stp, fp, open);
1da177e4 3256 }
dcef0413
BF
3257 update_stateid(&stp->st_stid.sc_stateid);
3258 memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4 3259
d24433cd 3260 if (nfsd4_has_session(&resp->cstate)) {
dad1c067 3261 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
6668958f 3262
d24433cd
BH
3263 if (open->op_deleg_want & NFS4_SHARE_WANT_NO_DELEG) {
3264 open->op_delegate_type = NFS4_OPEN_DELEGATE_NONE_EXT;
3265 open->op_why_no_deleg = WND4_NOT_WANTED;
3266 goto nodeleg;
3267 }
3268 }
3269
1da177e4
LT
3270 /*
3271 * Attempt to hand out a delegation. No error return, because the
3272 * OPEN succeeds even if we fail.
3273 */
5ccb0066 3274 nfs4_open_delegation(SVC_NET(rqstp), current_fh, open, stp);
d24433cd 3275nodeleg:
1da177e4
LT
3276 status = nfs_ok;
3277
8c10cbdb 3278 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
dcef0413 3279 STATEID_VAL(&stp->st_stid.sc_stateid));
1da177e4 3280out:
d24433cd
BH
3281 /* 4.1 client trying to upgrade/downgrade delegation? */
3282 if (open->op_delegate_type == NFS4_OPEN_DELEGATE_NONE && dp &&
e27f49c3
BH
3283 open->op_deleg_want)
3284 nfsd4_deleg_xgrade_none_ext(open, dp);
d24433cd 3285
13cd2184
N
3286 if (fp)
3287 put_nfs4_file(fp);
37515177 3288 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1255a8f3 3289 nfs4_set_claim_prev(open, nfsd4_has_session(&resp->cstate));
1da177e4
LT
3290 /*
3291 * To finish the open response, we just need to set the rflags.
3292 */
3293 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
dad1c067 3294 if (!(open->op_openowner->oo_flags & NFS4_OO_CONFIRMED) &&
6668958f 3295 !nfsd4_has_session(&resp->cstate))
1da177e4
LT
3296 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
3297
3298 return status;
3299}
3300
d29b20cd
BF
3301void nfsd4_cleanup_open_state(struct nfsd4_open *open, __be32 status)
3302{
3303 if (open->op_openowner) {
3304 struct nfs4_openowner *oo = open->op_openowner;
3305
3306 if (!list_empty(&oo->oo_owner.so_stateids))
3307 list_del_init(&oo->oo_close_lru);
3308 if (oo->oo_flags & NFS4_OO_NEW) {
3309 if (status) {
3310 release_openowner(oo);
3311 open->op_openowner = NULL;
3312 } else
3313 oo->oo_flags &= ~NFS4_OO_NEW;
3314 }
3315 }
32513b40
BF
3316 if (open->op_file)
3317 nfsd4_free_file(open->op_file);
4cdc951b 3318 if (open->op_stp)
ef79859e 3319 free_generic_stateid(open->op_stp);
d29b20cd
BF
3320}
3321
9b2ef62b
BF
3322static __be32 lookup_clientid(clientid_t *clid, bool session, struct nfsd_net *nn, struct nfs4_client **clp)
3323{
3324 struct nfs4_client *found;
3325
3326 if (STALE_CLIENTID(clid, nn))
3327 return nfserr_stale_clientid;
3328 found = find_confirmed_client(clid, session, nn);
3329 if (clp)
3330 *clp = found;
3331 return found ? nfs_ok : nfserr_expired;
3332}
3333
b37ad28b 3334__be32
b591480b
BF
3335nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3336 clientid_t *clid)
1da177e4
LT
3337{
3338 struct nfs4_client *clp;
b37ad28b 3339 __be32 status;
7f2210fa 3340 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4
LT
3341
3342 nfs4_lock_state();
3343 dprintk("process_renew(%08x/%08x): starting\n",
3344 clid->cl_boot, clid->cl_id);
9b2ef62b
BF
3345 status = lookup_clientid(clid, cstate->minorversion, nn, &clp);
3346 if (status)
1da177e4 3347 goto out;
1da177e4 3348 status = nfserr_cb_path_down;
ea1da636 3349 if (!list_empty(&clp->cl_delegations)
77a3569d 3350 && clp->cl_cb_state != NFSD4_CB_UP)
1da177e4
LT
3351 goto out;
3352 status = nfs_ok;
3353out:
3354 nfs4_unlock_state();
3355 return status;
3356}
3357
a76b4319 3358static void
12760c66 3359nfsd4_end_grace(struct nfsd_net *nn)
a76b4319 3360{
33dcc481 3361 /* do nothing if grace period already ended */
a51c84ed 3362 if (nn->grace_ended)
33dcc481
JL
3363 return;
3364
a76b4319 3365 dprintk("NFSD: end of grace period\n");
a51c84ed 3366 nn->grace_ended = true;
12760c66 3367 nfsd4_record_grace_done(nn, nn->boot_time);
5e1533c7 3368 locks_end_grace(&nn->nfsd4_manager);
e46b498c
BF
3369 /*
3370 * Now that every NFSv4 client has had the chance to recover and
3371 * to see the (possibly new, possibly shorter) lease time, we
3372 * can safely set the next grace time to the current lease time:
3373 */
5284b44e 3374 nn->nfsd4_grace = nn->nfsd4_lease;
a76b4319
N
3375}
3376
fd39ca9a 3377static time_t
09121281 3378nfs4_laundromat(struct nfsd_net *nn)
1da177e4
LT
3379{
3380 struct nfs4_client *clp;
fe0750e5 3381 struct nfs4_openowner *oo;
1da177e4
LT
3382 struct nfs4_delegation *dp;
3383 struct list_head *pos, *next, reaplist;
3d733711
SK
3384 time_t cutoff = get_seconds() - nn->nfsd4_lease;
3385 time_t t, clientid_val = nn->nfsd4_lease;
3386 time_t u, test_val = nn->nfsd4_lease;
1da177e4
LT
3387
3388 nfs4_lock_state();
3389
3390 dprintk("NFSD: laundromat service - starting\n");
12760c66 3391 nfsd4_end_grace(nn);
36acb66b 3392 INIT_LIST_HEAD(&reaplist);
c9a49628 3393 spin_lock(&nn->client_lock);
5ed58bb2 3394 list_for_each_safe(pos, next, &nn->client_lru) {
1da177e4
LT
3395 clp = list_entry(pos, struct nfs4_client, cl_lru);
3396 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3397 t = clp->cl_time - cutoff;
3398 if (clientid_val > t)
3399 clientid_val = t;
3400 break;
3401 }
221a6876 3402 if (mark_client_expired_locked(clp)) {
d7682988
BH
3403 dprintk("NFSD: client in use (clientid %08x)\n",
3404 clp->cl_clientid.cl_id);
3405 continue;
3406 }
221a6876 3407 list_move(&clp->cl_lru, &reaplist);
36acb66b 3408 }
c9a49628 3409 spin_unlock(&nn->client_lock);
36acb66b
BH
3410 list_for_each_safe(pos, next, &reaplist) {
3411 clp = list_entry(pos, struct nfs4_client, cl_lru);
1da177e4
LT
3412 dprintk("NFSD: purging unused client (clientid %08x)\n",
3413 clp->cl_clientid.cl_id);
3414 expire_client(clp);
3415 }
1da177e4 3416 spin_lock(&recall_lock);
e8c69d17 3417 list_for_each_safe(pos, next, &nn->del_recall_lru) {
1da177e4 3418 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4e37a7c2
SK
3419 if (net_generic(dp->dl_stid.sc_client->net, nfsd_net_id) != nn)
3420 continue;
1da177e4
LT
3421 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
3422 u = dp->dl_time - cutoff;
3423 if (test_val > u)
3424 test_val = u;
3425 break;
3426 }
1da177e4
LT
3427 list_move(&dp->dl_recall_lru, &reaplist);
3428 }
3429 spin_unlock(&recall_lock);
3430 list_for_each_safe(pos, next, &reaplist) {
3431 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3bd64a5b 3432 revoke_delegation(dp);
1da177e4 3433 }
3d733711 3434 test_val = nn->nfsd4_lease;
73758fed 3435 list_for_each_safe(pos, next, &nn->close_lru) {
fe0750e5
BF
3436 oo = container_of(pos, struct nfs4_openowner, oo_close_lru);
3437 if (time_after((unsigned long)oo->oo_time, (unsigned long)cutoff)) {
3438 u = oo->oo_time - cutoff;
1da177e4
LT
3439 if (test_val > u)
3440 test_val = u;
3441 break;
3442 }
fe0750e5 3443 release_openowner(oo);
1da177e4
LT
3444 }
3445 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
3446 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
3447 nfs4_unlock_state();
3448 return clientid_val;
3449}
3450
a254b246
HH
3451static struct workqueue_struct *laundry_wq;
3452static void laundromat_main(struct work_struct *);
a254b246
HH
3453
3454static void
09121281 3455laundromat_main(struct work_struct *laundry)
1da177e4
LT
3456{
3457 time_t t;
09121281
SK
3458 struct delayed_work *dwork = container_of(laundry, struct delayed_work,
3459 work);
3460 struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
3461 laundromat_work);
1da177e4 3462
09121281 3463 t = nfs4_laundromat(nn);
1da177e4 3464 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
09121281 3465 queue_delayed_work(laundry_wq, &nn->laundromat_work, t*HZ);
1da177e4
LT
3466}
3467
f7a4d872 3468static inline __be32 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
1da177e4 3469{
f7a4d872
BF
3470 if (fhp->fh_dentry->d_inode != stp->st_file->fi_inode)
3471 return nfserr_bad_stateid;
3472 return nfs_ok;
1da177e4
LT
3473}
3474
1da177e4 3475static inline int
82c5ff1b 3476access_permit_read(struct nfs4_ol_stateid *stp)
1da177e4 3477{
82c5ff1b
JL
3478 return test_access(NFS4_SHARE_ACCESS_READ, stp) ||
3479 test_access(NFS4_SHARE_ACCESS_BOTH, stp) ||
3480 test_access(NFS4_SHARE_ACCESS_WRITE, stp);
1da177e4
LT
3481}
3482
3483static inline int
82c5ff1b 3484access_permit_write(struct nfs4_ol_stateid *stp)
1da177e4 3485{
82c5ff1b
JL
3486 return test_access(NFS4_SHARE_ACCESS_WRITE, stp) ||
3487 test_access(NFS4_SHARE_ACCESS_BOTH, stp);
1da177e4
LT
3488}
3489
3490static
dcef0413 3491__be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
1da177e4 3492{
b37ad28b 3493 __be32 status = nfserr_openmode;
1da177e4 3494
02921914
BF
3495 /* For lock stateid's, we test the parent open, not the lock: */
3496 if (stp->st_openstp)
3497 stp = stp->st_openstp;
82c5ff1b 3498 if ((flags & WR_STATE) && !access_permit_write(stp))
1da177e4 3499 goto out;
82c5ff1b 3500 if ((flags & RD_STATE) && !access_permit_read(stp))
1da177e4
LT
3501 goto out;
3502 status = nfs_ok;
3503out:
3504 return status;
3505}
3506
b37ad28b 3507static inline __be32
5ccb0066 3508check_special_stateids(struct net *net, svc_fh *current_fh, stateid_t *stateid, int flags)
1da177e4 3509{
203a8c8e 3510 if (ONE_STATEID(stateid) && (flags & RD_STATE))
1da177e4 3511 return nfs_ok;
5ccb0066 3512 else if (locks_in_grace(net)) {
25985edc 3513 /* Answer in remaining cases depends on existence of
1da177e4
LT
3514 * conflicting state; so we must wait out the grace period. */
3515 return nfserr_grace;
3516 } else if (flags & WR_STATE)
3517 return nfs4_share_conflict(current_fh,
3518 NFS4_SHARE_DENY_WRITE);
3519 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
3520 return nfs4_share_conflict(current_fh,
3521 NFS4_SHARE_DENY_READ);
3522}
3523
3524/*
3525 * Allow READ/WRITE during grace period on recovered state only for files
3526 * that are not able to provide mandatory locking.
3527 */
3528static inline int
5ccb0066 3529grace_disallows_io(struct net *net, struct inode *inode)
1da177e4 3530{
5ccb0066 3531 return locks_in_grace(net) && mandatory_lock(inode);
1da177e4
LT
3532}
3533
81b82965
BF
3534/* Returns true iff a is later than b: */
3535static bool stateid_generation_after(stateid_t *a, stateid_t *b)
3536{
1a9357f4 3537 return (s32)(a->si_generation - b->si_generation) > 0;
81b82965
BF
3538}
3539
57b7b43b 3540static __be32 check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
0836f587 3541{
6668958f
AA
3542 /*
3543 * When sessions are used the stateid generation number is ignored
3544 * when it is zero.
3545 */
28dde241 3546 if (has_session && in->si_generation == 0)
81b82965
BF
3547 return nfs_ok;
3548
3549 if (in->si_generation == ref->si_generation)
3550 return nfs_ok;
6668958f 3551
0836f587 3552 /* If the client sends us a stateid from the future, it's buggy: */
81b82965 3553 if (stateid_generation_after(in, ref))
0836f587
BF
3554 return nfserr_bad_stateid;
3555 /*
81b82965
BF
3556 * However, we could see a stateid from the past, even from a
3557 * non-buggy client. For example, if the client sends a lock
3558 * while some IO is outstanding, the lock may bump si_generation
3559 * while the IO is still in flight. The client could avoid that
3560 * situation by waiting for responses on all the IO requests,
3561 * but better performance may result in retrying IO that
3562 * receives an old_stateid error if requests are rarely
3563 * reordered in flight:
0836f587 3564 */
81b82965 3565 return nfserr_old_stateid;
0836f587
BF
3566}
3567
7df302f7 3568static __be32 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid)
17456804 3569{
97b7e3b6
BF
3570 struct nfs4_stid *s;
3571 struct nfs4_ol_stateid *ols;
3572 __be32 status;
17456804 3573
7df302f7
CL
3574 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3575 return nfserr_bad_stateid;
3576 /* Client debugging aid. */
3577 if (!same_clid(&stateid->si_opaque.so_clid, &cl->cl_clientid)) {
3578 char addr_str[INET6_ADDRSTRLEN];
3579 rpc_ntop((struct sockaddr *)&cl->cl_addr, addr_str,
3580 sizeof(addr_str));
3581 pr_warn_ratelimited("NFSD: client %s testing state ID "
3582 "with incorrect client ID\n", addr_str);
3583 return nfserr_bad_stateid;
3584 }
38c2f4b1 3585 s = find_stateid(cl, stateid);
97b7e3b6 3586 if (!s)
7df302f7 3587 return nfserr_bad_stateid;
36279ac1 3588 status = check_stateid_generation(stateid, &s->sc_stateid, 1);
17456804 3589 if (status)
97b7e3b6 3590 return status;
23340032
BF
3591 switch (s->sc_type) {
3592 case NFS4_DELEG_STID:
97b7e3b6 3593 return nfs_ok;
3bd64a5b
BF
3594 case NFS4_REVOKED_DELEG_STID:
3595 return nfserr_deleg_revoked;
23340032
BF
3596 case NFS4_OPEN_STID:
3597 case NFS4_LOCK_STID:
3598 ols = openlockstateid(s);
3599 if (ols->st_stateowner->so_is_open_owner
3600 && !(openowner(ols->st_stateowner)->oo_flags
3601 & NFS4_OO_CONFIRMED))
3602 return nfserr_bad_stateid;
97b7e3b6 3603 return nfs_ok;
23340032
BF
3604 default:
3605 printk("unknown stateid type %x\n", s->sc_type);
3606 case NFS4_CLOSED_STID:
97b7e3b6 3607 return nfserr_bad_stateid;
23340032 3608 }
17456804
BS
3609}
3610
3320fef1
SK
3611static __be32 nfsd4_lookup_stateid(stateid_t *stateid, unsigned char typemask,
3612 struct nfs4_stid **s, bool sessions,
3613 struct nfsd_net *nn)
38c2f4b1
BF
3614{
3615 struct nfs4_client *cl;
0eb6f20a 3616 __be32 status;
38c2f4b1
BF
3617
3618 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3619 return nfserr_bad_stateid;
0eb6f20a
BF
3620 status = lookup_clientid(&stateid->si_opaque.so_clid, sessions,
3621 nn, &cl);
3622 if (status == nfserr_stale_clientid)
38c2f4b1 3623 return nfserr_stale_stateid;
0eb6f20a
BF
3624 if (status)
3625 return status;
38c2f4b1
BF
3626 *s = find_stateid_by_type(cl, stateid, typemask);
3627 if (!*s)
3628 return nfserr_bad_stateid;
3629 return nfs_ok;
38c2f4b1
BF
3630}
3631
1da177e4
LT
3632/*
3633* Checks for stateid operations
3634*/
b37ad28b 3635__be32
5ccb0066 3636nfs4_preprocess_stateid_op(struct net *net, struct nfsd4_compound_state *cstate,
dd453dfd 3637 stateid_t *stateid, int flags, struct file **filpp)
1da177e4 3638{
69064a27 3639 struct nfs4_stid *s;
dcef0413 3640 struct nfs4_ol_stateid *stp = NULL;
1da177e4 3641 struct nfs4_delegation *dp = NULL;
dd453dfd 3642 struct svc_fh *current_fh = &cstate->current_fh;
1da177e4 3643 struct inode *ino = current_fh->fh_dentry->d_inode;
3320fef1 3644 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
b37ad28b 3645 __be32 status;
1da177e4 3646
1da177e4
LT
3647 if (filpp)
3648 *filpp = NULL;
3649
5ccb0066 3650 if (grace_disallows_io(net, ino))
1da177e4
LT
3651 return nfserr_grace;
3652
3653 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
5ccb0066 3654 return check_special_stateids(net, current_fh, stateid, flags);
1da177e4 3655
3320fef1
SK
3656 status = nfsd4_lookup_stateid(stateid, NFS4_DELEG_STID|NFS4_OPEN_STID|NFS4_LOCK_STID,
3657 &s, cstate->minorversion, nn);
38c2f4b1
BF
3658 if (status)
3659 return status;
69064a27
BF
3660 status = check_stateid_generation(stateid, &s->sc_stateid, nfsd4_has_session(cstate));
3661 if (status)
3662 goto out;
f7a4d872
BF
3663 switch (s->sc_type) {
3664 case NFS4_DELEG_STID:
69064a27 3665 dp = delegstateid(s);
dc9bf700
BF
3666 status = nfs4_check_delegmode(dp, flags);
3667 if (status)
3668 goto out;
43b0178e 3669 if (filpp) {
acfdf5c3 3670 *filpp = dp->dl_file->fi_deleg_file;
063b0fb9
BF
3671 if (!*filpp) {
3672 WARN_ON_ONCE(1);
3673 status = nfserr_serverfault;
3674 goto out;
3675 }
43b0178e 3676 }
f7a4d872
BF
3677 break;
3678 case NFS4_OPEN_STID:
3679 case NFS4_LOCK_STID:
69064a27 3680 stp = openlockstateid(s);
f7a4d872
BF
3681 status = nfs4_check_fh(current_fh, stp);
3682 if (status)
1da177e4 3683 goto out;
fe0750e5 3684 if (stp->st_stateowner->so_is_open_owner
dad1c067 3685 && !(openowner(stp->st_stateowner)->oo_flags & NFS4_OO_CONFIRMED))
1da177e4 3686 goto out;
a4455be0
BF
3687 status = nfs4_check_openmode(stp, flags);
3688 if (status)
1da177e4 3689 goto out;
f9d7562f
BF
3690 if (filpp) {
3691 if (flags & RD_STATE)
3692 *filpp = find_readable_file(stp->st_file);
3693 else
3694 *filpp = find_writeable_file(stp->st_file);
f9d7562f 3695 }
f7a4d872
BF
3696 break;
3697 default:
3698 return nfserr_bad_stateid;
1da177e4
LT
3699 }
3700 status = nfs_ok;
3701out:
3702 return status;
3703}
3704
e1ca12df 3705static __be32
dcef0413 3706nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp)
e1ca12df 3707{
fe0750e5 3708 if (check_for_locks(stp->st_file, lockowner(stp->st_stateowner)))
e1ca12df
BS
3709 return nfserr_locks_held;
3710 release_lock_stateid(stp);
3711 return nfs_ok;
3712}
3713
17456804
BS
3714/*
3715 * Test if the stateid is valid
3716 */
3717__be32
3718nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3719 struct nfsd4_test_stateid *test_stateid)
3720{
03cfb420
BS
3721 struct nfsd4_test_stateid_id *stateid;
3722 struct nfs4_client *cl = cstate->session->se_client;
3723
3724 nfs4_lock_state();
3725 list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list)
7df302f7
CL
3726 stateid->ts_id_status =
3727 nfsd4_validate_stateid(cl, &stateid->ts_id_stateid);
03cfb420
BS
3728 nfs4_unlock_state();
3729
17456804
BS
3730 return nfs_ok;
3731}
3732
e1ca12df
BS
3733__be32
3734nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3735 struct nfsd4_free_stateid *free_stateid)
3736{
3737 stateid_t *stateid = &free_stateid->fr_stateid;
2da1cec7 3738 struct nfs4_stid *s;
3bd64a5b 3739 struct nfs4_delegation *dp;
38c2f4b1 3740 struct nfs4_client *cl = cstate->session->se_client;
2da1cec7 3741 __be32 ret = nfserr_bad_stateid;
e1ca12df
BS
3742
3743 nfs4_lock_state();
38c2f4b1 3744 s = find_stateid(cl, stateid);
2da1cec7 3745 if (!s)
81b82965 3746 goto out;
2da1cec7
BF
3747 switch (s->sc_type) {
3748 case NFS4_DELEG_STID:
e1ca12df
BS
3749 ret = nfserr_locks_held;
3750 goto out;
2da1cec7
BF
3751 case NFS4_OPEN_STID:
3752 case NFS4_LOCK_STID:
3753 ret = check_stateid_generation(stateid, &s->sc_stateid, 1);
3754 if (ret)
3755 goto out;
3756 if (s->sc_type == NFS4_LOCK_STID)
3757 ret = nfsd4_free_lock_stateid(openlockstateid(s));
3758 else
3759 ret = nfserr_locks_held;
f7a4d872 3760 break;
3bd64a5b
BF
3761 case NFS4_REVOKED_DELEG_STID:
3762 dp = delegstateid(s);
3763 destroy_revoked_delegation(dp);
3764 ret = nfs_ok;
3765 break;
f7a4d872
BF
3766 default:
3767 ret = nfserr_bad_stateid;
e1ca12df 3768 }
e1ca12df
BS
3769out:
3770 nfs4_unlock_state();
3771 return ret;
3772}
3773
4c4cd222
N
3774static inline int
3775setlkflg (int type)
3776{
3777 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
3778 RD_STATE : WR_STATE;
3779}
1da177e4 3780
dcef0413 3781static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
c0a5d93e
BF
3782{
3783 struct svc_fh *current_fh = &cstate->current_fh;
3784 struct nfs4_stateowner *sop = stp->st_stateowner;
3785 __be32 status;
3786
c0a5d93e
BF
3787 status = nfsd4_check_seqid(cstate, sop, seqid);
3788 if (status)
3789 return status;
3bd64a5b
BF
3790 if (stp->st_stid.sc_type == NFS4_CLOSED_STID
3791 || stp->st_stid.sc_type == NFS4_REVOKED_DELEG_STID)
f7a4d872
BF
3792 /*
3793 * "Closed" stateid's exist *only* to return
3bd64a5b
BF
3794 * nfserr_replay_me from the previous step, and
3795 * revoked delegations are kept only for free_stateid.
f7a4d872
BF
3796 */
3797 return nfserr_bad_stateid;
3798 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
3799 if (status)
3800 return status;
3801 return nfs4_check_fh(current_fh, stp);
c0a5d93e
BF
3802}
3803
1da177e4
LT
3804/*
3805 * Checks for sequence id mutating operations.
3806 */
b37ad28b 3807static __be32
dd453dfd 3808nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
2288d0e3 3809 stateid_t *stateid, char typemask,
3320fef1
SK
3810 struct nfs4_ol_stateid **stpp,
3811 struct nfsd_net *nn)
1da177e4 3812{
0836f587 3813 __be32 status;
38c2f4b1 3814 struct nfs4_stid *s;
1da177e4 3815
8c10cbdb
BH
3816 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
3817 seqid, STATEID_VAL(stateid));
3a4f98bb 3818
1da177e4 3819 *stpp = NULL;
3320fef1
SK
3820 status = nfsd4_lookup_stateid(stateid, typemask, &s,
3821 cstate->minorversion, nn);
c0a5d93e
BF
3822 if (status)
3823 return status;
38c2f4b1 3824 *stpp = openlockstateid(s);
3d74e6a5
BF
3825 if (!nfsd4_has_session(cstate))
3826 cstate->replay_owner = (*stpp)->st_stateowner;
1da177e4 3827
c0a5d93e
BF
3828 return nfs4_seqid_op_checks(cstate, stateid, seqid, *stpp);
3829}
39325bd0 3830
3320fef1
SK
3831static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
3832 stateid_t *stateid, struct nfs4_ol_stateid **stpp, struct nfsd_net *nn)
c0a5d93e
BF
3833{
3834 __be32 status;
3835 struct nfs4_openowner *oo;
1da177e4 3836
c0a5d93e 3837 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
3320fef1 3838 NFS4_OPEN_STID, stpp, nn);
7a8711c9
BF
3839 if (status)
3840 return status;
c0a5d93e 3841 oo = openowner((*stpp)->st_stateowner);
dad1c067 3842 if (!(oo->oo_flags & NFS4_OO_CONFIRMED))
3a4f98bb 3843 return nfserr_bad_stateid;
3a4f98bb 3844 return nfs_ok;
1da177e4
LT
3845}
3846
b37ad28b 3847__be32
ca364317 3848nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 3849 struct nfsd4_open_confirm *oc)
1da177e4 3850{
b37ad28b 3851 __be32 status;
fe0750e5 3852 struct nfs4_openowner *oo;
dcef0413 3853 struct nfs4_ol_stateid *stp;
3320fef1 3854 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 3855
a6a9f18f
AV
3856 dprintk("NFSD: nfsd4_open_confirm on file %pd\n",
3857 cstate->current_fh.fh_dentry);
1da177e4 3858
ca364317 3859 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
a8cddc5d
BF
3860 if (status)
3861 return status;
1da177e4
LT
3862
3863 nfs4_lock_state();
3864
9072d5c6 3865 status = nfs4_preprocess_seqid_op(cstate,
ca364317 3866 oc->oc_seqid, &oc->oc_req_stateid,
3320fef1 3867 NFS4_OPEN_STID, &stp, nn);
9072d5c6 3868 if (status)
68b66e82 3869 goto out;
fe0750e5 3870 oo = openowner(stp->st_stateowner);
68b66e82 3871 status = nfserr_bad_stateid;
dad1c067 3872 if (oo->oo_flags & NFS4_OO_CONFIRMED)
68b66e82 3873 goto out;
dad1c067 3874 oo->oo_flags |= NFS4_OO_CONFIRMED;
dcef0413
BF
3875 update_stateid(&stp->st_stid.sc_stateid);
3876 memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
8c10cbdb 3877 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
dcef0413 3878 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
c7b9a459 3879
2a4317c5 3880 nfsd4_client_record_create(oo->oo_owner.so_client);
68b66e82 3881 status = nfs_ok;
1da177e4 3882out:
9411b1d4 3883 nfsd4_bump_seqid(cstate, status);
5ec094c1
BF
3884 if (!cstate->replay_owner)
3885 nfs4_unlock_state();
1da177e4
LT
3886 return status;
3887}
3888
6409a5a6 3889static inline void nfs4_stateid_downgrade_bit(struct nfs4_ol_stateid *stp, u32 access)
1da177e4 3890{
82c5ff1b 3891 if (!test_access(access, stp))
6409a5a6
BF
3892 return;
3893 nfs4_file_put_access(stp->st_file, nfs4_access_to_omode(access));
82c5ff1b 3894 clear_access(access, stp);
6409a5a6 3895}
f197c271 3896
6409a5a6
BF
3897static inline void nfs4_stateid_downgrade(struct nfs4_ol_stateid *stp, u32 to_access)
3898{
3899 switch (to_access) {
3900 case NFS4_SHARE_ACCESS_READ:
3901 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_WRITE);
3902 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
3903 break;
3904 case NFS4_SHARE_ACCESS_WRITE:
3905 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_READ);
3906 nfs4_stateid_downgrade_bit(stp, NFS4_SHARE_ACCESS_BOTH);
3907 break;
3908 case NFS4_SHARE_ACCESS_BOTH:
3909 break;
3910 default:
063b0fb9 3911 WARN_ON_ONCE(1);
1da177e4
LT
3912 }
3913}
3914
3915static void
ce0fc43c 3916reset_union_bmap_deny(unsigned long deny, struct nfs4_ol_stateid *stp)
1da177e4
LT
3917{
3918 int i;
3919 for (i = 0; i < 4; i++) {
3920 if ((i & deny) != i)
ce0fc43c 3921 clear_deny(i, stp);
1da177e4
LT
3922 }
3923}
3924
b37ad28b 3925__be32
ca364317
BF
3926nfsd4_open_downgrade(struct svc_rqst *rqstp,
3927 struct nfsd4_compound_state *cstate,
a4f1706a 3928 struct nfsd4_open_downgrade *od)
1da177e4 3929{
b37ad28b 3930 __be32 status;
dcef0413 3931 struct nfs4_ol_stateid *stp;
3320fef1 3932 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 3933
a6a9f18f
AV
3934 dprintk("NFSD: nfsd4_open_downgrade on file %pd\n",
3935 cstate->current_fh.fh_dentry);
1da177e4 3936
c30e92df 3937 /* We don't yet support WANT bits: */
2c8bd7e0
BH
3938 if (od->od_deleg_want)
3939 dprintk("NFSD: %s: od_deleg_want=0x%x ignored\n", __func__,
3940 od->od_deleg_want);
1da177e4
LT
3941
3942 nfs4_lock_state();
c0a5d93e 3943 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
3320fef1 3944 &od->od_stateid, &stp, nn);
9072d5c6 3945 if (status)
1da177e4 3946 goto out;
1da177e4 3947 status = nfserr_inval;
82c5ff1b
JL
3948 if (!test_access(od->od_share_access, stp)) {
3949 dprintk("NFSD: access not a subset current bitmap: 0x%lx, input access=%08x\n",
1da177e4
LT
3950 stp->st_access_bmap, od->od_share_access);
3951 goto out;
3952 }
ce0fc43c 3953 if (!test_deny(od->od_share_deny, stp)) {
1da177e4
LT
3954 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3955 stp->st_deny_bmap, od->od_share_deny);
3956 goto out;
3957 }
6409a5a6 3958 nfs4_stateid_downgrade(stp, od->od_share_access);
1da177e4 3959
ce0fc43c 3960 reset_union_bmap_deny(od->od_share_deny, stp);
1da177e4 3961
dcef0413
BF
3962 update_stateid(&stp->st_stid.sc_stateid);
3963 memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4
LT
3964 status = nfs_ok;
3965out:
9411b1d4 3966 nfsd4_bump_seqid(cstate, status);
5ec094c1
BF
3967 if (!cstate->replay_owner)
3968 nfs4_unlock_state();
1da177e4
LT
3969 return status;
3970}
3971
f7a4d872
BF
3972static void nfsd4_close_open_stateid(struct nfs4_ol_stateid *s)
3973{
3974 unhash_open_stateid(s);
3975 s->st_stid.sc_type = NFS4_CLOSED_STID;
38c387b5
BF
3976}
3977
1da177e4
LT
3978/*
3979 * nfs4_unlock_state() called after encode
3980 */
b37ad28b 3981__be32
ca364317 3982nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 3983 struct nfsd4_close *close)
1da177e4 3984{
b37ad28b 3985 __be32 status;
fe0750e5 3986 struct nfs4_openowner *oo;
dcef0413 3987 struct nfs4_ol_stateid *stp;
3320fef1
SK
3988 struct net *net = SVC_NET(rqstp);
3989 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1da177e4 3990
a6a9f18f
AV
3991 dprintk("NFSD: nfsd4_close on file %pd\n",
3992 cstate->current_fh.fh_dentry);
1da177e4
LT
3993
3994 nfs4_lock_state();
f7a4d872
BF
3995 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
3996 &close->cl_stateid,
3997 NFS4_OPEN_STID|NFS4_CLOSED_STID,
3320fef1 3998 &stp, nn);
9411b1d4 3999 nfsd4_bump_seqid(cstate, status);
9072d5c6 4000 if (status)
1da177e4 4001 goto out;
fe0750e5 4002 oo = openowner(stp->st_stateowner);
dcef0413
BF
4003 update_stateid(&stp->st_stid.sc_stateid);
4004 memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4 4005
f7a4d872 4006 nfsd4_close_open_stateid(stp);
9411b1d4 4007
01a87d91 4008 if (cstate->minorversion)
9411b1d4 4009 free_generic_stateid(stp);
01a87d91 4010 else
9411b1d4 4011 oo->oo_last_closed_stid = stp;
04ef5954 4012
74dbafaf 4013 if (list_empty(&oo->oo_owner.so_stateids)) {
3d74e6a5 4014 if (cstate->minorversion)
74dbafaf 4015 release_openowner(oo);
3d74e6a5 4016 else {
74dbafaf
BF
4017 /*
4018 * In the 4.0 case we need to keep the owners around a
4019 * little while to handle CLOSE replay.
4020 */
53584f66 4021 move_to_close_lru(oo, SVC_NET(rqstp));
74dbafaf
BF
4022 }
4023 }
1da177e4 4024out:
5ec094c1
BF
4025 if (!cstate->replay_owner)
4026 nfs4_unlock_state();
1da177e4
LT
4027 return status;
4028}
4029
b37ad28b 4030__be32
ca364317
BF
4031nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4032 struct nfsd4_delegreturn *dr)
1da177e4 4033{
203a8c8e
BF
4034 struct nfs4_delegation *dp;
4035 stateid_t *stateid = &dr->dr_stateid;
38c2f4b1 4036 struct nfs4_stid *s;
b37ad28b 4037 __be32 status;
3320fef1 4038 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 4039
ca364317 4040 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
203a8c8e 4041 return status;
1da177e4
LT
4042
4043 nfs4_lock_state();
3320fef1
SK
4044 status = nfsd4_lookup_stateid(stateid, NFS4_DELEG_STID, &s,
4045 cstate->minorversion, nn);
38c2f4b1 4046 if (status)
203a8c8e 4047 goto out;
38c2f4b1 4048 dp = delegstateid(s);
d5477a8d 4049 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
203a8c8e
BF
4050 if (status)
4051 goto out;
203a8c8e 4052
3bd64a5b 4053 destroy_delegation(dp);
1da177e4 4054out:
203a8c8e
BF
4055 nfs4_unlock_state();
4056
1da177e4
LT
4057 return status;
4058}
4059
4060
1da177e4 4061#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
1da177e4 4062
009673b4 4063#define LOCKOWNER_INO_HASH_MASK (LOCKOWNER_INO_HASH_SIZE - 1)
1da177e4 4064
87df4de8
BH
4065static inline u64
4066end_offset(u64 start, u64 len)
4067{
4068 u64 end;
4069
4070 end = start + len;
4071 return end >= start ? end: NFS4_MAX_UINT64;
4072}
4073
4074/* last octet in a range */
4075static inline u64
4076last_byte_offset(u64 start, u64 len)
4077{
4078 u64 end;
4079
063b0fb9 4080 WARN_ON_ONCE(!len);
87df4de8
BH
4081 end = start + len;
4082 return end > start ? end - 1: NFS4_MAX_UINT64;
4083}
4084
009673b4 4085static unsigned int lockowner_ino_hashval(struct inode *inode, u32 cl_id, struct xdr_netobj *ownername)
1da177e4
LT
4086{
4087 return (file_hashval(inode) + cl_id
4088 + opaque_hashval(ownername->data, ownername->len))
009673b4 4089 & LOCKOWNER_INO_HASH_MASK;
1da177e4
LT
4090}
4091
1da177e4
LT
4092/*
4093 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
4094 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
4095 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
4096 * locking, this prevents us from being completely protocol-compliant. The
4097 * real solution to this problem is to start using unsigned file offsets in
4098 * the VFS, but this is a very deep change!
4099 */
4100static inline void
4101nfs4_transform_lock_offset(struct file_lock *lock)
4102{
4103 if (lock->fl_start < 0)
4104 lock->fl_start = OFFSET_MAX;
4105 if (lock->fl_end < 0)
4106 lock->fl_end = OFFSET_MAX;
4107}
4108
d5b9026a
N
4109/* Hack!: For now, we're defining this just so we can use a pointer to it
4110 * as a unique cookie to identify our (NFSv4's) posix locks. */
7b021967 4111static const struct lock_manager_operations nfsd_posix_mng_ops = {
d5b9026a 4112};
1da177e4
LT
4113
4114static inline void
4115nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
4116{
fe0750e5 4117 struct nfs4_lockowner *lo;
1da177e4 4118
d5b9026a 4119 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
fe0750e5
BF
4120 lo = (struct nfs4_lockowner *) fl->fl_owner;
4121 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
4122 lo->lo_owner.so_owner.len, GFP_KERNEL);
7c13f344
BF
4123 if (!deny->ld_owner.data)
4124 /* We just don't care that much */
4125 goto nevermind;
fe0750e5
BF
4126 deny->ld_owner.len = lo->lo_owner.so_owner.len;
4127 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
d5b9026a 4128 } else {
7c13f344
BF
4129nevermind:
4130 deny->ld_owner.len = 0;
4131 deny->ld_owner.data = NULL;
d5b9026a
N
4132 deny->ld_clientid.cl_boot = 0;
4133 deny->ld_clientid.cl_id = 0;
1da177e4
LT
4134 }
4135 deny->ld_start = fl->fl_start;
87df4de8
BH
4136 deny->ld_length = NFS4_MAX_UINT64;
4137 if (fl->fl_end != NFS4_MAX_UINT64)
1da177e4
LT
4138 deny->ld_length = fl->fl_end - fl->fl_start + 1;
4139 deny->ld_type = NFS4_READ_LT;
4140 if (fl->fl_type != F_RDLCK)
4141 deny->ld_type = NFS4_WRITE_LT;
4142}
4143
b93d87c1
BF
4144static bool same_lockowner_ino(struct nfs4_lockowner *lo, struct inode *inode, clientid_t *clid, struct xdr_netobj *owner)
4145{
4146 struct nfs4_ol_stateid *lst;
4147
4148 if (!same_owner_str(&lo->lo_owner, owner, clid))
4149 return false;
4150 lst = list_first_entry(&lo->lo_owner.so_stateids,
4151 struct nfs4_ol_stateid, st_perstateowner);
4152 return lst->st_file->fi_inode == inode;
4153}
4154
fe0750e5
BF
4155static struct nfs4_lockowner *
4156find_lockowner_str(struct inode *inode, clientid_t *clid,
20e9e2bc 4157 struct xdr_netobj *owner, struct nfsd_net *nn)
1da177e4 4158{
009673b4 4159 unsigned int hashval = lockowner_ino_hashval(inode, clid->cl_id, owner);
b93d87c1 4160 struct nfs4_lockowner *lo;
1da177e4 4161
20e9e2bc 4162 list_for_each_entry(lo, &nn->lockowner_ino_hashtbl[hashval], lo_owner_ino_hash) {
b93d87c1
BF
4163 if (same_lockowner_ino(lo, inode, clid, owner))
4164 return lo;
1da177e4
LT
4165 }
4166 return NULL;
4167}
4168
dcef0413 4169static void hash_lockowner(struct nfs4_lockowner *lo, unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp)
ff194bd9 4170{
009673b4
BF
4171 struct inode *inode = open_stp->st_file->fi_inode;
4172 unsigned int inohash = lockowner_ino_hashval(inode,
4173 clp->cl_clientid.cl_id, &lo->lo_owner.so_owner);
9b531137 4174 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
009673b4 4175
9b531137 4176 list_add(&lo->lo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
20e9e2bc 4177 list_add(&lo->lo_owner_ino_hash, &nn->lockowner_ino_hashtbl[inohash]);
fe0750e5 4178 list_add(&lo->lo_perstateid, &open_stp->st_lockowners);
ff194bd9
BF
4179}
4180
1da177e4
LT
4181/*
4182 * Alloc a lock owner structure.
4183 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
25985edc 4184 * occurred.
1da177e4 4185 *
16bfdaaf 4186 * strhashval = ownerstr_hashval
1da177e4
LT
4187 */
4188
fe0750e5 4189static struct nfs4_lockowner *
dcef0413 4190alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp, struct nfsd4_lock *lock) {
fe0750e5 4191 struct nfs4_lockowner *lo;
1da177e4 4192
fe0750e5
BF
4193 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
4194 if (!lo)
1da177e4 4195 return NULL;
fe0750e5
BF
4196 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
4197 lo->lo_owner.so_is_open_owner = 0;
b59e3c0e
NB
4198 /* It is the openowner seqid that will be incremented in encode in the
4199 * case of new lockowners; so increment the lock seqid manually: */
fe0750e5
BF
4200 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid + 1;
4201 hash_lockowner(lo, strhashval, clp, open_stp);
4202 return lo;
1da177e4
LT
4203}
4204
dcef0413
BF
4205static struct nfs4_ol_stateid *
4206alloc_init_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp, struct nfs4_ol_stateid *open_stp)
1da177e4 4207{
dcef0413 4208 struct nfs4_ol_stateid *stp;
d3b313a4 4209 struct nfs4_client *clp = lo->lo_owner.so_client;
1da177e4 4210
996e0938 4211 stp = nfs4_alloc_stateid(clp);
5ac049ac 4212 if (stp == NULL)
6136d2b4 4213 return NULL;
3abdb607 4214 stp->st_stid.sc_type = NFS4_LOCK_STID;
8beefa24 4215 list_add(&stp->st_perfile, &fp->fi_stateids);
fe0750e5
BF
4216 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
4217 stp->st_stateowner = &lo->lo_owner;
13cd2184 4218 get_nfs4_file(fp);
1da177e4 4219 stp->st_file = fp;
0997b173 4220 stp->st_access_bmap = 0;
1da177e4 4221 stp->st_deny_bmap = open_stp->st_deny_bmap;
4c4cd222 4222 stp->st_openstp = open_stp;
1da177e4
LT
4223 return stp;
4224}
4225
fd39ca9a 4226static int
1da177e4
LT
4227check_lock_length(u64 offset, u64 length)
4228{
87df4de8 4229 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
1da177e4
LT
4230 LOFF_OVERFLOW(offset, length)));
4231}
4232
dcef0413 4233static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
0997b173
BF
4234{
4235 struct nfs4_file *fp = lock_stp->st_file;
4236 int oflag = nfs4_access_to_omode(access);
4237
82c5ff1b 4238 if (test_access(access, lock_stp))
0997b173
BF
4239 return;
4240 nfs4_file_get_access(fp, oflag);
82c5ff1b 4241 set_access(access, lock_stp);
0997b173
BF
4242}
4243
2355c596 4244static __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
4245{
4246 struct nfs4_file *fi = ost->st_file;
4247 struct nfs4_openowner *oo = openowner(ost->st_stateowner);
4248 struct nfs4_client *cl = oo->oo_owner.so_client;
4249 struct nfs4_lockowner *lo;
4250 unsigned int strhashval;
20e9e2bc 4251 struct nfsd_net *nn = net_generic(cl->net, nfsd_net_id);
64a284d0 4252
20e9e2bc
SK
4253 lo = find_lockowner_str(fi->fi_inode, &cl->cl_clientid,
4254 &lock->v.new.owner, nn);
64a284d0
BF
4255 if (lo) {
4256 if (!cstate->minorversion)
4257 return nfserr_bad_seqid;
4258 /* XXX: a lockowner always has exactly one stateid: */
4259 *lst = list_first_entry(&lo->lo_owner.so_stateids,
4260 struct nfs4_ol_stateid, st_perstateowner);
4261 return nfs_ok;
4262 }
16bfdaaf 4263 strhashval = ownerstr_hashval(cl->cl_clientid.cl_id,
64a284d0
BF
4264 &lock->v.new.owner);
4265 lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
4266 if (lo == NULL)
4267 return nfserr_jukebox;
4268 *lst = alloc_init_lock_stateid(lo, fi, ost);
4269 if (*lst == NULL) {
4270 release_lockowner(lo);
4271 return nfserr_jukebox;
4272 }
4273 *new = true;
4274 return nfs_ok;
4275}
4276
1da177e4
LT
4277/*
4278 * LOCK operation
4279 */
b37ad28b 4280__be32
ca364317 4281nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 4282 struct nfsd4_lock *lock)
1da177e4 4283{
fe0750e5
BF
4284 struct nfs4_openowner *open_sop = NULL;
4285 struct nfs4_lockowner *lock_sop = NULL;
dcef0413 4286 struct nfs4_ol_stateid *lock_stp;
7d947842 4287 struct file *filp = NULL;
21179d81
JL
4288 struct file_lock *file_lock = NULL;
4289 struct file_lock *conflock = NULL;
b37ad28b 4290 __be32 status = 0;
64a284d0 4291 bool new_state = false;
b34f27aa 4292 int lkflg;
b8dd7b9a 4293 int err;
3320fef1
SK
4294 struct net *net = SVC_NET(rqstp);
4295 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1da177e4
LT
4296
4297 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
4298 (long long) lock->lk_offset,
4299 (long long) lock->lk_length);
4300
1da177e4
LT
4301 if (check_lock_length(lock->lk_offset, lock->lk_length))
4302 return nfserr_inval;
4303
ca364317 4304 if ((status = fh_verify(rqstp, &cstate->current_fh,
8837abca 4305 S_IFREG, NFSD_MAY_LOCK))) {
a6f6ef2f
AA
4306 dprintk("NFSD: nfsd4_lock: permission denied!\n");
4307 return status;
4308 }
4309
1da177e4
LT
4310 nfs4_lock_state();
4311
4312 if (lock->lk_is_new) {
dcef0413 4313 struct nfs4_ol_stateid *open_stp = NULL;
684e5638
BF
4314
4315 if (nfsd4_has_session(cstate))
4316 /* See rfc 5661 18.10.3: given clientid is ignored: */
4317 memcpy(&lock->v.new.clientid,
4318 &cstate->session->se_client->cl_clientid,
4319 sizeof(clientid_t));
4320
1da177e4 4321 status = nfserr_stale_clientid;
2c142baa 4322 if (STALE_CLIENTID(&lock->lk_new_clientid, nn))
1da177e4 4323 goto out;
1da177e4 4324
1da177e4 4325 /* validate and update open stateid and open seqid */
c0a5d93e 4326 status = nfs4_preprocess_confirmed_seqid_op(cstate,
1da177e4
LT
4327 lock->lk_new_open_seqid,
4328 &lock->lk_new_open_stateid,
3320fef1 4329 &open_stp, nn);
37515177 4330 if (status)
1da177e4 4331 goto out;
fe0750e5 4332 open_sop = openowner(open_stp->st_stateowner);
b34f27aa 4333 status = nfserr_bad_stateid;
684e5638 4334 if (!same_clid(&open_sop->oo_owner.so_client->cl_clientid,
b34f27aa
BF
4335 &lock->v.new.clientid))
4336 goto out;
64a284d0
BF
4337 status = lookup_or_create_lock_state(cstate, open_stp, lock,
4338 &lock_stp, &new_state);
e1aaa891 4339 } else
dd453dfd 4340 status = nfs4_preprocess_seqid_op(cstate,
fe0750e5
BF
4341 lock->lk_old_lock_seqid,
4342 &lock->lk_old_lock_stateid,
3320fef1 4343 NFS4_LOCK_STID, &lock_stp, nn);
e1aaa891
BF
4344 if (status)
4345 goto out;
64a284d0 4346 lock_sop = lockowner(lock_stp->st_stateowner);
1da177e4 4347
b34f27aa
BF
4348 lkflg = setlkflg(lock->lk_type);
4349 status = nfs4_check_openmode(lock_stp, lkflg);
4350 if (status)
4351 goto out;
4352
0dd395dc 4353 status = nfserr_grace;
3320fef1 4354 if (locks_in_grace(net) && !lock->lk_reclaim)
0dd395dc
N
4355 goto out;
4356 status = nfserr_no_grace;
3320fef1 4357 if (!locks_in_grace(net) && lock->lk_reclaim)
0dd395dc
N
4358 goto out;
4359
21179d81
JL
4360 file_lock = locks_alloc_lock();
4361 if (!file_lock) {
4362 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4363 status = nfserr_jukebox;
4364 goto out;
4365 }
4366
4367 locks_init_lock(file_lock);
1da177e4
LT
4368 switch (lock->lk_type) {
4369 case NFS4_READ_LT:
4370 case NFS4_READW_LT:
0997b173
BF
4371 filp = find_readable_file(lock_stp->st_file);
4372 if (filp)
4373 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
21179d81 4374 file_lock->fl_type = F_RDLCK;
529d7b2a 4375 break;
1da177e4
LT
4376 case NFS4_WRITE_LT:
4377 case NFS4_WRITEW_LT:
0997b173
BF
4378 filp = find_writeable_file(lock_stp->st_file);
4379 if (filp)
4380 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
21179d81 4381 file_lock->fl_type = F_WRLCK;
529d7b2a 4382 break;
1da177e4
LT
4383 default:
4384 status = nfserr_inval;
4385 goto out;
4386 }
f9d7562f
BF
4387 if (!filp) {
4388 status = nfserr_openmode;
4389 goto out;
4390 }
21179d81
JL
4391 file_lock->fl_owner = (fl_owner_t)lock_sop;
4392 file_lock->fl_pid = current->tgid;
4393 file_lock->fl_file = filp;
4394 file_lock->fl_flags = FL_POSIX;
4395 file_lock->fl_lmops = &nfsd_posix_mng_ops;
4396 file_lock->fl_start = lock->lk_offset;
4397 file_lock->fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
4398 nfs4_transform_lock_offset(file_lock);
4399
4400 conflock = locks_alloc_lock();
4401 if (!conflock) {
4402 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4403 status = nfserr_jukebox;
4404 goto out;
4405 }
1da177e4 4406
21179d81 4407 err = vfs_lock_file(filp, F_SETLK, file_lock, conflock);
b8dd7b9a 4408 switch (-err) {
1da177e4 4409 case 0: /* success! */
dcef0413
BF
4410 update_stateid(&lock_stp->st_stid.sc_stateid);
4411 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid,
1da177e4 4412 sizeof(stateid_t));
b8dd7b9a 4413 status = 0;
eb76b3fd
AA
4414 break;
4415 case (EAGAIN): /* conflock holds conflicting lock */
4416 status = nfserr_denied;
4417 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
21179d81 4418 nfs4_set_lock_denied(conflock, &lock->lk_denied);
eb76b3fd 4419 break;
1da177e4
LT
4420 case (EDEADLK):
4421 status = nfserr_deadlock;
eb76b3fd 4422 break;
3e772463 4423 default:
fd85b817 4424 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
3e772463 4425 status = nfserrno(err);
eb76b3fd 4426 break;
1da177e4 4427 }
1da177e4 4428out:
64a284d0 4429 if (status && new_state)
f044ff83 4430 release_lockowner(lock_sop);
9411b1d4 4431 nfsd4_bump_seqid(cstate, status);
5ec094c1
BF
4432 if (!cstate->replay_owner)
4433 nfs4_unlock_state();
21179d81
JL
4434 if (file_lock)
4435 locks_free_lock(file_lock);
4436 if (conflock)
4437 locks_free_lock(conflock);
1da177e4
LT
4438 return status;
4439}
4440
55ef1274
BF
4441/*
4442 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
4443 * so we do a temporary open here just to get an open file to pass to
4444 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
4445 * inode operation.)
4446 */
04da6e9d 4447static __be32 nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
55ef1274
BF
4448{
4449 struct file *file;
04da6e9d
AV
4450 __be32 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
4451 if (!err) {
4452 err = nfserrno(vfs_test_lock(file, lock));
4453 nfsd_close(file);
4454 }
55ef1274
BF
4455 return err;
4456}
4457
1da177e4
LT
4458/*
4459 * LOCKT operation
4460 */
b37ad28b 4461__be32
ca364317
BF
4462nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4463 struct nfsd4_lockt *lockt)
1da177e4
LT
4464{
4465 struct inode *inode;
21179d81 4466 struct file_lock *file_lock = NULL;
fe0750e5 4467 struct nfs4_lockowner *lo;
b37ad28b 4468 __be32 status;
7f2210fa 4469 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4 4470
5ccb0066 4471 if (locks_in_grace(SVC_NET(rqstp)))
1da177e4
LT
4472 return nfserr_grace;
4473
4474 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
4475 return nfserr_inval;
4476
1da177e4
LT
4477 nfs4_lock_state();
4478
9b2ef62b
BF
4479 if (!nfsd4_has_session(cstate)) {
4480 status = lookup_clientid(&lockt->lt_clientid, false, nn, NULL);
4481 if (status)
4482 goto out;
4483 }
1da177e4 4484
75c096f7 4485 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
1da177e4 4486 goto out;
1da177e4 4487
ca364317 4488 inode = cstate->current_fh.fh_dentry->d_inode;
21179d81
JL
4489 file_lock = locks_alloc_lock();
4490 if (!file_lock) {
4491 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4492 status = nfserr_jukebox;
4493 goto out;
4494 }
4495 locks_init_lock(file_lock);
1da177e4
LT
4496 switch (lockt->lt_type) {
4497 case NFS4_READ_LT:
4498 case NFS4_READW_LT:
21179d81 4499 file_lock->fl_type = F_RDLCK;
1da177e4
LT
4500 break;
4501 case NFS4_WRITE_LT:
4502 case NFS4_WRITEW_LT:
21179d81 4503 file_lock->fl_type = F_WRLCK;
1da177e4
LT
4504 break;
4505 default:
2fdada03 4506 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
1da177e4
LT
4507 status = nfserr_inval;
4508 goto out;
4509 }
4510
20e9e2bc 4511 lo = find_lockowner_str(inode, &lockt->lt_clientid, &lockt->lt_owner, nn);
fe0750e5 4512 if (lo)
21179d81
JL
4513 file_lock->fl_owner = (fl_owner_t)lo;
4514 file_lock->fl_pid = current->tgid;
4515 file_lock->fl_flags = FL_POSIX;
1da177e4 4516
21179d81
JL
4517 file_lock->fl_start = lockt->lt_offset;
4518 file_lock->fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
1da177e4 4519
21179d81 4520 nfs4_transform_lock_offset(file_lock);
1da177e4 4521
21179d81 4522 status = nfsd_test_lock(rqstp, &cstate->current_fh, file_lock);
04da6e9d 4523 if (status)
fd85b817 4524 goto out;
04da6e9d 4525
21179d81 4526 if (file_lock->fl_type != F_UNLCK) {
1da177e4 4527 status = nfserr_denied;
21179d81 4528 nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
1da177e4
LT
4529 }
4530out:
4531 nfs4_unlock_state();
21179d81
JL
4532 if (file_lock)
4533 locks_free_lock(file_lock);
1da177e4
LT
4534 return status;
4535}
4536
b37ad28b 4537__be32
ca364317 4538nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 4539 struct nfsd4_locku *locku)
1da177e4 4540{
dcef0413 4541 struct nfs4_ol_stateid *stp;
1da177e4 4542 struct file *filp = NULL;
21179d81 4543 struct file_lock *file_lock = NULL;
b37ad28b 4544 __be32 status;
b8dd7b9a 4545 int err;
3320fef1
SK
4546 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
4547
1da177e4
LT
4548 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
4549 (long long) locku->lu_offset,
4550 (long long) locku->lu_length);
4551
4552 if (check_lock_length(locku->lu_offset, locku->lu_length))
4553 return nfserr_inval;
4554
4555 nfs4_lock_state();
4556
9072d5c6 4557 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
3320fef1
SK
4558 &locku->lu_stateid, NFS4_LOCK_STID,
4559 &stp, nn);
9072d5c6 4560 if (status)
1da177e4 4561 goto out;
f9d7562f
BF
4562 filp = find_any_file(stp->st_file);
4563 if (!filp) {
4564 status = nfserr_lock_range;
4565 goto out;
4566 }
21179d81
JL
4567 file_lock = locks_alloc_lock();
4568 if (!file_lock) {
4569 dprintk("NFSD: %s: unable to allocate lock!\n", __func__);
4570 status = nfserr_jukebox;
4571 goto out;
4572 }
4573 locks_init_lock(file_lock);
4574 file_lock->fl_type = F_UNLCK;
0a262ffb 4575 file_lock->fl_owner = (fl_owner_t)lockowner(stp->st_stateowner);
21179d81
JL
4576 file_lock->fl_pid = current->tgid;
4577 file_lock->fl_file = filp;
4578 file_lock->fl_flags = FL_POSIX;
4579 file_lock->fl_lmops = &nfsd_posix_mng_ops;
4580 file_lock->fl_start = locku->lu_offset;
4581
4582 file_lock->fl_end = last_byte_offset(locku->lu_offset,
4583 locku->lu_length);
4584 nfs4_transform_lock_offset(file_lock);
1da177e4 4585
21179d81 4586 err = vfs_lock_file(filp, F_SETLK, file_lock, NULL);
b8dd7b9a 4587 if (err) {
fd85b817 4588 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
1da177e4
LT
4589 goto out_nfserr;
4590 }
dcef0413
BF
4591 update_stateid(&stp->st_stid.sc_stateid);
4592 memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
1da177e4
LT
4593
4594out:
9411b1d4 4595 nfsd4_bump_seqid(cstate, status);
71c3bcd7
BF
4596 if (!cstate->replay_owner)
4597 nfs4_unlock_state();
21179d81
JL
4598 if (file_lock)
4599 locks_free_lock(file_lock);
1da177e4
LT
4600 return status;
4601
4602out_nfserr:
b8dd7b9a 4603 status = nfserrno(err);
1da177e4
LT
4604 goto out;
4605}
4606
4607/*
4608 * returns
4609 * 1: locks held by lockowner
4610 * 0: no locks held by lockowner
4611 */
4612static int
fe0750e5 4613check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner)
1da177e4
LT
4614{
4615 struct file_lock **flpp;
f9d7562f 4616 struct inode *inode = filp->fi_inode;
1da177e4
LT
4617 int status = 0;
4618
1c8c601a 4619 spin_lock(&inode->i_lock);
1da177e4 4620 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
796dadfd 4621 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
1da177e4
LT
4622 status = 1;
4623 goto out;
796dadfd 4624 }
1da177e4
LT
4625 }
4626out:
1c8c601a 4627 spin_unlock(&inode->i_lock);
1da177e4
LT
4628 return status;
4629}
4630
b37ad28b 4631__be32
b591480b
BF
4632nfsd4_release_lockowner(struct svc_rqst *rqstp,
4633 struct nfsd4_compound_state *cstate,
4634 struct nfsd4_release_lockowner *rlockowner)
1da177e4
LT
4635{
4636 clientid_t *clid = &rlockowner->rl_clientid;
3e9e3dbe 4637 struct nfs4_stateowner *sop;
fe0750e5 4638 struct nfs4_lockowner *lo;
dcef0413 4639 struct nfs4_ol_stateid *stp;
1da177e4 4640 struct xdr_netobj *owner = &rlockowner->rl_owner;
3e9e3dbe 4641 struct list_head matches;
16bfdaaf 4642 unsigned int hashval = ownerstr_hashval(clid->cl_id, owner);
b37ad28b 4643 __be32 status;
7f2210fa 4644 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4
LT
4645
4646 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
4647 clid->cl_boot, clid->cl_id);
4648
1da177e4
LT
4649 nfs4_lock_state();
4650
9b2ef62b
BF
4651 status = lookup_clientid(clid, cstate->minorversion, nn, NULL);
4652 if (status)
4653 goto out;
4654
3e9e3dbe 4655 status = nfserr_locks_held;
3e9e3dbe 4656 INIT_LIST_HEAD(&matches);
06f1f864 4657
9b531137 4658 list_for_each_entry(sop, &nn->ownerstr_hashtbl[hashval], so_strhash) {
16bfdaaf
BF
4659 if (sop->so_is_open_owner)
4660 continue;
06f1f864
BF
4661 if (!same_owner_str(sop, owner, clid))
4662 continue;
4663 list_for_each_entry(stp, &sop->so_stateids,
4664 st_perstateowner) {
4665 lo = lockowner(sop);
4666 if (check_for_locks(stp->st_file, lo))
4667 goto out;
4668 list_add(&lo->lo_list, &matches);
1da177e4 4669 }
3e9e3dbe
N
4670 }
4671 /* Clients probably won't expect us to return with some (but not all)
4672 * of the lockowner state released; so don't release any until all
4673 * have been checked. */
4674 status = nfs_ok;
0fa822e4 4675 while (!list_empty(&matches)) {
fe0750e5
BF
4676 lo = list_entry(matches.next, struct nfs4_lockowner,
4677 lo_list);
0fa822e4
N
4678 /* unhash_stateowner deletes so_perclient only
4679 * for openowners. */
fe0750e5
BF
4680 list_del(&lo->lo_list);
4681 release_lockowner(lo);
1da177e4
LT
4682 }
4683out:
4684 nfs4_unlock_state();
4685 return status;
4686}
4687
4688static inline struct nfs4_client_reclaim *
a55370a3 4689alloc_reclaim(void)
1da177e4 4690{
a55370a3 4691 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
1da177e4
LT
4692}
4693
0ce0c2b5 4694bool
52e19c09 4695nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn)
c7b9a459 4696{
0ce0c2b5 4697 struct nfs4_client_reclaim *crp;
c7b9a459 4698
52e19c09 4699 crp = nfsd4_find_reclaim_client(name, nn);
0ce0c2b5 4700 return (crp && crp->cr_clp);
c7b9a459
N
4701}
4702
1da177e4
LT
4703/*
4704 * failure => all reset bets are off, nfserr_no_grace...
4705 */
772a9bbb 4706struct nfs4_client_reclaim *
52e19c09 4707nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn)
1da177e4
LT
4708{
4709 unsigned int strhashval;
772a9bbb 4710 struct nfs4_client_reclaim *crp;
1da177e4 4711
a55370a3
N
4712 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
4713 crp = alloc_reclaim();
772a9bbb
JL
4714 if (crp) {
4715 strhashval = clientstr_hashval(name);
4716 INIT_LIST_HEAD(&crp->cr_strhash);
52e19c09 4717 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]);
772a9bbb 4718 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
0ce0c2b5 4719 crp->cr_clp = NULL;
52e19c09 4720 nn->reclaim_str_hashtbl_size++;
772a9bbb
JL
4721 }
4722 return crp;
1da177e4
LT
4723}
4724
ce30e539 4725void
52e19c09 4726nfs4_remove_reclaim_record(struct nfs4_client_reclaim *crp, struct nfsd_net *nn)
ce30e539
JL
4727{
4728 list_del(&crp->cr_strhash);
4729 kfree(crp);
52e19c09 4730 nn->reclaim_str_hashtbl_size--;
ce30e539
JL
4731}
4732
2a4317c5 4733void
52e19c09 4734nfs4_release_reclaim(struct nfsd_net *nn)
1da177e4
LT
4735{
4736 struct nfs4_client_reclaim *crp = NULL;
4737 int i;
4738
1da177e4 4739 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
52e19c09
SK
4740 while (!list_empty(&nn->reclaim_str_hashtbl[i])) {
4741 crp = list_entry(nn->reclaim_str_hashtbl[i].next,
1da177e4 4742 struct nfs4_client_reclaim, cr_strhash);
52e19c09 4743 nfs4_remove_reclaim_record(crp, nn);
1da177e4
LT
4744 }
4745 }
063b0fb9 4746 WARN_ON_ONCE(nn->reclaim_str_hashtbl_size);
1da177e4
LT
4747}
4748
4749/*
4750 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
2a4317c5 4751struct nfs4_client_reclaim *
52e19c09 4752nfsd4_find_reclaim_client(const char *recdir, struct nfsd_net *nn)
1da177e4
LT
4753{
4754 unsigned int strhashval;
1da177e4
LT
4755 struct nfs4_client_reclaim *crp = NULL;
4756
278c931c 4757 dprintk("NFSD: nfs4_find_reclaim_client for recdir %s\n", recdir);
1da177e4 4758
278c931c 4759 strhashval = clientstr_hashval(recdir);
52e19c09 4760 list_for_each_entry(crp, &nn->reclaim_str_hashtbl[strhashval], cr_strhash) {
278c931c 4761 if (same_name(crp->cr_recdir, recdir)) {
1da177e4
LT
4762 return crp;
4763 }
4764 }
4765 return NULL;
4766}
4767
4768/*
4769* Called from OPEN. Look for clientid in reclaim list.
4770*/
b37ad28b 4771__be32
3320fef1 4772nfs4_check_open_reclaim(clientid_t *clid, bool sessions, struct nfsd_net *nn)
1da177e4 4773{
a52d726b
JL
4774 struct nfs4_client *clp;
4775
4776 /* find clientid in conf_id_hashtbl */
8daae4dc 4777 clp = find_confirmed_client(clid, sessions, nn);
a52d726b
JL
4778 if (clp == NULL)
4779 return nfserr_reclaim_bad;
4780
4781 return nfsd4_client_record_check(clp) ? nfserr_reclaim_bad : nfs_ok;
1da177e4
LT
4782}
4783
65178db4
BS
4784#ifdef CONFIG_NFSD_FAULT_INJECTION
4785
44e34da6
BS
4786u64 nfsd_forget_client(struct nfs4_client *clp, u64 max)
4787{
221a6876
BF
4788 if (mark_client_expired(clp))
4789 return 0;
44e34da6
BS
4790 expire_client(clp);
4791 return 1;
4792}
4793
184c1847
BS
4794u64 nfsd_print_client(struct nfs4_client *clp, u64 num)
4795{
4796 char buf[INET6_ADDRSTRLEN];
0a5c33e2 4797 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
184c1847
BS
4798 printk(KERN_INFO "NFS Client: %s\n", buf);
4799 return 1;
4800}
4801
4802static void nfsd_print_count(struct nfs4_client *clp, unsigned int count,
4803 const char *type)
4804{
4805 char buf[INET6_ADDRSTRLEN];
0a5c33e2 4806 rpc_ntop((struct sockaddr *)&clp->cl_addr, buf, sizeof(buf));
184c1847
BS
4807 printk(KERN_INFO "NFS Client: %s has %u %s\n", buf, count, type);
4808}
4809
fc29171f
BS
4810static u64 nfsd_foreach_client_lock(struct nfs4_client *clp, u64 max, void (*func)(struct nfs4_lockowner *))
4811{
4812 struct nfs4_openowner *oop;
4813 struct nfs4_lockowner *lop, *lo_next;
4814 struct nfs4_ol_stateid *stp, *st_next;
4815 u64 count = 0;
4816
4817 list_for_each_entry(oop, &clp->cl_openowners, oo_perclient) {
4818 list_for_each_entry_safe(stp, st_next, &oop->oo_owner.so_stateids, st_perstateowner) {
4819 list_for_each_entry_safe(lop, lo_next, &stp->st_lockowners, lo_perstateid) {
4820 if (func)
4821 func(lop);
4822 if (++count == max)
4823 return count;
4824 }
4825 }
4826 }
4827
4828 return count;
4829}
4830
4831u64 nfsd_forget_client_locks(struct nfs4_client *clp, u64 max)
4832{
4833 return nfsd_foreach_client_lock(clp, max, release_lockowner);
4834}
4835
184c1847
BS
4836u64 nfsd_print_client_locks(struct nfs4_client *clp, u64 max)
4837{
4838 u64 count = nfsd_foreach_client_lock(clp, max, NULL);
4839 nfsd_print_count(clp, count, "locked files");
4840 return count;
4841}
4842
4dbdbda8
BS
4843static u64 nfsd_foreach_client_open(struct nfs4_client *clp, u64 max, void (*func)(struct nfs4_openowner *))
4844{
4845 struct nfs4_openowner *oop, *next;
4846 u64 count = 0;
4847
4848 list_for_each_entry_safe(oop, next, &clp->cl_openowners, oo_perclient) {
4849 if (func)
4850 func(oop);
4851 if (++count == max)
4852 break;
4853 }
4854
4855 return count;
4856}
4857
4858u64 nfsd_forget_client_openowners(struct nfs4_client *clp, u64 max)
4859{
4860 return nfsd_foreach_client_open(clp, max, release_openowner);
4861}
4862
184c1847
BS
4863u64 nfsd_print_client_openowners(struct nfs4_client *clp, u64 max)
4864{
4865 u64 count = nfsd_foreach_client_open(clp, max, NULL);
4866 nfsd_print_count(clp, count, "open files");
4867 return count;
4868}
4869
269de30f
BS
4870static u64 nfsd_find_all_delegations(struct nfs4_client *clp, u64 max,
4871 struct list_head *victims)
4872{
4873 struct nfs4_delegation *dp, *next;
4874 u64 count = 0;
4875
4876 list_for_each_entry_safe(dp, next, &clp->cl_delegations, dl_perclnt) {
4877 if (victims)
4878 list_move(&dp->dl_recall_lru, victims);
4879 if (++count == max)
4880 break;
4881 }
4882 return count;
4883}
4884
4885u64 nfsd_forget_client_delegations(struct nfs4_client *clp, u64 max)
4886{
4887 struct nfs4_delegation *dp, *next;
4888 LIST_HEAD(victims);
4889 u64 count;
4890
4891 spin_lock(&recall_lock);
4892 count = nfsd_find_all_delegations(clp, max, &victims);
4893 spin_unlock(&recall_lock);
4894
4895 list_for_each_entry_safe(dp, next, &victims, dl_recall_lru)
3bd64a5b 4896 revoke_delegation(dp);
269de30f
BS
4897
4898 return count;
4899}
4900
4901u64 nfsd_recall_client_delegations(struct nfs4_client *clp, u64 max)
4902{
4903 struct nfs4_delegation *dp, *next;
4904 LIST_HEAD(victims);
4905 u64 count;
4906
4907 spin_lock(&recall_lock);
4908 count = nfsd_find_all_delegations(clp, max, &victims);
4909 list_for_each_entry_safe(dp, next, &victims, dl_recall_lru)
4910 nfsd_break_one_deleg(dp);
4911 spin_unlock(&recall_lock);
4912
4913 return count;
4914}
4915
184c1847
BS
4916u64 nfsd_print_client_delegations(struct nfs4_client *clp, u64 max)
4917{
4918 u64 count = 0;
4919
4920 spin_lock(&recall_lock);
4921 count = nfsd_find_all_delegations(clp, max, NULL);
4922 spin_unlock(&recall_lock);
4923
4924 nfsd_print_count(clp, count, "delegations");
4925 return count;
4926}
4927
44e34da6 4928u64 nfsd_for_n_state(u64 max, u64 (*func)(struct nfs4_client *, u64))
65178db4
BS
4929{
4930 struct nfs4_client *clp, *next;
44e34da6 4931 u64 count = 0;
3320fef1 4932 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, nfsd_net_id);
65178db4 4933
44e34da6
BS
4934 if (!nfsd_netns_ready(nn))
4935 return 0;
4936
5ed58bb2 4937 list_for_each_entry_safe(clp, next, &nn->client_lru, cl_lru) {
44e34da6
BS
4938 count += func(clp, max - count);
4939 if ((max != 0) && (count >= max))
65178db4
BS
4940 break;
4941 }
65178db4 4942
44e34da6
BS
4943 return count;
4944}
4945
6c1e82a4
BS
4946struct nfs4_client *nfsd_find_client(struct sockaddr_storage *addr, size_t addr_size)
4947{
4948 struct nfs4_client *clp;
4949 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, nfsd_net_id);
4950
4951 if (!nfsd_netns_ready(nn))
4952 return NULL;
4953
4954 list_for_each_entry(clp, &nn->client_lru, cl_lru) {
4955 if (memcmp(&clp->cl_addr, addr, addr_size) == 0)
4956 return clp;
4957 }
4958 return NULL;
4959}
4960
65178db4
BS
4961#endif /* CONFIG_NFSD_FAULT_INJECTION */
4962
ac4d8ff2 4963/* initialization to perform at module load time: */
1da177e4 4964
72083396 4965void
ac4d8ff2 4966nfs4_state_init(void)
1da177e4 4967{
ac4d8ff2
N
4968}
4969
c2f1a551
MS
4970/*
4971 * Since the lifetime of a delegation isn't limited to that of an open, a
4972 * client may quite reasonably hang on to a delegation as long as it has
4973 * the inode cached. This becomes an obvious problem the first time a
4974 * client's inode cache approaches the size of the server's total memory.
4975 *
4976 * For now we avoid this problem by imposing a hard limit on the number
4977 * of delegations, which varies according to the server's memory size.
4978 */
4979static void
4980set_max_delegations(void)
4981{
4982 /*
4983 * Allow at most 4 delegations per megabyte of RAM. Quick
4984 * estimates suggest that in the worst case (where every delegation
4985 * is for a different inode), a delegation could take about 1.5K,
4986 * giving a worst case usage of about 6% of memory.
4987 */
4988 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4989}
4990
d85ed443 4991static int nfs4_state_create_net(struct net *net)
8daae4dc
SK
4992{
4993 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
4994 int i;
4995
4996 nn->conf_id_hashtbl = kmalloc(sizeof(struct list_head) *
4997 CLIENT_HASH_SIZE, GFP_KERNEL);
4998 if (!nn->conf_id_hashtbl)
382a62e7 4999 goto err;
0a7ec377
SK
5000 nn->unconf_id_hashtbl = kmalloc(sizeof(struct list_head) *
5001 CLIENT_HASH_SIZE, GFP_KERNEL);
5002 if (!nn->unconf_id_hashtbl)
5003 goto err_unconf_id;
9b531137
SK
5004 nn->ownerstr_hashtbl = kmalloc(sizeof(struct list_head) *
5005 OWNER_HASH_SIZE, GFP_KERNEL);
5006 if (!nn->ownerstr_hashtbl)
5007 goto err_ownerstr;
20e9e2bc
SK
5008 nn->lockowner_ino_hashtbl = kmalloc(sizeof(struct list_head) *
5009 LOCKOWNER_INO_HASH_SIZE, GFP_KERNEL);
5010 if (!nn->lockowner_ino_hashtbl)
5011 goto err_lockowner_ino;
1872de0e
SK
5012 nn->sessionid_hashtbl = kmalloc(sizeof(struct list_head) *
5013 SESSION_HASH_SIZE, GFP_KERNEL);
5014 if (!nn->sessionid_hashtbl)
5015 goto err_sessionid;
8daae4dc 5016
382a62e7 5017 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
8daae4dc 5018 INIT_LIST_HEAD(&nn->conf_id_hashtbl[i]);
0a7ec377 5019 INIT_LIST_HEAD(&nn->unconf_id_hashtbl[i]);
382a62e7 5020 }
9b531137
SK
5021 for (i = 0; i < OWNER_HASH_SIZE; i++)
5022 INIT_LIST_HEAD(&nn->ownerstr_hashtbl[i]);
20e9e2bc
SK
5023 for (i = 0; i < LOCKOWNER_INO_HASH_SIZE; i++)
5024 INIT_LIST_HEAD(&nn->lockowner_ino_hashtbl[i]);
1872de0e
SK
5025 for (i = 0; i < SESSION_HASH_SIZE; i++)
5026 INIT_LIST_HEAD(&nn->sessionid_hashtbl[i]);
382a62e7 5027 nn->conf_name_tree = RB_ROOT;
a99454aa 5028 nn->unconf_name_tree = RB_ROOT;
5ed58bb2 5029 INIT_LIST_HEAD(&nn->client_lru);
73758fed 5030 INIT_LIST_HEAD(&nn->close_lru);
e8c69d17 5031 INIT_LIST_HEAD(&nn->del_recall_lru);
c9a49628 5032 spin_lock_init(&nn->client_lock);
8daae4dc 5033
09121281 5034 INIT_DELAYED_WORK(&nn->laundromat_work, laundromat_main);
d85ed443 5035 get_net(net);
09121281 5036
8daae4dc 5037 return 0;
382a62e7 5038
1872de0e
SK
5039err_sessionid:
5040 kfree(nn->lockowner_ino_hashtbl);
20e9e2bc
SK
5041err_lockowner_ino:
5042 kfree(nn->ownerstr_hashtbl);
9b531137
SK
5043err_ownerstr:
5044 kfree(nn->unconf_id_hashtbl);
0a7ec377
SK
5045err_unconf_id:
5046 kfree(nn->conf_id_hashtbl);
382a62e7
SK
5047err:
5048 return -ENOMEM;
8daae4dc
SK
5049}
5050
5051static void
4dce0ac9 5052nfs4_state_destroy_net(struct net *net)
8daae4dc
SK
5053{
5054 int i;
5055 struct nfs4_client *clp = NULL;
5056 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
a99454aa 5057 struct rb_node *node, *tmp;
8daae4dc
SK
5058
5059 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
5060 while (!list_empty(&nn->conf_id_hashtbl[i])) {
5061 clp = list_entry(nn->conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
5062 destroy_client(clp);
5063 }
5064 }
a99454aa
SK
5065
5066 node = rb_first(&nn->unconf_name_tree);
5067 while (node != NULL) {
5068 tmp = node;
5069 node = rb_next(tmp);
5070 clp = rb_entry(tmp, struct nfs4_client, cl_namenode);
5071 rb_erase(tmp, &nn->unconf_name_tree);
5072 destroy_client(clp);
5073 }
5074
1872de0e 5075 kfree(nn->sessionid_hashtbl);
20e9e2bc 5076 kfree(nn->lockowner_ino_hashtbl);
9b531137 5077 kfree(nn->ownerstr_hashtbl);
0a7ec377 5078 kfree(nn->unconf_id_hashtbl);
8daae4dc 5079 kfree(nn->conf_id_hashtbl);
4dce0ac9 5080 put_net(net);
8daae4dc
SK
5081}
5082
f252bc68 5083int
d85ed443 5084nfs4_state_start_net(struct net *net)
ac4d8ff2 5085{
5e1533c7 5086 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
b5a1a81e
BF
5087 int ret;
5088
d85ed443 5089 ret = nfs4_state_create_net(net);
8daae4dc
SK
5090 if (ret)
5091 return ret;
5e1533c7 5092 nfsd4_client_tracking_init(net);
2c142baa 5093 nn->boot_time = get_seconds();
5ccb0066 5094 locks_start_grace(net, &nn->nfsd4_manager);
a51c84ed 5095 nn->grace_ended = false;
d85ed443 5096 printk(KERN_INFO "NFSD: starting %ld-second grace period (net %p)\n",
5284b44e
SK
5097 nn->nfsd4_grace, net);
5098 queue_delayed_work(laundry_wq, &nn->laundromat_work, nn->nfsd4_grace * HZ);
d85ed443
SK
5099 return 0;
5100}
5101
5102/* initialization to perform when the nfsd service is started: */
5103
5104int
5105nfs4_state_start(void)
5106{
5107 int ret;
5108
b5a1a81e 5109 ret = set_callback_cred();
d85ed443
SK
5110 if (ret)
5111 return -ENOMEM;
58da282b 5112 laundry_wq = create_singlethread_workqueue("nfsd4");
a6d6b781
JL
5113 if (laundry_wq == NULL) {
5114 ret = -ENOMEM;
5115 goto out_recovery;
5116 }
b5a1a81e
BF
5117 ret = nfsd4_create_callback_queue();
5118 if (ret)
5119 goto out_free_laundry;
09121281 5120
c2f1a551 5121 set_max_delegations();
d85ed443 5122
b5a1a81e 5123 return 0;
d85ed443 5124
b5a1a81e
BF
5125out_free_laundry:
5126 destroy_workqueue(laundry_wq);
a6d6b781 5127out_recovery:
b5a1a81e 5128 return ret;
1da177e4
LT
5129}
5130
f252bc68 5131void
4dce0ac9 5132nfs4_state_shutdown_net(struct net *net)
1da177e4 5133{
1da177e4 5134 struct nfs4_delegation *dp = NULL;
1da177e4 5135 struct list_head *pos, *next, reaplist;
4dce0ac9 5136 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1da177e4 5137
4dce0ac9
SK
5138 cancel_delayed_work_sync(&nn->laundromat_work);
5139 locks_end_grace(&nn->nfsd4_manager);
ac55fdc4 5140
e50a26dc 5141 nfs4_lock_state();
1da177e4
LT
5142 INIT_LIST_HEAD(&reaplist);
5143 spin_lock(&recall_lock);
e8c69d17 5144 list_for_each_safe(pos, next, &nn->del_recall_lru) {
1da177e4
LT
5145 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
5146 list_move(&dp->dl_recall_lru, &reaplist);
5147 }
5148 spin_unlock(&recall_lock);
5149 list_for_each_safe(pos, next, &reaplist) {
5150 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3bd64a5b 5151 destroy_delegation(dp);
1da177e4
LT
5152 }
5153
3320fef1 5154 nfsd4_client_tracking_exit(net);
4dce0ac9 5155 nfs4_state_destroy_net(net);
e50a26dc 5156 nfs4_unlock_state();
1da177e4
LT
5157}
5158
5159void
5160nfs4_state_shutdown(void)
5161{
5e8d5c29 5162 destroy_workqueue(laundry_wq);
c3935e30 5163 nfsd4_destroy_callback_queue();
1da177e4 5164}
8b70484c
TM
5165
5166static void
5167get_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
5168{
37c593c5
TM
5169 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG) && CURRENT_STATEID(stateid))
5170 memcpy(stateid, &cstate->current_stateid, sizeof(stateid_t));
8b70484c
TM
5171}
5172
5173static void
5174put_stateid(struct nfsd4_compound_state *cstate, stateid_t *stateid)
5175{
37c593c5
TM
5176 if (cstate->minorversion) {
5177 memcpy(&cstate->current_stateid, stateid, sizeof(stateid_t));
5178 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
5179 }
5180}
5181
5182void
5183clear_current_stateid(struct nfsd4_compound_state *cstate)
5184{
5185 CLEAR_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
8b70484c
TM
5186}
5187
62cd4a59
TM
5188/*
5189 * functions to set current state id
5190 */
9428fe1a
TM
5191void
5192nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
5193{
5194 put_stateid(cstate, &odp->od_stateid);
5195}
5196
8b70484c
TM
5197void
5198nfsd4_set_openstateid(struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
5199{
5200 put_stateid(cstate, &open->op_stateid);
5201}
5202
62cd4a59
TM
5203void
5204nfsd4_set_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
5205{
5206 put_stateid(cstate, &close->cl_stateid);
5207}
5208
5209void
5210nfsd4_set_lockstateid(struct nfsd4_compound_state *cstate, struct nfsd4_lock *lock)
5211{
5212 put_stateid(cstate, &lock->lk_resp_stateid);
5213}
5214
5215/*
5216 * functions to consume current state id
5217 */
1e97b519 5218
9428fe1a
TM
5219void
5220nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *odp)
5221{
5222 get_stateid(cstate, &odp->od_stateid);
5223}
5224
5225void
5226nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *cstate, struct nfsd4_delegreturn *drp)
5227{
5228 get_stateid(cstate, &drp->dr_stateid);
5229}
5230
1e97b519
TM
5231void
5232nfsd4_get_freestateid(struct nfsd4_compound_state *cstate, struct nfsd4_free_stateid *fsp)
5233{
5234 get_stateid(cstate, &fsp->fr_stateid);
5235}
5236
5237void
5238nfsd4_get_setattrstateid(struct nfsd4_compound_state *cstate, struct nfsd4_setattr *setattr)
5239{
5240 get_stateid(cstate, &setattr->sa_stateid);
5241}
5242
8b70484c
TM
5243void
5244nfsd4_get_closestateid(struct nfsd4_compound_state *cstate, struct nfsd4_close *close)
5245{
5246 get_stateid(cstate, &close->cl_stateid);
5247}
5248
5249void
62cd4a59 5250nfsd4_get_lockustateid(struct nfsd4_compound_state *cstate, struct nfsd4_locku *locku)
8b70484c 5251{
62cd4a59 5252 get_stateid(cstate, &locku->lu_stateid);
8b70484c 5253}
30813e27
TM
5254
5255void
5256nfsd4_get_readstateid(struct nfsd4_compound_state *cstate, struct nfsd4_read *read)
5257{
5258 get_stateid(cstate, &read->rd_stateid);
5259}
5260
5261void
5262nfsd4_get_writestateid(struct nfsd4_compound_state *cstate, struct nfsd4_write *write)
5263{
5264 get_stateid(cstate, &write->wr_stateid);
5265}
This page took 1.30922 seconds and 5 git commands to generate.