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