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