blob: d7b5e6b89207a973b5ed27f8017520b0b8dbdce6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Dave Hansenaceaf782008-02-15 14:37:31 -080044#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#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>
NeilBrown0964a3d2005-06-23 22:04:32 -070052#include <linux/namei.h>
Meelap Shahc2f1a552007-07-17 04:04:39 -070053#include <linux/swap.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080054#include <linux/mutex.h>
Marc Eshelfd85b812006-11-28 16:26:41 -050055#include <linux/lockd/bind.h>
Marc Eshel9a8db972007-07-17 04:04:35 -070056#include <linux/module.h>
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -050057#include <linux/sunrpc/svcauth_gss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define NFSDDBG_FACILITY NFSDDBG_PROC
60
61/* Globals */
62static time_t lease_time = 90; /* default lease time */
NeilBrownd99a05a2005-06-23 22:03:21 -070063static time_t user_lease_time = 90;
NeilBrownfd39ca92005-06-23 22:04:03 -070064static time_t boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static u32 current_ownerid = 1;
66static u32 current_fileid = 1;
67static u32 current_delegid = 1;
68static u32 nfs4_init;
NeilBrownfd39ca92005-06-23 22:04:03 -070069static stateid_t zerostateid; /* bits all 0 */
70static stateid_t onestateid; /* bits all 1 */
Andy Adamsonec6b5d72009-04-03 08:28:28 +030071static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070072
73#define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
74#define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* forward declarations */
NeilBrownfd39ca92005-06-23 22:04:03 -070077static struct nfs4_stateid * find_stateid(stateid_t *stid, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
NeilBrown0964a3d2005-06-23 22:04:32 -070079static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
80static void nfs4_set_recdir(char *recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
J. Bruce Fields8b671b82009-02-22 14:51:34 -080082/* Locking: */
83
84/* Currently used for almost all code touching nfsv4 state: */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080085static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
J. Bruce Fields8b671b82009-02-22 14:51:34 -080087/*
88 * Currently used for the del_recall_lru and file hash table. In an
89 * effort to decrease the scope of the client_mutex, this spinlock may
90 * eventually cover more:
91 */
92static DEFINE_SPINLOCK(recall_lock);
93
Christoph Lametere18b8902006-12-06 20:33:20 -080094static struct kmem_cache *stateowner_slab = NULL;
95static struct kmem_cache *file_slab = NULL;
96static struct kmem_cache *stateid_slab = NULL;
97static struct kmem_cache *deleg_slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099void
100nfs4_lock_state(void)
101{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800102 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
105void
106nfs4_unlock_state(void)
107{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800108 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
111static inline u32
112opaque_hashval(const void *ptr, int nbytes)
113{
114 unsigned char *cptr = (unsigned char *) ptr;
115
116 u32 x = 0;
117 while (nbytes--) {
118 x *= 37;
119 x += *cptr++;
120 }
121 return x;
122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static struct list_head del_recall_lru;
125
NeilBrown13cd2182005-06-23 22:03:10 -0700126static inline void
127put_nfs4_file(struct nfs4_file *fi)
128{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800129 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
130 list_del(&fi->fi_hash);
131 spin_unlock(&recall_lock);
132 iput(fi->fi_inode);
133 kmem_cache_free(file_slab, fi);
134 }
NeilBrown13cd2182005-06-23 22:03:10 -0700135}
136
137static inline void
138get_nfs4_file(struct nfs4_file *fi)
139{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800140 atomic_inc(&fi->fi_ref);
NeilBrown13cd2182005-06-23 22:03:10 -0700141}
142
NeilBrownef0f3392006-04-10 22:55:41 -0700143static int num_delegations;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700144unsigned int max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700145
146/*
147 * Open owner state (share locks)
148 */
149
150/* hash tables for nfs4_stateowner */
151#define OWNER_HASH_BITS 8
152#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
153#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
154
155#define ownerid_hashval(id) \
156 ((id) & OWNER_HASH_MASK)
157#define ownerstr_hashval(clientid, ownername) \
158 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
159
160static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE];
161static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
162
163/* hash table for nfs4_file */
164#define FILE_HASH_BITS 8
165#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
166#define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
167/* hash table for (open)nfs4_stateid */
168#define STATEID_HASH_BITS 10
169#define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
170#define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
171
172#define file_hashval(x) \
173 hash_ptr(x, FILE_HASH_BITS)
174#define stateid_hashval(owner_id, file_id) \
175 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
176
177static struct list_head file_hashtbl[FILE_HASH_SIZE];
178static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static struct nfs4_delegation *
181alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
182{
183 struct nfs4_delegation *dp;
184 struct nfs4_file *fp = stp->st_file;
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400185 struct nfs4_cb_conn *cb = &stp->st_stateowner->so_client->cl_cb_conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 dprintk("NFSD alloc_init_deleg\n");
Meelap Shah47f99402007-07-17 04:04:40 -0700188 if (fp->fi_had_conflict)
189 return NULL;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700190 if (num_delegations > max_delegations)
NeilBrownef0f3392006-04-10 22:55:41 -0700191 return NULL;
NeilBrown5b2d21c2005-06-23 22:03:04 -0700192 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
193 if (dp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return dp;
NeilBrownef0f3392006-04-10 22:55:41 -0700195 num_delegations++;
NeilBrownea1da632005-06-23 22:04:17 -0700196 INIT_LIST_HEAD(&dp->dl_perfile);
197 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 INIT_LIST_HEAD(&dp->dl_recall_lru);
199 dp->dl_client = clp;
NeilBrown13cd2182005-06-23 22:03:10 -0700200 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 dp->dl_file = fp;
202 dp->dl_flock = NULL;
203 get_file(stp->st_vfs_file);
204 dp->dl_vfs_file = stp->st_vfs_file;
205 dp->dl_type = type;
206 dp->dl_recall.cbr_dp = NULL;
207 dp->dl_recall.cbr_ident = cb->cb_ident;
208 dp->dl_recall.cbr_trunc = 0;
Bian Naimeng78155ed2009-04-22 18:25:37 +0800209 dp->dl_stateid.si_boot = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 dp->dl_stateid.si_stateownerid = current_delegid++;
211 dp->dl_stateid.si_fileid = 0;
212 dp->dl_stateid.si_generation = 0;
J. Bruce Fields6c02eaa2009-02-02 17:30:51 -0500213 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 dp->dl_time = 0;
215 atomic_set(&dp->dl_count, 1);
NeilBrownea1da632005-06-23 22:04:17 -0700216 list_add(&dp->dl_perfile, &fp->fi_delegations);
217 list_add(&dp->dl_perclnt, &clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return dp;
219}
220
221void
222nfs4_put_delegation(struct nfs4_delegation *dp)
223{
224 if (atomic_dec_and_test(&dp->dl_count)) {
225 dprintk("NFSD: freeing dp %p\n",dp);
NeilBrown13cd2182005-06-23 22:03:10 -0700226 put_nfs4_file(dp->dl_file);
NeilBrown5b2d21c2005-06-23 22:03:04 -0700227 kmem_cache_free(deleg_slab, dp);
NeilBrownef0f3392006-04-10 22:55:41 -0700228 num_delegations--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230}
231
232/* Remove the associated file_lock first, then remove the delegation.
233 * lease_modify() is called to remove the FS_LEASE file_lock from
234 * the i_flock list, eventually calling nfsd's lock_manager
235 * fl_release_callback.
236 */
237static void
238nfs4_close_delegation(struct nfs4_delegation *dp)
239{
240 struct file *filp = dp->dl_vfs_file;
241
242 dprintk("NFSD: close_delegation dp %p\n",dp);
243 dp->dl_vfs_file = NULL;
244 /* The following nfsd_close may not actually close the file,
245 * but we want to remove the lease in any case. */
NeilBrownc9071322005-04-16 15:26:38 -0700246 if (dp->dl_flock)
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -0400247 vfs_setlease(filp, F_UNLCK, &dp->dl_flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 nfsd_close(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251/* Called under the state lock. */
252static void
253unhash_delegation(struct nfs4_delegation *dp)
254{
NeilBrownea1da632005-06-23 22:04:17 -0700255 list_del_init(&dp->dl_perfile);
256 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 spin_lock(&recall_lock);
258 list_del_init(&dp->dl_recall_lru);
259 spin_unlock(&recall_lock);
260 nfs4_close_delegation(dp);
261 nfs4_put_delegation(dp);
262}
263
264/*
265 * SETCLIENTID state
266 */
267
268/* Hash tables for nfs4_clientid state */
269#define CLIENT_HASH_BITS 4
270#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
271#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
272
273#define clientid_hashval(id) \
274 ((id) & CLIENT_HASH_MASK)
NeilBrowna55370a2005-06-23 22:03:52 -0700275#define clientstr_hashval(name) \
276 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/*
278 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
279 * used in reboot/reset lease grace period processing
280 *
281 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
282 * setclientid_confirmed info.
283 *
284 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
285 * setclientid info.
286 *
287 * client_lru holds client queue ordered by nfs4_client.cl_time
288 * for lease renewal.
289 *
290 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
291 * for last close replay.
292 */
293static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
294static int reclaim_str_hashtbl_size = 0;
295static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
296static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
297static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
298static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
299static struct list_head client_lru;
300static struct list_head close_lru;
301
J. Bruce Fields22839632009-01-11 14:27:17 -0500302static void unhash_generic_stateid(struct nfs4_stateid *stp)
303{
304 list_del(&stp->st_hash);
305 list_del(&stp->st_perfile);
306 list_del(&stp->st_perstateowner);
307}
308
309static void free_generic_stateid(struct nfs4_stateid *stp)
310{
311 put_nfs4_file(stp->st_file);
312 kmem_cache_free(stateid_slab, stp);
313}
314
315static void release_lock_stateid(struct nfs4_stateid *stp)
316{
317 unhash_generic_stateid(stp);
318 locks_remove_posix(stp->st_vfs_file, (fl_owner_t)stp->st_stateowner);
319 free_generic_stateid(stp);
320}
321
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500322static void unhash_lockowner(struct nfs4_stateowner *sop)
323{
324 struct nfs4_stateid *stp;
325
326 list_del(&sop->so_idhash);
327 list_del(&sop->so_strhash);
328 list_del(&sop->so_perstateid);
329 while (!list_empty(&sop->so_stateids)) {
330 stp = list_first_entry(&sop->so_stateids,
331 struct nfs4_stateid, st_perstateowner);
332 release_lock_stateid(stp);
333 }
334}
335
336static void release_lockowner(struct nfs4_stateowner *sop)
337{
338 unhash_lockowner(sop);
339 nfs4_put_stateowner(sop);
340}
341
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500342static void
343release_stateid_lockowners(struct nfs4_stateid *open_stp)
344{
345 struct nfs4_stateowner *lock_sop;
346
347 while (!list_empty(&open_stp->st_lockowners)) {
348 lock_sop = list_entry(open_stp->st_lockowners.next,
349 struct nfs4_stateowner, so_perstateid);
350 /* list_del(&open_stp->st_lockowners); */
351 BUG_ON(lock_sop->so_is_open_owner);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500352 release_lockowner(lock_sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500353 }
354}
355
J. Bruce Fields22839632009-01-11 14:27:17 -0500356static void release_open_stateid(struct nfs4_stateid *stp)
357{
358 unhash_generic_stateid(stp);
359 release_stateid_lockowners(stp);
360 nfsd_close(stp->st_vfs_file);
361 free_generic_stateid(stp);
362}
363
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500364static void unhash_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500365{
366 struct nfs4_stateid *stp;
367
368 list_del(&sop->so_idhash);
369 list_del(&sop->so_strhash);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500370 list_del(&sop->so_perclient);
371 list_del(&sop->so_perstateid); /* XXX: necessary? */
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500372 while (!list_empty(&sop->so_stateids)) {
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500373 stp = list_first_entry(&sop->so_stateids,
374 struct nfs4_stateid, st_perstateowner);
375 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500376 }
377}
378
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500379static void release_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500380{
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500381 unhash_openowner(sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500382 list_del(&sop->so_close_lru);
383 nfs4_put_stateowner(sop);
384}
385
Marc Eshel5282fd72009-04-03 08:27:52 +0300386static DEFINE_SPINLOCK(sessionid_lock);
387#define SESSION_HASH_SIZE 512
388static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
389
390static inline int
391hash_sessionid(struct nfs4_sessionid *sessionid)
392{
393 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
394
395 return sid->sequence % SESSION_HASH_SIZE;
396}
397
398static inline void
399dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
400{
401 u32 *ptr = (u32 *)(&sessionid->data[0]);
402 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
403}
404
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300405static void
406gen_sessionid(struct nfsd4_session *ses)
407{
408 struct nfs4_client *clp = ses->se_client;
409 struct nfsd4_sessionid *sid;
410
411 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
412 sid->clientid = clp->cl_clientid;
413 sid->sequence = current_sessionid++;
414 sid->reserved = 0;
415}
416
417/*
418 * Give the client the number of slots it requests bound by
419 * NFSD_MAX_SLOTS_PER_SESSION and by sv_drc_max_pages.
420 *
421 * If we run out of pages (sv_drc_pages_used == sv_drc_max_pages) we
422 * should (up to a point) re-negotiate active sessions and reduce their
423 * slot usage to make rooom for new connections. For now we just fail the
424 * create session.
425 */
426static int set_forechannel_maxreqs(struct nfsd4_channel_attrs *fchan)
427{
428 int status = 0, np = fchan->maxreqs * NFSD_PAGES_PER_SLOT;
429
430 spin_lock(&nfsd_serv->sv_lock);
431 if (np + nfsd_serv->sv_drc_pages_used > nfsd_serv->sv_drc_max_pages)
432 np = nfsd_serv->sv_drc_max_pages - nfsd_serv->sv_drc_pages_used;
433 nfsd_serv->sv_drc_pages_used += np;
434 spin_unlock(&nfsd_serv->sv_lock);
435
436 if (np <= 0) {
437 status = nfserr_resource;
438 fchan->maxreqs = 0;
439 } else
440 fchan->maxreqs = np / NFSD_PAGES_PER_SLOT;
441
442 return status;
443}
444
445/*
446 * fchan holds the client values on input, and the server values on output
447 */
448static int init_forechannel_attrs(struct svc_rqst *rqstp,
449 struct nfsd4_session *session,
450 struct nfsd4_channel_attrs *fchan)
451{
452 int status = 0;
453 __u32 maxcount = svc_max_payload(rqstp);
454
455 /* headerpadsz set to zero in encode routine */
456
457 /* Use the client's max request and max response size if possible */
458 if (fchan->maxreq_sz > maxcount)
459 fchan->maxreq_sz = maxcount;
460 session->se_fmaxreq_sz = fchan->maxreq_sz;
461
462 if (fchan->maxresp_sz > maxcount)
463 fchan->maxresp_sz = maxcount;
464 session->se_fmaxresp_sz = fchan->maxresp_sz;
465
466 /* Set the max response cached size our default which is
467 * a multiple of PAGE_SIZE and small */
468 session->se_fmaxresp_cached = NFSD_PAGES_PER_SLOT * PAGE_SIZE;
469 fchan->maxresp_cached = session->se_fmaxresp_cached;
470
471 /* Use the client's maxops if possible */
472 if (fchan->maxops > NFSD_MAX_OPS_PER_COMPOUND)
473 fchan->maxops = NFSD_MAX_OPS_PER_COMPOUND;
474 session->se_fmaxops = fchan->maxops;
475
476 /* try to use the client requested number of slots */
477 if (fchan->maxreqs > NFSD_MAX_SLOTS_PER_SESSION)
478 fchan->maxreqs = NFSD_MAX_SLOTS_PER_SESSION;
479
480 /* FIXME: Error means no more DRC pages so the server should
481 * recover pages from existing sessions. For now fail session
482 * creation.
483 */
484 status = set_forechannel_maxreqs(fchan);
485
486 session->se_fnumslots = fchan->maxreqs;
487 return status;
488}
489
490static int
491alloc_init_session(struct svc_rqst *rqstp, struct nfs4_client *clp,
492 struct nfsd4_create_session *cses)
493{
494 struct nfsd4_session *new, tmp;
495 int idx, status = nfserr_resource, slotsize;
496
497 memset(&tmp, 0, sizeof(tmp));
498
499 /* FIXME: For now, we just accept the client back channel attributes. */
500 status = init_forechannel_attrs(rqstp, &tmp, &cses->fore_channel);
501 if (status)
502 goto out;
503
504 /* allocate struct nfsd4_session and slot table in one piece */
505 slotsize = tmp.se_fnumslots * sizeof(struct nfsd4_slot);
506 new = kzalloc(sizeof(*new) + slotsize, GFP_KERNEL);
507 if (!new)
508 goto out;
509
510 memcpy(new, &tmp, sizeof(*new));
511
512 new->se_client = clp;
513 gen_sessionid(new);
514 idx = hash_sessionid(&new->se_sessionid);
515 memcpy(clp->cl_sessionid.data, new->se_sessionid.data,
516 NFS4_MAX_SESSIONID_LEN);
517
518 new->se_flags = cses->flags;
519 kref_init(&new->se_ref);
520 spin_lock(&sessionid_lock);
521 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
522 list_add(&new->se_perclnt, &clp->cl_sessions);
523 spin_unlock(&sessionid_lock);
524
525 status = nfs_ok;
526out:
527 return status;
528}
529
Marc Eshel5282fd72009-04-03 08:27:52 +0300530/* caller must hold sessionid_lock */
531static struct nfsd4_session *
532find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
533{
534 struct nfsd4_session *elem;
535 int idx;
536
537 dump_sessionid(__func__, sessionid);
538 idx = hash_sessionid(sessionid);
539 dprintk("%s: idx is %d\n", __func__, idx);
540 /* Search in the appropriate list */
541 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
542 dump_sessionid("list traversal", &elem->se_sessionid);
543 if (!memcmp(elem->se_sessionid.data, sessionid->data,
544 NFS4_MAX_SESSIONID_LEN)) {
545 return elem;
546 }
547 }
548
549 dprintk("%s: session not found\n", __func__);
550 return NULL;
551}
552
553/* caller must hold sessionid_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +0300554static void
Marc Eshel5282fd72009-04-03 08:27:52 +0300555unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +0300556{
557 list_del(&ses->se_hash);
558 list_del(&ses->se_perclnt);
Marc Eshel5282fd72009-04-03 08:27:52 +0300559}
560
561static void
562release_session(struct nfsd4_session *ses)
563{
564 spin_lock(&sessionid_lock);
565 unhash_session(ses);
566 spin_unlock(&sessionid_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +0300567 nfsd4_put_session(ses);
568}
569
Andy Adamson14778a12009-04-03 08:28:25 +0300570static void nfsd4_release_respages(struct page **respages, short resused);
571
Andy Adamson7116ed62009-04-03 08:27:43 +0300572void
573free_session(struct kref *kref)
574{
575 struct nfsd4_session *ses;
Andy Adamson14778a12009-04-03 08:28:25 +0300576 int i;
Andy Adamson7116ed62009-04-03 08:27:43 +0300577
578 ses = container_of(kref, struct nfsd4_session, se_ref);
Andy Adamson14778a12009-04-03 08:28:25 +0300579 for (i = 0; i < ses->se_fnumslots; i++) {
580 struct nfsd4_cache_entry *e = &ses->se_slots[i].sl_cache_entry;
581 nfsd4_release_respages(e->ce_respages, e->ce_resused);
582 }
Andy Adamson7116ed62009-04-03 08:27:43 +0300583 kfree(ses->se_slots);
584 kfree(ses);
585}
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587static inline void
588renew_client(struct nfs4_client *clp)
589{
590 /*
591 * Move client to the end to the LRU list.
592 */
593 dprintk("renewing client (clientid %08x/%08x)\n",
594 clp->cl_clientid.cl_boot,
595 clp->cl_clientid.cl_id);
596 list_move_tail(&clp->cl_lru, &client_lru);
597 clp->cl_time = get_seconds();
598}
599
600/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
601static int
602STALE_CLIENTID(clientid_t *clid)
603{
604 if (clid->cl_boot == boot_time)
605 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +0300606 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
607 clid->cl_boot, clid->cl_id, boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return 1;
609}
610
611/*
612 * XXX Should we use a slab cache ?
613 * This type of memory management is somewhat inefficient, but we use it
614 * anyway since SETCLIENTID is not a common operation.
615 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500616static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 struct nfs4_client *clp;
619
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500620 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
621 if (clp == NULL)
622 return NULL;
623 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
624 if (clp->cl_name.data == NULL) {
625 kfree(clp);
626 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500628 memcpy(clp->cl_name.data, name.data, name.len);
629 clp->cl_name.len = name.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return clp;
631}
632
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400633static void
634shutdown_callback_client(struct nfs4_client *clp)
635{
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400636 struct rpc_clnt *clnt = clp->cl_cb_conn.cb_client;
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400637
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400638 if (clnt) {
J. Bruce Fields404ec112007-11-23 22:26:18 -0500639 /*
640 * Callback threads take a reference on the client, so there
641 * should be no outstanding callbacks at this point.
642 */
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400643 clp->cl_cb_conn.cb_client = NULL;
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400644 rpc_shutdown_client(clnt);
645 }
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400646 if (clp->cl_cb_conn.cb_cred) {
647 put_rpccred(clp->cl_cb_conn.cb_cred);
648 clp->cl_cb_conn.cb_cred = NULL;
J. Bruce Fields3cef9ab2009-02-23 21:42:10 -0800649 }
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652static inline void
653free_client(struct nfs4_client *clp)
654{
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400655 shutdown_callback_client(clp);
Andy Adamson38eb76a2009-04-03 08:28:32 +0300656 nfsd4_release_respages(clp->cl_slot.sl_cache_entry.ce_respages,
657 clp->cl_slot.sl_cache_entry.ce_resused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (clp->cl_cred.cr_group_info)
659 put_group_info(clp->cl_cred.cr_group_info);
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500660 kfree(clp->cl_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 kfree(clp->cl_name.data);
662 kfree(clp);
663}
664
665void
666put_nfs4_client(struct nfs4_client *clp)
667{
668 if (atomic_dec_and_test(&clp->cl_count))
669 free_client(clp);
670}
671
672static void
673expire_client(struct nfs4_client *clp)
674{
675 struct nfs4_stateowner *sop;
676 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 struct list_head reaplist;
678
679 dprintk("NFSD: expire_client cl_count %d\n",
680 atomic_read(&clp->cl_count));
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 INIT_LIST_HEAD(&reaplist);
683 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700684 while (!list_empty(&clp->cl_delegations)) {
685 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
687 dp->dl_flock);
NeilBrownea1da632005-06-23 22:04:17 -0700688 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 list_move(&dp->dl_recall_lru, &reaplist);
690 }
691 spin_unlock(&recall_lock);
692 while (!list_empty(&reaplist)) {
693 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
694 list_del_init(&dp->dl_recall_lru);
695 unhash_delegation(dp);
696 }
697 list_del(&clp->cl_idhash);
698 list_del(&clp->cl_strhash);
699 list_del(&clp->cl_lru);
NeilBrownea1da632005-06-23 22:04:17 -0700700 while (!list_empty(&clp->cl_openowners)) {
701 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500702 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Marc Eshelc4bf7862009-04-03 08:27:49 +0300704 while (!list_empty(&clp->cl_sessions)) {
705 struct nfsd4_session *ses;
706 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
707 se_perclnt);
708 release_session(ses);
709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 put_nfs4_client(clp);
711}
712
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500713static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir)
714{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct nfs4_client *clp;
716
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500717 clp = alloc_client(name);
718 if (clp == NULL)
719 return NULL;
NeilBrowna55370a2005-06-23 22:03:52 -0700720 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 atomic_set(&clp->cl_count, 1);
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400722 atomic_set(&clp->cl_cb_conn.cb_set, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 INIT_LIST_HEAD(&clp->cl_idhash);
724 INIT_LIST_HEAD(&clp->cl_strhash);
NeilBrownea1da632005-06-23 22:04:17 -0700725 INIT_LIST_HEAD(&clp->cl_openowners);
726 INIT_LIST_HEAD(&clp->cl_delegations);
Marc Eshel9fb87072009-04-03 08:27:46 +0300727 INIT_LIST_HEAD(&clp->cl_sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 INIT_LIST_HEAD(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return clp;
730}
731
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500732static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
733{
734 memcpy(target->cl_verifier.data, source->data,
735 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500738static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
739{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
741 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
742}
743
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500744static void copy_cred(struct svc_cred *target, struct svc_cred *source)
745{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 target->cr_uid = source->cr_uid;
747 target->cr_gid = source->cr_gid;
748 target->cr_group_info = source->cr_group_info;
749 get_group_info(target->cr_group_info);
750}
751
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500752static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400753{
NeilBrowna55370a2005-06-23 22:03:52 -0700754 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
757static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400758same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
759{
760 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
763static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400764same_clid(clientid_t *cl1, clientid_t *cl2)
765{
766 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769/* XXX what about NGROUP */
770static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400771same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
772{
773 return cr1->cr_uid == cr2->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
J. Bruce Fields5ec7b462007-11-21 21:58:56 -0500776static void gen_clid(struct nfs4_client *clp)
777{
778 static u32 current_clientid = 1;
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 clp->cl_clientid.cl_boot = boot_time;
781 clp->cl_clientid.cl_id = current_clientid++;
782}
783
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500784static void gen_confirm(struct nfs4_client *clp)
785{
786 static u32 i;
787 u32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 p = (u32 *)clp->cl_confirm.data;
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500790 *p++ = get_seconds();
791 *p++ = i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500794static int check_name(struct xdr_netobj name)
795{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (name.len == 0)
797 return 0;
798 if (name.len > NFS4_OPAQUE_LIMIT) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400799 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return 0;
801 }
802 return 1;
803}
804
NeilBrownfd39ca92005-06-23 22:04:03 -0700805static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
807{
808 unsigned int idhashval;
809
810 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
811 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
812 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
813 list_add_tail(&clp->cl_lru, &client_lru);
814 clp->cl_time = get_seconds();
815}
816
NeilBrownfd39ca92005-06-23 22:04:03 -0700817static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818move_to_confirmed(struct nfs4_client *clp)
819{
820 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
821 unsigned int strhashval;
822
823 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
824 list_del_init(&clp->cl_strhash);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700825 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -0700826 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
828 renew_client(clp);
829}
830
831static struct nfs4_client *
832find_confirmed_client(clientid_t *clid)
833{
834 struct nfs4_client *clp;
835 unsigned int idhashval = clientid_hashval(clid->cl_id);
836
837 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400838 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return clp;
840 }
841 return NULL;
842}
843
844static struct nfs4_client *
845find_unconfirmed_client(clientid_t *clid)
846{
847 struct nfs4_client *clp;
848 unsigned int idhashval = clientid_hashval(clid->cl_id);
849
850 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400851 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return clp;
853 }
854 return NULL;
855}
856
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300857/*
858 * Return 1 iff clp's clientid establishment method matches the use_exchange_id
859 * parameter. Matching is based on the fact the at least one of the
860 * EXCHGID4_FLAG_USE_{NON_PNFS,PNFS_MDS,PNFS_DS} flags must be set for v4.1
861 *
862 * FIXME: we need to unify the clientid namespaces for nfsv4.x
863 * and correctly deal with client upgrade/downgrade in EXCHANGE_ID
864 * and SET_CLIENTID{,_CONFIRM}
865 */
866static inline int
867match_clientid_establishment(struct nfs4_client *clp, bool use_exchange_id)
868{
869 bool has_exchange_flags = (clp->cl_exchange_flags != 0);
870 return use_exchange_id == has_exchange_flags;
871}
872
NeilBrown28ce6052005-06-23 22:03:56 -0700873static struct nfs4_client *
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300874find_confirmed_client_by_str(const char *dname, unsigned int hashval,
875 bool use_exchange_id)
NeilBrown28ce6052005-06-23 22:03:56 -0700876{
877 struct nfs4_client *clp;
878
879 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300880 if (same_name(clp->cl_recdir, dname) &&
881 match_clientid_establishment(clp, use_exchange_id))
NeilBrown28ce6052005-06-23 22:03:56 -0700882 return clp;
883 }
884 return NULL;
885}
886
887static struct nfs4_client *
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300888find_unconfirmed_client_by_str(const char *dname, unsigned int hashval,
889 bool use_exchange_id)
NeilBrown28ce6052005-06-23 22:03:56 -0700890{
891 struct nfs4_client *clp;
892
893 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300894 if (same_name(clp->cl_recdir, dname) &&
895 match_clientid_establishment(clp, use_exchange_id))
NeilBrown28ce6052005-06-23 22:03:56 -0700896 return clp;
897 }
898 return NULL;
899}
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901/* a helper function for parse_callback */
902static int
903parse_octet(unsigned int *lenp, char **addrp)
904{
905 unsigned int len = *lenp;
906 char *p = *addrp;
907 int n = -1;
908 char c;
909
910 for (;;) {
911 if (!len)
912 break;
913 len--;
914 c = *p++;
915 if (c == '.')
916 break;
917 if ((c < '0') || (c > '9')) {
918 n = -1;
919 break;
920 }
921 if (n < 0)
922 n = 0;
923 n = (n * 10) + (c - '0');
924 if (n > 255) {
925 n = -1;
926 break;
927 }
928 }
929 *lenp = len;
930 *addrp = p;
931 return n;
932}
933
934/* parse and set the setclientid ipv4 callback address */
NeilBrownfd39ca92005-06-23 22:04:03 -0700935static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp)
937{
938 int temp = 0;
939 u32 cbaddr = 0;
940 u16 cbport = 0;
941 u32 addrlen = addr_len;
942 char *addr = addr_val;
943 int i, shift;
944
945 /* ipaddress */
946 shift = 24;
947 for(i = 4; i > 0 ; i--) {
948 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
949 return 0;
950 }
951 cbaddr |= (temp << shift);
952 if (shift > 0)
953 shift -= 8;
954 }
955 *cbaddrp = cbaddr;
956
957 /* port */
958 shift = 8;
959 for(i = 2; i > 0 ; i--) {
960 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
961 return 0;
962 }
963 cbport |= (temp << shift);
964 if (shift > 0)
965 shift -= 8;
966 }
967 *cbportp = cbport;
968 return 1;
969}
970
NeilBrownfd39ca92005-06-23 22:04:03 -0700971static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se)
973{
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400974 struct nfs4_cb_conn *cb = &clp->cl_cb_conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 /* Currently, we only support tcp for the callback channel */
977 if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3))
978 goto out_err;
979
980 if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val,
981 &cb->cb_addr, &cb->cb_port)))
982 goto out_err;
983 cb->cb_prog = se->se_callback_prog;
984 cb->cb_ident = se->se_callback_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return;
986out_err:
Neil Brown849823c2005-09-13 01:25:36 -0700987 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 "will not receive delegations\n",
989 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return;
992}
993
Andy Adamson074fe892009-04-03 08:28:15 +0300994void
995nfsd4_set_statp(struct svc_rqst *rqstp, __be32 *statp)
996{
997 struct nfsd4_compoundres *resp = rqstp->rq_resp;
998
999 resp->cstate.statp = statp;
1000}
1001
1002/*
1003 * Dereference the result pages.
1004 */
1005static void
1006nfsd4_release_respages(struct page **respages, short resused)
1007{
1008 int i;
1009
1010 dprintk("--> %s\n", __func__);
1011 for (i = 0; i < resused; i++) {
1012 if (!respages[i])
1013 continue;
1014 put_page(respages[i]);
1015 respages[i] = NULL;
1016 }
1017}
1018
1019static void
1020nfsd4_copy_pages(struct page **topages, struct page **frompages, short count)
1021{
1022 int i;
1023
1024 for (i = 0; i < count; i++) {
1025 topages[i] = frompages[i];
1026 if (!topages[i])
1027 continue;
1028 get_page(topages[i]);
1029 }
1030}
1031
1032/*
1033 * Cache the reply pages up to NFSD_PAGES_PER_SLOT + 1, clearing the previous
1034 * pages. We add a page to NFSD_PAGES_PER_SLOT for the case where the total
1035 * length of the XDR response is less than se_fmaxresp_cached
1036 * (NFSD_PAGES_PER_SLOT * PAGE_SIZE) but the xdr_buf pages is used for a
1037 * of the reply (e.g. readdir).
1038 *
1039 * Store the base and length of the rq_req.head[0] page
1040 * of the NFSv4.1 data, just past the rpc header.
1041 */
1042void
1043nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1044{
1045 struct nfsd4_cache_entry *entry = &resp->cstate.slot->sl_cache_entry;
1046 struct svc_rqst *rqstp = resp->rqstp;
1047 struct nfsd4_compoundargs *args = rqstp->rq_argp;
1048 struct nfsd4_op *op = &args->ops[resp->opcnt];
1049 struct kvec *resv = &rqstp->rq_res.head[0];
1050
1051 dprintk("--> %s entry %p\n", __func__, entry);
1052
1053 /* Don't cache a failed OP_SEQUENCE. */
1054 if (resp->opcnt == 1 && op->opnum == OP_SEQUENCE && resp->cstate.status)
1055 return;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001056
Andy Adamson074fe892009-04-03 08:28:15 +03001057 nfsd4_release_respages(entry->ce_respages, entry->ce_resused);
Andy Adamsonbf864a32009-04-03 08:28:35 +03001058 entry->ce_opcnt = resp->opcnt;
1059 entry->ce_status = resp->cstate.status;
1060
1061 /*
1062 * Don't need a page to cache just the sequence operation - the slot
1063 * does this for us!
1064 */
1065
1066 if (nfsd4_not_cached(resp)) {
1067 entry->ce_resused = 0;
1068 entry->ce_rpchdrlen = 0;
1069 dprintk("%s Just cache SEQUENCE. ce_cachethis %d\n", __func__,
1070 resp->cstate.slot->sl_cache_entry.ce_cachethis);
1071 return;
1072 }
Andy Adamson074fe892009-04-03 08:28:15 +03001073 entry->ce_resused = rqstp->rq_resused;
1074 if (entry->ce_resused > NFSD_PAGES_PER_SLOT + 1)
1075 entry->ce_resused = NFSD_PAGES_PER_SLOT + 1;
1076 nfsd4_copy_pages(entry->ce_respages, rqstp->rq_respages,
1077 entry->ce_resused);
Andy Adamson074fe892009-04-03 08:28:15 +03001078 entry->ce_datav.iov_base = resp->cstate.statp;
1079 entry->ce_datav.iov_len = resv->iov_len - ((char *)resp->cstate.statp -
1080 (char *)page_address(rqstp->rq_respages[0]));
Andy Adamson074fe892009-04-03 08:28:15 +03001081 /* Current request rpc header length*/
1082 entry->ce_rpchdrlen = (char *)resp->cstate.statp -
1083 (char *)page_address(rqstp->rq_respages[0]);
1084}
1085
1086/*
1087 * We keep the rpc header, but take the nfs reply from the replycache.
1088 */
1089static int
1090nfsd41_copy_replay_data(struct nfsd4_compoundres *resp,
1091 struct nfsd4_cache_entry *entry)
1092{
1093 struct svc_rqst *rqstp = resp->rqstp;
1094 struct kvec *resv = &resp->rqstp->rq_res.head[0];
1095 int len;
1096
1097 /* Current request rpc header length*/
1098 len = (char *)resp->cstate.statp -
1099 (char *)page_address(rqstp->rq_respages[0]);
1100 if (entry->ce_datav.iov_len + len > PAGE_SIZE) {
1101 dprintk("%s v41 cached reply too large (%Zd).\n", __func__,
1102 entry->ce_datav.iov_len);
1103 return 0;
1104 }
1105 /* copy the cached reply nfsd data past the current rpc header */
1106 memcpy((char *)resv->iov_base + len, entry->ce_datav.iov_base,
1107 entry->ce_datav.iov_len);
1108 resv->iov_len = len + entry->ce_datav.iov_len;
1109 return 1;
1110}
1111
1112/*
1113 * Keep the first page of the replay. Copy the NFSv4.1 data from the first
1114 * cached page. Replace any futher replay pages from the cache.
1115 */
1116__be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03001117nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1118 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03001119{
1120 struct nfsd4_cache_entry *entry = &resp->cstate.slot->sl_cache_entry;
1121 __be32 status;
1122
1123 dprintk("--> %s entry %p\n", __func__, entry);
1124
Andy Adamsonbf864a32009-04-03 08:28:35 +03001125 /*
1126 * If this is just the sequence operation, we did not keep
1127 * a page in the cache entry because we can just use the
1128 * slot info stored in struct nfsd4_sequence that was checked
1129 * against the slot in nfsd4_sequence().
1130 *
1131 * This occurs when seq->cachethis is FALSE, or when the client
1132 * session inactivity timer fires and a solo sequence operation
1133 * is sent (lease renewal).
1134 */
1135 if (seq && nfsd4_not_cached(resp)) {
1136 seq->maxslots = resp->cstate.session->se_fnumslots;
1137 return nfs_ok;
1138 }
Andy Adamson074fe892009-04-03 08:28:15 +03001139
1140 if (!nfsd41_copy_replay_data(resp, entry)) {
1141 /*
1142 * Not enough room to use the replay rpc header, send the
1143 * cached header. Release all the allocated result pages.
1144 */
1145 svc_free_res_pages(resp->rqstp);
1146 nfsd4_copy_pages(resp->rqstp->rq_respages, entry->ce_respages,
1147 entry->ce_resused);
1148 } else {
1149 /* Release all but the first allocated result page */
1150
1151 resp->rqstp->rq_resused--;
1152 svc_free_res_pages(resp->rqstp);
1153
1154 nfsd4_copy_pages(&resp->rqstp->rq_respages[1],
1155 &entry->ce_respages[1],
1156 entry->ce_resused - 1);
1157 }
1158
1159 resp->rqstp->rq_resused = entry->ce_resused;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001160 resp->opcnt = entry->ce_opcnt;
1161 resp->cstate.iovlen = entry->ce_datav.iov_len + entry->ce_rpchdrlen;
Andy Adamson074fe892009-04-03 08:28:15 +03001162 status = entry->ce_status;
1163
1164 return status;
1165}
1166
Andy Adamson0733d212009-04-03 08:28:01 +03001167/*
1168 * Set the exchange_id flags returned by the server.
1169 */
1170static void
1171nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1172{
1173 /* pNFS is not supported */
1174 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1175
1176 /* Referrals are supported, Migration is not. */
1177 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1178
1179 /* set the wire flags to return to client. */
1180 clid->flags = new->cl_exchange_flags;
1181}
1182
Al Virob37ad282006-10-19 23:28:59 -07001183__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03001184nfsd4_exchange_id(struct svc_rqst *rqstp,
1185 struct nfsd4_compound_state *cstate,
1186 struct nfsd4_exchange_id *exid)
1187{
Andy Adamson0733d212009-04-03 08:28:01 +03001188 struct nfs4_client *unconf, *conf, *new;
1189 int status;
1190 unsigned int strhashval;
1191 char dname[HEXDIR_LEN];
1192 nfs4_verifier verf = exid->verifier;
1193 u32 ip_addr = svc_addr_in(rqstp)->sin_addr.s_addr;
1194
1195 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
1196 " ip_addr=%u flags %x, spa_how %d\n",
1197 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
1198 ip_addr, exid->flags, exid->spa_how);
1199
1200 if (!check_name(exid->clname) || (exid->flags & ~EXCHGID4_FLAG_MASK_A))
1201 return nfserr_inval;
1202
1203 /* Currently only support SP4_NONE */
1204 switch (exid->spa_how) {
1205 case SP4_NONE:
1206 break;
1207 case SP4_SSV:
1208 return nfserr_encr_alg_unsupp;
1209 default:
1210 BUG(); /* checked by xdr code */
1211 case SP4_MACH_CRED:
1212 return nfserr_serverfault; /* no excuse :-/ */
1213 }
1214
1215 status = nfs4_make_rec_clidname(dname, &exid->clname);
1216
1217 if (status)
1218 goto error;
1219
1220 strhashval = clientstr_hashval(dname);
1221
1222 nfs4_lock_state();
1223 status = nfs_ok;
1224
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001225 conf = find_confirmed_client_by_str(dname, strhashval, true);
Andy Adamson0733d212009-04-03 08:28:01 +03001226 if (conf) {
1227 if (!same_verf(&verf, &conf->cl_verifier)) {
1228 /* 18.35.4 case 8 */
1229 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1230 status = nfserr_not_same;
1231 goto out;
1232 }
1233 /* Client reboot: destroy old state */
1234 expire_client(conf);
1235 goto out_new;
1236 }
1237 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1238 /* 18.35.4 case 9 */
1239 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1240 status = nfserr_perm;
1241 goto out;
1242 }
1243 expire_client(conf);
1244 goto out_new;
1245 }
1246 if (ip_addr != conf->cl_addr &&
1247 !(exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)) {
1248 /* Client collision. 18.35.4 case 3 */
1249 status = nfserr_clid_inuse;
1250 goto out;
1251 }
1252 /*
1253 * Set bit when the owner id and verifier map to an already
1254 * confirmed client id (18.35.3).
1255 */
1256 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1257
1258 /*
1259 * Falling into 18.35.4 case 2, possible router replay.
1260 * Leave confirmed record intact and return same result.
1261 */
1262 copy_verf(conf, &verf);
1263 new = conf;
1264 goto out_copy;
1265 } else {
1266 /* 18.35.4 case 7 */
1267 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1268 status = nfserr_noent;
1269 goto out;
1270 }
1271 }
1272
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001273 unconf = find_unconfirmed_client_by_str(dname, strhashval, true);
Andy Adamson0733d212009-04-03 08:28:01 +03001274 if (unconf) {
1275 /*
1276 * Possible retry or client restart. Per 18.35.4 case 4,
1277 * a new unconfirmed record should be generated regardless
1278 * of whether any properties have changed.
1279 */
1280 expire_client(unconf);
1281 }
1282
1283out_new:
1284 /* Normal case */
1285 new = create_client(exid->clname, dname);
1286 if (new == NULL) {
1287 status = nfserr_resource;
1288 goto out;
1289 }
1290
1291 copy_verf(new, &verf);
1292 copy_cred(&new->cl_cred, &rqstp->rq_cred);
1293 new->cl_addr = ip_addr;
1294 gen_clid(new);
1295 gen_confirm(new);
1296 add_to_unconfirmed(new, strhashval);
1297out_copy:
1298 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1299 exid->clientid.cl_id = new->cl_clientid.cl_id;
1300
Andy Adamson38eb76a2009-04-03 08:28:32 +03001301 new->cl_slot.sl_seqid = 0;
1302 exid->seqid = 1;
Andy Adamson0733d212009-04-03 08:28:01 +03001303 nfsd4_set_ex_flags(new, exid);
1304
1305 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Andy Adamson38eb76a2009-04-03 08:28:32 +03001306 new->cl_slot.sl_seqid, new->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03001307 status = nfs_ok;
1308
1309out:
1310 nfs4_unlock_state();
1311error:
1312 dprintk("nfsd4_exchange_id returns %d\n", ntohl(status));
1313 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001314}
1315
Benny Halevyb85d4c02009-04-03 08:28:08 +03001316static int
1317check_slot_seqid(u32 seqid, struct nfsd4_slot *slot)
1318{
1319 dprintk("%s enter. seqid %d slot->sl_seqid %d\n", __func__, seqid,
1320 slot->sl_seqid);
1321
1322 /* The slot is in use, and no response has been sent. */
1323 if (slot->sl_inuse) {
1324 if (seqid == slot->sl_seqid)
1325 return nfserr_jukebox;
1326 else
1327 return nfserr_seq_misordered;
1328 }
1329 /* Normal */
1330 if (likely(seqid == slot->sl_seqid + 1))
1331 return nfs_ok;
1332 /* Replay */
1333 if (seqid == slot->sl_seqid)
1334 return nfserr_replay_cache;
1335 /* Wraparound */
1336 if (seqid == 1 && (slot->sl_seqid + 1) == 0)
1337 return nfs_ok;
1338 /* Misordered replay or misordered new request */
1339 return nfserr_seq_misordered;
1340}
1341
Andy Adamson069b6ad2009-04-03 08:27:58 +03001342__be32
1343nfsd4_create_session(struct svc_rqst *rqstp,
1344 struct nfsd4_compound_state *cstate,
1345 struct nfsd4_create_session *cr_ses)
1346{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001347 u32 ip_addr = svc_addr_in(rqstp)->sin_addr.s_addr;
Andy Adamson38eb76a2009-04-03 08:28:32 +03001348 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001349 struct nfs4_client *conf, *unconf;
Andy Adamson38eb76a2009-04-03 08:28:32 +03001350 struct nfsd4_slot *slot = NULL;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001351 int status = 0;
1352
1353 nfs4_lock_state();
1354 unconf = find_unconfirmed_client(&cr_ses->clientid);
1355 conf = find_confirmed_client(&cr_ses->clientid);
1356
1357 if (conf) {
Andy Adamson38eb76a2009-04-03 08:28:32 +03001358 slot = &conf->cl_slot;
1359 status = check_slot_seqid(cr_ses->seqid, slot);
1360 if (status == nfserr_replay_cache) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001361 dprintk("Got a create_session replay! seqid= %d\n",
Andy Adamson38eb76a2009-04-03 08:28:32 +03001362 slot->sl_seqid);
1363 cstate->slot = slot;
1364 cstate->status = status;
1365 /* Return the cached reply status */
Andy Adamsonbf864a32009-04-03 08:28:35 +03001366 status = nfsd4_replay_cache_entry(resp, NULL);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001367 goto out;
1368 } else if (cr_ses->seqid != conf->cl_slot.sl_seqid + 1) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001369 status = nfserr_seq_misordered;
1370 dprintk("Sequence misordered!\n");
1371 dprintk("Expected seqid= %d but got seqid= %d\n",
Andy Adamson38eb76a2009-04-03 08:28:32 +03001372 slot->sl_seqid, cr_ses->seqid);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001373 goto out;
1374 }
Andy Adamson38eb76a2009-04-03 08:28:32 +03001375 conf->cl_slot.sl_seqid++;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001376 } else if (unconf) {
1377 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
1378 (ip_addr != unconf->cl_addr)) {
1379 status = nfserr_clid_inuse;
1380 goto out;
1381 }
1382
Andy Adamson38eb76a2009-04-03 08:28:32 +03001383 slot = &unconf->cl_slot;
1384 status = check_slot_seqid(cr_ses->seqid, slot);
1385 if (status) {
1386 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001387 status = nfserr_seq_misordered;
1388 goto out;
1389 }
1390
Andy Adamson38eb76a2009-04-03 08:28:32 +03001391 slot->sl_seqid++; /* from 0 to 1 */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001392 move_to_confirmed(unconf);
1393
1394 /*
1395 * We do not support RDMA or persistent sessions
1396 */
1397 cr_ses->flags &= ~SESSION4_PERSIST;
1398 cr_ses->flags &= ~SESSION4_RDMA;
1399
1400 conf = unconf;
1401 } else {
1402 status = nfserr_stale_clientid;
1403 goto out;
1404 }
1405
1406 status = alloc_init_session(rqstp, conf, cr_ses);
1407 if (status)
1408 goto out;
1409
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001410 memcpy(cr_ses->sessionid.data, conf->cl_sessionid.data,
1411 NFS4_MAX_SESSIONID_LEN);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001412 cr_ses->seqid = slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001413
Andy Adamson38eb76a2009-04-03 08:28:32 +03001414 slot->sl_inuse = true;
1415 cstate->slot = slot;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001416 /* Ensure a page is used for the cache */
1417 slot->sl_cache_entry.ce_cachethis = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001418out:
1419 nfs4_unlock_state();
1420 dprintk("%s returns %d\n", __func__, ntohl(status));
1421 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001422}
1423
1424__be32
1425nfsd4_destroy_session(struct svc_rqst *r,
1426 struct nfsd4_compound_state *cstate,
1427 struct nfsd4_destroy_session *sessionid)
1428{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001429 struct nfsd4_session *ses;
1430 u32 status = nfserr_badsession;
1431
1432 /* Notes:
1433 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1434 * - Should we return nfserr_back_chan_busy if waiting for
1435 * callbacks on to-be-destroyed session?
1436 * - Do we need to clear any callback info from previous session?
1437 */
1438
1439 dump_sessionid(__func__, &sessionid->sessionid);
1440 spin_lock(&sessionid_lock);
1441 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1442 if (!ses) {
1443 spin_unlock(&sessionid_lock);
1444 goto out;
1445 }
1446
1447 unhash_session(ses);
1448 spin_unlock(&sessionid_lock);
1449
1450 /* wait for callbacks */
1451 shutdown_callback_client(ses->se_client);
1452 nfsd4_put_session(ses);
1453 status = nfs_ok;
1454out:
1455 dprintk("%s returns %d\n", __func__, ntohl(status));
1456 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001457}
1458
1459__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03001460nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001461 struct nfsd4_compound_state *cstate,
1462 struct nfsd4_sequence *seq)
1463{
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001464 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001465 struct nfsd4_session *session;
1466 struct nfsd4_slot *slot;
1467 int status;
1468
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001469 if (resp->opcnt != 1)
1470 return nfserr_sequence_pos;
1471
Benny Halevyb85d4c02009-04-03 08:28:08 +03001472 spin_lock(&sessionid_lock);
1473 status = nfserr_badsession;
1474 session = find_in_sessionid_hashtbl(&seq->sessionid);
1475 if (!session)
1476 goto out;
1477
1478 status = nfserr_badslot;
1479 if (seq->slotid >= session->se_fnumslots)
1480 goto out;
1481
1482 slot = &session->se_slots[seq->slotid];
1483 dprintk("%s: slotid %d\n", __func__, seq->slotid);
1484
1485 status = check_slot_seqid(seq->seqid, slot);
1486 if (status == nfserr_replay_cache) {
1487 cstate->slot = slot;
1488 cstate->session = session;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001489 /* Return the cached reply status and set cstate->status
Andy Adamsonbf864a32009-04-03 08:28:35 +03001490 * for nfsd4_svc_encode_compoundres processing */
1491 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03001492 cstate->status = nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001493 goto replay_cache;
1494 }
1495 if (status)
1496 goto out;
1497
1498 /* Success! bump slot seqid */
1499 slot->sl_inuse = true;
1500 slot->sl_seqid = seq->seqid;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001501 slot->sl_cache_entry.ce_cachethis = seq->cachethis;
1502 /* Always set the cache entry cachethis for solo sequence */
1503 if (nfsd4_is_solo_sequence(resp))
1504 slot->sl_cache_entry.ce_cachethis = 1;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001505
1506 cstate->slot = slot;
1507 cstate->session = session;
1508
1509replay_cache:
1510 /* Renew the clientid on success and on replay.
1511 * Hold a session reference until done processing the compound:
1512 * nfsd4_put_session called only if the cstate slot is set.
1513 */
1514 renew_client(session->se_client);
1515 nfsd4_get_session(session);
1516out:
1517 spin_unlock(&sessionid_lock);
1518 dprintk("%s: return %d\n", __func__, ntohl(status));
1519 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001520}
1521
1522__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001523nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1524 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
Chuck Lever27459f02007-02-12 00:53:34 -08001526 struct sockaddr_in *sin = svc_addr_in(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 struct xdr_netobj clname = {
1528 .len = setclid->se_namelen,
1529 .data = setclid->se_name,
1530 };
1531 nfs4_verifier clverifier = setclid->se_verf;
1532 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -07001533 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -07001534 __be32 status;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -05001535 char *princ;
NeilBrowna55370a2005-06-23 22:03:52 -07001536 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -07001539 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
NeilBrowna55370a2005-06-23 22:03:52 -07001541 status = nfs4_make_rec_clidname(dname, &clname);
1542 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -07001543 return status;
NeilBrowna55370a2005-06-23 22:03:52 -07001544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 /*
1546 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1547 * We get here on a DRC miss.
1548 */
1549
NeilBrowna55370a2005-06-23 22:03:52 -07001550 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 nfs4_lock_state();
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001553 conf = find_confirmed_client_by_str(dname, strhashval, false);
NeilBrown28ce6052005-06-23 22:03:56 -07001554 if (conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001555 /* RFC 3530 14.2.33 CASE 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 status = nfserr_clid_inuse;
J. Bruce Fields026722c2009-03-18 15:06:26 -04001557 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1558 dprintk("NFSD: setclientid: string in use by client"
1559 " at %pI4\n", &conf->cl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 goto out;
1561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001563 /*
1564 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
1565 * has a description of SETCLIENTID request processing consisting
1566 * of 5 bullet points, labeled as CASE0 - CASE4 below.
1567 */
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001568 unconf = find_unconfirmed_client_by_str(dname, strhashval, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 status = nfserr_resource;
1570 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001571 /*
1572 * RFC 3530 14.2.33 CASE 4:
1573 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 */
1575 if (unconf)
1576 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -07001577 new = create_client(clname, dname);
1578 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001581 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001583 * RFC 3530 14.2.33 CASE 1:
1584 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 */
NeilBrown31f4a6c2005-06-23 22:04:06 -07001586 if (unconf) {
1587 /* Note this is removing unconfirmed {*x***},
1588 * which is stronger than RFC recommended {vxc**}.
1589 * This has the advantage that there is at most
1590 * one {*x***} in either list at any time.
1591 */
1592 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
NeilBrowna55370a2005-06-23 22:03:52 -07001594 new = create_client(clname, dname);
1595 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 } else if (!unconf) {
1599 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001600 * RFC 3530 14.2.33 CASE 2:
1601 * probable client reboot; state will be removed if
1602 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 */
NeilBrowna55370a2005-06-23 22:03:52 -07001604 new = create_client(clname, dname);
1605 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 gen_clid(new);
J. Bruce Fields49ba8782007-11-19 19:09:50 -05001608 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001609 /*
1610 * RFC 3530 14.2.33 CASE 3:
1611 * probable client reboot; state will be removed if
1612 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 */
1614 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -07001615 new = create_client(clname, dname);
1616 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -04001620 copy_verf(new, &clverifier);
1621 new->cl_addr = sin->sin_addr.s_addr;
Olga Kornievskaia61054b12008-12-23 16:19:00 -05001622 new->cl_flavor = rqstp->rq_flavor;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -05001623 princ = svc_gss_principal(rqstp);
1624 if (princ) {
1625 new->cl_principal = kstrdup(princ, GFP_KERNEL);
1626 if (new->cl_principal == NULL) {
1627 free_client(new);
1628 goto out;
1629 }
1630 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -04001631 copy_cred(&new->cl_cred, &rqstp->rq_cred);
1632 gen_confirm(new);
1633 gen_callback(new, setclid);
1634 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
1636 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
1637 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
1638 status = nfs_ok;
1639out:
1640 nfs4_unlock_state();
1641 return status;
1642}
1643
1644
1645/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001646 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
1647 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
1648 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 */
Al Virob37ad282006-10-19 23:28:59 -07001650__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001651nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
1652 struct nfsd4_compound_state *cstate,
1653 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
Chuck Lever27459f02007-02-12 00:53:34 -08001655 struct sockaddr_in *sin = svc_addr_in(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -07001656 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
1658 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07001659 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 if (STALE_CLIENTID(clid))
1662 return nfserr_stale_clientid;
1663 /*
1664 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1665 * We get here on a DRC miss.
1666 */
1667
1668 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -07001669
1670 conf = find_confirmed_client(clid);
1671 unconf = find_unconfirmed_client(clid);
1672
1673 status = nfserr_clid_inuse;
Chuck Lever27459f02007-02-12 00:53:34 -08001674 if (conf && conf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -07001675 goto out;
Chuck Lever27459f02007-02-12 00:53:34 -08001676 if (unconf && unconf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -07001677 goto out;
1678
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001679 /*
1680 * section 14.2.34 of RFC 3530 has a description of
1681 * SETCLIENTID_CONFIRM request processing consisting
1682 * of 4 bullet points, labeled as CASE1 - CASE4 below.
1683 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -05001684 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001685 /*
1686 * RFC 3530 14.2.34 CASE 1:
1687 * callback update
1688 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001689 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 status = nfserr_clid_inuse;
1691 else {
NeilBrown1a69c172005-06-23 22:04:08 -07001692 /* XXX: We just turn off callbacks until we can handle
1693 * change request correctly. */
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -04001694 atomic_set(&conf->cl_cb_conn.cb_set, 0);
NeilBrown1a69c172005-06-23 22:04:08 -07001695 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -07001697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -05001699 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001700 /*
1701 * RFC 3530 14.2.34 CASE 2:
1702 * probable retransmitted request; play it safe and
1703 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -07001704 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001705 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -07001707 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -07001709 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001710 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001711 /*
1712 * RFC 3530 14.2.34 CASE 3:
1713 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -07001714 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001715 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 status = nfserr_clid_inuse;
1717 } else {
NeilBrown1a69c172005-06-23 22:04:08 -07001718 unsigned int hash =
1719 clientstr_hashval(unconf->cl_recdir);
1720 conf = find_confirmed_client_by_str(unconf->cl_recdir,
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001721 hash, false);
NeilBrown1a69c172005-06-23 22:04:08 -07001722 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -07001723 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07001724 expire_client(conf);
1725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -07001727 conf = unconf;
J. Bruce Fields46f8a642007-11-22 13:54:18 -05001728 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07001729 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001731 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
1732 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -07001733 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001734 /*
1735 * RFC 3530 14.2.34 CASE 4:
1736 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -07001737 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -07001739 } else {
NeilBrown08e89872005-06-23 22:04:11 -07001740 /* check that we have hit one of the cases...*/
1741 status = nfserr_clid_inuse;
1742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 nfs4_unlock_state();
1745 return status;
1746}
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748/* OPEN Share state helper functions */
1749static inline struct nfs4_file *
1750alloc_init_file(struct inode *ino)
1751{
1752 struct nfs4_file *fp;
1753 unsigned int hashval = file_hashval(ino);
1754
NeilBrowne60d4392005-06-23 22:03:01 -07001755 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
1756 if (fp) {
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001757 atomic_set(&fp->fi_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -07001759 INIT_LIST_HEAD(&fp->fi_stateids);
1760 INIT_LIST_HEAD(&fp->fi_delegations);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001761 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001763 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 fp->fi_inode = igrab(ino);
1765 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07001766 fp->fi_had_conflict = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 return fp;
1768 }
1769 return NULL;
1770}
1771
1772static void
Christoph Lametere18b8902006-12-06 20:33:20 -08001773nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07001774{
NeilBrowne60d4392005-06-23 22:03:01 -07001775 if (*slab == NULL)
1776 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001777 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001778 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07001779}
1780
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001781void
NeilBrowne60d4392005-06-23 22:03:01 -07001782nfsd4_free_slabs(void)
1783{
1784 nfsd4_free_slab(&stateowner_slab);
1785 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07001786 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001787 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001788}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790static int
1791nfsd4_init_slabs(void)
1792{
1793 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09001794 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001795 if (stateowner_slab == NULL)
1796 goto out_nomem;
1797 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09001798 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001799 if (file_slab == NULL)
1800 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07001801 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09001802 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07001803 if (stateid_slab == NULL)
1804 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07001805 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09001806 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001807 if (deleg_slab == NULL)
1808 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07001810out_nomem:
1811 nfsd4_free_slabs();
1812 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1813 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
1816void
1817nfs4_free_stateowner(struct kref *kref)
1818{
1819 struct nfs4_stateowner *sop =
1820 container_of(kref, struct nfs4_stateowner, so_ref);
1821 kfree(sop->so_owner.data);
1822 kmem_cache_free(stateowner_slab, sop);
1823}
1824
1825static inline struct nfs4_stateowner *
1826alloc_stateowner(struct xdr_netobj *owner)
1827{
1828 struct nfs4_stateowner *sop;
1829
1830 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1831 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1832 memcpy(sop->so_owner.data, owner->data, owner->len);
1833 sop->so_owner.len = owner->len;
1834 kref_init(&sop->so_ref);
1835 return sop;
1836 }
1837 kmem_cache_free(stateowner_slab, sop);
1838 }
1839 return NULL;
1840}
1841
1842static struct nfs4_stateowner *
1843alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1844 struct nfs4_stateowner *sop;
1845 struct nfs4_replay *rp;
1846 unsigned int idhashval;
1847
1848 if (!(sop = alloc_stateowner(&open->op_owner)))
1849 return NULL;
1850 idhashval = ownerid_hashval(current_ownerid);
1851 INIT_LIST_HEAD(&sop->so_idhash);
1852 INIT_LIST_HEAD(&sop->so_strhash);
1853 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07001854 INIT_LIST_HEAD(&sop->so_stateids);
1855 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 INIT_LIST_HEAD(&sop->so_close_lru);
1857 sop->so_time = 0;
1858 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1859 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001860 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 sop->so_is_open_owner = 1;
1862 sop->so_id = current_ownerid++;
1863 sop->so_client = clp;
1864 sop->so_seqid = open->op_seqid;
1865 sop->so_confirmed = 0;
1866 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08001867 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 rp->rp_buflen = 0;
1869 rp->rp_buf = rp->rp_ibuf;
1870 return sop;
1871}
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873static inline void
1874init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1875 struct nfs4_stateowner *sop = open->op_stateowner;
1876 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1877
1878 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07001879 INIT_LIST_HEAD(&stp->st_perstateowner);
1880 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 INIT_LIST_HEAD(&stp->st_perfile);
1882 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001883 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07001884 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07001886 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 stp->st_file = fp;
Bian Naimeng78155ed2009-04-22 18:25:37 +08001888 stp->st_stateid.si_boot = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 stp->st_stateid.si_stateownerid = sop->so_id;
1890 stp->st_stateid.si_fileid = fp->fi_id;
1891 stp->st_stateid.si_generation = 0;
1892 stp->st_access_bmap = 0;
1893 stp->st_deny_bmap = 0;
Andy Adamson84459a12009-04-03 08:28:56 +03001894 __set_bit(open->op_share_access & ~NFS4_SHARE_WANT_MASK,
1895 &stp->st_access_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07001897 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
1900static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901move_to_close_lru(struct nfs4_stateowner *sop)
1902{
1903 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1904
NeilBrown358dd552006-04-10 22:55:42 -07001905 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 sop->so_time = get_seconds();
1907}
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001910same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
1911 clientid_t *clid)
1912{
1913 return (sop->so_owner.len == owner->len) &&
1914 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
1915 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
1918static struct nfs4_stateowner *
1919find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1920{
1921 struct nfs4_stateowner *so = NULL;
1922
1923 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001924 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 return so;
1926 }
1927 return NULL;
1928}
1929
1930/* search file_hashtbl[] for file */
1931static struct nfs4_file *
1932find_file(struct inode *ino)
1933{
1934 unsigned int hashval = file_hashval(ino);
1935 struct nfs4_file *fp;
1936
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001937 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07001939 if (fp->fi_inode == ino) {
1940 get_nfs4_file(fp);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001941 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07001943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001945 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return NULL;
1947}
1948
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001949static inline int access_valid(u32 x, u32 minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001950{
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001951 if ((x & NFS4_SHARE_ACCESS_MASK) < NFS4_SHARE_ACCESS_READ)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001952 return 0;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001953 if ((x & NFS4_SHARE_ACCESS_MASK) > NFS4_SHARE_ACCESS_BOTH)
1954 return 0;
1955 x &= ~NFS4_SHARE_ACCESS_MASK;
1956 if (minorversion && x) {
1957 if ((x & NFS4_SHARE_WANT_MASK) > NFS4_SHARE_WANT_CANCEL)
1958 return 0;
1959 if ((x & NFS4_SHARE_WHEN_MASK) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED)
1960 return 0;
1961 x &= ~(NFS4_SHARE_WANT_MASK | NFS4_SHARE_WHEN_MASK);
1962 }
1963 if (x)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001964 return 0;
1965 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001966}
1967
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001968static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001969{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001970 /* Note: unlike access bits, deny bits may be zero. */
1971 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001972}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04001974/*
1975 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1976 * st_{access,deny}_bmap field of the stateid, in order to track not
1977 * only what share bits are currently in force, but also what
1978 * combinations of share bits previous opens have used. This allows us
1979 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1980 * return an error if the client attempt to downgrade to a combination
1981 * of share bits not explicable by closing some of its previous opens.
1982 *
1983 * XXX: This enforcement is actually incomplete, since we don't keep
1984 * track of access/deny bit combinations; so, e.g., we allow:
1985 *
1986 * OPEN allow read, deny write
1987 * OPEN allow both, deny none
1988 * DOWNGRADE allow read, deny none
1989 *
1990 * which we should reject.
1991 */
NeilBrownfd39ca92005-06-23 22:04:03 -07001992static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993set_access(unsigned int *access, unsigned long bmap) {
1994 int i;
1995
1996 *access = 0;
1997 for (i = 1; i < 4; i++) {
1998 if (test_bit(i, &bmap))
1999 *access |= i;
2000 }
2001}
2002
NeilBrownfd39ca92005-06-23 22:04:03 -07002003static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004set_deny(unsigned int *deny, unsigned long bmap) {
2005 int i;
2006
2007 *deny = 0;
2008 for (i = 0; i < 4; i++) {
2009 if (test_bit(i, &bmap))
2010 *deny |= i ;
2011 }
2012}
2013
2014static int
2015test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
2016 unsigned int access, deny;
2017
2018 set_access(&access, stp->st_access_bmap);
2019 set_deny(&deny, stp->st_deny_bmap);
2020 if ((access & open->op_share_deny) || (deny & open->op_share_access))
2021 return 0;
2022 return 1;
2023}
2024
2025/*
2026 * Called to check deny when READ with all zero stateid or
2027 * WRITE with all zero or all one stateid
2028 */
Al Virob37ad282006-10-19 23:28:59 -07002029static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2031{
2032 struct inode *ino = current_fh->fh_dentry->d_inode;
2033 struct nfs4_file *fp;
2034 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07002035 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 dprintk("NFSD: nfs4_share_conflict\n");
2038
2039 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002040 if (!fp)
2041 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07002042 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07002044 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
2045 if (test_bit(deny_type, &stp->st_deny_bmap) ||
2046 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
2047 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 }
NeilBrown13cd2182005-06-23 22:03:10 -07002049 ret = nfs_ok;
2050out:
2051 put_nfs4_file(fp);
2052 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
2055static inline void
2056nfs4_file_downgrade(struct file *filp, unsigned int share_access)
2057{
2058 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
Dave Hansenaceaf782008-02-15 14:37:31 -08002059 drop_file_write_access(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
2061 }
2062}
2063
2064/*
2065 * Recall a delegation
2066 */
2067static int
2068do_recall(void *__dp)
2069{
2070 struct nfs4_delegation *dp = __dp;
2071
Meelap Shah47f99402007-07-17 04:04:40 -07002072 dp->dl_file->fi_had_conflict = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 nfsd4_cb_recall(dp);
2074 return 0;
2075}
2076
2077/*
2078 * Spawn a thread to perform a recall on the delegation represented
2079 * by the lease (file_lock)
2080 *
2081 * Called from break_lease() with lock_kernel() held.
2082 * Note: we assume break_lease will only call this *once* for any given
2083 * lease.
2084 */
2085static
2086void nfsd_break_deleg_cb(struct file_lock *fl)
2087{
2088 struct nfs4_delegation *dp= (struct nfs4_delegation *)fl->fl_owner;
2089 struct task_struct *t;
2090
2091 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
2092 if (!dp)
2093 return;
2094
2095 /* We're assuming the state code never drops its reference
2096 * without first removing the lease. Since we're in this lease
2097 * callback (and since the lease code is serialized by the kernel
2098 * lock) we know the server hasn't removed the lease yet, we know
2099 * it's safe to take a reference: */
2100 atomic_inc(&dp->dl_count);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04002101 atomic_inc(&dp->dl_client->cl_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 spin_lock(&recall_lock);
2104 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
2105 spin_unlock(&recall_lock);
2106
2107 /* only place dl_time is set. protected by lock_kernel*/
2108 dp->dl_time = get_seconds();
2109
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04002110 /*
2111 * We don't want the locks code to timeout the lease for us;
2112 * we'll remove it ourself if the delegation isn't returned
2113 * in time.
2114 */
2115 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall");
2118 if (IS_ERR(t)) {
2119 struct nfs4_client *clp = dp->dl_client;
2120
2121 printk(KERN_INFO "NFSD: Callback thread failed for "
2122 "for client (clientid %08x/%08x)\n",
2123 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04002124 put_nfs4_client(dp->dl_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 nfs4_put_delegation(dp);
2126 }
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 *
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04002149 * Called from setlease() with lock_kernel() held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 */
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/*
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04002163 * Called from setlease() with lock_kernel() held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 */
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
NeilBrownfd39ca92005-06-23 22:04:03 -07002189static struct lock_manager_operations nfsd_lease_mng_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 .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
Al Virob37ad282006-10-19 23:28:59 -07002198__be32
Andy Adamson66689582009-04-03 08:28:45 +03002199nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2200 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 clientid_t *clientid = &open->op_clientid;
2203 struct nfs4_client *clp = NULL;
2204 unsigned int strhashval;
2205 struct nfs4_stateowner *sop = NULL;
2206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002208 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
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);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002215 open->op_stateowner = sop;
2216 if (!sop) {
2217 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 clp = find_confirmed_client(clientid);
2219 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002220 return nfserr_expired;
2221 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 }
Andy Adamson66689582009-04-03 08:28:45 +03002223 /* When sessions are used, skip open sequenceid processing */
2224 if (nfsd4_has_session(cstate))
2225 goto renew;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002226 if (!sop->so_confirmed) {
2227 /* Replace unconfirmed owners without checking for replay. */
2228 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002229 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002230 open->op_stateowner = NULL;
2231 goto renew;
2232 }
2233 if (open->op_seqid == sop->so_seqid - 1) {
2234 if (sop->so_replay.rp_buflen)
Al Viroa90b0612006-10-19 23:29:03 -07002235 return nfserr_replay_me;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002236 /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002248 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002256 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
2258
Al Virob37ad282006-10-19 23:28:59 -07002259static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07002260nfs4_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
NeilBrown52f4fb42005-06-23 22:02:49 -07002268static struct nfs4_delegation *
2269find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
2270{
2271 struct nfs4_delegation *dp;
2272
NeilBrownea1da632005-06-23 22:04:17 -07002273 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) {
NeilBrown52f4fb42005-06-23 22:02:49 -07002274 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
2275 return dp;
2276 }
2277 return NULL;
2278}
2279
Al Virob37ad282006-10-19 23:28:59 -07002280static __be32
NeilBrown567d9822005-06-23 22:02:53 -07002281nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
2282 struct nfs4_delegation **dp)
2283{
2284 int flags;
Al Virob37ad282006-10-19 23:28:59 -07002285 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07002286
2287 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
2288 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07002289 goto out;
NeilBrown567d9822005-06-23 22:02:53 -07002290 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;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002295out:
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;
NeilBrown567d9822005-06-23 22:02:53 -07002302}
2303
Al Virob37ad282006-10-19 23:28:59 -07002304static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
2306{
2307 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07002308 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 struct nfs4_stateowner *sop = open->op_stateowner;
2310
NeilBrown8beefa22005-06-23 22:03:08 -07002311 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 /* 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
NeilBrown5ac049a2005-06-23 22:03:03 -07002327static inline struct nfs4_stateid *
2328nfs4_alloc_stateid(void)
2329{
2330 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
2331}
2332
Al Virob37ad282006-10-19 23:28:59 -07002333static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
NeilBrown567d9822005-06-23 22:02:53 -07002335 struct nfs4_delegation *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 struct svc_fh *cur_fh, int flags)
2337{
2338 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
NeilBrown5ac049a2005-06-23 22:03:03 -07002340 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 if (stp == NULL)
2342 return nfserr_resource;
2343
NeilBrown567d9822005-06-23 22:02:53 -07002344 if (dp) {
2345 get_file(dp->dl_vfs_file);
2346 stp->st_vfs_file = dp->dl_vfs_file;
2347 } else {
Al Virob37ad282006-10-19 23:28:59 -07002348 __be32 status;
NeilBrown567d9822005-06-23 22:02:53 -07002349 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;
NeilBrown5ac049a2005-06-23 22:03:03 -07002354 kmem_cache_free(stateid_slab, stp);
NeilBrown567d9822005-06-23 22:02:53 -07002355 return status;
2356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 *stpp = stp;
2359 return 0;
2360}
2361
Al Virob37ad282006-10-19 23:28:59 -07002362static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363nfsd4_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))
Al Viro92465852006-01-18 17:43:46 -08002373 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2375}
2376
Al Virob37ad282006-10-19 23:28:59 -07002377static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378nfs4_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;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08002381 struct inode *inode = filp->f_path.dentry->d_inode;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002382 unsigned int share_access, new_writer;
Al Virob37ad282006-10-19 23:28:59 -07002383 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385 set_access(&share_access, stp->st_access_bmap);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002386 new_writer = (~share_access) & open->op_share_access
2387 & NFS4_SHARE_ACCESS_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002389 if (new_writer) {
Al Virob37ad282006-10-19 23:28:59 -07002390 int err = get_write_access(inode);
2391 if (err)
2392 return nfserrno(err);
Benny Halevye518f052008-07-04 15:38:41 +03002393 err = mnt_want_write(cur_fh->fh_export->ex_path.mnt);
2394 if (err)
2395 return nfserrno(err);
2396 file_take_write(filp);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 status = nfsd4_truncate(rqstp, cur_fh, open);
2399 if (status) {
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002400 if (new_writer)
2401 put_write_access(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 return status;
2403 }
2404 /* remember the open */
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002405 filp->f_mode |= open->op_share_access;
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04002406 __set_bit(open->op_share_access, &stp->st_access_bmap);
2407 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
2409 return nfs_ok;
2410}
2411
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413static void
NeilBrown37515172005-07-07 17:59:16 -07002414nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
NeilBrown37515172005-07-07 17:59:16 -07002416 open->op_stateowner->so_confirmed = 1;
2417 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
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;
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -04002428 struct nfs4_cb_conn *cb = &sop->so_client->cl_cb_conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 struct file_lock fl, *flp = &fl;
2430 int status, flag = 0;
2431
2432 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07002433 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.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002445 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07002446 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
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;
Felix Blyakher9167f502008-02-26 10:54:36 -08002466 fl.fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 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
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04002472 /* vfs_setlease checks to see if delegation should be handed out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 * the lock_manager callbacks fl_mylease and fl_change are used
2474 */
Felix Blyakher9167f502008-02-26 10:54:36 -08002475 if ((status = vfs_setlease(stp->st_vfs_file, fl.fl_type, &flp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
NeilBrownc9071322005-04-16 15:26:38 -07002477 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 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:
NeilBrown7b190fe2005-06-23 22:03:23 -07002490 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
2491 && flag == NFS4_OPEN_DELEGATE_NONE
2492 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002493 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 open->op_delegate_type = flag;
2495}
2496
2497/*
2498 * called with nfs4_lock_state() held.
2499 */
Al Virob37ad282006-10-19 23:28:59 -07002500__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2502{
Andy Adamson66689582009-04-03 08:28:45 +03002503 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 struct nfs4_file *fp = NULL;
2505 struct inode *ino = current_fh->fh_dentry->d_inode;
2506 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07002507 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07002508 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 status = nfserr_inval;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002511 if (!access_valid(open->op_share_access, resp->cstate.minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002512 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 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;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002523 status = nfs4_check_deleg(fp, open, &dp);
2524 if (status)
2525 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07002527 status = nfserr_bad_stateid;
2528 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2529 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 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;
NeilBrown444c2c02005-07-07 17:59:22 -07002545 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 } else {
2547 /* Stateid was not found, this is a new OPEN */
2548 int flags = 0;
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -07002549 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002550 flags |= NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002552 flags |= NFSD_MAY_WRITE;
NeilBrown567d9822005-06-23 22:02:53 -07002553 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
2554 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 goto out;
2556 init_stateid(stp, fp, open);
2557 status = nfsd4_truncate(rqstp, current_fh, open);
2558 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05002559 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 goto out;
2561 }
Andy Adamson66689582009-04-03 08:28:45 +03002562 if (nfsd4_has_session(&resp->cstate))
2563 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 }
2565 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
2566
Andy Adamson66689582009-04-03 08:28:45 +03002567 if (nfsd4_has_session(&resp->cstate))
2568 open->op_stateowner->so_confirmed = 1;
2569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 /*
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:
NeilBrown13cd2182005-06-23 22:03:10 -07002582 if (fp)
2583 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07002584 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
2585 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 /*
2587 * To finish the open response, we just need to set the rflags.
2588 */
2589 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Andy Adamson66689582009-04-03 08:28:45 +03002590 if (!open->op_stateowner->so_confirmed &&
2591 !nfsd4_has_session(&resp->cstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
2593
2594 return status;
2595}
2596
Al Virob37ad282006-10-19 23:28:59 -07002597__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002598nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2599 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
2601 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07002602 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
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;
NeilBrownea1da632005-06-23 22:04:17 -07002619 if (!list_empty(&clp->cl_delegations)
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -04002620 && !atomic_read(&clp->cl_cb_conn.cb_set))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 goto out;
2622 status = nfs_ok;
2623out:
2624 nfs4_unlock_state();
2625 return status;
2626}
2627
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002628struct lock_manager nfsd4_manager = {
2629};
2630
NeilBrowna76b4312005-06-23 22:04:01 -07002631static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002632nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07002633{
2634 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07002635 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002636 locks_end_grace(&nfsd4_manager);
NeilBrowna76b4312005-06-23 22:04:01 -07002637}
2638
NeilBrownfd39ca92005-06-23 22:04:03 -07002639static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640nfs4_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");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002653 if (locks_in_grace())
2654 nfsd4_end_grace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 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);
NeilBrownc7b9a452005-06-23 22:04:30 -07002665 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 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);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002699 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 }
2701 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
2702 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
2703 nfs4_unlock_state();
2704 return clientid_val;
2705}
2706
Harvey Harrisona254b242008-02-20 12:49:00 -08002707static struct workqueue_struct *laundry_wq;
2708static void laundromat_main(struct work_struct *);
2709static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
2710
2711static void
David Howellsc4028952006-11-22 14:57:56 +00002712laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713{
2714 time_t t;
2715
2716 t = nfs4_laundromat();
2717 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07002718 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719}
2720
NeilBrownfd39ca92005-06-23 22:04:03 -07002721static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07002722search_close_lru(u32 st_id, int flags)
2723{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 struct nfs4_stateowner *local = NULL;
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 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{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08002738 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739}
2740
2741static int
2742STALE_STATEID(stateid_t *stateid)
2743{
Bian Naimeng78155ed2009-04-22 18:25:37 +08002744 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)) &&
J. Bruce Fieldsb8fd47a2009-04-29 11:36:17 -04002759 time_before((unsigned long)(stateid->si_boot + lease_time), get_seconds())) {
Bian Naimeng78155ed2009-04-22 18:25:37 +08002760 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
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
Al Virob37ad282006-10-19 23:28:59 -07002798__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
Al Virob37ad282006-10-19 23:28:59 -07002800 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
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
Al Virob37ad282006-10-19 23:28:59 -07002811static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2813{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002814 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002816 else if (locks_in_grace()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 /* 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
J. Bruce Fields18f82732009-02-21 15:23:01 -08002833grace_disallows_io(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002835 return locks_in_grace() && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836}
2837
Andy Adamson66689582009-04-03 08:28:45 +03002838static int check_stateid_generation(stateid_t *in, stateid_t *ref, int flags)
J. Bruce Fields0836f582008-01-26 19:08:12 -05002839{
Andy Adamson66689582009-04-03 08:28:45 +03002840 /*
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
J. Bruce Fields0836f582008-01-26 19:08:12 -05002847 /* 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;
Andy Adamson66689582009-04-03 08:28:45 +03002862out:
J. Bruce Fields0836f582008-01-26 19:08:12 -05002863 return nfs_ok;
2864}
2865
J. Bruce Fields3e633072009-02-21 13:17:19 -08002866static int is_delegation_stateid(stateid_t *stateid)
2867{
2868 return stateid->si_fileid == 0;
2869}
2870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871/*
2872* Checks for stateid operations
2873*/
Al Virob37ad282006-10-19 23:28:59 -07002874__be32
Benny Halevydd453df2009-04-03 08:28:41 +03002875nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
2876 stateid_t *stateid, int flags, struct file **filpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
2878 struct nfs4_stateid *stp = NULL;
2879 struct nfs4_delegation *dp = NULL;
Benny Halevydd453df2009-04-03 08:28:41 +03002880 struct svc_fh *current_fh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07002882 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 if (filpp)
2885 *filpp = NULL;
2886
J. Bruce Fields18f82732009-02-21 15:23:01 -08002887 if (grace_disallows_io(ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 return nfserr_grace;
2889
Andy Adamson66689582009-04-03 08:28:45 +03002890 if (nfsd4_has_session(cstate))
2891 flags |= HAS_SESSION;
2892
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2894 return check_special_stateids(current_fh, stateid, flags);
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 status = nfserr_stale_stateid;
2897 if (STALE_STATEID(stateid))
2898 goto out;
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 status = nfserr_bad_stateid;
J. Bruce Fields3e633072009-02-21 13:17:19 -08002901 if (is_delegation_stateid(stateid)) {
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002902 dp = find_delegation_stateid(ino, stateid);
Bian Naimeng78155ed2009-04-22 18:25:37 +08002903 if (!dp) {
2904 status = stateid_error_map(stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 goto out;
Bian Naimeng78155ed2009-04-22 18:25:37 +08002906 }
Andy Adamson66689582009-04-03 08:28:45 +03002907 status = check_stateid_generation(stateid, &dp->dl_stateid,
2908 flags);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002909 if (status)
2910 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002911 status = nfs4_check_delegmode(dp, flags);
2912 if (status)
2913 goto out;
2914 renew_client(dp->dl_client);
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002915 if (filpp)
2916 *filpp = dp->dl_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002918 stp = find_stateid(stateid, flags);
Bian Naimeng78155ed2009-04-22 18:25:37 +08002919 if (!stp) {
2920 status = stateid_error_map(stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 goto out;
Bian Naimeng78155ed2009-04-22 18:25:37 +08002922 }
J. Bruce Fields6150ef02009-02-21 13:36:16 -08002923 if (nfs4_check_fh(current_fh, stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 goto out;
2925 if (!stp->st_stateowner->so_confirmed)
2926 goto out;
Andy Adamson66689582009-04-03 08:28:45 +03002927 status = check_stateid_generation(stateid, &stp->st_stateid,
2928 flags);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002929 if (status)
2930 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002931 status = nfs4_check_openmode(stp, flags);
2932 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 goto out;
2934 renew_client(stp->st_stateowner->so_client);
2935 if (filpp)
2936 *filpp = stp->st_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 }
2938 status = nfs_ok;
2939out:
2940 return status;
2941}
2942
NeilBrown4c4cd222005-07-07 17:59:27 -07002943static inline int
2944setlkflg (int type)
2945{
2946 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
2947 RD_STATE : WR_STATE;
2948}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
2950/*
2951 * Checks for sequence id mutating operations.
2952 */
Al Virob37ad282006-10-19 23:28:59 -07002953static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03002954nfs4_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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 struct nfs4_stateid *stp;
2960 struct nfs4_stateowner *sop;
Benny Halevydd453df2009-04-03 08:28:41 +03002961 struct svc_fh *current_fh = &cstate->current_fh;
J. Bruce Fields0836f582008-01-26 19:08:12 -05002962 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
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);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 *stpp = NULL;
2970 *sopp = NULL;
2971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002973 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002974 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 }
2976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07002978 return nfserr_stale_stateid;
Andy Adamson66689582009-04-03 08:28:45 +03002979
2980 if (nfsd4_has_session(cstate))
2981 flags |= HAS_SESSION;
2982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 /*
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 */
NeilBrownf8816512005-07-07 17:59:25 -07002988 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)
Bian Naimeng78155ed2009-04-22 18:25:37 +08002996 return stateid_error_map(stateid);
NeilBrownf8816512005-07-07 17:59:25 -07002997 *sopp = sop;
2998 goto check_replay;
2999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
J. Bruce Fields39325bd2007-11-26 17:06:39 -05003001 *stpp = stp;
3002 *sopp = sop = stp->st_stateowner;
3003
NeilBrown4c4cd222005-07-07 17:59:27 -07003004 if (lock) {
NeilBrown4c4cd222005-07-07 17:59:27 -07003005 clientid_t *lockclid = &lock->v.new.clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 struct nfs4_client *clp = sop->so_client;
NeilBrown4c4cd222005-07-07 17:59:27 -07003007 int lkflg = 0;
Al Virob37ad282006-10-19 23:28:59 -07003008 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
NeilBrown4c4cd222005-07-07 17:59:27 -07003010 lkflg = setlkflg(lock->lk_type);
3011
3012 if (lock->lk_is_new) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003013 if (!sop->so_is_open_owner)
3014 return nfserr_bad_stateid;
Andy Adamson60adfc52009-04-03 08:28:50 +03003015 if (!(flags & HAS_SESSION) &&
3016 !same_clid(&clp->cl_clientid, lockclid))
3017 return nfserr_bad_stateid;
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003018 /* 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;
NeilBrown4c4cd222005-07-07 17:59:27 -07003027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 }
3029
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003030 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003031 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07003032 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 }
3034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 /*
3036 * We now validate the seqid and stateid generation numbers.
3037 * For the moment, we ignore the possibility of
3038 * generation number wraparound.
3039 */
Andy Adamson66689582009-04-03 08:28:45 +03003040 if (!(flags & HAS_SESSION) && seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 goto check_replay;
3042
NeilBrown3a4f98b2005-07-07 17:59:26 -07003043 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003044 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003045 " unconfirmed stateowner!\n");
3046 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07003048 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003049 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003050 " confirmed yet!\n");
3051 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 }
Andy Adamson66689582009-04-03 08:28:45 +03003053 status = check_stateid_generation(stateid, &stp->st_stateid, flags);
J. Bruce Fields0836f582008-01-26 19:08:12 -05003054 if (status)
3055 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07003056 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07003057 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07003060 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07003061 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 /* indicate replay to calling function */
Al Viroa90b0612006-10-19 23:29:03 -07003063 return nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 }
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003065 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
NeilBrown3a4f98b2005-07-07 17:59:26 -07003066 sop->so_seqid, seqid);
3067 *sopp = NULL;
3068 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069}
3070
Al Virob37ad282006-10-19 23:28:59 -07003071__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003072nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003073 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074{
Al Virob37ad282006-10-19 23:28:59 -07003075 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 struct nfs4_stateowner *sop;
3077 struct nfs4_stateid *stp;
3078
3079 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003080 (int)cstate->current_fh.fh_dentry->d_name.len,
3081 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003083 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07003084 if (status)
3085 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087 nfs4_lock_state();
3088
Benny Halevydd453df2009-04-03 08:28:41 +03003089 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003090 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003091 CONFIRM | OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 &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);
NeilBrownc7b9a452005-06-23 22:04:30 -07003105
3106 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107out:
Neil Brownf2327d92005-09-13 01:25:37 -07003108 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 nfs4_get_stateowner(oc->oc_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003110 cstate->replay_owner = oc->oc_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 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
Al Virob37ad282006-10-19 23:28:59 -07003141__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003142nfsd4_open_downgrade(struct svc_rqst *rqstp,
3143 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003144 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
Al Virob37ad282006-10-19 23:28:59 -07003146 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 struct nfs4_stateid *stp;
3148 unsigned int share_access;
3149
3150 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003151 (int)cstate->current_fh.fh_dentry->d_name.len,
3152 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Andy Adamsond87a8ad2009-04-03 08:28:53 +03003154 if (!access_valid(od->od_share_access, cstate->minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07003155 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 return nfserr_inval;
3157
3158 nfs4_lock_state();
Benny Halevydd453df2009-04-03 08:28:41 +03003159 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003160 od->od_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 &od->od_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003162 OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 &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:
Neil Brownf2327d92005-09-13 01:25:37 -07003188 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 nfs4_get_stateowner(od->od_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003190 cstate->replay_owner = od->od_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 nfs4_unlock_state();
3193 return status;
3194}
3195
3196/*
3197 * nfs4_unlock_state() called after encode
3198 */
Al Virob37ad282006-10-19 23:28:59 -07003199__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003200nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003201 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202{
Al Virob37ad282006-10-19 23:28:59 -07003203 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 struct nfs4_stateid *stp;
3205
3206 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003207 (int)cstate->current_fh.fh_dentry->d_name.len,
3208 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
3210 nfs4_lock_state();
3211 /* check close_lru for replay */
Benny Halevydd453df2009-04-03 08:28:41 +03003212 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003213 close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 &close->cl_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003215 OPEN_STATE | CLOSE_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 &close->cl_stateowner, &stp, NULL)))
3217 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 status = nfs_ok;
3219 update_stateid(&stp->st_stateid);
3220 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
3221
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003222 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05003223 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003224
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231out:
Neil Brownf2327d92005-09-13 01:25:37 -07003232 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 nfs4_get_stateowner(close->cl_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003234 cstate->replay_owner = close->cl_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 nfs4_unlock_state();
3237 return status;
3238}
3239
Al Virob37ad282006-10-19 23:28:59 -07003240__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003241nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3242 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003244 struct nfs4_delegation *dp;
3245 stateid_t *stateid = &dr->dr_stateid;
3246 struct inode *inode;
Al Virob37ad282006-10-19 23:28:59 -07003247 __be32 status;
Andy Adamson66689582009-04-03 08:28:45 +03003248 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003250 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003251 return status;
3252 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Andy Adamson66689582009-04-03 08:28:45 +03003254 if (nfsd4_has_session(cstate))
3255 flags |= HAS_SESSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 nfs4_lock_state();
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003257 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;
J. Bruce Fields7e0f7cf2009-02-21 13:32:28 -08003263 status = nfserr_bad_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003264 if (!is_delegation_stateid(stateid))
3265 goto out;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003266 dp = find_delegation_stateid(inode, stateid);
Bian Naimeng78155ed2009-04-22 18:25:37 +08003267 if (!dp) {
3268 status = stateid_error_map(stateid);
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003269 goto out;
Bian Naimeng78155ed2009-04-22 18:25:37 +08003270 }
Andy Adamson66689582009-04-03 08:28:45 +03003271 status = check_stateid_generation(stateid, &dp->dl_stateid, flags);
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003272 if (status)
3273 goto out;
3274 renew_client(dp->dl_client);
3275
3276 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003278 nfs4_unlock_state();
3279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 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
Benny Halevy87df4de2008-12-15 19:42:03 +02003292static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312#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
NeilBrownfd39ca92005-06-23 22:04:03 -07003328static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329find_stateid(stateid_t *stid, int flags)
3330{
Krishna Kumar9346eff2008-10-20 11:44:28 +05303331 struct nfs4_stateid *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 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);
Krishna Kumar9346eff2008-10-20 11:44:28 +05303337 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 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 }
Krishna Kumar9346eff2008-10-20 11:44:28 +05303345
3346 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 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 }
Neil Brown849823c2005-09-13 01:25:36 -07003353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 return NULL;
3355}
3356
3357static struct nfs4_delegation *
3358find_delegation_stateid(struct inode *ino, stateid_t *stid)
3359{
NeilBrown13cd2182005-06-23 22:03:10 -07003360 struct nfs4_file *fp;
3361 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07003368 if (!fp)
3369 return NULL;
3370 dl = find_delegation_file(fp, stid);
3371 put_nfs4_file(fp);
3372 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373}
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
NeilBrownd5b90262006-04-10 22:55:22 -07003392/* 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. */
Adrian Bunke465a772006-04-10 22:55:23 -07003394static struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07003395};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
3397static inline void
3398nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3399{
NeilBrownd5b90262006-04-10 22:55:22 -07003400 struct nfs4_stateowner *sop;
3401 unsigned int hval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
NeilBrownd5b90262006-04-10 22:55:22 -07003403 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3404 sop = (struct nfs4_stateowner *) fl->fl_owner;
3405 hval = lockownerid_hashval(sop->so_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 kref_get(&sop->so_ref);
3407 deny->ld_sop = sop;
3408 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07003409 } else {
3410 deny->ld_sop = NULL;
3411 deny->ld_clientid.cl_boot = 0;
3412 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 }
3414 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02003415 deny->ld_length = NFS4_MAX_UINT64;
3416 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 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
3423static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424find_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) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003431 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 */
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);
NeilBrownea1da632005-06-23 22:04:17 -07003457 INIT_LIST_HEAD(&sop->so_stateids);
3458 INIT_LIST_HEAD(&sop->so_perstateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 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]);
NeilBrownea1da632005-06-23 22:04:17 -07003463 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 sop->so_is_open_owner = 0;
3465 sop->so_id = current_ownerid++;
3466 sop->so_client = clp;
Neil Brownb59e3c02005-09-13 01:25:38 -07003467 /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 sop->so_confirmed = 1;
3471 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08003472 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 rp->rp_buflen = 0;
3474 rp->rp_buf = rp->rp_ibuf;
3475 return sop;
3476}
3477
NeilBrownfd39ca92005-06-23 22:04:03 -07003478static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479alloc_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
NeilBrown5ac049a2005-06-23 22:03:03 -07003484 stp = nfs4_alloc_stateid();
3485 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 goto out;
3487 INIT_LIST_HEAD(&stp->st_hash);
3488 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07003489 INIT_LIST_HEAD(&stp->st_perstateowner);
3490 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07003492 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07003493 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07003495 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 stp->st_file = fp;
Bian Naimeng78155ed2009-04-22 18:25:37 +08003497 stp->st_stateid.si_boot = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 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;
NeilBrown4c4cd222005-07-07 17:59:27 -07003504 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
3506out:
3507 return stp;
3508}
3509
NeilBrownfd39ca92005-06-23 22:04:03 -07003510static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511check_lock_length(u64 offset, u64 length)
3512{
Benny Halevy87df4de2008-12-15 19:42:03 +02003513 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 LOFF_OVERFLOW(offset, length)));
3515}
3516
3517/*
3518 * LOCK operation
3519 */
Al Virob37ad282006-10-19 23:28:59 -07003520__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003521nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003522 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523{
NeilBrown3e9e3db2005-06-23 22:04:20 -07003524 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07003525 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 struct nfs4_stateid *lock_stp;
3527 struct file *filp;
3528 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05003529 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07003530 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 unsigned int strhashval;
Marc Eshel150b3932007-01-18 16:15:35 -05003532 unsigned int cmd;
Al Virob8dd7b92006-10-19 23:29:01 -07003533 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
3535 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3536 (long long) lock->lk_offset,
3537 (long long) lock->lk_length);
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 if (check_lock_length(lock->lk_offset, lock->lk_length))
3540 return nfserr_inval;
3541
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003542 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02003543 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08003544 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3545 return status;
3546 }
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 nfs4_lock_state();
3549
3550 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07003551 /*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 struct nfs4_stateid *open_stp = NULL;
3557 struct nfs4_file *fp;
3558
3559 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03003560 if (!nfsd4_has_session(cstate) &&
3561 STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 /* validate and update open stateid and open seqid */
Benny Halevydd453df2009-04-03 08:28:41 +03003565 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 lock->lk_new_open_seqid,
3567 &lock->lk_new_open_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003568 OPEN_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08003569 &lock->lk_replay_owner, &open_stp,
Neil Brownb59e3c02005-09-13 01:25:38 -07003570 lock);
NeilBrown37515172005-07-07 17:59:16 -07003571 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08003573 open_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 /* 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);
NeilBrown3e9e3db2005-06-23 22:04:20 -07003579 /* 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)? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 status = nfserr_resource;
Neil Brownb59e3c02005-09-13 01:25:38 -07003583 lock_sop = alloc_init_lock_stateowner(strhashval,
3584 open_sop->so_client, open_stp, lock);
3585 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07003587 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08003588 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 } else {
3591 /* lock (lock owner + lock stateid) already exists */
Benny Halevydd453df2009-04-03 08:28:41 +03003592 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 lock->lk_old_lock_seqid,
3594 &lock->lk_old_lock_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003595 LOCK_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08003596 &lock->lk_replay_owner, &lock_stp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 if (status)
3598 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08003599 lock_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08003601 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 filp = lock_stp->st_vfs_file;
3603
NeilBrown0dd395d2005-07-07 17:59:15 -07003604 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003605 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07003606 goto out;
3607 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003608 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07003609 goto out;
3610
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 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;
Marc Eshel150b3932007-01-18 16:15:35 -05003616 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 break;
3618 case NFS4_WRITE_LT:
3619 case NFS4_WRITEW_LT:
3620 file_lock.fl_type = F_WRLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05003621 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 break;
3623 default:
3624 status = nfserr_inval;
3625 goto out;
3626 }
Neil Brownb59e3c02005-09-13 01:25:38 -07003627 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 file_lock.fl_pid = current->tgid;
3629 file_lock.fl_file = filp;
3630 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07003631 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
3633 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02003634 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 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
Marc Eshelfd85b812006-11-28 16:26:41 -05003642 err = vfs_lock_file(filp, cmd, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07003643 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 case 0: /* success! */
3645 update_stateid(&lock_stp->st_stateid);
3646 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
3647 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07003648 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08003649 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 case (EDEADLK):
3656 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08003657 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05003659 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08003660 status = nfserr_resource;
3661 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08003664 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003665 release_lockowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08003666 if (lock->lk_replay_owner) {
3667 nfs4_get_stateowner(lock->lk_replay_owner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003668 cstate->replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07003669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 nfs4_unlock_state();
3671 return status;
3672}
3673
3674/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08003675 * 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
3693/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 * LOCKT operation
3695 */
Al Virob37ad282006-10-19 23:28:59 -07003696__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003697nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3698 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699{
3700 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 struct file_lock file_lock;
Marc Eshelfd85b812006-11-28 16:26:41 -05003702 int error;
Al Virob37ad282006-10-19 23:28:59 -07003703 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003705 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 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;
Andy Adamson60adfc52009-04-03 08:28:50 +03003715 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003718 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) {
Neil Brown849823c2005-09-13 01:25:36 -07003719 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 if (status == nfserr_symlink)
3721 status = nfserr_inval;
3722 goto out;
3723 }
3724
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003725 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 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:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003737 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 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;
Benny Halevy87df4de2008-12-15 19:42:03 +02003750 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
3752 nfs4_transform_lock_offset(&file_lock);
3753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08003755 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05003756 if (error) {
3757 status = nfserrno(error);
3758 goto out;
3759 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05003760 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05003762 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 }
3764out:
3765 nfs4_unlock_state();
3766 return status;
3767}
3768
Al Virob37ad282006-10-19 23:28:59 -07003769__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003770nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003771 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772{
3773 struct nfs4_stateid *stp;
3774 struct file *filp = NULL;
3775 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07003776 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07003777 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778
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
Benny Halevydd453df2009-04-03 08:28:41 +03003788 if ((status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 locku->lu_seqid,
3790 &locku->lu_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003791 LOCK_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 &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;
NeilBrownd5b90262006-04-10 22:55:22 -07003803 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 file_lock.fl_start = locku->lu_offset;
3805
Benny Halevy87df4de2008-12-15 19:42:03 +02003806 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 nfs4_transform_lock_offset(&file_lock);
3808
3809 /*
3810 * Try to unlock the file in the VFS.
3811 */
Marc Eshelfd85b812006-11-28 16:26:41 -05003812 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07003813 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05003814 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 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:
Neil Brownf2327d92005-09-13 01:25:37 -07003824 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 nfs4_get_stateowner(locku->lu_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003826 cstate->replay_owner = locku->lu_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 nfs4_unlock_state();
3829 return status;
3830
3831out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07003832 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 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;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08003845 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 int status = 0;
3847
3848 lock_kernel();
3849 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003850 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 status = 1;
3852 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 }
3855out:
3856 unlock_kernel();
3857 return status;
3858}
3859
Al Virob37ad282006-10-19 23:28:59 -07003860__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003861nfsd4_release_lockowner(struct svc_rqst *rqstp,
3862 struct nfsd4_compound_state *cstate,
3863 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864{
3865 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003866 struct nfs4_stateowner *sop;
3867 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003869 struct list_head matches;
3870 int i;
Al Virob37ad282006-10-19 23:28:59 -07003871 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
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;
Neil Brown849823c2005-09-13 01:25:36 -07003879 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
3882 nfs4_lock_state();
3883
NeilBrown3e9e3db2005-06-23 22:04:20 -07003884 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) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003892 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07003893 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07003903 }
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;
NeilBrown0fa822e2005-07-07 17:59:14 -07003908 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);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003914 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 }
3916out:
3917 nfs4_unlock_state();
3918 return status;
3919}
3920
3921static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07003922alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923{
NeilBrowna55370a2005-06-23 22:03:52 -07003924 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925}
3926
NeilBrownc7b9a452005-06-23 22:04:30 -07003927int
Andy Adamsona1bcecd2009-04-03 08:28:05 +03003928nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
NeilBrownc7b9a452005-06-23 22:04:30 -07003929{
3930 unsigned int strhashval = clientstr_hashval(name);
3931 struct nfs4_client *clp;
3932
Andy Adamsona1bcecd2009-04-03 08:28:05 +03003933 clp = find_confirmed_client_by_str(name, strhashval, use_exchange_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07003934 return clp ? 1 : 0;
3935}
3936
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937/*
3938 * failure => all reset bets are off, nfserr_no_grace...
3939 */
NeilBrown190e4fb2005-06-23 22:04:25 -07003940int
3941nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942{
3943 unsigned int strhashval;
3944 struct nfs4_client_reclaim *crp = NULL;
3945
NeilBrowna55370a2005-06-23 22:03:52 -07003946 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
3947 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 if (!crp)
3949 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07003950 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 INIT_LIST_HEAD(&crp->cr_strhash);
3952 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07003953 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 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. */
NeilBrownfd39ca92005-06-23 22:04:03 -07003978static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979nfs4_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
NeilBrowna55370a2005-06-23 22:03:52 -07003991 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
3995 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07003996 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07003998 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 return crp;
4000 }
4001 }
4002 return NULL;
4003}
4004
4005/*
4006* Called from OPEN. Look for clientid in reclaim list.
4007*/
Al Virob37ad282006-10-19 23:28:59 -07004008__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009nfs4_check_open_reclaim(clientid_t *clid)
4010{
NeilBrowndfc83562005-06-23 22:03:16 -07004011 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012}
4013
NeilBrownac4d8ff22005-06-23 22:03:30 -07004014/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004016int
NeilBrownac4d8ff22005-06-23 22:03:30 -07004017nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004019 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004021 status = nfsd4_init_slabs();
4022 if (status)
4023 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 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]);
4029 }
Marc Eshel5282fd72009-04-03 08:27:52 +03004030 for (i = 0; i < SESSION_HASH_SIZE; i++)
4031 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 for (i = 0; i < FILE_HASH_SIZE; i++) {
4033 INIT_LIST_HEAD(&file_hashtbl[i]);
4034 }
4035 for (i = 0; i < OWNER_HASH_SIZE; i++) {
4036 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
4037 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
4038 }
4039 for (i = 0; i < STATEID_HASH_SIZE; i++) {
4040 INIT_LIST_HEAD(&stateid_hashtbl[i]);
4041 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
4042 }
4043 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4044 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
4045 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
4046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 INIT_LIST_HEAD(&close_lru);
4049 INIT_LIST_HEAD(&client_lru);
4050 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07004051 for (i = 0; i < CLIENT_HASH_SIZE; i++)
4052 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
4053 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004054 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07004055}
4056
NeilBrown190e4fb2005-06-23 22:04:25 -07004057static void
4058nfsd4_load_reboot_recovery_data(void)
4059{
4060 int status;
4061
NeilBrown0964a3d2005-06-23 22:04:32 -07004062 nfs4_lock_state();
4063 nfsd4_init_recdir(user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -07004064 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07004065 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07004066 if (status)
4067 printk("NFSD: Failure reading reboot recovery data\n");
4068}
4069
Marc Eshel9a8db972007-07-17 04:04:35 -07004070unsigned long
4071get_nfs4_grace_period(void)
4072{
4073 return max(user_lease_time, lease_time) * HZ;
4074}
4075
Meelap Shahc2f1a552007-07-17 04:04:39 -07004076/*
4077 * Since the lifetime of a delegation isn't limited to that of an open, a
4078 * client may quite reasonably hang on to a delegation as long as it has
4079 * the inode cached. This becomes an obvious problem the first time a
4080 * client's inode cache approaches the size of the server's total memory.
4081 *
4082 * For now we avoid this problem by imposing a hard limit on the number
4083 * of delegations, which varies according to the server's memory size.
4084 */
4085static void
4086set_max_delegations(void)
4087{
4088 /*
4089 * Allow at most 4 delegations per megabyte of RAM. Quick
4090 * estimates suggest that in the worst case (where every delegation
4091 * is for a different inode), a delegation could take about 1.5K,
4092 * giving a worst case usage of about 6% of memory.
4093 */
4094 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4095}
4096
NeilBrownac4d8ff22005-06-23 22:03:30 -07004097/* initialization to perform when the nfsd service is started: */
4098
4099static void
4100__nfs4_state_start(void)
4101{
Marc Eshel9a8db972007-07-17 04:04:35 -07004102 unsigned long grace_time;
NeilBrownac4d8ff22005-06-23 22:03:30 -07004103
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004105 grace_time = get_nfs4_grace_period();
NeilBrownd99a05a2005-06-23 22:03:21 -07004106 lease_time = user_lease_time;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004107 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07004108 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
4109 grace_time/HZ);
NeilBrown58da2822005-06-23 22:03:19 -07004110 laundry_wq = create_singlethread_workqueue("nfsd4");
Marc Eshel9a8db972007-07-17 04:04:35 -07004111 queue_delayed_work(laundry_wq, &laundromat_work, grace_time);
Meelap Shahc2f1a552007-07-17 04:04:39 -07004112 set_max_delegations();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113}
4114
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004115void
NeilBrown76a35502005-06-23 22:03:26 -07004116nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 if (nfs4_init)
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004119 return;
NeilBrown190e4fb2005-06-23 22:04:25 -07004120 nfsd4_load_reboot_recovery_data();
NeilBrown76a35502005-06-23 22:03:26 -07004121 __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 nfs4_init = 1;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004123 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124}
4125
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126time_t
4127nfs4_lease_time(void)
4128{
4129 return lease_time;
4130}
4131
4132static void
4133__nfs4_state_shutdown(void)
4134{
4135 int i;
4136 struct nfs4_client *clp = NULL;
4137 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 struct list_head *pos, *next, reaplist;
4139
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4141 while (!list_empty(&conf_id_hashtbl[i])) {
4142 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4143 expire_client(clp);
4144 }
4145 while (!list_empty(&unconf_str_hashtbl[i])) {
4146 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4147 expire_client(clp);
4148 }
4149 }
4150 INIT_LIST_HEAD(&reaplist);
4151 spin_lock(&recall_lock);
4152 list_for_each_safe(pos, next, &del_recall_lru) {
4153 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4154 list_move(&dp->dl_recall_lru, &reaplist);
4155 }
4156 spin_unlock(&recall_lock);
4157 list_for_each_safe(pos, next, &reaplist) {
4158 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4159 list_del_init(&dp->dl_recall_lru);
4160 unhash_delegation(dp);
4161 }
4162
NeilBrown190e4fb2005-06-23 22:04:25 -07004163 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 nfs4_init = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165}
4166
4167void
4168nfs4_state_shutdown(void)
4169{
NeilBrown5e8d5c22006-04-10 22:55:37 -07004170 cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work);
4171 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06004172 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 nfs4_lock_state();
4174 nfs4_release_reclaim();
4175 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 nfs4_unlock_state();
4177}
4178
Jeff Layton3dd98a32008-06-10 08:40:36 -04004179/*
4180 * user_recovery_dirname is protected by the nfsd_mutex since it's only
4181 * accessed when nfsd is starting.
4182 */
NeilBrown0964a3d2005-06-23 22:04:32 -07004183static void
4184nfs4_set_recdir(char *recdir)
4185{
NeilBrown0964a3d2005-06-23 22:04:32 -07004186 strcpy(user_recovery_dirname, recdir);
NeilBrown0964a3d2005-06-23 22:04:32 -07004187}
4188
4189/*
4190 * Change the NFSv4 recovery directory to recdir.
4191 */
4192int
4193nfs4_reset_recoverydir(char *recdir)
4194{
4195 int status;
Al Viroa63bb992008-08-02 01:03:36 -04004196 struct path path;
NeilBrown0964a3d2005-06-23 22:04:32 -07004197
Al Viroa63bb992008-08-02 01:03:36 -04004198 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
NeilBrown0964a3d2005-06-23 22:04:32 -07004199 if (status)
4200 return status;
4201 status = -ENOTDIR;
Al Viroa63bb992008-08-02 01:03:36 -04004202 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
NeilBrown0964a3d2005-06-23 22:04:32 -07004203 nfs4_set_recdir(recdir);
4204 status = 0;
4205 }
Al Viroa63bb992008-08-02 01:03:36 -04004206 path_put(&path);
NeilBrown0964a3d2005-06-23 22:04:32 -07004207 return status;
4208}
4209
Jeff Layton3dd98a32008-06-10 08:40:36 -04004210char *
4211nfs4_recoverydir(void)
4212{
4213 return user_recovery_dirname;
4214}
4215
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216/*
4217 * Called when leasetime is changed.
4218 *
NeilBrownd99a05a2005-06-23 22:03:21 -07004219 * The only way the protocol gives us to handle on-the-fly lease changes is to
4220 * simulate a reboot. Instead of doing that, we just wait till the next time
4221 * we start to register any changes in lease time. If the administrator
4222 * really wants to change the lease time *now*, they can go ahead and bring
4223 * nfsd down and then back up again after changing the lease time.
Jeff Layton3dd98a32008-06-10 08:40:36 -04004224 *
4225 * user_lease_time is protected by nfsd_mutex since it's only really accessed
4226 * when nfsd is starting
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 */
4228void
4229nfs4_reset_lease(time_t leasetime)
4230{
NeilBrownd99a05a2005-06-23 22:03:21 -07004231 user_lease_time = leasetime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232}