Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6
[linux-2.6-block.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>
1da177e4 36#include <linux/smp_lock.h>
5a0e3ad6 37#include <linux/slab.h>
0964a3d3 38#include <linux/namei.h>
c2f1a551 39#include <linux/swap.h>
68e76ad0 40#include <linux/sunrpc/svcauth_gss.h>
363168b4 41#include <linux/sunrpc/clnt.h>
9a74af21 42#include "xdr4.h"
0a3adade 43#include "vfs.h"
1da177e4
LT
44
45#define NFSDDBG_FACILITY NFSDDBG_PROC
46
47/* Globals */
48static time_t lease_time = 90; /* default lease time */
d99a05ad 49static time_t user_lease_time = 90;
fd39ca9a 50static time_t boot_time;
1da177e4
LT
51static u32 current_ownerid = 1;
52static u32 current_fileid = 1;
53static u32 current_delegid = 1;
54static u32 nfs4_init;
fd39ca9a
N
55static stateid_t zerostateid; /* bits all 0 */
56static stateid_t onestateid; /* bits all 1 */
ec6b5d7b 57static u64 current_sessionid = 1;
fd39ca9a
N
58
59#define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
60#define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
1da177e4 61
1da177e4 62/* forward declarations */
fd39ca9a 63static struct nfs4_stateid * find_stateid(stateid_t *stid, int flags);
1da177e4 64static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
0964a3d3
N
65static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
66static void nfs4_set_recdir(char *recdir);
1da177e4 67
8b671b80
BF
68/* Locking: */
69
70/* Currently used for almost all code touching nfsv4 state: */
353ab6e9 71static DEFINE_MUTEX(client_mutex);
1da177e4 72
8b671b80
BF
73/*
74 * Currently used for the del_recall_lru and file hash table. In an
75 * effort to decrease the scope of the client_mutex, this spinlock may
76 * eventually cover more:
77 */
78static DEFINE_SPINLOCK(recall_lock);
79
e18b890b
CL
80static struct kmem_cache *stateowner_slab = NULL;
81static struct kmem_cache *file_slab = NULL;
82static struct kmem_cache *stateid_slab = NULL;
83static struct kmem_cache *deleg_slab = NULL;
e60d4398 84
1da177e4
LT
85void
86nfs4_lock_state(void)
87{
353ab6e9 88 mutex_lock(&client_mutex);
1da177e4
LT
89}
90
91void
92nfs4_unlock_state(void)
93{
353ab6e9 94 mutex_unlock(&client_mutex);
1da177e4
LT
95}
96
97static inline u32
98opaque_hashval(const void *ptr, int nbytes)
99{
100 unsigned char *cptr = (unsigned char *) ptr;
101
102 u32 x = 0;
103 while (nbytes--) {
104 x *= 37;
105 x += *cptr++;
106 }
107 return x;
108}
109
1da177e4
LT
110static struct list_head del_recall_lru;
111
13cd2184
N
112static inline void
113put_nfs4_file(struct nfs4_file *fi)
114{
8b671b80
BF
115 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
116 list_del(&fi->fi_hash);
117 spin_unlock(&recall_lock);
118 iput(fi->fi_inode);
119 kmem_cache_free(file_slab, fi);
120 }
13cd2184
N
121}
122
123static inline void
124get_nfs4_file(struct nfs4_file *fi)
125{
8b671b80 126 atomic_inc(&fi->fi_ref);
13cd2184
N
127}
128
ef0f3390 129static int num_delegations;
c2f1a551 130unsigned int max_delegations;
ef0f3390
N
131
132/*
133 * Open owner state (share locks)
134 */
135
136/* hash tables for nfs4_stateowner */
137#define OWNER_HASH_BITS 8
138#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
139#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
140
141#define ownerid_hashval(id) \
142 ((id) & OWNER_HASH_MASK)
143#define ownerstr_hashval(clientid, ownername) \
144 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
145
146static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE];
147static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
148
149/* hash table for nfs4_file */
150#define FILE_HASH_BITS 8
151#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
152#define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
153/* hash table for (open)nfs4_stateid */
154#define STATEID_HASH_BITS 10
155#define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
156#define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
157
158#define file_hashval(x) \
159 hash_ptr(x, FILE_HASH_BITS)
160#define stateid_hashval(owner_id, file_id) \
161 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
162
163static struct list_head file_hashtbl[FILE_HASH_SIZE];
164static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
165
1da177e4
LT
166static struct nfs4_delegation *
167alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
168{
169 struct nfs4_delegation *dp;
170 struct nfs4_file *fp = stp->st_file;
c237dc03 171 struct nfs4_cb_conn *cb = &stp->st_stateowner->so_client->cl_cb_conn;
1da177e4
LT
172
173 dprintk("NFSD alloc_init_deleg\n");
47f9940c
MS
174 if (fp->fi_had_conflict)
175 return NULL;
c2f1a551 176 if (num_delegations > max_delegations)
ef0f3390 177 return NULL;
5b2d21c1
N
178 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
179 if (dp == NULL)
1da177e4 180 return dp;
ef0f3390 181 num_delegations++;
ea1da636
N
182 INIT_LIST_HEAD(&dp->dl_perfile);
183 INIT_LIST_HEAD(&dp->dl_perclnt);
1da177e4
LT
184 INIT_LIST_HEAD(&dp->dl_recall_lru);
185 dp->dl_client = clp;
13cd2184 186 get_nfs4_file(fp);
1da177e4
LT
187 dp->dl_file = fp;
188 dp->dl_flock = NULL;
189 get_file(stp->st_vfs_file);
190 dp->dl_vfs_file = stp->st_vfs_file;
191 dp->dl_type = type;
b53d40c5 192 dp->dl_ident = cb->cb_ident;
78155ed7 193 dp->dl_stateid.si_boot = get_seconds();
1da177e4
LT
194 dp->dl_stateid.si_stateownerid = current_delegid++;
195 dp->dl_stateid.si_fileid = 0;
196 dp->dl_stateid.si_generation = 0;
6c02eaa1 197 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
1da177e4
LT
198 dp->dl_time = 0;
199 atomic_set(&dp->dl_count, 1);
ea1da636
N
200 list_add(&dp->dl_perfile, &fp->fi_delegations);
201 list_add(&dp->dl_perclnt, &clp->cl_delegations);
1da177e4
LT
202 return dp;
203}
204
205void
206nfs4_put_delegation(struct nfs4_delegation *dp)
207{
208 if (atomic_dec_and_test(&dp->dl_count)) {
209 dprintk("NFSD: freeing dp %p\n",dp);
13cd2184 210 put_nfs4_file(dp->dl_file);
5b2d21c1 211 kmem_cache_free(deleg_slab, dp);
ef0f3390 212 num_delegations--;
1da177e4
LT
213 }
214}
215
216/* Remove the associated file_lock first, then remove the delegation.
217 * lease_modify() is called to remove the FS_LEASE file_lock from
218 * the i_flock list, eventually calling nfsd's lock_manager
219 * fl_release_callback.
220 */
221static void
222nfs4_close_delegation(struct nfs4_delegation *dp)
223{
224 struct file *filp = dp->dl_vfs_file;
225
226 dprintk("NFSD: close_delegation dp %p\n",dp);
227 dp->dl_vfs_file = NULL;
228 /* The following nfsd_close may not actually close the file,
229 * but we want to remove the lease in any case. */
c907132d 230 if (dp->dl_flock)
a9933cea 231 vfs_setlease(filp, F_UNLCK, &dp->dl_flock);
1da177e4 232 nfsd_close(filp);
1da177e4
LT
233}
234
235/* Called under the state lock. */
236static void
237unhash_delegation(struct nfs4_delegation *dp)
238{
ea1da636
N
239 list_del_init(&dp->dl_perfile);
240 list_del_init(&dp->dl_perclnt);
1da177e4
LT
241 spin_lock(&recall_lock);
242 list_del_init(&dp->dl_recall_lru);
243 spin_unlock(&recall_lock);
244 nfs4_close_delegation(dp);
245 nfs4_put_delegation(dp);
246}
247
248/*
249 * SETCLIENTID state
250 */
251
252/* Hash tables for nfs4_clientid state */
253#define CLIENT_HASH_BITS 4
254#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
255#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
256
257#define clientid_hashval(id) \
258 ((id) & CLIENT_HASH_MASK)
a55370a3
N
259#define clientstr_hashval(name) \
260 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
1da177e4
LT
261/*
262 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
263 * used in reboot/reset lease grace period processing
264 *
265 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
266 * setclientid_confirmed info.
267 *
268 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
269 * setclientid info.
270 *
271 * client_lru holds client queue ordered by nfs4_client.cl_time
272 * for lease renewal.
273 *
274 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
275 * for last close replay.
276 */
277static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
278static int reclaim_str_hashtbl_size = 0;
279static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
280static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
281static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
282static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
283static struct list_head client_lru;
284static struct list_head close_lru;
285
2283963f
BF
286static void unhash_generic_stateid(struct nfs4_stateid *stp)
287{
288 list_del(&stp->st_hash);
289 list_del(&stp->st_perfile);
290 list_del(&stp->st_perstateowner);
291}
292
293static void free_generic_stateid(struct nfs4_stateid *stp)
294{
295 put_nfs4_file(stp->st_file);
296 kmem_cache_free(stateid_slab, stp);
297}
298
299static void release_lock_stateid(struct nfs4_stateid *stp)
300{
301 unhash_generic_stateid(stp);
302 locks_remove_posix(stp->st_vfs_file, (fl_owner_t)stp->st_stateowner);
303 free_generic_stateid(stp);
304}
305
f044ff83
BF
306static void unhash_lockowner(struct nfs4_stateowner *sop)
307{
308 struct nfs4_stateid *stp;
309
310 list_del(&sop->so_idhash);
311 list_del(&sop->so_strhash);
312 list_del(&sop->so_perstateid);
313 while (!list_empty(&sop->so_stateids)) {
314 stp = list_first_entry(&sop->so_stateids,
315 struct nfs4_stateid, st_perstateowner);
316 release_lock_stateid(stp);
317 }
318}
319
320static void release_lockowner(struct nfs4_stateowner *sop)
321{
322 unhash_lockowner(sop);
323 nfs4_put_stateowner(sop);
324}
325
f1d110ca
BF
326static void
327release_stateid_lockowners(struct nfs4_stateid *open_stp)
328{
329 struct nfs4_stateowner *lock_sop;
330
331 while (!list_empty(&open_stp->st_lockowners)) {
332 lock_sop = list_entry(open_stp->st_lockowners.next,
333 struct nfs4_stateowner, so_perstateid);
334 /* list_del(&open_stp->st_lockowners); */
335 BUG_ON(lock_sop->so_is_open_owner);
f044ff83 336 release_lockowner(lock_sop);
f1d110ca
BF
337 }
338}
339
2283963f
BF
340static void release_open_stateid(struct nfs4_stateid *stp)
341{
342 unhash_generic_stateid(stp);
343 release_stateid_lockowners(stp);
344 nfsd_close(stp->st_vfs_file);
345 free_generic_stateid(stp);
346}
347
f044ff83 348static void unhash_openowner(struct nfs4_stateowner *sop)
f1d110ca
BF
349{
350 struct nfs4_stateid *stp;
351
352 list_del(&sop->so_idhash);
353 list_del(&sop->so_strhash);
f044ff83
BF
354 list_del(&sop->so_perclient);
355 list_del(&sop->so_perstateid); /* XXX: necessary? */
f1d110ca 356 while (!list_empty(&sop->so_stateids)) {
f044ff83
BF
357 stp = list_first_entry(&sop->so_stateids,
358 struct nfs4_stateid, st_perstateowner);
359 release_open_stateid(stp);
f1d110ca
BF
360 }
361}
362
f044ff83 363static void release_openowner(struct nfs4_stateowner *sop)
f1d110ca 364{
f044ff83 365 unhash_openowner(sop);
f1d110ca
BF
366 list_del(&sop->so_close_lru);
367 nfs4_put_stateowner(sop);
368}
369
5282fd72
ME
370static DEFINE_SPINLOCK(sessionid_lock);
371#define SESSION_HASH_SIZE 512
372static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
373
374static inline int
375hash_sessionid(struct nfs4_sessionid *sessionid)
376{
377 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
378
379 return sid->sequence % SESSION_HASH_SIZE;
380}
381
382static inline void
383dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
384{
385 u32 *ptr = (u32 *)(&sessionid->data[0]);
386 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
387}
388
ec6b5d7b
AA
389static void
390gen_sessionid(struct nfsd4_session *ses)
391{
392 struct nfs4_client *clp = ses->se_client;
393 struct nfsd4_sessionid *sid;
394
395 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
396 sid->clientid = clp->cl_clientid;
397 sid->sequence = current_sessionid++;
398 sid->reserved = 0;
399}
400
401/*
a649637c
AA
402 * The protocol defines ca_maxresponssize_cached to include the size of
403 * the rpc header, but all we need to cache is the data starting after
404 * the end of the initial SEQUENCE operation--the rest we regenerate
405 * each time. Therefore we can advertise a ca_maxresponssize_cached
406 * value that is the number of bytes in our cache plus a few additional
407 * bytes. In order to stay on the safe side, and not promise more than
408 * we can cache, those additional bytes must be the minimum possible: 24
409 * bytes of rpc header (xid through accept state, with AUTH_NULL
410 * verifier), 12 for the compound header (with zero-length tag), and 44
411 * for the SEQUENCE op response:
412 */
413#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
414
415/*
416 * Give the client the number of ca_maxresponsesize_cached slots it
417 * requests, of size bounded by NFSD_SLOT_CACHE_SIZE,
418 * NFSD_MAX_MEM_PER_SESSION, and nfsd_drc_max_mem. Do not allow more
419 * than NFSD_MAX_SLOTS_PER_SESSION.
ec6b5d7b 420 *
a649637c
AA
421 * If we run out of reserved DRC memory we should (up to a point)
422 * re-negotiate active sessions and reduce their slot usage to make
423 * rooom for new connections. For now we just fail the create session.
ec6b5d7b 424 */
a649637c 425static int set_forechannel_drc_size(struct nfsd4_channel_attrs *fchan)
ec6b5d7b 426{
a649637c 427 int mem, size = fchan->maxresp_cached;
ec6b5d7b 428
5d77ddfb
AA
429 if (fchan->maxreqs < 1)
430 return nfserr_inval;
5d77ddfb 431
a649637c
AA
432 if (size < NFSD_MIN_HDR_SEQ_SZ)
433 size = NFSD_MIN_HDR_SEQ_SZ;
434 size -= NFSD_MIN_HDR_SEQ_SZ;
435 if (size > NFSD_SLOT_CACHE_SIZE)
436 size = NFSD_SLOT_CACHE_SIZE;
ec6b5d7b 437
a649637c
AA
438 /* bound the maxreqs by NFSD_MAX_MEM_PER_SESSION */
439 mem = fchan->maxreqs * size;
440 if (mem > NFSD_MAX_MEM_PER_SESSION) {
441 fchan->maxreqs = NFSD_MAX_MEM_PER_SESSION / size;
442 if (fchan->maxreqs > NFSD_MAX_SLOTS_PER_SESSION)
443 fchan->maxreqs = NFSD_MAX_SLOTS_PER_SESSION;
444 mem = fchan->maxreqs * size;
445 }
ec6b5d7b 446
4bd9b0f4 447 spin_lock(&nfsd_drc_lock);
a649637c
AA
448 /* bound the total session drc memory ussage */
449 if (mem + nfsd_drc_mem_used > nfsd_drc_max_mem) {
450 fchan->maxreqs = (nfsd_drc_max_mem - nfsd_drc_mem_used) / size;
451 mem = fchan->maxreqs * size;
452 }
0c193054 453 nfsd_drc_mem_used += mem;
4bd9b0f4 454 spin_unlock(&nfsd_drc_lock);
ec6b5d7b 455
b101ebbc 456 if (fchan->maxreqs == 0)
bdac86e2 457 return nfserr_serverfault;
a649637c
AA
458
459 fchan->maxresp_cached = size + NFSD_MIN_HDR_SEQ_SZ;
b101ebbc 460 return 0;
ec6b5d7b
AA
461}
462
463/*
464 * fchan holds the client values on input, and the server values on output
ddc04fd4 465 * sv_max_mesg is the maximum payload plus one page for overhead.
ec6b5d7b
AA
466 */
467static int init_forechannel_attrs(struct svc_rqst *rqstp,
6c18ba9f
AB
468 struct nfsd4_channel_attrs *session_fchan,
469 struct nfsd4_channel_attrs *fchan)
ec6b5d7b
AA
470{
471 int status = 0;
ddc04fd4 472 __u32 maxcount = nfsd_serv->sv_max_mesg;
ec6b5d7b
AA
473
474 /* headerpadsz set to zero in encode routine */
475
476 /* Use the client's max request and max response size if possible */
477 if (fchan->maxreq_sz > maxcount)
478 fchan->maxreq_sz = maxcount;
6c18ba9f 479 session_fchan->maxreq_sz = fchan->maxreq_sz;
ec6b5d7b
AA
480
481 if (fchan->maxresp_sz > maxcount)
482 fchan->maxresp_sz = maxcount;
6c18ba9f 483 session_fchan->maxresp_sz = fchan->maxresp_sz;
ec6b5d7b 484
ec6b5d7b
AA
485 /* Use the client's maxops if possible */
486 if (fchan->maxops > NFSD_MAX_OPS_PER_COMPOUND)
487 fchan->maxops = NFSD_MAX_OPS_PER_COMPOUND;
6c18ba9f 488 session_fchan->maxops = fchan->maxops;
ec6b5d7b 489
ec6b5d7b
AA
490 /* FIXME: Error means no more DRC pages so the server should
491 * recover pages from existing sessions. For now fail session
492 * creation.
493 */
a649637c 494 status = set_forechannel_drc_size(fchan);
ec6b5d7b 495
a649637c 496 session_fchan->maxresp_cached = fchan->maxresp_cached;
6c18ba9f 497 session_fchan->maxreqs = fchan->maxreqs;
a649637c
AA
498
499 dprintk("%s status %d\n", __func__, status);
ec6b5d7b
AA
500 return status;
501}
502
557ce264
AA
503static void
504free_session_slots(struct nfsd4_session *ses)
505{
506 int i;
507
508 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
509 kfree(ses->se_slots[i]);
510}
511
efe0cb6d
BF
512/*
513 * We don't actually need to cache the rpc and session headers, so we
514 * can allocate a little less for each slot:
515 */
516static inline int slot_bytes(struct nfsd4_channel_attrs *ca)
517{
518 return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
519}
520
ec6b5d7b
AA
521static int
522alloc_init_session(struct svc_rqst *rqstp, struct nfs4_client *clp,
523 struct nfsd4_create_session *cses)
524{
525 struct nfsd4_session *new, tmp;
557ce264
AA
526 struct nfsd4_slot *sp;
527 int idx, slotsize, cachesize, i;
528 int status;
ec6b5d7b
AA
529
530 memset(&tmp, 0, sizeof(tmp));
531
532 /* FIXME: For now, we just accept the client back channel attributes. */
6c18ba9f
AB
533 tmp.se_bchannel = cses->back_channel;
534 status = init_forechannel_attrs(rqstp, &tmp.se_fchannel,
535 &cses->fore_channel);
ec6b5d7b
AA
536 if (status)
537 goto out;
538
557ce264
AA
539 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot)
540 + sizeof(struct nfsd4_session) > PAGE_SIZE);
541
542 status = nfserr_serverfault;
543 /* allocate struct nfsd4_session and slot table pointers in one piece */
544 slotsize = tmp.se_fchannel.maxreqs * sizeof(struct nfsd4_slot *);
ec6b5d7b
AA
545 new = kzalloc(sizeof(*new) + slotsize, GFP_KERNEL);
546 if (!new)
547 goto out;
548
549 memcpy(new, &tmp, sizeof(*new));
550
557ce264 551 /* allocate each struct nfsd4_slot and data cache in one piece */
efe0cb6d 552 cachesize = slot_bytes(&new->se_fchannel);
557ce264
AA
553 for (i = 0; i < new->se_fchannel.maxreqs; i++) {
554 sp = kzalloc(sizeof(*sp) + cachesize, GFP_KERNEL);
555 if (!sp)
556 goto out_free;
557 new->se_slots[i] = sp;
558 }
559
ec6b5d7b
AA
560 new->se_client = clp;
561 gen_sessionid(new);
562 idx = hash_sessionid(&new->se_sessionid);
563 memcpy(clp->cl_sessionid.data, new->se_sessionid.data,
564 NFS4_MAX_SESSIONID_LEN);
565
566 new->se_flags = cses->flags;
567 kref_init(&new->se_ref);
568 spin_lock(&sessionid_lock);
569 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
570 list_add(&new->se_perclnt, &clp->cl_sessions);
571 spin_unlock(&sessionid_lock);
572
573 status = nfs_ok;
574out:
575 return status;
557ce264
AA
576out_free:
577 free_session_slots(new);
578 kfree(new);
579 goto out;
ec6b5d7b
AA
580}
581
5282fd72
ME
582/* caller must hold sessionid_lock */
583static struct nfsd4_session *
584find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
585{
586 struct nfsd4_session *elem;
587 int idx;
588
589 dump_sessionid(__func__, sessionid);
590 idx = hash_sessionid(sessionid);
591 dprintk("%s: idx is %d\n", __func__, idx);
592 /* Search in the appropriate list */
593 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
594 dump_sessionid("list traversal", &elem->se_sessionid);
595 if (!memcmp(elem->se_sessionid.data, sessionid->data,
596 NFS4_MAX_SESSIONID_LEN)) {
597 return elem;
598 }
599 }
600
601 dprintk("%s: session not found\n", __func__);
602 return NULL;
603}
604
605/* caller must hold sessionid_lock */
7116ed6b 606static void
5282fd72 607unhash_session(struct nfsd4_session *ses)
7116ed6b
AA
608{
609 list_del(&ses->se_hash);
610 list_del(&ses->se_perclnt);
5282fd72
ME
611}
612
613static void
614release_session(struct nfsd4_session *ses)
615{
616 spin_lock(&sessionid_lock);
617 unhash_session(ses);
618 spin_unlock(&sessionid_lock);
7116ed6b
AA
619 nfsd4_put_session(ses);
620}
621
622void
623free_session(struct kref *kref)
624{
625 struct nfsd4_session *ses;
dd829c45 626 int mem;
7116ed6b
AA
627
628 ses = container_of(kref, struct nfsd4_session, se_ref);
be98d1bb 629 spin_lock(&nfsd_drc_lock);
efe0cb6d 630 mem = ses->se_fchannel.maxreqs * slot_bytes(&ses->se_fchannel);
dd829c45 631 nfsd_drc_mem_used -= mem;
be98d1bb 632 spin_unlock(&nfsd_drc_lock);
557ce264 633 free_session_slots(ses);
7116ed6b
AA
634 kfree(ses);
635}
636
1da177e4
LT
637static inline void
638renew_client(struct nfs4_client *clp)
639{
640 /*
641 * Move client to the end to the LRU list.
642 */
643 dprintk("renewing client (clientid %08x/%08x)\n",
644 clp->cl_clientid.cl_boot,
645 clp->cl_clientid.cl_id);
646 list_move_tail(&clp->cl_lru, &client_lru);
647 clp->cl_time = get_seconds();
648}
649
650/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
651static int
652STALE_CLIENTID(clientid_t *clid)
653{
654 if (clid->cl_boot == boot_time)
655 return 0;
60adfc50
AA
656 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
657 clid->cl_boot, clid->cl_id, boot_time);
1da177e4
LT
658 return 1;
659}
660
661/*
662 * XXX Should we use a slab cache ?
663 * This type of memory management is somewhat inefficient, but we use it
664 * anyway since SETCLIENTID is not a common operation.
665 */
35bba9a3 666static struct nfs4_client *alloc_client(struct xdr_netobj name)
1da177e4
LT
667{
668 struct nfs4_client *clp;
669
35bba9a3
BF
670 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
671 if (clp == NULL)
672 return NULL;
673 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
674 if (clp->cl_name.data == NULL) {
675 kfree(clp);
676 return NULL;
1da177e4 677 }
35bba9a3
BF
678 memcpy(clp->cl_name.data, name.data, name.len);
679 clp->cl_name.len = name.len;
1da177e4
LT
680 return clp;
681}
682
1b1a9b31
BF
683static void
684shutdown_callback_client(struct nfs4_client *clp)
685{
c237dc03 686 struct rpc_clnt *clnt = clp->cl_cb_conn.cb_client;
1b1a9b31 687
1b1a9b31 688 if (clnt) {
404ec117
BF
689 /*
690 * Callback threads take a reference on the client, so there
691 * should be no outstanding callbacks at this point.
692 */
c237dc03 693 clp->cl_cb_conn.cb_client = NULL;
1b1a9b31
BF
694 rpc_shutdown_client(clnt);
695 }
696}
697
1da177e4
LT
698static inline void
699free_client(struct nfs4_client *clp)
700{
1b1a9b31 701 shutdown_callback_client(clp);
38524ab3
AA
702 if (clp->cl_cb_xprt)
703 svc_xprt_put(clp->cl_cb_xprt);
1da177e4
LT
704 if (clp->cl_cred.cr_group_info)
705 put_group_info(clp->cl_cred.cr_group_info);
68e76ad0 706 kfree(clp->cl_principal);
1da177e4
LT
707 kfree(clp->cl_name.data);
708 kfree(clp);
709}
710
711void
712put_nfs4_client(struct nfs4_client *clp)
713{
714 if (atomic_dec_and_test(&clp->cl_count))
715 free_client(clp);
716}
717
718static void
719expire_client(struct nfs4_client *clp)
720{
721 struct nfs4_stateowner *sop;
722 struct nfs4_delegation *dp;
1da177e4
LT
723 struct list_head reaplist;
724
725 dprintk("NFSD: expire_client cl_count %d\n",
726 atomic_read(&clp->cl_count));
727
1da177e4
LT
728 INIT_LIST_HEAD(&reaplist);
729 spin_lock(&recall_lock);
ea1da636
N
730 while (!list_empty(&clp->cl_delegations)) {
731 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
1da177e4
LT
732 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
733 dp->dl_flock);
ea1da636 734 list_del_init(&dp->dl_perclnt);
1da177e4
LT
735 list_move(&dp->dl_recall_lru, &reaplist);
736 }
737 spin_unlock(&recall_lock);
738 while (!list_empty(&reaplist)) {
739 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
740 list_del_init(&dp->dl_recall_lru);
741 unhash_delegation(dp);
742 }
743 list_del(&clp->cl_idhash);
744 list_del(&clp->cl_strhash);
745 list_del(&clp->cl_lru);
ea1da636
N
746 while (!list_empty(&clp->cl_openowners)) {
747 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
f044ff83 748 release_openowner(sop);
1da177e4 749 }
c4bf7868
ME
750 while (!list_empty(&clp->cl_sessions)) {
751 struct nfsd4_session *ses;
752 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
753 se_perclnt);
754 release_session(ses);
755 }
1da177e4
LT
756 put_nfs4_client(clp);
757}
758
35bba9a3
BF
759static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
760{
761 memcpy(target->cl_verifier.data, source->data,
762 sizeof(target->cl_verifier.data));
1da177e4
LT
763}
764
35bba9a3
BF
765static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
766{
1da177e4
LT
767 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
768 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
769}
770
35bba9a3
BF
771static void copy_cred(struct svc_cred *target, struct svc_cred *source)
772{
1da177e4
LT
773 target->cr_uid = source->cr_uid;
774 target->cr_gid = source->cr_gid;
775 target->cr_group_info = source->cr_group_info;
776 get_group_info(target->cr_group_info);
777}
778
35bba9a3 779static int same_name(const char *n1, const char *n2)
599e0a22 780{
a55370a3 781 return 0 == memcmp(n1, n2, HEXDIR_LEN);
1da177e4
LT
782}
783
784static int
599e0a22
BF
785same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
786{
787 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
1da177e4
LT
788}
789
790static int
599e0a22
BF
791same_clid(clientid_t *cl1, clientid_t *cl2)
792{
793 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
1da177e4
LT
794}
795
796/* XXX what about NGROUP */
797static int
599e0a22
BF
798same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
799{
800 return cr1->cr_uid == cr2->cr_uid;
1da177e4
LT
801}
802
5ec7b46c
BF
803static void gen_clid(struct nfs4_client *clp)
804{
805 static u32 current_clientid = 1;
806
1da177e4
LT
807 clp->cl_clientid.cl_boot = boot_time;
808 clp->cl_clientid.cl_id = current_clientid++;
809}
810
deda2faa
BF
811static void gen_confirm(struct nfs4_client *clp)
812{
813 static u32 i;
814 u32 *p;
1da177e4 815
1da177e4 816 p = (u32 *)clp->cl_confirm.data;
deda2faa
BF
817 *p++ = get_seconds();
818 *p++ = i++;
1da177e4
LT
819}
820
b09333c4
RL
821static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir,
822 struct svc_rqst *rqstp, nfs4_verifier *verf)
823{
824 struct nfs4_client *clp;
825 struct sockaddr *sa = svc_addr(rqstp);
826 char *princ;
827
828 clp = alloc_client(name);
829 if (clp == NULL)
830 return NULL;
831
832 princ = svc_gss_principal(rqstp);
833 if (princ) {
834 clp->cl_principal = kstrdup(princ, GFP_KERNEL);
835 if (clp->cl_principal == NULL) {
836 free_client(clp);
837 return NULL;
838 }
839 }
840
841 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
842 atomic_set(&clp->cl_count, 1);
843 atomic_set(&clp->cl_cb_conn.cb_set, 0);
844 INIT_LIST_HEAD(&clp->cl_idhash);
845 INIT_LIST_HEAD(&clp->cl_strhash);
846 INIT_LIST_HEAD(&clp->cl_openowners);
847 INIT_LIST_HEAD(&clp->cl_delegations);
848 INIT_LIST_HEAD(&clp->cl_sessions);
849 INIT_LIST_HEAD(&clp->cl_lru);
850 clear_bit(0, &clp->cl_cb_slot_busy);
851 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
852 copy_verf(clp, verf);
853 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
854 clp->cl_flavor = rqstp->rq_flavor;
855 copy_cred(&clp->cl_cred, &rqstp->rq_cred);
856 gen_confirm(clp);
857
858 return clp;
859}
860
35bba9a3
BF
861static int check_name(struct xdr_netobj name)
862{
1da177e4
LT
863 if (name.len == 0)
864 return 0;
865 if (name.len > NFS4_OPAQUE_LIMIT) {
2fdada03 866 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
1da177e4
LT
867 return 0;
868 }
869 return 1;
870}
871
fd39ca9a 872static void
1da177e4
LT
873add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
874{
875 unsigned int idhashval;
876
877 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
878 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
879 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
880 list_add_tail(&clp->cl_lru, &client_lru);
881 clp->cl_time = get_seconds();
882}
883
fd39ca9a 884static void
1da177e4
LT
885move_to_confirmed(struct nfs4_client *clp)
886{
887 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
888 unsigned int strhashval;
889
890 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
891 list_del_init(&clp->cl_strhash);
f116629d 892 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
a55370a3 893 strhashval = clientstr_hashval(clp->cl_recdir);
1da177e4
LT
894 list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
895 renew_client(clp);
896}
897
898static struct nfs4_client *
899find_confirmed_client(clientid_t *clid)
900{
901 struct nfs4_client *clp;
902 unsigned int idhashval = clientid_hashval(clid->cl_id);
903
904 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
599e0a22 905 if (same_clid(&clp->cl_clientid, clid))
1da177e4
LT
906 return clp;
907 }
908 return NULL;
909}
910
911static struct nfs4_client *
912find_unconfirmed_client(clientid_t *clid)
913{
914 struct nfs4_client *clp;
915 unsigned int idhashval = clientid_hashval(clid->cl_id);
916
917 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
599e0a22 918 if (same_clid(&clp->cl_clientid, clid))
1da177e4
LT
919 return clp;
920 }
921 return NULL;
922}
923
a1bcecd2
AA
924/*
925 * Return 1 iff clp's clientid establishment method matches the use_exchange_id
926 * parameter. Matching is based on the fact the at least one of the
927 * EXCHGID4_FLAG_USE_{NON_PNFS,PNFS_MDS,PNFS_DS} flags must be set for v4.1
928 *
929 * FIXME: we need to unify the clientid namespaces for nfsv4.x
930 * and correctly deal with client upgrade/downgrade in EXCHANGE_ID
931 * and SET_CLIENTID{,_CONFIRM}
932 */
933static inline int
934match_clientid_establishment(struct nfs4_client *clp, bool use_exchange_id)
935{
936 bool has_exchange_flags = (clp->cl_exchange_flags != 0);
937 return use_exchange_id == has_exchange_flags;
938}
939
28ce6054 940static struct nfs4_client *
a1bcecd2
AA
941find_confirmed_client_by_str(const char *dname, unsigned int hashval,
942 bool use_exchange_id)
28ce6054
N
943{
944 struct nfs4_client *clp;
945
946 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
a1bcecd2
AA
947 if (same_name(clp->cl_recdir, dname) &&
948 match_clientid_establishment(clp, use_exchange_id))
28ce6054
N
949 return clp;
950 }
951 return NULL;
952}
953
954static struct nfs4_client *
a1bcecd2
AA
955find_unconfirmed_client_by_str(const char *dname, unsigned int hashval,
956 bool use_exchange_id)
28ce6054
N
957{
958 struct nfs4_client *clp;
959
960 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
a1bcecd2
AA
961 if (same_name(clp->cl_recdir, dname) &&
962 match_clientid_establishment(clp, use_exchange_id))
28ce6054
N
963 return clp;
964 }
965 return NULL;
966}
967
fd39ca9a 968static void
fbf4665f 969gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, u32 scopeid)
1da177e4 970{
c237dc03 971 struct nfs4_cb_conn *cb = &clp->cl_cb_conn;
7077ecba
JL
972 unsigned short expected_family;
973
974 /* Currently, we only support tcp and tcp6 for the callback channel */
975 if (se->se_callback_netid_len == 3 &&
976 !memcmp(se->se_callback_netid_val, "tcp", 3))
977 expected_family = AF_INET;
978 else if (se->se_callback_netid_len == 4 &&
979 !memcmp(se->se_callback_netid_val, "tcp6", 4))
980 expected_family = AF_INET6;
981 else
1da177e4
LT
982 goto out_err;
983
aa9a4ec7
JL
984 cb->cb_addrlen = rpc_uaddr2sockaddr(se->se_callback_addr_val,
985 se->se_callback_addr_len,
986 (struct sockaddr *) &cb->cb_addr,
987 sizeof(cb->cb_addr));
988
7077ecba 989 if (!cb->cb_addrlen || cb->cb_addr.ss_family != expected_family)
1da177e4 990 goto out_err;
aa9a4ec7 991
fbf4665f
JL
992 if (cb->cb_addr.ss_family == AF_INET6)
993 ((struct sockaddr_in6 *) &cb->cb_addr)->sin6_scope_id = scopeid;
994
ab52ae6d 995 cb->cb_minorversion = 0;
1da177e4
LT
996 cb->cb_prog = se->se_callback_prog;
997 cb->cb_ident = se->se_callback_ident;
1da177e4
LT
998 return;
999out_err:
aa9a4ec7
JL
1000 cb->cb_addr.ss_family = AF_UNSPEC;
1001 cb->cb_addrlen = 0;
849823c5 1002 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
1da177e4
LT
1003 "will not receive delegations\n",
1004 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1005
1da177e4
LT
1006 return;
1007}
1008
074fe897 1009/*
557ce264 1010 * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
074fe897 1011 */
074fe897
AA
1012void
1013nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
074fe897 1014{
557ce264
AA
1015 struct nfsd4_slot *slot = resp->cstate.slot;
1016 unsigned int base;
074fe897 1017
557ce264 1018 dprintk("--> %s slot %p\n", __func__, slot);
074fe897 1019
557ce264
AA
1020 slot->sl_opcnt = resp->opcnt;
1021 slot->sl_status = resp->cstate.status;
074fe897 1022
bf864a31 1023 if (nfsd4_not_cached(resp)) {
557ce264 1024 slot->sl_datalen = 0;
bf864a31 1025 return;
074fe897 1026 }
557ce264
AA
1027 slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap;
1028 base = (char *)resp->cstate.datap -
1029 (char *)resp->xbuf->head[0].iov_base;
1030 if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data,
1031 slot->sl_datalen))
1032 WARN("%s: sessions DRC could not cache compound\n", __func__);
1033 return;
074fe897
AA
1034}
1035
1036/*
abfabf8c
AA
1037 * Encode the replay sequence operation from the slot values.
1038 * If cachethis is FALSE encode the uncached rep error on the next
1039 * operation which sets resp->p and increments resp->opcnt for
1040 * nfs4svc_encode_compoundres.
074fe897 1041 *
074fe897 1042 */
abfabf8c
AA
1043static __be32
1044nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1045 struct nfsd4_compoundres *resp)
074fe897 1046{
abfabf8c
AA
1047 struct nfsd4_op *op;
1048 struct nfsd4_slot *slot = resp->cstate.slot;
bf864a31 1049
abfabf8c 1050 dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__,
557ce264 1051 resp->opcnt, resp->cstate.slot->sl_cachethis);
bf864a31 1052
abfabf8c
AA
1053 /* Encode the replayed sequence operation */
1054 op = &args->ops[resp->opcnt - 1];
1055 nfsd4_encode_operation(resp, op);
bf864a31 1056
abfabf8c 1057 /* Return nfserr_retry_uncached_rep in next operation. */
557ce264 1058 if (args->opcnt > 1 && slot->sl_cachethis == 0) {
abfabf8c
AA
1059 op = &args->ops[resp->opcnt++];
1060 op->status = nfserr_retry_uncached_rep;
1061 nfsd4_encode_operation(resp, op);
074fe897 1062 }
abfabf8c 1063 return op->status;
074fe897
AA
1064}
1065
1066/*
557ce264
AA
1067 * The sequence operation is not cached because we can use the slot and
1068 * session values.
074fe897
AA
1069 */
1070__be32
bf864a31
AA
1071nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1072 struct nfsd4_sequence *seq)
074fe897 1073{
557ce264 1074 struct nfsd4_slot *slot = resp->cstate.slot;
074fe897
AA
1075 __be32 status;
1076
557ce264 1077 dprintk("--> %s slot %p\n", __func__, slot);
074fe897 1078
abfabf8c
AA
1079 /* Either returns 0 or nfserr_retry_uncached */
1080 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1081 if (status == nfserr_retry_uncached_rep)
1082 return status;
074fe897 1083
557ce264
AA
1084 /* The sequence operation has been encoded, cstate->datap set. */
1085 memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen);
074fe897 1086
557ce264
AA
1087 resp->opcnt = slot->sl_opcnt;
1088 resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen);
1089 status = slot->sl_status;
074fe897
AA
1090
1091 return status;
1092}
1093
0733d213
AA
1094/*
1095 * Set the exchange_id flags returned by the server.
1096 */
1097static void
1098nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1099{
1100 /* pNFS is not supported */
1101 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1102
1103 /* Referrals are supported, Migration is not. */
1104 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1105
1106 /* set the wire flags to return to client. */
1107 clid->flags = new->cl_exchange_flags;
1108}
1109
069b6ad4
AA
1110__be32
1111nfsd4_exchange_id(struct svc_rqst *rqstp,
1112 struct nfsd4_compound_state *cstate,
1113 struct nfsd4_exchange_id *exid)
1114{
0733d213
AA
1115 struct nfs4_client *unconf, *conf, *new;
1116 int status;
1117 unsigned int strhashval;
1118 char dname[HEXDIR_LEN];
363168b4 1119 char addr_str[INET6_ADDRSTRLEN];
0733d213 1120 nfs4_verifier verf = exid->verifier;
363168b4 1121 struct sockaddr *sa = svc_addr(rqstp);
0733d213 1122
363168b4 1123 rpc_ntop(sa, addr_str, sizeof(addr_str));
0733d213 1124 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
363168b4 1125 "ip_addr=%s flags %x, spa_how %d\n",
0733d213 1126 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
363168b4 1127 addr_str, exid->flags, exid->spa_how);
0733d213
AA
1128
1129 if (!check_name(exid->clname) || (exid->flags & ~EXCHGID4_FLAG_MASK_A))
1130 return nfserr_inval;
1131
1132 /* Currently only support SP4_NONE */
1133 switch (exid->spa_how) {
1134 case SP4_NONE:
1135 break;
1136 case SP4_SSV:
1137 return nfserr_encr_alg_unsupp;
1138 default:
1139 BUG(); /* checked by xdr code */
1140 case SP4_MACH_CRED:
1141 return nfserr_serverfault; /* no excuse :-/ */
1142 }
1143
1144 status = nfs4_make_rec_clidname(dname, &exid->clname);
1145
1146 if (status)
1147 goto error;
1148
1149 strhashval = clientstr_hashval(dname);
1150
1151 nfs4_lock_state();
1152 status = nfs_ok;
1153
a1bcecd2 1154 conf = find_confirmed_client_by_str(dname, strhashval, true);
0733d213
AA
1155 if (conf) {
1156 if (!same_verf(&verf, &conf->cl_verifier)) {
1157 /* 18.35.4 case 8 */
1158 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1159 status = nfserr_not_same;
1160 goto out;
1161 }
1162 /* Client reboot: destroy old state */
1163 expire_client(conf);
1164 goto out_new;
1165 }
1166 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1167 /* 18.35.4 case 9 */
1168 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1169 status = nfserr_perm;
1170 goto out;
1171 }
1172 expire_client(conf);
1173 goto out_new;
1174 }
0733d213
AA
1175 /*
1176 * Set bit when the owner id and verifier map to an already
1177 * confirmed client id (18.35.3).
1178 */
1179 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1180
1181 /*
1182 * Falling into 18.35.4 case 2, possible router replay.
1183 * Leave confirmed record intact and return same result.
1184 */
1185 copy_verf(conf, &verf);
1186 new = conf;
1187 goto out_copy;
6ddbbbfe
MS
1188 }
1189
1190 /* 18.35.4 case 7 */
1191 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1192 status = nfserr_noent;
1193 goto out;
0733d213
AA
1194 }
1195
a1bcecd2 1196 unconf = find_unconfirmed_client_by_str(dname, strhashval, true);
0733d213
AA
1197 if (unconf) {
1198 /*
1199 * Possible retry or client restart. Per 18.35.4 case 4,
1200 * a new unconfirmed record should be generated regardless
1201 * of whether any properties have changed.
1202 */
1203 expire_client(unconf);
1204 }
1205
1206out_new:
1207 /* Normal case */
b09333c4 1208 new = create_client(exid->clname, dname, rqstp, &verf);
0733d213 1209 if (new == NULL) {
bdac86e2 1210 status = nfserr_serverfault;
0733d213
AA
1211 goto out;
1212 }
1213
0733d213 1214 gen_clid(new);
0733d213
AA
1215 add_to_unconfirmed(new, strhashval);
1216out_copy:
1217 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1218 exid->clientid.cl_id = new->cl_clientid.cl_id;
1219
38eb76a5 1220 exid->seqid = 1;
0733d213
AA
1221 nfsd4_set_ex_flags(new, exid);
1222
1223 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
49557cc7 1224 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
0733d213
AA
1225 status = nfs_ok;
1226
1227out:
1228 nfs4_unlock_state();
1229error:
1230 dprintk("nfsd4_exchange_id returns %d\n", ntohl(status));
1231 return status;
069b6ad4
AA
1232}
1233
b85d4c01 1234static int
88e588d5 1235check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
b85d4c01 1236{
88e588d5
AA
1237 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1238 slot_seqid);
b85d4c01
BH
1239
1240 /* The slot is in use, and no response has been sent. */
88e588d5
AA
1241 if (slot_inuse) {
1242 if (seqid == slot_seqid)
b85d4c01
BH
1243 return nfserr_jukebox;
1244 else
1245 return nfserr_seq_misordered;
1246 }
1247 /* Normal */
88e588d5 1248 if (likely(seqid == slot_seqid + 1))
b85d4c01
BH
1249 return nfs_ok;
1250 /* Replay */
88e588d5 1251 if (seqid == slot_seqid)
b85d4c01
BH
1252 return nfserr_replay_cache;
1253 /* Wraparound */
88e588d5 1254 if (seqid == 1 && (slot_seqid + 1) == 0)
b85d4c01
BH
1255 return nfs_ok;
1256 /* Misordered replay or misordered new request */
1257 return nfserr_seq_misordered;
1258}
1259
49557cc7
AA
1260/*
1261 * Cache the create session result into the create session single DRC
1262 * slot cache by saving the xdr structure. sl_seqid has been set.
1263 * Do this for solo or embedded create session operations.
1264 */
1265static void
1266nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
1267 struct nfsd4_clid_slot *slot, int nfserr)
1268{
1269 slot->sl_status = nfserr;
1270 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1271}
1272
1273static __be32
1274nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1275 struct nfsd4_clid_slot *slot)
1276{
1277 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1278 return slot->sl_status;
1279}
1280
069b6ad4
AA
1281__be32
1282nfsd4_create_session(struct svc_rqst *rqstp,
1283 struct nfsd4_compound_state *cstate,
1284 struct nfsd4_create_session *cr_ses)
1285{
363168b4 1286 struct sockaddr *sa = svc_addr(rqstp);
ec6b5d7b 1287 struct nfs4_client *conf, *unconf;
49557cc7 1288 struct nfsd4_clid_slot *cs_slot = NULL;
ec6b5d7b
AA
1289 int status = 0;
1290
1291 nfs4_lock_state();
1292 unconf = find_unconfirmed_client(&cr_ses->clientid);
1293 conf = find_confirmed_client(&cr_ses->clientid);
1294
1295 if (conf) {
49557cc7
AA
1296 cs_slot = &conf->cl_cs_slot;
1297 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
38eb76a5 1298 if (status == nfserr_replay_cache) {
ec6b5d7b 1299 dprintk("Got a create_session replay! seqid= %d\n",
49557cc7 1300 cs_slot->sl_seqid);
38eb76a5 1301 /* Return the cached reply status */
49557cc7 1302 status = nfsd4_replay_create_session(cr_ses, cs_slot);
38eb76a5 1303 goto out;
49557cc7 1304 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
ec6b5d7b
AA
1305 status = nfserr_seq_misordered;
1306 dprintk("Sequence misordered!\n");
1307 dprintk("Expected seqid= %d but got seqid= %d\n",
49557cc7 1308 cs_slot->sl_seqid, cr_ses->seqid);
ec6b5d7b
AA
1309 goto out;
1310 }
49557cc7 1311 cs_slot->sl_seqid++;
ec6b5d7b
AA
1312 } else if (unconf) {
1313 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
363168b4 1314 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
ec6b5d7b
AA
1315 status = nfserr_clid_inuse;
1316 goto out;
1317 }
1318
49557cc7
AA
1319 cs_slot = &unconf->cl_cs_slot;
1320 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
38eb76a5
AA
1321 if (status) {
1322 /* an unconfirmed replay returns misordered */
ec6b5d7b 1323 status = nfserr_seq_misordered;
49557cc7 1324 goto out_cache;
ec6b5d7b
AA
1325 }
1326
49557cc7 1327 cs_slot->sl_seqid++; /* from 0 to 1 */
ec6b5d7b
AA
1328 move_to_confirmed(unconf);
1329
1330 /*
1331 * We do not support RDMA or persistent sessions
1332 */
1333 cr_ses->flags &= ~SESSION4_PERSIST;
1334 cr_ses->flags &= ~SESSION4_RDMA;
1335
38524ab3
AA
1336 if (cr_ses->flags & SESSION4_BACK_CHAN) {
1337 unconf->cl_cb_xprt = rqstp->rq_xprt;
1338 svc_xprt_get(unconf->cl_cb_xprt);
1339 rpc_copy_addr(
1340 (struct sockaddr *)&unconf->cl_cb_conn.cb_addr,
1341 sa);
1342 unconf->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
1343 unconf->cl_cb_conn.cb_minorversion =
1344 cstate->minorversion;
1345 unconf->cl_cb_conn.cb_prog = cr_ses->callback_prog;
2a1d1b59 1346 unconf->cl_cb_seq_nr = 1;
38524ab3
AA
1347 nfsd4_probe_callback(unconf);
1348 }
ec6b5d7b
AA
1349 conf = unconf;
1350 } else {
1351 status = nfserr_stale_clientid;
1352 goto out;
1353 }
1354
1355 status = alloc_init_session(rqstp, conf, cr_ses);
1356 if (status)
1357 goto out;
1358
ec6b5d7b
AA
1359 memcpy(cr_ses->sessionid.data, conf->cl_sessionid.data,
1360 NFS4_MAX_SESSIONID_LEN);
49557cc7 1361 cr_ses->seqid = cs_slot->sl_seqid;
ec6b5d7b 1362
49557cc7
AA
1363out_cache:
1364 /* cache solo and embedded create sessions under the state lock */
1365 nfsd4_cache_create_session(cr_ses, cs_slot, status);
ec6b5d7b
AA
1366out:
1367 nfs4_unlock_state();
1368 dprintk("%s returns %d\n", __func__, ntohl(status));
1369 return status;
069b6ad4
AA
1370}
1371
1372__be32
1373nfsd4_destroy_session(struct svc_rqst *r,
1374 struct nfsd4_compound_state *cstate,
1375 struct nfsd4_destroy_session *sessionid)
1376{
e10e0cfc
BH
1377 struct nfsd4_session *ses;
1378 u32 status = nfserr_badsession;
1379
1380 /* Notes:
1381 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1382 * - Should we return nfserr_back_chan_busy if waiting for
1383 * callbacks on to-be-destroyed session?
1384 * - Do we need to clear any callback info from previous session?
1385 */
1386
1387 dump_sessionid(__func__, &sessionid->sessionid);
1388 spin_lock(&sessionid_lock);
1389 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1390 if (!ses) {
1391 spin_unlock(&sessionid_lock);
1392 goto out;
1393 }
1394
1395 unhash_session(ses);
1396 spin_unlock(&sessionid_lock);
1397
1398 /* wait for callbacks */
1399 shutdown_callback_client(ses->se_client);
1400 nfsd4_put_session(ses);
1401 status = nfs_ok;
1402out:
1403 dprintk("%s returns %d\n", __func__, ntohl(status));
1404 return status;
069b6ad4
AA
1405}
1406
1407__be32
b85d4c01 1408nfsd4_sequence(struct svc_rqst *rqstp,
069b6ad4
AA
1409 struct nfsd4_compound_state *cstate,
1410 struct nfsd4_sequence *seq)
1411{
f9bb94c4 1412 struct nfsd4_compoundres *resp = rqstp->rq_resp;
b85d4c01
BH
1413 struct nfsd4_session *session;
1414 struct nfsd4_slot *slot;
1415 int status;
1416
f9bb94c4
AA
1417 if (resp->opcnt != 1)
1418 return nfserr_sequence_pos;
1419
b85d4c01
BH
1420 spin_lock(&sessionid_lock);
1421 status = nfserr_badsession;
1422 session = find_in_sessionid_hashtbl(&seq->sessionid);
1423 if (!session)
1424 goto out;
1425
1426 status = nfserr_badslot;
6c18ba9f 1427 if (seq->slotid >= session->se_fchannel.maxreqs)
b85d4c01
BH
1428 goto out;
1429
557ce264 1430 slot = session->se_slots[seq->slotid];
b85d4c01
BH
1431 dprintk("%s: slotid %d\n", __func__, seq->slotid);
1432
a8dfdaeb
AA
1433 /* We do not negotiate the number of slots yet, so set the
1434 * maxslots to the session maxreqs which is used to encode
1435 * sr_highest_slotid and the sr_target_slot id to maxslots */
1436 seq->maxslots = session->se_fchannel.maxreqs;
1437
88e588d5 1438 status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse);
b85d4c01
BH
1439 if (status == nfserr_replay_cache) {
1440 cstate->slot = slot;
1441 cstate->session = session;
da3846a2 1442 /* Return the cached reply status and set cstate->status
557ce264 1443 * for nfsd4_proc_compound processing */
bf864a31 1444 status = nfsd4_replay_cache_entry(resp, seq);
da3846a2 1445 cstate->status = nfserr_replay_cache;
aaf84eb9 1446 goto out;
b85d4c01
BH
1447 }
1448 if (status)
1449 goto out;
1450
1451 /* Success! bump slot seqid */
1452 slot->sl_inuse = true;
1453 slot->sl_seqid = seq->seqid;
557ce264 1454 slot->sl_cachethis = seq->cachethis;
b85d4c01
BH
1455
1456 cstate->slot = slot;
1457 cstate->session = session;
1458
aaf84eb9 1459 /* Hold a session reference until done processing the compound:
b85d4c01
BH
1460 * nfsd4_put_session called only if the cstate slot is set.
1461 */
b85d4c01
BH
1462 nfsd4_get_session(session);
1463out:
1464 spin_unlock(&sessionid_lock);
aaf84eb9
BH
1465 /* Renew the clientid on success and on replay */
1466 if (cstate->session) {
1467 nfs4_lock_state();
1468 renew_client(session->se_client);
1469 nfs4_unlock_state();
1470 }
b85d4c01
BH
1471 dprintk("%s: return %d\n", __func__, ntohl(status));
1472 return status;
069b6ad4
AA
1473}
1474
b37ad28b 1475__be32
b591480b
BF
1476nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1477 struct nfsd4_setclientid *setclid)
1da177e4 1478{
363168b4 1479 struct sockaddr *sa = svc_addr(rqstp);
1da177e4
LT
1480 struct xdr_netobj clname = {
1481 .len = setclid->se_namelen,
1482 .data = setclid->se_name,
1483 };
1484 nfs4_verifier clverifier = setclid->se_verf;
1485 unsigned int strhashval;
28ce6054 1486 struct nfs4_client *conf, *unconf, *new;
b37ad28b 1487 __be32 status;
a55370a3 1488 char dname[HEXDIR_LEN];
1da177e4 1489
1da177e4 1490 if (!check_name(clname))
73aea4ec 1491 return nfserr_inval;
1da177e4 1492
a55370a3
N
1493 status = nfs4_make_rec_clidname(dname, &clname);
1494 if (status)
73aea4ec 1495 return status;
a55370a3 1496
1da177e4
LT
1497 /*
1498 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1499 * We get here on a DRC miss.
1500 */
1501
a55370a3 1502 strhashval = clientstr_hashval(dname);
1da177e4 1503
1da177e4 1504 nfs4_lock_state();
a1bcecd2 1505 conf = find_confirmed_client_by_str(dname, strhashval, false);
28ce6054 1506 if (conf) {
a186e767 1507 /* RFC 3530 14.2.33 CASE 0: */
1da177e4 1508 status = nfserr_clid_inuse;
026722c2 1509 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
363168b4
JL
1510 char addr_str[INET6_ADDRSTRLEN];
1511 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
1512 sizeof(addr_str));
1513 dprintk("NFSD: setclientid: string in use by client "
1514 "at %s\n", addr_str);
1da177e4
LT
1515 goto out;
1516 }
1da177e4 1517 }
a186e767
BF
1518 /*
1519 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
1520 * has a description of SETCLIENTID request processing consisting
1521 * of 5 bullet points, labeled as CASE0 - CASE4 below.
1522 */
a1bcecd2 1523 unconf = find_unconfirmed_client_by_str(dname, strhashval, false);
1da177e4
LT
1524 status = nfserr_resource;
1525 if (!conf) {
a186e767
BF
1526 /*
1527 * RFC 3530 14.2.33 CASE 4:
1528 * placed first, because it is the normal case
1da177e4
LT
1529 */
1530 if (unconf)
1531 expire_client(unconf);
b09333c4 1532 new = create_client(clname, dname, rqstp, &clverifier);
a55370a3 1533 if (new == NULL)
1da177e4 1534 goto out;
1da177e4 1535 gen_clid(new);
599e0a22 1536 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
1da177e4 1537 /*
a186e767
BF
1538 * RFC 3530 14.2.33 CASE 1:
1539 * probable callback update
1da177e4 1540 */
31f4a6c1
N
1541 if (unconf) {
1542 /* Note this is removing unconfirmed {*x***},
1543 * which is stronger than RFC recommended {vxc**}.
1544 * This has the advantage that there is at most
1545 * one {*x***} in either list at any time.
1546 */
1547 expire_client(unconf);
1da177e4 1548 }
b09333c4 1549 new = create_client(clname, dname, rqstp, &clverifier);
a55370a3 1550 if (new == NULL)
1da177e4 1551 goto out;
1da177e4 1552 copy_clid(new, conf);
1da177e4
LT
1553 } else if (!unconf) {
1554 /*
a186e767
BF
1555 * RFC 3530 14.2.33 CASE 2:
1556 * probable client reboot; state will be removed if
1557 * confirmed.
1da177e4 1558 */
b09333c4 1559 new = create_client(clname, dname, rqstp, &clverifier);
a55370a3 1560 if (new == NULL)
1da177e4 1561 goto out;
1da177e4 1562 gen_clid(new);
49ba8781 1563 } else {
a186e767
BF
1564 /*
1565 * RFC 3530 14.2.33 CASE 3:
1566 * probable client reboot; state will be removed if
1567 * confirmed.
1da177e4
LT
1568 */
1569 expire_client(unconf);
b09333c4 1570 new = create_client(clname, dname, rqstp, &clverifier);
a55370a3 1571 if (new == NULL)
1da177e4 1572 goto out;
1da177e4 1573 gen_clid(new);
1da177e4 1574 }
fbf4665f 1575 gen_callback(new, setclid, rpc_get_scope_id(sa));
c175b83c 1576 add_to_unconfirmed(new, strhashval);
1da177e4
LT
1577 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
1578 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
1579 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
1580 status = nfs_ok;
1581out:
1582 nfs4_unlock_state();
1583 return status;
1584}
1585
1586
1587/*
a186e767
BF
1588 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
1589 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
1590 * bullets, labeled as CASE1 - CASE4 below.
1da177e4 1591 */
b37ad28b 1592__be32
b591480b
BF
1593nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
1594 struct nfsd4_compound_state *cstate,
1595 struct nfsd4_setclientid_confirm *setclientid_confirm)
1da177e4 1596{
363168b4 1597 struct sockaddr *sa = svc_addr(rqstp);
21ab45a4 1598 struct nfs4_client *conf, *unconf;
1da177e4
LT
1599 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
1600 clientid_t * clid = &setclientid_confirm->sc_clientid;
b37ad28b 1601 __be32 status;
1da177e4
LT
1602
1603 if (STALE_CLIENTID(clid))
1604 return nfserr_stale_clientid;
1605 /*
1606 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1607 * We get here on a DRC miss.
1608 */
1609
1610 nfs4_lock_state();
21ab45a4
N
1611
1612 conf = find_confirmed_client(clid);
1613 unconf = find_unconfirmed_client(clid);
1614
1615 status = nfserr_clid_inuse;
363168b4 1616 if (conf && !rpc_cmp_addr((struct sockaddr *) &conf->cl_addr, sa))
21ab45a4 1617 goto out;
363168b4 1618 if (unconf && !rpc_cmp_addr((struct sockaddr *) &unconf->cl_addr, sa))
21ab45a4
N
1619 goto out;
1620
a186e767
BF
1621 /*
1622 * section 14.2.34 of RFC 3530 has a description of
1623 * SETCLIENTID_CONFIRM request processing consisting
1624 * of 4 bullet points, labeled as CASE1 - CASE4 below.
1625 */
366e0c1d 1626 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
a186e767
BF
1627 /*
1628 * RFC 3530 14.2.34 CASE 1:
1629 * callback update
1630 */
599e0a22 1631 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
1da177e4
LT
1632 status = nfserr_clid_inuse;
1633 else {
1a69c179
N
1634 /* XXX: We just turn off callbacks until we can handle
1635 * change request correctly. */
c237dc03 1636 atomic_set(&conf->cl_cb_conn.cb_set, 0);
1a69c179 1637 expire_client(unconf);
1da177e4 1638 status = nfs_ok;
1a69c179 1639
1da177e4 1640 }
f3aba4e5 1641 } else if (conf && !unconf) {
a186e767
BF
1642 /*
1643 * RFC 3530 14.2.34 CASE 2:
1644 * probable retransmitted request; play it safe and
1645 * do nothing.
7c79f737 1646 */
599e0a22 1647 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
1da177e4 1648 status = nfserr_clid_inuse;
21ab45a4 1649 else
1da177e4 1650 status = nfs_ok;
7c79f737 1651 } else if (!conf && unconf
599e0a22 1652 && same_verf(&unconf->cl_confirm, &confirm)) {
a186e767
BF
1653 /*
1654 * RFC 3530 14.2.34 CASE 3:
1655 * Normal case; new or rebooted client:
7c79f737 1656 */
599e0a22 1657 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
1da177e4
LT
1658 status = nfserr_clid_inuse;
1659 } else {
1a69c179
N
1660 unsigned int hash =
1661 clientstr_hashval(unconf->cl_recdir);
1662 conf = find_confirmed_client_by_str(unconf->cl_recdir,
a1bcecd2 1663 hash, false);
1a69c179 1664 if (conf) {
c7b9a459 1665 nfsd4_remove_clid_dir(conf);
1a69c179
N
1666 expire_client(conf);
1667 }
1da177e4 1668 move_to_confirmed(unconf);
21ab45a4 1669 conf = unconf;
46f8a64b 1670 nfsd4_probe_callback(conf);
1a69c179 1671 status = nfs_ok;
1da177e4 1672 }
599e0a22
BF
1673 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
1674 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
7c79f737 1675 &confirm)))) {
a186e767
BF
1676 /*
1677 * RFC 3530 14.2.34 CASE 4:
1678 * Client probably hasn't noticed that we rebooted yet.
7c79f737 1679 */
1da177e4 1680 status = nfserr_stale_clientid;
7c79f737 1681 } else {
08e8987c
N
1682 /* check that we have hit one of the cases...*/
1683 status = nfserr_clid_inuse;
1684 }
1da177e4 1685out:
1da177e4
LT
1686 nfs4_unlock_state();
1687 return status;
1688}
1689
1da177e4
LT
1690/* OPEN Share state helper functions */
1691static inline struct nfs4_file *
1692alloc_init_file(struct inode *ino)
1693{
1694 struct nfs4_file *fp;
1695 unsigned int hashval = file_hashval(ino);
1696
e60d4398
N
1697 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
1698 if (fp) {
8b671b80 1699 atomic_set(&fp->fi_ref, 1);
1da177e4 1700 INIT_LIST_HEAD(&fp->fi_hash);
8beefa24
N
1701 INIT_LIST_HEAD(&fp->fi_stateids);
1702 INIT_LIST_HEAD(&fp->fi_delegations);
8b671b80 1703 spin_lock(&recall_lock);
1da177e4 1704 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
8b671b80 1705 spin_unlock(&recall_lock);
1da177e4
LT
1706 fp->fi_inode = igrab(ino);
1707 fp->fi_id = current_fileid++;
47f9940c 1708 fp->fi_had_conflict = false;
1da177e4
LT
1709 return fp;
1710 }
1711 return NULL;
1712}
1713
e60d4398 1714static void
e18b890b 1715nfsd4_free_slab(struct kmem_cache **slab)
1da177e4 1716{
e60d4398
N
1717 if (*slab == NULL)
1718 return;
1a1d92c1 1719 kmem_cache_destroy(*slab);
e60d4398 1720 *slab = NULL;
1da177e4
LT
1721}
1722
e8ff2a84 1723void
1da177e4
LT
1724nfsd4_free_slabs(void)
1725{
e60d4398
N
1726 nfsd4_free_slab(&stateowner_slab);
1727 nfsd4_free_slab(&file_slab);
5ac049ac 1728 nfsd4_free_slab(&stateid_slab);
5b2d21c1 1729 nfsd4_free_slab(&deleg_slab);
e60d4398 1730}
1da177e4 1731
e60d4398
N
1732static int
1733nfsd4_init_slabs(void)
1734{
1735 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
20c2df83 1736 sizeof(struct nfs4_stateowner), 0, 0, NULL);
e60d4398
N
1737 if (stateowner_slab == NULL)
1738 goto out_nomem;
1739 file_slab = kmem_cache_create("nfsd4_files",
20c2df83 1740 sizeof(struct nfs4_file), 0, 0, NULL);
e60d4398
N
1741 if (file_slab == NULL)
1742 goto out_nomem;
5ac049ac 1743 stateid_slab = kmem_cache_create("nfsd4_stateids",
20c2df83 1744 sizeof(struct nfs4_stateid), 0, 0, NULL);
5ac049ac
N
1745 if (stateid_slab == NULL)
1746 goto out_nomem;
5b2d21c1 1747 deleg_slab = kmem_cache_create("nfsd4_delegations",
20c2df83 1748 sizeof(struct nfs4_delegation), 0, 0, NULL);
5b2d21c1
N
1749 if (deleg_slab == NULL)
1750 goto out_nomem;
e60d4398
N
1751 return 0;
1752out_nomem:
1753 nfsd4_free_slabs();
1754 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1755 return -ENOMEM;
1da177e4
LT
1756}
1757
1758void
1759nfs4_free_stateowner(struct kref *kref)
1760{
1761 struct nfs4_stateowner *sop =
1762 container_of(kref, struct nfs4_stateowner, so_ref);
1763 kfree(sop->so_owner.data);
1764 kmem_cache_free(stateowner_slab, sop);
1765}
1766
1767static inline struct nfs4_stateowner *
1768alloc_stateowner(struct xdr_netobj *owner)
1769{
1770 struct nfs4_stateowner *sop;
1771
1772 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1773 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1774 memcpy(sop->so_owner.data, owner->data, owner->len);
1775 sop->so_owner.len = owner->len;
1776 kref_init(&sop->so_ref);
1777 return sop;
1778 }
1779 kmem_cache_free(stateowner_slab, sop);
1780 }
1781 return NULL;
1782}
1783
1784static struct nfs4_stateowner *
1785alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1786 struct nfs4_stateowner *sop;
1787 struct nfs4_replay *rp;
1788 unsigned int idhashval;
1789
1790 if (!(sop = alloc_stateowner(&open->op_owner)))
1791 return NULL;
1792 idhashval = ownerid_hashval(current_ownerid);
1793 INIT_LIST_HEAD(&sop->so_idhash);
1794 INIT_LIST_HEAD(&sop->so_strhash);
1795 INIT_LIST_HEAD(&sop->so_perclient);
ea1da636
N
1796 INIT_LIST_HEAD(&sop->so_stateids);
1797 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
1da177e4
LT
1798 INIT_LIST_HEAD(&sop->so_close_lru);
1799 sop->so_time = 0;
1800 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1801 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
ea1da636 1802 list_add(&sop->so_perclient, &clp->cl_openowners);
1da177e4
LT
1803 sop->so_is_open_owner = 1;
1804 sop->so_id = current_ownerid++;
1805 sop->so_client = clp;
1806 sop->so_seqid = open->op_seqid;
1807 sop->so_confirmed = 0;
1808 rp = &sop->so_replay;
de1ae286 1809 rp->rp_status = nfserr_serverfault;
1da177e4
LT
1810 rp->rp_buflen = 0;
1811 rp->rp_buf = rp->rp_ibuf;
1812 return sop;
1813}
1814
1da177e4
LT
1815static inline void
1816init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1817 struct nfs4_stateowner *sop = open->op_stateowner;
1818 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1819
1820 INIT_LIST_HEAD(&stp->st_hash);
ea1da636
N
1821 INIT_LIST_HEAD(&stp->st_perstateowner);
1822 INIT_LIST_HEAD(&stp->st_lockowners);
1da177e4
LT
1823 INIT_LIST_HEAD(&stp->st_perfile);
1824 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
ea1da636 1825 list_add(&stp->st_perstateowner, &sop->so_stateids);
8beefa24 1826 list_add(&stp->st_perfile, &fp->fi_stateids);
1da177e4 1827 stp->st_stateowner = sop;
13cd2184 1828 get_nfs4_file(fp);
1da177e4 1829 stp->st_file = fp;
78155ed7 1830 stp->st_stateid.si_boot = get_seconds();
1da177e4
LT
1831 stp->st_stateid.si_stateownerid = sop->so_id;
1832 stp->st_stateid.si_fileid = fp->fi_id;
1833 stp->st_stateid.si_generation = 0;
1834 stp->st_access_bmap = 0;
1835 stp->st_deny_bmap = 0;
84459a11
AA
1836 __set_bit(open->op_share_access & ~NFS4_SHARE_WANT_MASK,
1837 &stp->st_access_bmap);
1da177e4 1838 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
4c4cd222 1839 stp->st_openstp = NULL;
1da177e4
LT
1840}
1841
fd39ca9a 1842static void
1da177e4
LT
1843move_to_close_lru(struct nfs4_stateowner *sop)
1844{
1845 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1846
358dd55a 1847 list_move_tail(&sop->so_close_lru, &close_lru);
1da177e4
LT
1848 sop->so_time = get_seconds();
1849}
1850
1da177e4 1851static int
599e0a22
BF
1852same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
1853 clientid_t *clid)
1854{
1855 return (sop->so_owner.len == owner->len) &&
1856 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
1857 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
1da177e4
LT
1858}
1859
1860static struct nfs4_stateowner *
1861find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1862{
1863 struct nfs4_stateowner *so = NULL;
1864
1865 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
599e0a22 1866 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
1da177e4
LT
1867 return so;
1868 }
1869 return NULL;
1870}
1871
1872/* search file_hashtbl[] for file */
1873static struct nfs4_file *
1874find_file(struct inode *ino)
1875{
1876 unsigned int hashval = file_hashval(ino);
1877 struct nfs4_file *fp;
1878
8b671b80 1879 spin_lock(&recall_lock);
1da177e4 1880 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
13cd2184
N
1881 if (fp->fi_inode == ino) {
1882 get_nfs4_file(fp);
8b671b80 1883 spin_unlock(&recall_lock);
1da177e4 1884 return fp;
13cd2184 1885 }
1da177e4 1886 }
8b671b80 1887 spin_unlock(&recall_lock);
1da177e4
LT
1888 return NULL;
1889}
1890
d87a8ade 1891static inline int access_valid(u32 x, u32 minorversion)
ba5a6a19 1892{
d87a8ade 1893 if ((x & NFS4_SHARE_ACCESS_MASK) < NFS4_SHARE_ACCESS_READ)
8838dc43 1894 return 0;
d87a8ade
AA
1895 if ((x & NFS4_SHARE_ACCESS_MASK) > NFS4_SHARE_ACCESS_BOTH)
1896 return 0;
1897 x &= ~NFS4_SHARE_ACCESS_MASK;
1898 if (minorversion && x) {
1899 if ((x & NFS4_SHARE_WANT_MASK) > NFS4_SHARE_WANT_CANCEL)
1900 return 0;
1901 if ((x & NFS4_SHARE_WHEN_MASK) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED)
1902 return 0;
1903 x &= ~(NFS4_SHARE_WANT_MASK | NFS4_SHARE_WHEN_MASK);
1904 }
1905 if (x)
8838dc43
BF
1906 return 0;
1907 return 1;
ba5a6a19
BF
1908}
1909
8838dc43 1910static inline int deny_valid(u32 x)
ba5a6a19 1911{
8838dc43
BF
1912 /* Note: unlike access bits, deny bits may be zero. */
1913 return x <= NFS4_SHARE_DENY_BOTH;
ba5a6a19 1914}
1da177e4 1915
4f83aa30
BF
1916/*
1917 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1918 * st_{access,deny}_bmap field of the stateid, in order to track not
1919 * only what share bits are currently in force, but also what
1920 * combinations of share bits previous opens have used. This allows us
1921 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1922 * return an error if the client attempt to downgrade to a combination
1923 * of share bits not explicable by closing some of its previous opens.
1924 *
1925 * XXX: This enforcement is actually incomplete, since we don't keep
1926 * track of access/deny bit combinations; so, e.g., we allow:
1927 *
1928 * OPEN allow read, deny write
1929 * OPEN allow both, deny none
1930 * DOWNGRADE allow read, deny none
1931 *
1932 * which we should reject.
1933 */
fd39ca9a 1934static void
1da177e4
LT
1935set_access(unsigned int *access, unsigned long bmap) {
1936 int i;
1937
1938 *access = 0;
1939 for (i = 1; i < 4; i++) {
1940 if (test_bit(i, &bmap))
1941 *access |= i;
1942 }
1943}
1944
fd39ca9a 1945static void
1da177e4
LT
1946set_deny(unsigned int *deny, unsigned long bmap) {
1947 int i;
1948
1949 *deny = 0;
1950 for (i = 0; i < 4; i++) {
1951 if (test_bit(i, &bmap))
1952 *deny |= i ;
1953 }
1954}
1955
1956static int
1957test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
1958 unsigned int access, deny;
1959
1960 set_access(&access, stp->st_access_bmap);
1961 set_deny(&deny, stp->st_deny_bmap);
1962 if ((access & open->op_share_deny) || (deny & open->op_share_access))
1963 return 0;
1964 return 1;
1965}
1966
1967/*
1968 * Called to check deny when READ with all zero stateid or
1969 * WRITE with all zero or all one stateid
1970 */
b37ad28b 1971static __be32
1da177e4
LT
1972nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
1973{
1974 struct inode *ino = current_fh->fh_dentry->d_inode;
1975 struct nfs4_file *fp;
1976 struct nfs4_stateid *stp;
b37ad28b 1977 __be32 ret;
1da177e4
LT
1978
1979 dprintk("NFSD: nfs4_share_conflict\n");
1980
1981 fp = find_file(ino);
13cd2184
N
1982 if (!fp)
1983 return nfs_ok;
b700949b 1984 ret = nfserr_locked;
1da177e4 1985 /* Search for conflicting share reservations */
13cd2184
N
1986 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
1987 if (test_bit(deny_type, &stp->st_deny_bmap) ||
1988 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
1989 goto out;
1da177e4 1990 }
13cd2184
N
1991 ret = nfs_ok;
1992out:
1993 put_nfs4_file(fp);
1994 return ret;
1da177e4
LT
1995}
1996
1997static inline void
1998nfs4_file_downgrade(struct file *filp, unsigned int share_access)
1999{
2000 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
aceaf78d 2001 drop_file_write_access(filp);
42e49608 2002 spin_lock(&filp->f_lock);
1da177e4 2003 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
42e49608 2004 spin_unlock(&filp->f_lock);
1da177e4
LT
2005 }
2006}
2007
1da177e4
LT
2008/*
2009 * Spawn a thread to perform a recall on the delegation represented
2010 * by the lease (file_lock)
2011 *
2012 * Called from break_lease() with lock_kernel() held.
2013 * Note: we assume break_lease will only call this *once* for any given
2014 * lease.
2015 */
2016static
2017void nfsd_break_deleg_cb(struct file_lock *fl)
2018{
63e4863f 2019 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
1da177e4
LT
2020
2021 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
2022 if (!dp)
2023 return;
2024
2025 /* We're assuming the state code never drops its reference
2026 * without first removing the lease. Since we're in this lease
2027 * callback (and since the lease code is serialized by the kernel
2028 * lock) we know the server hasn't removed the lease yet, we know
2029 * it's safe to take a reference: */
2030 atomic_inc(&dp->dl_count);
cfdcad4d 2031 atomic_inc(&dp->dl_client->cl_count);
1da177e4
LT
2032
2033 spin_lock(&recall_lock);
2034 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
2035 spin_unlock(&recall_lock);
2036
2037 /* only place dl_time is set. protected by lock_kernel*/
2038 dp->dl_time = get_seconds();
2039
0272e1fd
BF
2040 /*
2041 * We don't want the locks code to timeout the lease for us;
2042 * we'll remove it ourself if the delegation isn't returned
2043 * in time.
2044 */
2045 fl->fl_break_time = 0;
1da177e4 2046
63e4863f
BF
2047 dp->dl_file->fi_had_conflict = true;
2048 nfsd4_cb_recall(dp);
1da177e4
LT
2049}
2050
2051/*
2052 * The file_lock is being reapd.
2053 *
2054 * Called by locks_free_lock() with lock_kernel() held.
2055 */
2056static
2057void nfsd_release_deleg_cb(struct file_lock *fl)
2058{
2059 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
2060
2061 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
2062
2063 if (!(fl->fl_flags & FL_LEASE) || !dp)
2064 return;
2065 dp->dl_flock = NULL;
2066}
2067
2068/*
2069 * Set the delegation file_lock back pointer.
2070 *
a9933cea 2071 * Called from setlease() with lock_kernel() held.
1da177e4
LT
2072 */
2073static
2074void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
2075{
2076 struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
2077
2078 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
2079 if (!dp)
2080 return;
2081 dp->dl_flock = new;
2082}
2083
2084/*
a9933cea 2085 * Called from setlease() with lock_kernel() held
1da177e4
LT
2086 */
2087static
2088int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
2089{
2090 struct nfs4_delegation *onlistd =
2091 (struct nfs4_delegation *)onlist->fl_owner;
2092 struct nfs4_delegation *tryd =
2093 (struct nfs4_delegation *)try->fl_owner;
2094
2095 if (onlist->fl_lmops != try->fl_lmops)
2096 return 0;
2097
2098 return onlistd->dl_client == tryd->dl_client;
2099}
2100
2101
2102static
2103int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2104{
2105 if (arg & F_UNLCK)
2106 return lease_modify(onlist, arg);
2107 else
2108 return -EAGAIN;
2109}
2110
7b021967 2111static const struct lock_manager_operations nfsd_lease_mng_ops = {
1da177e4
LT
2112 .fl_break = nfsd_break_deleg_cb,
2113 .fl_release_private = nfsd_release_deleg_cb,
2114 .fl_copy_lock = nfsd_copy_lock_deleg_cb,
2115 .fl_mylease = nfsd_same_client_deleg_cb,
2116 .fl_change = nfsd_change_deleg_cb,
2117};
2118
2119
b37ad28b 2120__be32
6668958f
AA
2121nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2122 struct nfsd4_open *open)
1da177e4 2123{
1da177e4
LT
2124 clientid_t *clientid = &open->op_clientid;
2125 struct nfs4_client *clp = NULL;
2126 unsigned int strhashval;
2127 struct nfs4_stateowner *sop = NULL;
2128
1da177e4 2129 if (!check_name(open->op_owner))
0f442aa2 2130 return nfserr_inval;
1da177e4
LT
2131
2132 if (STALE_CLIENTID(&open->op_clientid))
2133 return nfserr_stale_clientid;
2134
2135 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
2136 sop = find_openstateowner_str(strhashval, open);
0f442aa2
BF
2137 open->op_stateowner = sop;
2138 if (!sop) {
2139 /* Make sure the client's lease hasn't expired. */
1da177e4
LT
2140 clp = find_confirmed_client(clientid);
2141 if (clp == NULL)
0f442aa2
BF
2142 return nfserr_expired;
2143 goto renew;
1da177e4 2144 }
6668958f
AA
2145 /* When sessions are used, skip open sequenceid processing */
2146 if (nfsd4_has_session(cstate))
2147 goto renew;
0f442aa2
BF
2148 if (!sop->so_confirmed) {
2149 /* Replace unconfirmed owners without checking for replay. */
2150 clp = sop->so_client;
f044ff83 2151 release_openowner(sop);
0f442aa2
BF
2152 open->op_stateowner = NULL;
2153 goto renew;
2154 }
2155 if (open->op_seqid == sop->so_seqid - 1) {
2156 if (sop->so_replay.rp_buflen)
a90b061c 2157 return nfserr_replay_me;
0f442aa2
BF
2158 /* The original OPEN failed so spectacularly
2159 * that we don't even have replay data saved!
2160 * Therefore, we have no choice but to continue
2161 * processing this OPEN; presumably, we'll
2162 * fail again for the same reason.
2163 */
2164 dprintk("nfsd4_process_open1: replay with no replay cache\n");
2165 goto renew;
2166 }
2167 if (open->op_seqid != sop->so_seqid)
2168 return nfserr_bad_seqid;
1da177e4 2169renew:
0f442aa2
BF
2170 if (open->op_stateowner == NULL) {
2171 sop = alloc_init_open_stateowner(strhashval, clp, open);
2172 if (sop == NULL)
2173 return nfserr_resource;
2174 open->op_stateowner = sop;
2175 }
2176 list_del_init(&sop->so_close_lru);
1da177e4 2177 renew_client(sop->so_client);
0f442aa2 2178 return nfs_ok;
1da177e4
LT
2179}
2180
b37ad28b 2181static inline __be32
4a6e43e6
N
2182nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2183{
2184 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2185 return nfserr_openmode;
2186 else
2187 return nfs_ok;
2188}
2189
52f4fb43
N
2190static struct nfs4_delegation *
2191find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
2192{
2193 struct nfs4_delegation *dp;
2194
ea1da636 2195 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) {
52f4fb43
N
2196 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
2197 return dp;
2198 }
2199 return NULL;
2200}
2201
b37ad28b 2202static __be32
567d9829
N
2203nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
2204 struct nfs4_delegation **dp)
2205{
2206 int flags;
b37ad28b 2207 __be32 status = nfserr_bad_stateid;
567d9829
N
2208
2209 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
2210 if (*dp == NULL)
c44c5eeb 2211 goto out;
567d9829
N
2212 flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
2213 RD_STATE : WR_STATE;
2214 status = nfs4_check_delegmode(*dp, flags);
2215 if (status)
2216 *dp = NULL;
c44c5eeb
N
2217out:
2218 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
2219 return nfs_ok;
2220 if (status)
2221 return status;
2222 open->op_stateowner->so_confirmed = 1;
2223 return nfs_ok;
567d9829
N
2224}
2225
b37ad28b 2226static __be32
1da177e4
LT
2227nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
2228{
2229 struct nfs4_stateid *local;
b37ad28b 2230 __be32 status = nfserr_share_denied;
1da177e4
LT
2231 struct nfs4_stateowner *sop = open->op_stateowner;
2232
8beefa24 2233 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
1da177e4
LT
2234 /* ignore lock owners */
2235 if (local->st_stateowner->so_is_open_owner == 0)
2236 continue;
2237 /* remember if we have seen this open owner */
2238 if (local->st_stateowner == sop)
2239 *stpp = local;
2240 /* check for conflicting share reservations */
2241 if (!test_share(local, open))
2242 goto out;
2243 }
2244 status = 0;
2245out:
2246 return status;
2247}
2248
5ac049ac
N
2249static inline struct nfs4_stateid *
2250nfs4_alloc_stateid(void)
2251{
2252 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
2253}
2254
b37ad28b 2255static __be32
1da177e4 2256nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
567d9829 2257 struct nfs4_delegation *dp,
1da177e4
LT
2258 struct svc_fh *cur_fh, int flags)
2259{
2260 struct nfs4_stateid *stp;
1da177e4 2261
5ac049ac 2262 stp = nfs4_alloc_stateid();
1da177e4
LT
2263 if (stp == NULL)
2264 return nfserr_resource;
2265
567d9829
N
2266 if (dp) {
2267 get_file(dp->dl_vfs_file);
2268 stp->st_vfs_file = dp->dl_vfs_file;
2269 } else {
b37ad28b 2270 __be32 status;
567d9829
N
2271 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
2272 &stp->st_vfs_file);
2273 if (status) {
2274 if (status == nfserr_dropit)
2275 status = nfserr_jukebox;
5ac049ac 2276 kmem_cache_free(stateid_slab, stp);
567d9829
N
2277 return status;
2278 }
1da177e4 2279 }
1da177e4
LT
2280 *stpp = stp;
2281 return 0;
2282}
2283
b37ad28b 2284static inline __be32
1da177e4
LT
2285nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2286 struct nfsd4_open *open)
2287{
2288 struct iattr iattr = {
2289 .ia_valid = ATTR_SIZE,
2290 .ia_size = 0,
2291 };
2292 if (!open->op_truncate)
2293 return 0;
2294 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
9246585a 2295 return nfserr_inval;
1da177e4
LT
2296 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2297}
2298
b37ad28b 2299static __be32
1da177e4
LT
2300nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
2301{
2302 struct file *filp = stp->st_vfs_file;
7eaa36e2 2303 struct inode *inode = filp->f_path.dentry->d_inode;
6c26d08f 2304 unsigned int share_access, new_writer;
b37ad28b 2305 __be32 status;
1da177e4
LT
2306
2307 set_access(&share_access, stp->st_access_bmap);
6c26d08f
BF
2308 new_writer = (~share_access) & open->op_share_access
2309 & NFS4_SHARE_ACCESS_WRITE;
1da177e4 2310
6c26d08f 2311 if (new_writer) {
b37ad28b
AV
2312 int err = get_write_access(inode);
2313 if (err)
2314 return nfserrno(err);
e518f056
BH
2315 err = mnt_want_write(cur_fh->fh_export->ex_path.mnt);
2316 if (err)
2317 return nfserrno(err);
2318 file_take_write(filp);
6c26d08f 2319 }
1da177e4
LT
2320 status = nfsd4_truncate(rqstp, cur_fh, open);
2321 if (status) {
6c26d08f
BF
2322 if (new_writer)
2323 put_write_access(inode);
1da177e4
LT
2324 return status;
2325 }
2326 /* remember the open */
6c26d08f 2327 filp->f_mode |= open->op_share_access;
b55e0ba1
BF
2328 __set_bit(open->op_share_access, &stp->st_access_bmap);
2329 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
1da177e4
LT
2330
2331 return nfs_ok;
2332}
2333
2334
1da177e4 2335static void
37515177 2336nfs4_set_claim_prev(struct nfsd4_open *open)
1da177e4 2337{
37515177
N
2338 open->op_stateowner->so_confirmed = 1;
2339 open->op_stateowner->so_client->cl_firststate = 1;
1da177e4
LT
2340}
2341
2342/*
2343 * Attempt to hand out a delegation.
2344 */
2345static void
2346nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
2347{
2348 struct nfs4_delegation *dp;
2349 struct nfs4_stateowner *sop = stp->st_stateowner;
c237dc03 2350 struct nfs4_cb_conn *cb = &sop->so_client->cl_cb_conn;
1da177e4
LT
2351 struct file_lock fl, *flp = &fl;
2352 int status, flag = 0;
2353
2354 flag = NFS4_OPEN_DELEGATE_NONE;
7b190fec
N
2355 open->op_recall = 0;
2356 switch (open->op_claim_type) {
2357 case NFS4_OPEN_CLAIM_PREVIOUS:
2358 if (!atomic_read(&cb->cb_set))
2359 open->op_recall = 1;
2360 flag = open->op_delegate_type;
2361 if (flag == NFS4_OPEN_DELEGATE_NONE)
2362 goto out;
2363 break;
2364 case NFS4_OPEN_CLAIM_NULL:
2365 /* Let's not give out any delegations till everyone's
2366 * had the chance to reclaim theirs.... */
af558e33 2367 if (locks_in_grace())
7b190fec
N
2368 goto out;
2369 if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
2370 goto out;
2371 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2372 flag = NFS4_OPEN_DELEGATE_WRITE;
2373 else
2374 flag = NFS4_OPEN_DELEGATE_READ;
2375 break;
2376 default:
2377 goto out;
2378 }
1da177e4
LT
2379
2380 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
2381 if (dp == NULL) {
2382 flag = NFS4_OPEN_DELEGATE_NONE;
2383 goto out;
2384 }
2385 locks_init_lock(&fl);
2386 fl.fl_lmops = &nfsd_lease_mng_ops;
2387 fl.fl_flags = FL_LEASE;
9167f501 2388 fl.fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
1da177e4
LT
2389 fl.fl_end = OFFSET_MAX;
2390 fl.fl_owner = (fl_owner_t)dp;
2391 fl.fl_file = stp->st_vfs_file;
2392 fl.fl_pid = current->tgid;
2393
a9933cea 2394 /* vfs_setlease checks to see if delegation should be handed out.
1da177e4
LT
2395 * the lock_manager callbacks fl_mylease and fl_change are used
2396 */
9167f501 2397 if ((status = vfs_setlease(stp->st_vfs_file, fl.fl_type, &flp))) {
1da177e4 2398 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
c907132d 2399 unhash_delegation(dp);
1da177e4
LT
2400 flag = NFS4_OPEN_DELEGATE_NONE;
2401 goto out;
2402 }
2403
2404 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
2405
8c10cbdb
BH
2406 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
2407 STATEID_VAL(&dp->dl_stateid));
1da177e4 2408out:
7b190fec
N
2409 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
2410 && flag == NFS4_OPEN_DELEGATE_NONE
2411 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
2fdada03 2412 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
1da177e4
LT
2413 open->op_delegate_type = flag;
2414}
2415
2416/*
2417 * called with nfs4_lock_state() held.
2418 */
b37ad28b 2419__be32
1da177e4
LT
2420nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2421{
6668958f 2422 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1da177e4
LT
2423 struct nfs4_file *fp = NULL;
2424 struct inode *ino = current_fh->fh_dentry->d_inode;
2425 struct nfs4_stateid *stp = NULL;
567d9829 2426 struct nfs4_delegation *dp = NULL;
b37ad28b 2427 __be32 status;
1da177e4
LT
2428
2429 status = nfserr_inval;
d87a8ade 2430 if (!access_valid(open->op_share_access, resp->cstate.minorversion)
ba5a6a19 2431 || !deny_valid(open->op_share_deny))
1da177e4
LT
2432 goto out;
2433 /*
2434 * Lookup file; if found, lookup stateid and check open request,
2435 * and check for delegations in the process of being recalled.
2436 * If not found, create the nfs4_file struct
2437 */
2438 fp = find_file(ino);
2439 if (fp) {
2440 if ((status = nfs4_check_open(fp, open, &stp)))
2441 goto out;
c44c5eeb
N
2442 status = nfs4_check_deleg(fp, open, &dp);
2443 if (status)
2444 goto out;
1da177e4 2445 } else {
c44c5eeb
N
2446 status = nfserr_bad_stateid;
2447 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2448 goto out;
1da177e4
LT
2449 status = nfserr_resource;
2450 fp = alloc_init_file(ino);
2451 if (fp == NULL)
2452 goto out;
2453 }
2454
2455 /*
2456 * OPEN the file, or upgrade an existing OPEN.
2457 * If truncate fails, the OPEN fails.
2458 */
2459 if (stp) {
2460 /* Stateid was found, this is an OPEN upgrade */
2461 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
2462 if (status)
2463 goto out;
444c2c07 2464 update_stateid(&stp->st_stateid);
1da177e4
LT
2465 } else {
2466 /* Stateid was not found, this is a new OPEN */
2467 int flags = 0;
9ecb6a08 2468 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
8837abca 2469 flags |= NFSD_MAY_READ;
1da177e4 2470 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
8837abca 2471 flags |= NFSD_MAY_WRITE;
567d9829
N
2472 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
2473 if (status)
1da177e4
LT
2474 goto out;
2475 init_stateid(stp, fp, open);
2476 status = nfsd4_truncate(rqstp, current_fh, open);
2477 if (status) {
2283963f 2478 release_open_stateid(stp);
1da177e4
LT
2479 goto out;
2480 }
6668958f
AA
2481 if (nfsd4_has_session(&resp->cstate))
2482 update_stateid(&stp->st_stateid);
1da177e4
LT
2483 }
2484 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
2485
8b8aae40 2486 if (nfsd4_has_session(&resp->cstate)) {
6668958f 2487 open->op_stateowner->so_confirmed = 1;
8b8aae40
RL
2488 nfsd4_create_clid_dir(open->op_stateowner->so_client);
2489 }
6668958f 2490
1da177e4
LT
2491 /*
2492 * Attempt to hand out a delegation. No error return, because the
2493 * OPEN succeeds even if we fail.
2494 */
2495 nfs4_open_delegation(current_fh, open, stp);
2496
2497 status = nfs_ok;
2498
8c10cbdb
BH
2499 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
2500 STATEID_VAL(&stp->st_stateid));
1da177e4 2501out:
13cd2184
N
2502 if (fp)
2503 put_nfs4_file(fp);
37515177
N
2504 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
2505 nfs4_set_claim_prev(open);
1da177e4
LT
2506 /*
2507 * To finish the open response, we just need to set the rflags.
2508 */
2509 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
6668958f
AA
2510 if (!open->op_stateowner->so_confirmed &&
2511 !nfsd4_has_session(&resp->cstate))
1da177e4
LT
2512 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
2513
2514 return status;
2515}
2516
b37ad28b 2517__be32
b591480b
BF
2518nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2519 clientid_t *clid)
1da177e4
LT
2520{
2521 struct nfs4_client *clp;
b37ad28b 2522 __be32 status;
1da177e4
LT
2523
2524 nfs4_lock_state();
2525 dprintk("process_renew(%08x/%08x): starting\n",
2526 clid->cl_boot, clid->cl_id);
2527 status = nfserr_stale_clientid;
2528 if (STALE_CLIENTID(clid))
2529 goto out;
2530 clp = find_confirmed_client(clid);
2531 status = nfserr_expired;
2532 if (clp == NULL) {
2533 /* We assume the client took too long to RENEW. */
2534 dprintk("nfsd4_renew: clientid not found!\n");
2535 goto out;
2536 }
2537 renew_client(clp);
2538 status = nfserr_cb_path_down;
ea1da636 2539 if (!list_empty(&clp->cl_delegations)
c237dc03 2540 && !atomic_read(&clp->cl_cb_conn.cb_set))
1da177e4
LT
2541 goto out;
2542 status = nfs_ok;
2543out:
2544 nfs4_unlock_state();
2545 return status;
2546}
2547
af558e33
BF
2548struct lock_manager nfsd4_manager = {
2549};
2550
a76b4319 2551static void
af558e33 2552nfsd4_end_grace(void)
a76b4319
N
2553{
2554 dprintk("NFSD: end of grace period\n");
c7b9a459 2555 nfsd4_recdir_purge_old();
af558e33 2556 locks_end_grace(&nfsd4_manager);
a76b4319
N
2557}
2558
fd39ca9a 2559static time_t
1da177e4
LT
2560nfs4_laundromat(void)
2561{
2562 struct nfs4_client *clp;
2563 struct nfs4_stateowner *sop;
2564 struct nfs4_delegation *dp;
2565 struct list_head *pos, *next, reaplist;
2566 time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
2567 time_t t, clientid_val = NFSD_LEASE_TIME;
2568 time_t u, test_val = NFSD_LEASE_TIME;
2569
2570 nfs4_lock_state();
2571
2572 dprintk("NFSD: laundromat service - starting\n");
af558e33
BF
2573 if (locks_in_grace())
2574 nfsd4_end_grace();
1da177e4
LT
2575 list_for_each_safe(pos, next, &client_lru) {
2576 clp = list_entry(pos, struct nfs4_client, cl_lru);
2577 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
2578 t = clp->cl_time - cutoff;
2579 if (clientid_val > t)
2580 clientid_val = t;
2581 break;
2582 }
2583 dprintk("NFSD: purging unused client (clientid %08x)\n",
2584 clp->cl_clientid.cl_id);
c7b9a459 2585 nfsd4_remove_clid_dir(clp);
1da177e4
LT
2586 expire_client(clp);
2587 }
2588 INIT_LIST_HEAD(&reaplist);
2589 spin_lock(&recall_lock);
2590 list_for_each_safe(pos, next, &del_recall_lru) {
2591 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
2592 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
2593 u = dp->dl_time - cutoff;
2594 if (test_val > u)
2595 test_val = u;
2596 break;
2597 }
2598 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
2599 dp, dp->dl_flock);
2600 list_move(&dp->dl_recall_lru, &reaplist);
2601 }
2602 spin_unlock(&recall_lock);
2603 list_for_each_safe(pos, next, &reaplist) {
2604 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
2605 list_del_init(&dp->dl_recall_lru);
2606 unhash_delegation(dp);
2607 }
2608 test_val = NFSD_LEASE_TIME;
2609 list_for_each_safe(pos, next, &close_lru) {
2610 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
2611 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
2612 u = sop->so_time - cutoff;
2613 if (test_val > u)
2614 test_val = u;
2615 break;
2616 }
2617 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
2618 sop->so_id);
f044ff83 2619 release_openowner(sop);
1da177e4
LT
2620 }
2621 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
2622 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
2623 nfs4_unlock_state();
2624 return clientid_val;
2625}
2626
a254b246
HH
2627static struct workqueue_struct *laundry_wq;
2628static void laundromat_main(struct work_struct *);
2629static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
2630
2631static void
c4028958 2632laundromat_main(struct work_struct *not_used)
1da177e4
LT
2633{
2634 time_t t;
2635
2636 t = nfs4_laundromat();
2637 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
58da282b 2638 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
1da177e4
LT
2639}
2640
fd39ca9a 2641static struct nfs4_stateowner *
f8816512
N
2642search_close_lru(u32 st_id, int flags)
2643{
1da177e4
LT
2644 struct nfs4_stateowner *local = NULL;
2645
1da177e4
LT
2646 if (flags & CLOSE_STATE) {
2647 list_for_each_entry(local, &close_lru, so_close_lru) {
2648 if (local->so_id == st_id)
2649 return local;
2650 }
2651 }
2652 return NULL;
2653}
2654
2655static inline int
2656nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
2657{
7eaa36e2 2658 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_path.dentry->d_inode;
1da177e4
LT
2659}
2660
2661static int
2662STALE_STATEID(stateid_t *stateid)
2663{
78155ed7
BN
2664 if (time_after((unsigned long)boot_time,
2665 (unsigned long)stateid->si_boot)) {
8c10cbdb
BH
2666 dprintk("NFSD: stale stateid " STATEID_FMT "!\n",
2667 STATEID_VAL(stateid));
78155ed7
BN
2668 return 1;
2669 }
2670 return 0;
2671}
2672
2673static int
2674EXPIRED_STATEID(stateid_t *stateid)
2675{
2676 if (time_before((unsigned long)boot_time,
2677 ((unsigned long)stateid->si_boot)) &&
b8fd47ae 2678 time_before((unsigned long)(stateid->si_boot + lease_time), get_seconds())) {
8c10cbdb
BH
2679 dprintk("NFSD: expired stateid " STATEID_FMT "!\n",
2680 STATEID_VAL(stateid));
78155ed7
BN
2681 return 1;
2682 }
2683 return 0;
2684}
2685
2686static __be32
2687stateid_error_map(stateid_t *stateid)
2688{
2689 if (STALE_STATEID(stateid))
2690 return nfserr_stale_stateid;
2691 if (EXPIRED_STATEID(stateid))
2692 return nfserr_expired;
2693
8c10cbdb
BH
2694 dprintk("NFSD: bad stateid " STATEID_FMT "!\n",
2695 STATEID_VAL(stateid));
78155ed7 2696 return nfserr_bad_stateid;
1da177e4
LT
2697}
2698
2699static inline int
2700access_permit_read(unsigned long access_bmap)
2701{
2702 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
2703 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
2704 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
2705}
2706
2707static inline int
2708access_permit_write(unsigned long access_bmap)
2709{
2710 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
2711 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
2712}
2713
2714static
b37ad28b 2715__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
1da177e4 2716{
b37ad28b 2717 __be32 status = nfserr_openmode;
1da177e4
LT
2718
2719 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
2720 goto out;
2721 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
2722 goto out;
2723 status = nfs_ok;
2724out:
2725 return status;
2726}
2727
b37ad28b 2728static inline __be32
1da177e4
LT
2729check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2730{
203a8c8e 2731 if (ONE_STATEID(stateid) && (flags & RD_STATE))
1da177e4 2732 return nfs_ok;
af558e33 2733 else if (locks_in_grace()) {
1da177e4
LT
2734 /* Answer in remaining cases depends on existance of
2735 * conflicting state; so we must wait out the grace period. */
2736 return nfserr_grace;
2737 } else if (flags & WR_STATE)
2738 return nfs4_share_conflict(current_fh,
2739 NFS4_SHARE_DENY_WRITE);
2740 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2741 return nfs4_share_conflict(current_fh,
2742 NFS4_SHARE_DENY_READ);
2743}
2744
2745/*
2746 * Allow READ/WRITE during grace period on recovered state only for files
2747 * that are not able to provide mandatory locking.
2748 */
2749static inline int
18f82731 2750grace_disallows_io(struct inode *inode)
1da177e4 2751{
203a8c8e 2752 return locks_in_grace() && mandatory_lock(inode);
1da177e4
LT
2753}
2754
6668958f 2755static int check_stateid_generation(stateid_t *in, stateid_t *ref, int flags)
0836f587 2756{
6668958f
AA
2757 /*
2758 * When sessions are used the stateid generation number is ignored
2759 * when it is zero.
2760 */
2761 if ((flags & HAS_SESSION) && in->si_generation == 0)
2762 goto out;
2763
0836f587
BF
2764 /* If the client sends us a stateid from the future, it's buggy: */
2765 if (in->si_generation > ref->si_generation)
2766 return nfserr_bad_stateid;
2767 /*
2768 * The following, however, can happen. For example, if the
2769 * client sends an open and some IO at the same time, the open
2770 * may bump si_generation while the IO is still in flight.
2771 * Thanks to hard links and renames, the client never knows what
2772 * file an open will affect. So it could avoid that situation
2773 * only by serializing all opens and IO from the same open
2774 * owner. To recover from the old_stateid error, the client
2775 * will just have to retry the IO:
2776 */
2777 if (in->si_generation < ref->si_generation)
2778 return nfserr_old_stateid;
6668958f 2779out:
0836f587
BF
2780 return nfs_ok;
2781}
2782
3e633079
BF
2783static int is_delegation_stateid(stateid_t *stateid)
2784{
2785 return stateid->si_fileid == 0;
2786}
2787
1da177e4
LT
2788/*
2789* Checks for stateid operations
2790*/
b37ad28b 2791__be32
dd453dfd
BH
2792nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
2793 stateid_t *stateid, int flags, struct file **filpp)
1da177e4
LT
2794{
2795 struct nfs4_stateid *stp = NULL;
2796 struct nfs4_delegation *dp = NULL;
dd453dfd 2797 struct svc_fh *current_fh = &cstate->current_fh;
1da177e4 2798 struct inode *ino = current_fh->fh_dentry->d_inode;
b37ad28b 2799 __be32 status;
1da177e4 2800
1da177e4
LT
2801 if (filpp)
2802 *filpp = NULL;
2803
18f82731 2804 if (grace_disallows_io(ino))
1da177e4
LT
2805 return nfserr_grace;
2806
6668958f
AA
2807 if (nfsd4_has_session(cstate))
2808 flags |= HAS_SESSION;
2809
1da177e4
LT
2810 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2811 return check_special_stateids(current_fh, stateid, flags);
2812
1da177e4
LT
2813 status = nfserr_stale_stateid;
2814 if (STALE_STATEID(stateid))
2815 goto out;
2816
1da177e4 2817 status = nfserr_bad_stateid;
3e633079 2818 if (is_delegation_stateid(stateid)) {
a4455be0 2819 dp = find_delegation_stateid(ino, stateid);
78155ed7
BN
2820 if (!dp) {
2821 status = stateid_error_map(stateid);
1da177e4 2822 goto out;
78155ed7 2823 }
6668958f
AA
2824 status = check_stateid_generation(stateid, &dp->dl_stateid,
2825 flags);
0c2a498f
BF
2826 if (status)
2827 goto out;
dc9bf700
BF
2828 status = nfs4_check_delegmode(dp, flags);
2829 if (status)
2830 goto out;
2831 renew_client(dp->dl_client);
dc9bf700
BF
2832 if (filpp)
2833 *filpp = dp->dl_vfs_file;
1da177e4 2834 } else { /* open or lock stateid */
a4455be0 2835 stp = find_stateid(stateid, flags);
78155ed7
BN
2836 if (!stp) {
2837 status = stateid_error_map(stateid);
1da177e4 2838 goto out;
78155ed7 2839 }
6150ef0d 2840 if (nfs4_check_fh(current_fh, stp))
1da177e4
LT
2841 goto out;
2842 if (!stp->st_stateowner->so_confirmed)
2843 goto out;
6668958f
AA
2844 status = check_stateid_generation(stateid, &stp->st_stateid,
2845 flags);
0c2a498f
BF
2846 if (status)
2847 goto out;
a4455be0
BF
2848 status = nfs4_check_openmode(stp, flags);
2849 if (status)
1da177e4
LT
2850 goto out;
2851 renew_client(stp->st_stateowner->so_client);
2852 if (filpp)
2853 *filpp = stp->st_vfs_file;
1da177e4
LT
2854 }
2855 status = nfs_ok;
2856out:
2857 return status;
2858}
2859
4c4cd222
N
2860static inline int
2861setlkflg (int type)
2862{
2863 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
2864 RD_STATE : WR_STATE;
2865}
1da177e4
LT
2866
2867/*
2868 * Checks for sequence id mutating operations.
2869 */
b37ad28b 2870static __be32
dd453dfd
BH
2871nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
2872 stateid_t *stateid, int flags,
2873 struct nfs4_stateowner **sopp,
2874 struct nfs4_stateid **stpp, struct nfsd4_lock *lock)
1da177e4 2875{
1da177e4
LT
2876 struct nfs4_stateid *stp;
2877 struct nfs4_stateowner *sop;
dd453dfd 2878 struct svc_fh *current_fh = &cstate->current_fh;
0836f587 2879 __be32 status;
1da177e4 2880
8c10cbdb
BH
2881 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
2882 seqid, STATEID_VAL(stateid));
3a4f98bb 2883
1da177e4
LT
2884 *stpp = NULL;
2885 *sopp = NULL;
2886
1da177e4 2887 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
2fdada03 2888 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
3a4f98bb 2889 return nfserr_bad_stateid;
1da177e4
LT
2890 }
2891
1da177e4 2892 if (STALE_STATEID(stateid))
3a4f98bb 2893 return nfserr_stale_stateid;
6668958f
AA
2894
2895 if (nfsd4_has_session(cstate))
2896 flags |= HAS_SESSION;
2897
1da177e4
LT
2898 /*
2899 * We return BAD_STATEID if filehandle doesn't match stateid,
2900 * the confirmed flag is incorrecly set, or the generation
2901 * number is incorrect.
1da177e4 2902 */
f8816512
N
2903 stp = find_stateid(stateid, flags);
2904 if (stp == NULL) {
2905 /*
2906 * Also, we should make sure this isn't just the result of
2907 * a replayed close:
2908 */
2909 sop = search_close_lru(stateid->si_stateownerid, flags);
2910 if (sop == NULL)
78155ed7 2911 return stateid_error_map(stateid);
f8816512
N
2912 *sopp = sop;
2913 goto check_replay;
2914 }
1da177e4 2915
39325bd0
BF
2916 *stpp = stp;
2917 *sopp = sop = stp->st_stateowner;
2918
4c4cd222 2919 if (lock) {
4c4cd222 2920 clientid_t *lockclid = &lock->v.new.clientid;
1da177e4 2921 struct nfs4_client *clp = sop->so_client;
4c4cd222 2922 int lkflg = 0;
b37ad28b 2923 __be32 status;
4c4cd222
N
2924
2925 lkflg = setlkflg(lock->lk_type);
2926
2927 if (lock->lk_is_new) {
599e0a22
BF
2928 if (!sop->so_is_open_owner)
2929 return nfserr_bad_stateid;
60adfc50
AA
2930 if (!(flags & HAS_SESSION) &&
2931 !same_clid(&clp->cl_clientid, lockclid))
2932 return nfserr_bad_stateid;
599e0a22
BF
2933 /* stp is the open stateid */
2934 status = nfs4_check_openmode(stp, lkflg);
2935 if (status)
2936 return status;
2937 } else {
2938 /* stp is the lock stateid */
2939 status = nfs4_check_openmode(stp->st_openstp, lkflg);
2940 if (status)
2941 return status;
4c4cd222 2942 }
1da177e4
LT
2943 }
2944
f3362737 2945 if (nfs4_check_fh(current_fh, stp)) {
2fdada03 2946 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
3a4f98bb 2947 return nfserr_bad_stateid;
1da177e4
LT
2948 }
2949
1da177e4
LT
2950 /*
2951 * We now validate the seqid and stateid generation numbers.
2952 * For the moment, we ignore the possibility of
2953 * generation number wraparound.
2954 */
6668958f 2955 if (!(flags & HAS_SESSION) && seqid != sop->so_seqid)
1da177e4
LT
2956 goto check_replay;
2957
3a4f98bb 2958 if (sop->so_confirmed && flags & CONFIRM) {
2fdada03 2959 dprintk("NFSD: preprocess_seqid_op: expected"
3a4f98bb
N
2960 " unconfirmed stateowner!\n");
2961 return nfserr_bad_stateid;
1da177e4 2962 }
3a4f98bb 2963 if (!sop->so_confirmed && !(flags & CONFIRM)) {
2fdada03 2964 dprintk("NFSD: preprocess_seqid_op: stateowner not"
3a4f98bb
N
2965 " confirmed yet!\n");
2966 return nfserr_bad_stateid;
1da177e4 2967 }
6668958f 2968 status = check_stateid_generation(stateid, &stp->st_stateid, flags);
0836f587
BF
2969 if (status)
2970 return status;
52fd004e 2971 renew_client(sop->so_client);
3a4f98bb 2972 return nfs_ok;
1da177e4 2973
1da177e4 2974check_replay:
bd9aac52 2975 if (seqid == sop->so_seqid - 1) {
849823c5 2976 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
1da177e4 2977 /* indicate replay to calling function */
a90b061c 2978 return nfserr_replay_me;
1da177e4 2979 }
2fdada03 2980 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
3a4f98bb
N
2981 sop->so_seqid, seqid);
2982 *sopp = NULL;
2983 return nfserr_bad_seqid;
1da177e4
LT
2984}
2985
b37ad28b 2986__be32
ca364317 2987nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 2988 struct nfsd4_open_confirm *oc)
1da177e4 2989{
b37ad28b 2990 __be32 status;
1da177e4
LT
2991 struct nfs4_stateowner *sop;
2992 struct nfs4_stateid *stp;
2993
2994 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
ca364317
BF
2995 (int)cstate->current_fh.fh_dentry->d_name.len,
2996 cstate->current_fh.fh_dentry->d_name.name);
1da177e4 2997
ca364317 2998 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
a8cddc5d
BF
2999 if (status)
3000 return status;
1da177e4
LT
3001
3002 nfs4_lock_state();
3003
dd453dfd 3004 if ((status = nfs4_preprocess_seqid_op(cstate,
ca364317 3005 oc->oc_seqid, &oc->oc_req_stateid,
f3362737 3006 CONFIRM | OPEN_STATE,
1da177e4
LT
3007 &oc->oc_stateowner, &stp, NULL)))
3008 goto out;
3009
3010 sop = oc->oc_stateowner;
3011 sop->so_confirmed = 1;
3012 update_stateid(&stp->st_stateid);
3013 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
8c10cbdb
BH
3014 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
3015 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stateid));
c7b9a459
N
3016
3017 nfsd4_create_clid_dir(sop->so_client);
1da177e4 3018out:
f2327d9a 3019 if (oc->oc_stateowner) {
1da177e4 3020 nfs4_get_stateowner(oc->oc_stateowner);
a4f1706a 3021 cstate->replay_owner = oc->oc_stateowner;
f2327d9a 3022 }
1da177e4
LT
3023 nfs4_unlock_state();
3024 return status;
3025}
3026
3027
3028/*
3029 * unset all bits in union bitmap (bmap) that
3030 * do not exist in share (from successful OPEN_DOWNGRADE)
3031 */
3032static void
3033reset_union_bmap_access(unsigned long access, unsigned long *bmap)
3034{
3035 int i;
3036 for (i = 1; i < 4; i++) {
3037 if ((i & access) != i)
3038 __clear_bit(i, bmap);
3039 }
3040}
3041
3042static void
3043reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
3044{
3045 int i;
3046 for (i = 0; i < 4; i++) {
3047 if ((i & deny) != i)
3048 __clear_bit(i, bmap);
3049 }
3050}
3051
b37ad28b 3052__be32
ca364317
BF
3053nfsd4_open_downgrade(struct svc_rqst *rqstp,
3054 struct nfsd4_compound_state *cstate,
a4f1706a 3055 struct nfsd4_open_downgrade *od)
1da177e4 3056{
b37ad28b 3057 __be32 status;
1da177e4
LT
3058 struct nfs4_stateid *stp;
3059 unsigned int share_access;
3060
3061 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
ca364317
BF
3062 (int)cstate->current_fh.fh_dentry->d_name.len,
3063 cstate->current_fh.fh_dentry->d_name.name);
1da177e4 3064
d87a8ade 3065 if (!access_valid(od->od_share_access, cstate->minorversion)
ba5a6a19 3066 || !deny_valid(od->od_share_deny))
1da177e4
LT
3067 return nfserr_inval;
3068
3069 nfs4_lock_state();
dd453dfd 3070 if ((status = nfs4_preprocess_seqid_op(cstate,
ca364317 3071 od->od_seqid,
1da177e4 3072 &od->od_stateid,
f3362737 3073 OPEN_STATE,
1da177e4
LT
3074 &od->od_stateowner, &stp, NULL)))
3075 goto out;
3076
3077 status = nfserr_inval;
3078 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
3079 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
3080 stp->st_access_bmap, od->od_share_access);
3081 goto out;
3082 }
3083 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
3084 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3085 stp->st_deny_bmap, od->od_share_deny);
3086 goto out;
3087 }
3088 set_access(&share_access, stp->st_access_bmap);
3089 nfs4_file_downgrade(stp->st_vfs_file,
3090 share_access & ~od->od_share_access);
3091
3092 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
3093 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
3094
3095 update_stateid(&stp->st_stateid);
3096 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
3097 status = nfs_ok;
3098out:
f2327d9a 3099 if (od->od_stateowner) {
1da177e4 3100 nfs4_get_stateowner(od->od_stateowner);
a4f1706a 3101 cstate->replay_owner = od->od_stateowner;
f2327d9a 3102 }
1da177e4
LT
3103 nfs4_unlock_state();
3104 return status;
3105}
3106
3107/*
3108 * nfs4_unlock_state() called after encode
3109 */
b37ad28b 3110__be32
ca364317 3111nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 3112 struct nfsd4_close *close)
1da177e4 3113{
b37ad28b 3114 __be32 status;
1da177e4
LT
3115 struct nfs4_stateid *stp;
3116
3117 dprintk("NFSD: nfsd4_close on file %.*s\n",
ca364317
BF
3118 (int)cstate->current_fh.fh_dentry->d_name.len,
3119 cstate->current_fh.fh_dentry->d_name.name);
1da177e4
LT
3120
3121 nfs4_lock_state();
3122 /* check close_lru for replay */
dd453dfd 3123 if ((status = nfs4_preprocess_seqid_op(cstate,
ca364317 3124 close->cl_seqid,
1da177e4 3125 &close->cl_stateid,
f3362737 3126 OPEN_STATE | CLOSE_STATE,
1da177e4
LT
3127 &close->cl_stateowner, &stp, NULL)))
3128 goto out;
1da177e4
LT
3129 status = nfs_ok;
3130 update_stateid(&stp->st_stateid);
3131 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
3132
04ef5954 3133 /* release_stateid() calls nfsd_close() if needed */
2283963f 3134 release_open_stateid(stp);
04ef5954
BF
3135
3136 /* place unused nfs4_stateowners on so_close_lru list to be
3137 * released by the laundromat service after the lease period
3138 * to enable us to handle CLOSE replay
3139 */
3140 if (list_empty(&close->cl_stateowner->so_stateids))
3141 move_to_close_lru(close->cl_stateowner);
1da177e4 3142out:
f2327d9a 3143 if (close->cl_stateowner) {
1da177e4 3144 nfs4_get_stateowner(close->cl_stateowner);
a4f1706a 3145 cstate->replay_owner = close->cl_stateowner;
f2327d9a 3146 }
1da177e4
LT
3147 nfs4_unlock_state();
3148 return status;
3149}
3150
b37ad28b 3151__be32
ca364317
BF
3152nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3153 struct nfsd4_delegreturn *dr)
1da177e4 3154{
203a8c8e
BF
3155 struct nfs4_delegation *dp;
3156 stateid_t *stateid = &dr->dr_stateid;
3157 struct inode *inode;
b37ad28b 3158 __be32 status;
6668958f 3159 int flags = 0;
1da177e4 3160
ca364317 3161 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
203a8c8e
BF
3162 return status;
3163 inode = cstate->current_fh.fh_dentry->d_inode;
1da177e4 3164
6668958f
AA
3165 if (nfsd4_has_session(cstate))
3166 flags |= HAS_SESSION;
1da177e4 3167 nfs4_lock_state();
203a8c8e
BF
3168 status = nfserr_bad_stateid;
3169 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3170 goto out;
3171 status = nfserr_stale_stateid;
3172 if (STALE_STATEID(stateid))
3173 goto out;
7e0f7cf5 3174 status = nfserr_bad_stateid;
203a8c8e
BF
3175 if (!is_delegation_stateid(stateid))
3176 goto out;
203a8c8e 3177 dp = find_delegation_stateid(inode, stateid);
78155ed7
BN
3178 if (!dp) {
3179 status = stateid_error_map(stateid);
203a8c8e 3180 goto out;
78155ed7 3181 }
6668958f 3182 status = check_stateid_generation(stateid, &dp->dl_stateid, flags);
203a8c8e
BF
3183 if (status)
3184 goto out;
3185 renew_client(dp->dl_client);
3186
3187 unhash_delegation(dp);
1da177e4 3188out:
203a8c8e
BF
3189 nfs4_unlock_state();
3190
1da177e4
LT
3191 return status;
3192}
3193
3194
3195/*
3196 * Lock owner state (byte-range locks)
3197 */
3198#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
3199#define LOCK_HASH_BITS 8
3200#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
3201#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
3202
87df4de8
BH
3203static inline u64
3204end_offset(u64 start, u64 len)
3205{
3206 u64 end;
3207
3208 end = start + len;
3209 return end >= start ? end: NFS4_MAX_UINT64;
3210}
3211
3212/* last octet in a range */
3213static inline u64
3214last_byte_offset(u64 start, u64 len)
3215{
3216 u64 end;
3217
3218 BUG_ON(!len);
3219 end = start + len;
3220 return end > start ? end - 1: NFS4_MAX_UINT64;
3221}
3222
1da177e4
LT
3223#define lockownerid_hashval(id) \
3224 ((id) & LOCK_HASH_MASK)
3225
3226static inline unsigned int
3227lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
3228 struct xdr_netobj *ownername)
3229{
3230 return (file_hashval(inode) + cl_id
3231 + opaque_hashval(ownername->data, ownername->len))
3232 & LOCK_HASH_MASK;
3233}
3234
3235static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
3236static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
3237static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
3238
fd39ca9a 3239static struct nfs4_stateid *
1da177e4
LT
3240find_stateid(stateid_t *stid, int flags)
3241{
9346eff0 3242 struct nfs4_stateid *local;
1da177e4
LT
3243 u32 st_id = stid->si_stateownerid;
3244 u32 f_id = stid->si_fileid;
3245 unsigned int hashval;
3246
3247 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
9346eff0 3248 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
1da177e4
LT
3249 hashval = stateid_hashval(st_id, f_id);
3250 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
3251 if ((local->st_stateid.si_stateownerid == st_id) &&
3252 (local->st_stateid.si_fileid == f_id))
3253 return local;
3254 }
3255 }
9346eff0
KK
3256
3257 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
1da177e4
LT
3258 hashval = stateid_hashval(st_id, f_id);
3259 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
3260 if ((local->st_stateid.si_stateownerid == st_id) &&
3261 (local->st_stateid.si_fileid == f_id))
3262 return local;
3263 }
849823c5 3264 }
1da177e4
LT
3265 return NULL;
3266}
3267
3268static struct nfs4_delegation *
3269find_delegation_stateid(struct inode *ino, stateid_t *stid)
3270{
13cd2184
N
3271 struct nfs4_file *fp;
3272 struct nfs4_delegation *dl;
1da177e4 3273
8c10cbdb
BH
3274 dprintk("NFSD: %s: stateid=" STATEID_FMT "\n", __func__,
3275 STATEID_VAL(stid));
1da177e4 3276
1da177e4 3277 fp = find_file(ino);
13cd2184
N
3278 if (!fp)
3279 return NULL;
3280 dl = find_delegation_file(fp, stid);
3281 put_nfs4_file(fp);
3282 return dl;
1da177e4
LT
3283}
3284
3285/*
3286 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3287 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3288 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3289 * locking, this prevents us from being completely protocol-compliant. The
3290 * real solution to this problem is to start using unsigned file offsets in
3291 * the VFS, but this is a very deep change!
3292 */
3293static inline void
3294nfs4_transform_lock_offset(struct file_lock *lock)
3295{
3296 if (lock->fl_start < 0)
3297 lock->fl_start = OFFSET_MAX;
3298 if (lock->fl_end < 0)
3299 lock->fl_end = OFFSET_MAX;
3300}
3301
d5b9026a
N
3302/* Hack!: For now, we're defining this just so we can use a pointer to it
3303 * as a unique cookie to identify our (NFSv4's) posix locks. */
7b021967 3304static const struct lock_manager_operations nfsd_posix_mng_ops = {
d5b9026a 3305};
1da177e4
LT
3306
3307static inline void
3308nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3309{
d5b9026a
N
3310 struct nfs4_stateowner *sop;
3311 unsigned int hval;
1da177e4 3312
d5b9026a
N
3313 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3314 sop = (struct nfs4_stateowner *) fl->fl_owner;
3315 hval = lockownerid_hashval(sop->so_id);
1da177e4
LT
3316 kref_get(&sop->so_ref);
3317 deny->ld_sop = sop;
3318 deny->ld_clientid = sop->so_client->cl_clientid;
d5b9026a
N
3319 } else {
3320 deny->ld_sop = NULL;
3321 deny->ld_clientid.cl_boot = 0;
3322 deny->ld_clientid.cl_id = 0;
1da177e4
LT
3323 }
3324 deny->ld_start = fl->fl_start;
87df4de8
BH
3325 deny->ld_length = NFS4_MAX_UINT64;
3326 if (fl->fl_end != NFS4_MAX_UINT64)
1da177e4
LT
3327 deny->ld_length = fl->fl_end - fl->fl_start + 1;
3328 deny->ld_type = NFS4_READ_LT;
3329 if (fl->fl_type != F_RDLCK)
3330 deny->ld_type = NFS4_WRITE_LT;
3331}
3332
1da177e4
LT
3333static struct nfs4_stateowner *
3334find_lockstateowner_str(struct inode *inode, clientid_t *clid,
3335 struct xdr_netobj *owner)
3336{
3337 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
3338 struct nfs4_stateowner *op;
3339
3340 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
599e0a22 3341 if (same_owner_str(op, owner, clid))
1da177e4
LT
3342 return op;
3343 }
3344 return NULL;
3345}
3346
3347/*
3348 * Alloc a lock owner structure.
3349 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
3350 * occured.
3351 *
3352 * strhashval = lock_ownerstr_hashval
1da177e4
LT
3353 */
3354
3355static struct nfs4_stateowner *
3356alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
3357 struct nfs4_stateowner *sop;
3358 struct nfs4_replay *rp;
3359 unsigned int idhashval;
3360
3361 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
3362 return NULL;
3363 idhashval = lockownerid_hashval(current_ownerid);
3364 INIT_LIST_HEAD(&sop->so_idhash);
3365 INIT_LIST_HEAD(&sop->so_strhash);
3366 INIT_LIST_HEAD(&sop->so_perclient);
ea1da636
N
3367 INIT_LIST_HEAD(&sop->so_stateids);
3368 INIT_LIST_HEAD(&sop->so_perstateid);
1da177e4
LT
3369 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
3370 sop->so_time = 0;
3371 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
3372 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
ea1da636 3373 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
1da177e4
LT
3374 sop->so_is_open_owner = 0;
3375 sop->so_id = current_ownerid++;
3376 sop->so_client = clp;
b59e3c0e
NB
3377 /* It is the openowner seqid that will be incremented in encode in the
3378 * case of new lockowners; so increment the lock seqid manually: */
3379 sop->so_seqid = lock->lk_new_lock_seqid + 1;
1da177e4
LT
3380 sop->so_confirmed = 1;
3381 rp = &sop->so_replay;
de1ae286 3382 rp->rp_status = nfserr_serverfault;
1da177e4
LT
3383 rp->rp_buflen = 0;
3384 rp->rp_buf = rp->rp_ibuf;
3385 return sop;
3386}
3387
fd39ca9a 3388static struct nfs4_stateid *
1da177e4
LT
3389alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
3390{
3391 struct nfs4_stateid *stp;
3392 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
3393
5ac049ac
N
3394 stp = nfs4_alloc_stateid();
3395 if (stp == NULL)
1da177e4
LT
3396 goto out;
3397 INIT_LIST_HEAD(&stp->st_hash);
3398 INIT_LIST_HEAD(&stp->st_perfile);
ea1da636
N
3399 INIT_LIST_HEAD(&stp->st_perstateowner);
3400 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
1da177e4 3401 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
8beefa24 3402 list_add(&stp->st_perfile, &fp->fi_stateids);
ea1da636 3403 list_add(&stp->st_perstateowner, &sop->so_stateids);
1da177e4 3404 stp->st_stateowner = sop;
13cd2184 3405 get_nfs4_file(fp);
1da177e4 3406 stp->st_file = fp;
78155ed7 3407 stp->st_stateid.si_boot = get_seconds();
1da177e4
LT
3408 stp->st_stateid.si_stateownerid = sop->so_id;
3409 stp->st_stateid.si_fileid = fp->fi_id;
3410 stp->st_stateid.si_generation = 0;
3411 stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
3412 stp->st_access_bmap = open_stp->st_access_bmap;
3413 stp->st_deny_bmap = open_stp->st_deny_bmap;
4c4cd222 3414 stp->st_openstp = open_stp;
1da177e4
LT
3415
3416out:
3417 return stp;
3418}
3419
fd39ca9a 3420static int
1da177e4
LT
3421check_lock_length(u64 offset, u64 length)
3422{
87df4de8 3423 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
1da177e4
LT
3424 LOFF_OVERFLOW(offset, length)));
3425}
3426
3427/*
3428 * LOCK operation
3429 */
b37ad28b 3430__be32
ca364317 3431nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 3432 struct nfsd4_lock *lock)
1da177e4 3433{
3e9e3dbe 3434 struct nfs4_stateowner *open_sop = NULL;
b59e3c0e 3435 struct nfs4_stateowner *lock_sop = NULL;
1da177e4
LT
3436 struct nfs4_stateid *lock_stp;
3437 struct file *filp;
3438 struct file_lock file_lock;
8dc7c311 3439 struct file_lock conflock;
b37ad28b 3440 __be32 status = 0;
1da177e4 3441 unsigned int strhashval;
150b3934 3442 unsigned int cmd;
b8dd7b9a 3443 int err;
1da177e4
LT
3444
3445 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3446 (long long) lock->lk_offset,
3447 (long long) lock->lk_length);
3448
1da177e4
LT
3449 if (check_lock_length(lock->lk_offset, lock->lk_length))
3450 return nfserr_inval;
3451
ca364317 3452 if ((status = fh_verify(rqstp, &cstate->current_fh,
8837abca 3453 S_IFREG, NFSD_MAY_LOCK))) {
a6f6ef2f
AA
3454 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3455 return status;
3456 }
3457
1da177e4
LT
3458 nfs4_lock_state();
3459
3460 if (lock->lk_is_new) {
893f8770
N
3461 /*
3462 * Client indicates that this is a new lockowner.
3463 * Use open owner and open stateid to create lock owner and
3464 * lock stateid.
3465 */
1da177e4
LT
3466 struct nfs4_stateid *open_stp = NULL;
3467 struct nfs4_file *fp;
3468
3469 status = nfserr_stale_clientid;
60adfc50
AA
3470 if (!nfsd4_has_session(cstate) &&
3471 STALE_CLIENTID(&lock->lk_new_clientid))
1da177e4 3472 goto out;
1da177e4 3473
1da177e4 3474 /* validate and update open stateid and open seqid */
dd453dfd 3475 status = nfs4_preprocess_seqid_op(cstate,
1da177e4
LT
3476 lock->lk_new_open_seqid,
3477 &lock->lk_new_open_stateid,
f3362737 3478 OPEN_STATE,
3a65588a 3479 &lock->lk_replay_owner, &open_stp,
b59e3c0e 3480 lock);
37515177 3481 if (status)
1da177e4 3482 goto out;
3a65588a 3483 open_sop = lock->lk_replay_owner;
1da177e4
LT
3484 /* create lockowner and lock stateid */
3485 fp = open_stp->st_file;
3486 strhashval = lock_ownerstr_hashval(fp->fi_inode,
3487 open_sop->so_client->cl_clientid.cl_id,
3488 &lock->v.new.owner);
3e9e3dbe
N
3489 /* XXX: Do we need to check for duplicate stateowners on
3490 * the same file, or should they just be allowed (and
3491 * create new stateids)? */
1da177e4 3492 status = nfserr_resource;
b59e3c0e
NB
3493 lock_sop = alloc_init_lock_stateowner(strhashval,
3494 open_sop->so_client, open_stp, lock);
3495 if (lock_sop == NULL)
1da177e4 3496 goto out;
b59e3c0e 3497 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
8a280510 3498 if (lock_stp == NULL)
1da177e4 3499 goto out;
1da177e4
LT
3500 } else {
3501 /* lock (lock owner + lock stateid) already exists */
dd453dfd 3502 status = nfs4_preprocess_seqid_op(cstate,
1da177e4
LT
3503 lock->lk_old_lock_seqid,
3504 &lock->lk_old_lock_stateid,
f3362737 3505 LOCK_STATE,
3a65588a 3506 &lock->lk_replay_owner, &lock_stp, lock);
1da177e4
LT
3507 if (status)
3508 goto out;
3a65588a 3509 lock_sop = lock->lk_replay_owner;
1da177e4 3510 }
3a65588a 3511 /* lock->lk_replay_owner and lock_stp have been created or found */
1da177e4
LT
3512 filp = lock_stp->st_vfs_file;
3513
0dd395dc 3514 status = nfserr_grace;
af558e33 3515 if (locks_in_grace() && !lock->lk_reclaim)
0dd395dc
N
3516 goto out;
3517 status = nfserr_no_grace;
af558e33 3518 if (!locks_in_grace() && lock->lk_reclaim)
0dd395dc
N
3519 goto out;
3520
1da177e4
LT
3521 locks_init_lock(&file_lock);
3522 switch (lock->lk_type) {
3523 case NFS4_READ_LT:
3524 case NFS4_READW_LT:
3525 file_lock.fl_type = F_RDLCK;
150b3934 3526 cmd = F_SETLK;
1da177e4
LT
3527 break;
3528 case NFS4_WRITE_LT:
3529 case NFS4_WRITEW_LT:
3530 file_lock.fl_type = F_WRLCK;
150b3934 3531 cmd = F_SETLK;
1da177e4
LT
3532 break;
3533 default:
3534 status = nfserr_inval;
3535 goto out;
3536 }
b59e3c0e 3537 file_lock.fl_owner = (fl_owner_t)lock_sop;
1da177e4
LT
3538 file_lock.fl_pid = current->tgid;
3539 file_lock.fl_file = filp;
3540 file_lock.fl_flags = FL_POSIX;
d5b9026a 3541 file_lock.fl_lmops = &nfsd_posix_mng_ops;
1da177e4
LT
3542
3543 file_lock.fl_start = lock->lk_offset;
87df4de8 3544 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
1da177e4
LT
3545 nfs4_transform_lock_offset(&file_lock);
3546
3547 /*
3548 * Try to lock the file in the VFS.
3549 * Note: locks.c uses the BKL to protect the inode's lock list.
3550 */
3551
fd85b817 3552 err = vfs_lock_file(filp, cmd, &file_lock, &conflock);
b8dd7b9a 3553 switch (-err) {
1da177e4
LT
3554 case 0: /* success! */
3555 update_stateid(&lock_stp->st_stateid);
3556 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
3557 sizeof(stateid_t));
b8dd7b9a 3558 status = 0;
eb76b3fd
AA
3559 break;
3560 case (EAGAIN): /* conflock holds conflicting lock */
3561 status = nfserr_denied;
3562 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
3563 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
3564 break;
1da177e4
LT
3565 case (EDEADLK):
3566 status = nfserr_deadlock;
eb76b3fd 3567 break;
1da177e4 3568 default:
fd85b817 3569 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
eb76b3fd
AA
3570 status = nfserr_resource;
3571 break;
1da177e4 3572 }
1da177e4 3573out:
8a280510 3574 if (status && lock->lk_is_new && lock_sop)
f044ff83 3575 release_lockowner(lock_sop);
3a65588a
BF
3576 if (lock->lk_replay_owner) {
3577 nfs4_get_stateowner(lock->lk_replay_owner);
a4f1706a 3578 cstate->replay_owner = lock->lk_replay_owner;
f2327d9a 3579 }
1da177e4
LT
3580 nfs4_unlock_state();
3581 return status;
3582}
3583
55ef1274
BF
3584/*
3585 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
3586 * so we do a temporary open here just to get an open file to pass to
3587 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
3588 * inode operation.)
3589 */
3590static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
3591{
3592 struct file *file;
3593 int err;
3594
3595 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
3596 if (err)
3597 return err;
3598 err = vfs_test_lock(file, lock);
3599 nfsd_close(file);
3600 return err;
3601}
3602
1da177e4
LT
3603/*
3604 * LOCKT operation
3605 */
b37ad28b 3606__be32
ca364317
BF
3607nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3608 struct nfsd4_lockt *lockt)
1da177e4
LT
3609{
3610 struct inode *inode;
1da177e4 3611 struct file_lock file_lock;
fd85b817 3612 int error;
b37ad28b 3613 __be32 status;
1da177e4 3614
af558e33 3615 if (locks_in_grace())
1da177e4
LT
3616 return nfserr_grace;
3617
3618 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
3619 return nfserr_inval;
3620
3621 lockt->lt_stateowner = NULL;
3622 nfs4_lock_state();
3623
3624 status = nfserr_stale_clientid;
60adfc50 3625 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
1da177e4 3626 goto out;
1da177e4 3627
ca364317 3628 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) {
849823c5 3629 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
1da177e4
LT
3630 if (status == nfserr_symlink)
3631 status = nfserr_inval;
3632 goto out;
3633 }
3634
ca364317 3635 inode = cstate->current_fh.fh_dentry->d_inode;
1da177e4
LT
3636 locks_init_lock(&file_lock);
3637 switch (lockt->lt_type) {
3638 case NFS4_READ_LT:
3639 case NFS4_READW_LT:
3640 file_lock.fl_type = F_RDLCK;
3641 break;
3642 case NFS4_WRITE_LT:
3643 case NFS4_WRITEW_LT:
3644 file_lock.fl_type = F_WRLCK;
3645 break;
3646 default:
2fdada03 3647 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
1da177e4
LT
3648 status = nfserr_inval;
3649 goto out;
3650 }
3651
3652 lockt->lt_stateowner = find_lockstateowner_str(inode,
3653 &lockt->lt_clientid, &lockt->lt_owner);
3654 if (lockt->lt_stateowner)
3655 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
3656 file_lock.fl_pid = current->tgid;
3657 file_lock.fl_flags = FL_POSIX;
3658
3659 file_lock.fl_start = lockt->lt_offset;
87df4de8 3660 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
1da177e4
LT
3661
3662 nfs4_transform_lock_offset(&file_lock);
3663
1da177e4 3664 status = nfs_ok;
55ef1274 3665 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
fd85b817
ME
3666 if (error) {
3667 status = nfserrno(error);
3668 goto out;
3669 }
9d6a8c5c 3670 if (file_lock.fl_type != F_UNLCK) {
1da177e4 3671 status = nfserr_denied;
9d6a8c5c 3672 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
1da177e4
LT
3673 }
3674out:
3675 nfs4_unlock_state();
3676 return status;
3677}
3678
b37ad28b 3679__be32
ca364317 3680nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 3681 struct nfsd4_locku *locku)
1da177e4
LT
3682{
3683 struct nfs4_stateid *stp;
3684 struct file *filp = NULL;
3685 struct file_lock file_lock;
b37ad28b 3686 __be32 status;
b8dd7b9a 3687 int err;
1da177e4
LT
3688
3689 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
3690 (long long) locku->lu_offset,
3691 (long long) locku->lu_length);
3692
3693 if (check_lock_length(locku->lu_offset, locku->lu_length))
3694 return nfserr_inval;
3695
3696 nfs4_lock_state();
3697
dd453dfd 3698 if ((status = nfs4_preprocess_seqid_op(cstate,
1da177e4
LT
3699 locku->lu_seqid,
3700 &locku->lu_stateid,
f3362737 3701 LOCK_STATE,
1da177e4
LT
3702 &locku->lu_stateowner, &stp, NULL)))
3703 goto out;
3704
3705 filp = stp->st_vfs_file;
3706 BUG_ON(!filp);
3707 locks_init_lock(&file_lock);
3708 file_lock.fl_type = F_UNLCK;
3709 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
3710 file_lock.fl_pid = current->tgid;
3711 file_lock.fl_file = filp;
3712 file_lock.fl_flags = FL_POSIX;
d5b9026a 3713 file_lock.fl_lmops = &nfsd_posix_mng_ops;
1da177e4
LT
3714 file_lock.fl_start = locku->lu_offset;
3715
87df4de8 3716 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
1da177e4
LT
3717 nfs4_transform_lock_offset(&file_lock);
3718
3719 /*
3720 * Try to unlock the file in the VFS.
3721 */
fd85b817 3722 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
b8dd7b9a 3723 if (err) {
fd85b817 3724 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
1da177e4
LT
3725 goto out_nfserr;
3726 }
3727 /*
3728 * OK, unlock succeeded; the only thing left to do is update the stateid.
3729 */
3730 update_stateid(&stp->st_stateid);
3731 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
3732
3733out:
f2327d9a 3734 if (locku->lu_stateowner) {
1da177e4 3735 nfs4_get_stateowner(locku->lu_stateowner);
a4f1706a 3736 cstate->replay_owner = locku->lu_stateowner;
f2327d9a 3737 }
1da177e4
LT
3738 nfs4_unlock_state();
3739 return status;
3740
3741out_nfserr:
b8dd7b9a 3742 status = nfserrno(err);
1da177e4
LT
3743 goto out;
3744}
3745
3746/*
3747 * returns
3748 * 1: locks held by lockowner
3749 * 0: no locks held by lockowner
3750 */
3751static int
3752check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
3753{
3754 struct file_lock **flpp;
7eaa36e2 3755 struct inode *inode = filp->f_path.dentry->d_inode;
1da177e4
LT
3756 int status = 0;
3757
3758 lock_kernel();
3759 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
796dadfd 3760 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
1da177e4
LT
3761 status = 1;
3762 goto out;
796dadfd 3763 }
1da177e4
LT
3764 }
3765out:
3766 unlock_kernel();
3767 return status;
3768}
3769
b37ad28b 3770__be32
b591480b
BF
3771nfsd4_release_lockowner(struct svc_rqst *rqstp,
3772 struct nfsd4_compound_state *cstate,
3773 struct nfsd4_release_lockowner *rlockowner)
1da177e4
LT
3774{
3775 clientid_t *clid = &rlockowner->rl_clientid;
3e9e3dbe
N
3776 struct nfs4_stateowner *sop;
3777 struct nfs4_stateid *stp;
1da177e4 3778 struct xdr_netobj *owner = &rlockowner->rl_owner;
3e9e3dbe
N
3779 struct list_head matches;
3780 int i;
b37ad28b 3781 __be32 status;
1da177e4
LT
3782
3783 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3784 clid->cl_boot, clid->cl_id);
3785
3786 /* XXX check for lease expiration */
3787
3788 status = nfserr_stale_clientid;
849823c5 3789 if (STALE_CLIENTID(clid))
1da177e4 3790 return status;
1da177e4
LT
3791
3792 nfs4_lock_state();
3793
3e9e3dbe
N
3794 status = nfserr_locks_held;
3795 /* XXX: we're doing a linear search through all the lockowners.
3796 * Yipes! For now we'll just hope clients aren't really using
3797 * release_lockowner much, but eventually we have to fix these
3798 * data structures. */
3799 INIT_LIST_HEAD(&matches);
3800 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3801 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
599e0a22 3802 if (!same_owner_str(sop, owner, clid))
3e9e3dbe
N
3803 continue;
3804 list_for_each_entry(stp, &sop->so_stateids,
3805 st_perstateowner) {
3806 if (check_for_locks(stp->st_vfs_file, sop))
3807 goto out;
3808 /* Note: so_perclient unused for lockowners,
3809 * so it's OK to fool with here. */
3810 list_add(&sop->so_perclient, &matches);
3811 }
1da177e4 3812 }
3e9e3dbe
N
3813 }
3814 /* Clients probably won't expect us to return with some (but not all)
3815 * of the lockowner state released; so don't release any until all
3816 * have been checked. */
3817 status = nfs_ok;
0fa822e4
N
3818 while (!list_empty(&matches)) {
3819 sop = list_entry(matches.next, struct nfs4_stateowner,
3820 so_perclient);
3821 /* unhash_stateowner deletes so_perclient only
3822 * for openowners. */
3823 list_del(&sop->so_perclient);
f044ff83 3824 release_lockowner(sop);
1da177e4
LT
3825 }
3826out:
3827 nfs4_unlock_state();
3828 return status;
3829}
3830
3831static inline struct nfs4_client_reclaim *
a55370a3 3832alloc_reclaim(void)
1da177e4 3833{
a55370a3 3834 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
1da177e4
LT
3835}
3836
c7b9a459 3837int
a1bcecd2 3838nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
c7b9a459
N
3839{
3840 unsigned int strhashval = clientstr_hashval(name);
3841 struct nfs4_client *clp;
3842
a1bcecd2 3843 clp = find_confirmed_client_by_str(name, strhashval, use_exchange_id);
c7b9a459
N
3844 return clp ? 1 : 0;
3845}
3846
1da177e4
LT
3847/*
3848 * failure => all reset bets are off, nfserr_no_grace...
3849 */
190e4fbf
N
3850int
3851nfs4_client_to_reclaim(const char *name)
1da177e4
LT
3852{
3853 unsigned int strhashval;
3854 struct nfs4_client_reclaim *crp = NULL;
3855
a55370a3
N
3856 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
3857 crp = alloc_reclaim();
1da177e4
LT
3858 if (!crp)
3859 return 0;
a55370a3 3860 strhashval = clientstr_hashval(name);
1da177e4
LT
3861 INIT_LIST_HEAD(&crp->cr_strhash);
3862 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
a55370a3 3863 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
1da177e4
LT
3864 reclaim_str_hashtbl_size++;
3865 return 1;
3866}
3867
3868static void
3869nfs4_release_reclaim(void)
3870{
3871 struct nfs4_client_reclaim *crp = NULL;
3872 int i;
3873
1da177e4
LT
3874 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3875 while (!list_empty(&reclaim_str_hashtbl[i])) {
3876 crp = list_entry(reclaim_str_hashtbl[i].next,
3877 struct nfs4_client_reclaim, cr_strhash);
3878 list_del(&crp->cr_strhash);
1da177e4
LT
3879 kfree(crp);
3880 reclaim_str_hashtbl_size--;
3881 }
3882 }
3883 BUG_ON(reclaim_str_hashtbl_size);
3884}
3885
3886/*
3887 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
fd39ca9a 3888static struct nfs4_client_reclaim *
1da177e4
LT
3889nfs4_find_reclaim_client(clientid_t *clid)
3890{
3891 unsigned int strhashval;
3892 struct nfs4_client *clp;
3893 struct nfs4_client_reclaim *crp = NULL;
3894
3895
3896 /* find clientid in conf_id_hashtbl */
3897 clp = find_confirmed_client(clid);
3898 if (clp == NULL)
3899 return NULL;
3900
a55370a3
N
3901 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3902 clp->cl_name.len, clp->cl_name.data,
3903 clp->cl_recdir);
1da177e4
LT
3904
3905 /* find clp->cl_name in reclaim_str_hashtbl */
a55370a3 3906 strhashval = clientstr_hashval(clp->cl_recdir);
1da177e4 3907 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
a55370a3 3908 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
1da177e4
LT
3909 return crp;
3910 }
3911 }
3912 return NULL;
3913}
3914
3915/*
3916* Called from OPEN. Look for clientid in reclaim list.
3917*/
b37ad28b 3918__be32
1da177e4
LT
3919nfs4_check_open_reclaim(clientid_t *clid)
3920{
dfc83565 3921 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
1da177e4
LT
3922}
3923
ac4d8ff2 3924/* initialization to perform at module load time: */
1da177e4 3925
e8ff2a84 3926int
ac4d8ff2 3927nfs4_state_init(void)
1da177e4 3928{
e8ff2a84 3929 int i, status;
1da177e4 3930
e8ff2a84
BF
3931 status = nfsd4_init_slabs();
3932 if (status)
3933 return status;
1da177e4
LT
3934 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3935 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
3936 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
3937 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
3938 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
02cb2858 3939 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
1da177e4 3940 }
5282fd72
ME
3941 for (i = 0; i < SESSION_HASH_SIZE; i++)
3942 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
1da177e4
LT
3943 for (i = 0; i < FILE_HASH_SIZE; i++) {
3944 INIT_LIST_HEAD(&file_hashtbl[i]);
3945 }
3946 for (i = 0; i < OWNER_HASH_SIZE; i++) {
3947 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
3948 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
3949 }
3950 for (i = 0; i < STATEID_HASH_SIZE; i++) {
3951 INIT_LIST_HEAD(&stateid_hashtbl[i]);
3952 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
3953 }
3954 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3955 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
3956 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
3957 }
1da177e4 3958 memset(&onestateid, ~0, sizeof(stateid_t));
1da177e4
LT
3959 INIT_LIST_HEAD(&close_lru);
3960 INIT_LIST_HEAD(&client_lru);
3961 INIT_LIST_HEAD(&del_recall_lru);
ac4d8ff2 3962 reclaim_str_hashtbl_size = 0;
e8ff2a84 3963 return 0;
ac4d8ff2
N
3964}
3965
190e4fbf
N
3966static void
3967nfsd4_load_reboot_recovery_data(void)
3968{
3969 int status;
3970
0964a3d3
N
3971 nfs4_lock_state();
3972 nfsd4_init_recdir(user_recovery_dirname);
190e4fbf 3973 status = nfsd4_recdir_load();
0964a3d3 3974 nfs4_unlock_state();
190e4fbf
N
3975 if (status)
3976 printk("NFSD: Failure reading reboot recovery data\n");
3977}
3978
9a8db97e
ME
3979unsigned long
3980get_nfs4_grace_period(void)
3981{
3982 return max(user_lease_time, lease_time) * HZ;
3983}
3984
c2f1a551
MS
3985/*
3986 * Since the lifetime of a delegation isn't limited to that of an open, a
3987 * client may quite reasonably hang on to a delegation as long as it has
3988 * the inode cached. This becomes an obvious problem the first time a
3989 * client's inode cache approaches the size of the server's total memory.
3990 *
3991 * For now we avoid this problem by imposing a hard limit on the number
3992 * of delegations, which varies according to the server's memory size.
3993 */
3994static void
3995set_max_delegations(void)
3996{
3997 /*
3998 * Allow at most 4 delegations per megabyte of RAM. Quick
3999 * estimates suggest that in the worst case (where every delegation
4000 * is for a different inode), a delegation could take about 1.5K,
4001 * giving a worst case usage of about 6% of memory.
4002 */
4003 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4004}
4005
ac4d8ff2
N
4006/* initialization to perform when the nfsd service is started: */
4007
29ab23cc 4008static int
ac4d8ff2
N
4009__nfs4_state_start(void)
4010{
9a8db97e 4011 unsigned long grace_time;
ac4d8ff2 4012
1da177e4 4013 boot_time = get_seconds();
af558e33 4014 grace_time = get_nfs4_grace_period();
d99a05ad 4015 lease_time = user_lease_time;
af558e33 4016 locks_start_grace(&nfsd4_manager);
9a8db97e
ME
4017 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
4018 grace_time/HZ);
58da282b 4019 laundry_wq = create_singlethread_workqueue("nfsd4");
29ab23cc
BF
4020 if (laundry_wq == NULL)
4021 return -ENOMEM;
9a8db97e 4022 queue_delayed_work(laundry_wq, &laundromat_work, grace_time);
c2f1a551 4023 set_max_delegations();
80fc015b 4024 return set_callback_cred();
1da177e4
LT
4025}
4026
29ab23cc 4027int
76a3550e 4028nfs4_state_start(void)
1da177e4 4029{
29ab23cc
BF
4030 int ret;
4031
1da177e4 4032 if (nfs4_init)
29ab23cc 4033 return 0;
190e4fbf 4034 nfsd4_load_reboot_recovery_data();
29ab23cc
BF
4035 ret = __nfs4_state_start();
4036 if (ret)
4037 return ret;
1da177e4 4038 nfs4_init = 1;
29ab23cc 4039 return 0;
1da177e4
LT
4040}
4041
1da177e4
LT
4042time_t
4043nfs4_lease_time(void)
4044{
4045 return lease_time;
4046}
4047
4048static void
4049__nfs4_state_shutdown(void)
4050{
4051 int i;
4052 struct nfs4_client *clp = NULL;
4053 struct nfs4_delegation *dp = NULL;
1da177e4
LT
4054 struct list_head *pos, *next, reaplist;
4055
1da177e4
LT
4056 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4057 while (!list_empty(&conf_id_hashtbl[i])) {
4058 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4059 expire_client(clp);
4060 }
4061 while (!list_empty(&unconf_str_hashtbl[i])) {
4062 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4063 expire_client(clp);
4064 }
4065 }
4066 INIT_LIST_HEAD(&reaplist);
4067 spin_lock(&recall_lock);
4068 list_for_each_safe(pos, next, &del_recall_lru) {
4069 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4070 list_move(&dp->dl_recall_lru, &reaplist);
4071 }
4072 spin_unlock(&recall_lock);
4073 list_for_each_safe(pos, next, &reaplist) {
4074 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4075 list_del_init(&dp->dl_recall_lru);
4076 unhash_delegation(dp);
4077 }
4078
190e4fbf 4079 nfsd4_shutdown_recdir();
1da177e4 4080 nfs4_init = 0;
1da177e4
LT
4081}
4082
4083void
4084nfs4_state_shutdown(void)
4085{
5e8d5c29
N
4086 cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work);
4087 destroy_workqueue(laundry_wq);
2c5e7615 4088 locks_end_grace(&nfsd4_manager);
1da177e4
LT
4089 nfs4_lock_state();
4090 nfs4_release_reclaim();
4091 __nfs4_state_shutdown();
1da177e4
LT
4092 nfs4_unlock_state();
4093}
4094
3dd98a3b
JL
4095/*
4096 * user_recovery_dirname is protected by the nfsd_mutex since it's only
4097 * accessed when nfsd is starting.
4098 */
0964a3d3
N
4099static void
4100nfs4_set_recdir(char *recdir)
4101{
0964a3d3 4102 strcpy(user_recovery_dirname, recdir);
0964a3d3
N
4103}
4104
4105/*
4106 * Change the NFSv4 recovery directory to recdir.
4107 */
4108int
4109nfs4_reset_recoverydir(char *recdir)
4110{
4111 int status;
a63bb996 4112 struct path path;
0964a3d3 4113
a63bb996 4114 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
0964a3d3
N
4115 if (status)
4116 return status;
4117 status = -ENOTDIR;
a63bb996 4118 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
0964a3d3
N
4119 nfs4_set_recdir(recdir);
4120 status = 0;
4121 }
a63bb996 4122 path_put(&path);
0964a3d3
N
4123 return status;
4124}
4125
3dd98a3b
JL
4126char *
4127nfs4_recoverydir(void)
4128{
4129 return user_recovery_dirname;
4130}
4131
1da177e4
LT
4132/*
4133 * Called when leasetime is changed.
4134 *
d99a05ad
N
4135 * The only way the protocol gives us to handle on-the-fly lease changes is to
4136 * simulate a reboot. Instead of doing that, we just wait till the next time
4137 * we start to register any changes in lease time. If the administrator
4138 * really wants to change the lease time *now*, they can go ahead and bring
4139 * nfsd down and then back up again after changing the lease time.
3dd98a3b
JL
4140 *
4141 * user_lease_time is protected by nfsd_mutex since it's only really accessed
4142 * when nfsd is starting
1da177e4
LT
4143 */
4144void
4145nfs4_reset_lease(time_t leasetime)
4146{
d99a05ad 4147 user_lease_time = leasetime;
1da177e4 4148}