blob: 9295c4b56bce696e201f1e026701e2957e30e895 [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 */
NeilBrownd99a05ad2005-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;
J. Bruce Fieldsb53d40c2009-05-01 19:50:00 -0400206 dp->dl_ident = cb->cb_ident;
Bian Naimeng78155ed2009-04-22 18:25:37 +0800207 dp->dl_stateid.si_boot = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 dp->dl_stateid.si_stateownerid = current_delegid++;
209 dp->dl_stateid.si_fileid = 0;
210 dp->dl_stateid.si_generation = 0;
J. Bruce Fields6c02eaa2009-02-02 17:30:51 -0500211 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 dp->dl_time = 0;
213 atomic_set(&dp->dl_count, 1);
NeilBrownea1da632005-06-23 22:04:17 -0700214 list_add(&dp->dl_perfile, &fp->fi_delegations);
215 list_add(&dp->dl_perclnt, &clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return dp;
217}
218
219void
220nfs4_put_delegation(struct nfs4_delegation *dp)
221{
222 if (atomic_dec_and_test(&dp->dl_count)) {
223 dprintk("NFSD: freeing dp %p\n",dp);
NeilBrown13cd2182005-06-23 22:03:10 -0700224 put_nfs4_file(dp->dl_file);
NeilBrown5b2d21c2005-06-23 22:03:04 -0700225 kmem_cache_free(deleg_slab, dp);
NeilBrownef0f3392006-04-10 22:55:41 -0700226 num_delegations--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228}
229
230/* Remove the associated file_lock first, then remove the delegation.
231 * lease_modify() is called to remove the FS_LEASE file_lock from
232 * the i_flock list, eventually calling nfsd's lock_manager
233 * fl_release_callback.
234 */
235static void
236nfs4_close_delegation(struct nfs4_delegation *dp)
237{
238 struct file *filp = dp->dl_vfs_file;
239
240 dprintk("NFSD: close_delegation dp %p\n",dp);
241 dp->dl_vfs_file = NULL;
242 /* The following nfsd_close may not actually close the file,
243 * but we want to remove the lease in any case. */
NeilBrownc9071322005-04-16 15:26:38 -0700244 if (dp->dl_flock)
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -0400245 vfs_setlease(filp, F_UNLCK, &dp->dl_flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 nfsd_close(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/* Called under the state lock. */
250static void
251unhash_delegation(struct nfs4_delegation *dp)
252{
NeilBrownea1da632005-06-23 22:04:17 -0700253 list_del_init(&dp->dl_perfile);
254 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 spin_lock(&recall_lock);
256 list_del_init(&dp->dl_recall_lru);
257 spin_unlock(&recall_lock);
258 nfs4_close_delegation(dp);
259 nfs4_put_delegation(dp);
260}
261
262/*
263 * SETCLIENTID state
264 */
265
266/* Hash tables for nfs4_clientid state */
267#define CLIENT_HASH_BITS 4
268#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
269#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
270
271#define clientid_hashval(id) \
272 ((id) & CLIENT_HASH_MASK)
NeilBrowna55370a2005-06-23 22:03:52 -0700273#define clientstr_hashval(name) \
274 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/*
276 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
277 * used in reboot/reset lease grace period processing
278 *
279 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
280 * setclientid_confirmed info.
281 *
282 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
283 * setclientid info.
284 *
285 * client_lru holds client queue ordered by nfs4_client.cl_time
286 * for lease renewal.
287 *
288 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
289 * for last close replay.
290 */
291static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
292static int reclaim_str_hashtbl_size = 0;
293static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
294static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
295static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
296static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
297static struct list_head client_lru;
298static struct list_head close_lru;
299
J. Bruce Fields22839632009-01-11 14:27:17 -0500300static void unhash_generic_stateid(struct nfs4_stateid *stp)
301{
302 list_del(&stp->st_hash);
303 list_del(&stp->st_perfile);
304 list_del(&stp->st_perstateowner);
305}
306
307static void free_generic_stateid(struct nfs4_stateid *stp)
308{
309 put_nfs4_file(stp->st_file);
310 kmem_cache_free(stateid_slab, stp);
311}
312
313static void release_lock_stateid(struct nfs4_stateid *stp)
314{
315 unhash_generic_stateid(stp);
316 locks_remove_posix(stp->st_vfs_file, (fl_owner_t)stp->st_stateowner);
317 free_generic_stateid(stp);
318}
319
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500320static void unhash_lockowner(struct nfs4_stateowner *sop)
321{
322 struct nfs4_stateid *stp;
323
324 list_del(&sop->so_idhash);
325 list_del(&sop->so_strhash);
326 list_del(&sop->so_perstateid);
327 while (!list_empty(&sop->so_stateids)) {
328 stp = list_first_entry(&sop->so_stateids,
329 struct nfs4_stateid, st_perstateowner);
330 release_lock_stateid(stp);
331 }
332}
333
334static void release_lockowner(struct nfs4_stateowner *sop)
335{
336 unhash_lockowner(sop);
337 nfs4_put_stateowner(sop);
338}
339
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500340static void
341release_stateid_lockowners(struct nfs4_stateid *open_stp)
342{
343 struct nfs4_stateowner *lock_sop;
344
345 while (!list_empty(&open_stp->st_lockowners)) {
346 lock_sop = list_entry(open_stp->st_lockowners.next,
347 struct nfs4_stateowner, so_perstateid);
348 /* list_del(&open_stp->st_lockowners); */
349 BUG_ON(lock_sop->so_is_open_owner);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500350 release_lockowner(lock_sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500351 }
352}
353
J. Bruce Fields22839632009-01-11 14:27:17 -0500354static void release_open_stateid(struct nfs4_stateid *stp)
355{
356 unhash_generic_stateid(stp);
357 release_stateid_lockowners(stp);
358 nfsd_close(stp->st_vfs_file);
359 free_generic_stateid(stp);
360}
361
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500362static void unhash_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500363{
364 struct nfs4_stateid *stp;
365
366 list_del(&sop->so_idhash);
367 list_del(&sop->so_strhash);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500368 list_del(&sop->so_perclient);
369 list_del(&sop->so_perstateid); /* XXX: necessary? */
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500370 while (!list_empty(&sop->so_stateids)) {
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500371 stp = list_first_entry(&sop->so_stateids,
372 struct nfs4_stateid, st_perstateowner);
373 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500374 }
375}
376
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500377static void release_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500378{
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500379 unhash_openowner(sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500380 list_del(&sop->so_close_lru);
381 nfs4_put_stateowner(sop);
382}
383
Marc Eshel5282fd72009-04-03 08:27:52 +0300384static DEFINE_SPINLOCK(sessionid_lock);
385#define SESSION_HASH_SIZE 512
386static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
387
388static inline int
389hash_sessionid(struct nfs4_sessionid *sessionid)
390{
391 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
392
393 return sid->sequence % SESSION_HASH_SIZE;
394}
395
396static inline void
397dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
398{
399 u32 *ptr = (u32 *)(&sessionid->data[0]);
400 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
401}
402
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300403static void
404gen_sessionid(struct nfsd4_session *ses)
405{
406 struct nfs4_client *clp = ses->se_client;
407 struct nfsd4_sessionid *sid;
408
409 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
410 sid->clientid = clp->cl_clientid;
411 sid->sequence = current_sessionid++;
412 sid->reserved = 0;
413}
414
415/*
416 * Give the client the number of slots it requests bound by
Andy Adamson0c193052009-07-27 19:09:19 -0400417 * NFSD_MAX_SLOTS_PER_SESSION and by nfsd_drc_max_mem.
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300418 *
Andy Adamson0c193052009-07-27 19:09:19 -0400419 * If we run out of reserved DRC memory we should (up to a point) re-negotiate
420 * active sessions and reduce their slot usage to make rooom for new
421 * connections. For now we just fail the create session.
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300422 */
423static int set_forechannel_maxreqs(struct nfsd4_channel_attrs *fchan)
424{
Andy Adamson0c193052009-07-27 19:09:19 -0400425 int mem;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300426
Andy Adamson5d77ddf2009-06-16 04:19:38 +0300427 if (fchan->maxreqs < 1)
428 return nfserr_inval;
429 else if (fchan->maxreqs > NFSD_MAX_SLOTS_PER_SESSION)
430 fchan->maxreqs = NFSD_MAX_SLOTS_PER_SESSION;
431
Andy Adamson0c193052009-07-27 19:09:19 -0400432 mem = fchan->maxreqs * NFSD_SLOT_CACHE_SIZE;
Andy Adamsonb101ebb2009-07-27 18:40:09 -0400433
Andy Adamson4bd9b0f42009-06-24 15:37:45 -0400434 spin_lock(&nfsd_drc_lock);
Andy Adamson0c193052009-07-27 19:09:19 -0400435 if (mem + nfsd_drc_mem_used > nfsd_drc_max_mem)
436 mem = ((nfsd_drc_max_mem - nfsd_drc_mem_used) /
437 NFSD_SLOT_CACHE_SIZE) * NFSD_SLOT_CACHE_SIZE;
438 nfsd_drc_mem_used += mem;
Andy Adamson4bd9b0f42009-06-24 15:37:45 -0400439 spin_unlock(&nfsd_drc_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300440
Andy Adamson0c193052009-07-27 19:09:19 -0400441 fchan->maxreqs = mem / NFSD_SLOT_CACHE_SIZE;
Andy Adamsonb101ebb2009-07-27 18:40:09 -0400442 if (fchan->maxreqs == 0)
443 return nfserr_resource;
444 return 0;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300445}
446
447/*
448 * fchan holds the client values on input, and the server values on output
449 */
450static int init_forechannel_attrs(struct svc_rqst *rqstp,
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300451 struct nfsd4_channel_attrs *session_fchan,
452 struct nfsd4_channel_attrs *fchan)
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300453{
454 int status = 0;
455 __u32 maxcount = svc_max_payload(rqstp);
456
457 /* headerpadsz set to zero in encode routine */
458
459 /* Use the client's max request and max response size if possible */
460 if (fchan->maxreq_sz > maxcount)
461 fchan->maxreq_sz = maxcount;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300462 session_fchan->maxreq_sz = fchan->maxreq_sz;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300463
464 if (fchan->maxresp_sz > maxcount)
465 fchan->maxresp_sz = maxcount;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300466 session_fchan->maxresp_sz = fchan->maxresp_sz;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300467
Andy Adamson0c193052009-07-27 19:09:19 -0400468 session_fchan->maxresp_cached = NFSD_SLOT_CACHE_SIZE;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300469 fchan->maxresp_cached = session_fchan->maxresp_cached;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300470
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;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300474 session_fchan->maxops = fchan->maxops;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300475
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300476 /* FIXME: Error means no more DRC pages so the server should
477 * recover pages from existing sessions. For now fail session
478 * creation.
479 */
480 status = set_forechannel_maxreqs(fchan);
481
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300482 session_fchan->maxreqs = fchan->maxreqs;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300483 return status;
484}
485
486static int
487alloc_init_session(struct svc_rqst *rqstp, struct nfs4_client *clp,
488 struct nfsd4_create_session *cses)
489{
490 struct nfsd4_session *new, tmp;
491 int idx, status = nfserr_resource, slotsize;
492
493 memset(&tmp, 0, sizeof(tmp));
494
495 /* FIXME: For now, we just accept the client back channel attributes. */
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300496 tmp.se_bchannel = cses->back_channel;
497 status = init_forechannel_attrs(rqstp, &tmp.se_fchannel,
498 &cses->fore_channel);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300499 if (status)
500 goto out;
501
502 /* allocate struct nfsd4_session and slot table in one piece */
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300503 slotsize = tmp.se_fchannel.maxreqs * sizeof(struct nfsd4_slot);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300504 new = kzalloc(sizeof(*new) + slotsize, GFP_KERNEL);
505 if (!new)
506 goto out;
507
508 memcpy(new, &tmp, sizeof(*new));
509
510 new->se_client = clp;
511 gen_sessionid(new);
512 idx = hash_sessionid(&new->se_sessionid);
513 memcpy(clp->cl_sessionid.data, new->se_sessionid.data,
514 NFS4_MAX_SESSIONID_LEN);
515
516 new->se_flags = cses->flags;
517 kref_init(&new->se_ref);
518 spin_lock(&sessionid_lock);
519 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
520 list_add(&new->se_perclnt, &clp->cl_sessions);
521 spin_unlock(&sessionid_lock);
522
523 status = nfs_ok;
524out:
525 return status;
526}
527
Marc Eshel5282fd72009-04-03 08:27:52 +0300528/* caller must hold sessionid_lock */
529static struct nfsd4_session *
530find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
531{
532 struct nfsd4_session *elem;
533 int idx;
534
535 dump_sessionid(__func__, sessionid);
536 idx = hash_sessionid(sessionid);
537 dprintk("%s: idx is %d\n", __func__, idx);
538 /* Search in the appropriate list */
539 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
540 dump_sessionid("list traversal", &elem->se_sessionid);
541 if (!memcmp(elem->se_sessionid.data, sessionid->data,
542 NFS4_MAX_SESSIONID_LEN)) {
543 return elem;
544 }
545 }
546
547 dprintk("%s: session not found\n", __func__);
548 return NULL;
549}
550
551/* caller must hold sessionid_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +0300552static void
Marc Eshel5282fd72009-04-03 08:27:52 +0300553unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +0300554{
555 list_del(&ses->se_hash);
556 list_del(&ses->se_perclnt);
Marc Eshel5282fd72009-04-03 08:27:52 +0300557}
558
559static void
560release_session(struct nfsd4_session *ses)
561{
562 spin_lock(&sessionid_lock);
563 unhash_session(ses);
564 spin_unlock(&sessionid_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +0300565 nfsd4_put_session(ses);
566}
567
Andy Adamson14778a12009-04-03 08:28:25 +0300568static void nfsd4_release_respages(struct page **respages, short resused);
569
Andy Adamson7116ed62009-04-03 08:27:43 +0300570void
571free_session(struct kref *kref)
572{
573 struct nfsd4_session *ses;
Andy Adamson14778a12009-04-03 08:28:25 +0300574 int i;
Andy Adamson7116ed62009-04-03 08:27:43 +0300575
576 ses = container_of(kref, struct nfsd4_session, se_ref);
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +0300577 for (i = 0; i < ses->se_fchannel.maxreqs; i++) {
Andy Adamson14778a12009-04-03 08:28:25 +0300578 struct nfsd4_cache_entry *e = &ses->se_slots[i].sl_cache_entry;
579 nfsd4_release_respages(e->ce_respages, e->ce_resused);
580 }
Andy Adamsonbe98d1b2009-07-27 18:49:05 -0400581 spin_lock(&nfsd_drc_lock);
Andy Adamson0c193052009-07-27 19:09:19 -0400582 nfsd_drc_mem_used -= ses->se_fchannel.maxreqs * NFSD_SLOT_CACHE_SIZE;
Andy Adamsonbe98d1b2009-07-27 18:49:05 -0400583 spin_unlock(&nfsd_drc_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +0300584 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (clp->cl_cred.cr_group_info)
657 put_group_info(clp->cl_cred.cr_group_info);
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500658 kfree(clp->cl_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 kfree(clp->cl_name.data);
660 kfree(clp);
661}
662
663void
664put_nfs4_client(struct nfs4_client *clp)
665{
666 if (atomic_dec_and_test(&clp->cl_count))
667 free_client(clp);
668}
669
670static void
671expire_client(struct nfs4_client *clp)
672{
673 struct nfs4_stateowner *sop;
674 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 struct list_head reaplist;
676
677 dprintk("NFSD: expire_client cl_count %d\n",
678 atomic_read(&clp->cl_count));
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 INIT_LIST_HEAD(&reaplist);
681 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700682 while (!list_empty(&clp->cl_delegations)) {
683 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
685 dp->dl_flock);
NeilBrownea1da632005-06-23 22:04:17 -0700686 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 list_move(&dp->dl_recall_lru, &reaplist);
688 }
689 spin_unlock(&recall_lock);
690 while (!list_empty(&reaplist)) {
691 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
692 list_del_init(&dp->dl_recall_lru);
693 unhash_delegation(dp);
694 }
695 list_del(&clp->cl_idhash);
696 list_del(&clp->cl_strhash);
697 list_del(&clp->cl_lru);
NeilBrownea1da632005-06-23 22:04:17 -0700698 while (!list_empty(&clp->cl_openowners)) {
699 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500700 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Marc Eshelc4bf7862009-04-03 08:27:49 +0300702 while (!list_empty(&clp->cl_sessions)) {
703 struct nfsd4_session *ses;
704 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
705 se_perclnt);
706 release_session(ses);
707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 put_nfs4_client(clp);
709}
710
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500711static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir)
712{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct nfs4_client *clp;
714
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500715 clp = alloc_client(name);
716 if (clp == NULL)
717 return NULL;
NeilBrowna55370a2005-06-23 22:03:52 -0700718 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 atomic_set(&clp->cl_count, 1);
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400720 atomic_set(&clp->cl_cb_conn.cb_set, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 INIT_LIST_HEAD(&clp->cl_idhash);
722 INIT_LIST_HEAD(&clp->cl_strhash);
NeilBrownea1da632005-06-23 22:04:17 -0700723 INIT_LIST_HEAD(&clp->cl_openowners);
724 INIT_LIST_HEAD(&clp->cl_delegations);
Marc Eshel9fb87072009-04-03 08:27:46 +0300725 INIT_LIST_HEAD(&clp->cl_sessions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 INIT_LIST_HEAD(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return clp;
728}
729
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500730static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
731{
732 memcpy(target->cl_verifier.data, source->data,
733 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500736static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
737{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
739 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
740}
741
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500742static void copy_cred(struct svc_cred *target, struct svc_cred *source)
743{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 target->cr_uid = source->cr_uid;
745 target->cr_gid = source->cr_gid;
746 target->cr_group_info = source->cr_group_info;
747 get_group_info(target->cr_group_info);
748}
749
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500750static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400751{
NeilBrowna55370a2005-06-23 22:03:52 -0700752 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
755static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400756same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
757{
758 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
761static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400762same_clid(clientid_t *cl1, clientid_t *cl2)
763{
764 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
767/* XXX what about NGROUP */
768static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400769same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
770{
771 return cr1->cr_uid == cr2->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
J. Bruce Fields5ec7b462007-11-21 21:58:56 -0500774static void gen_clid(struct nfs4_client *clp)
775{
776 static u32 current_clientid = 1;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 clp->cl_clientid.cl_boot = boot_time;
779 clp->cl_clientid.cl_id = current_clientid++;
780}
781
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500782static void gen_confirm(struct nfs4_client *clp)
783{
784 static u32 i;
785 u32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 p = (u32 *)clp->cl_confirm.data;
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500788 *p++ = get_seconds();
789 *p++ = i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500792static int check_name(struct xdr_netobj name)
793{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (name.len == 0)
795 return 0;
796 if (name.len > NFS4_OPAQUE_LIMIT) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400797 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return 0;
799 }
800 return 1;
801}
802
NeilBrownfd39ca92005-06-23 22:04:03 -0700803static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
805{
806 unsigned int idhashval;
807
808 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
809 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
810 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
811 list_add_tail(&clp->cl_lru, &client_lru);
812 clp->cl_time = get_seconds();
813}
814
NeilBrownfd39ca92005-06-23 22:04:03 -0700815static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816move_to_confirmed(struct nfs4_client *clp)
817{
818 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
819 unsigned int strhashval;
820
821 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
822 list_del_init(&clp->cl_strhash);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700823 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -0700824 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
826 renew_client(clp);
827}
828
829static struct nfs4_client *
830find_confirmed_client(clientid_t *clid)
831{
832 struct nfs4_client *clp;
833 unsigned int idhashval = clientid_hashval(clid->cl_id);
834
835 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400836 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return clp;
838 }
839 return NULL;
840}
841
842static struct nfs4_client *
843find_unconfirmed_client(clientid_t *clid)
844{
845 struct nfs4_client *clp;
846 unsigned int idhashval = clientid_hashval(clid->cl_id);
847
848 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400849 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return clp;
851 }
852 return NULL;
853}
854
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300855/*
856 * Return 1 iff clp's clientid establishment method matches the use_exchange_id
857 * parameter. Matching is based on the fact the at least one of the
858 * EXCHGID4_FLAG_USE_{NON_PNFS,PNFS_MDS,PNFS_DS} flags must be set for v4.1
859 *
860 * FIXME: we need to unify the clientid namespaces for nfsv4.x
861 * and correctly deal with client upgrade/downgrade in EXCHANGE_ID
862 * and SET_CLIENTID{,_CONFIRM}
863 */
864static inline int
865match_clientid_establishment(struct nfs4_client *clp, bool use_exchange_id)
866{
867 bool has_exchange_flags = (clp->cl_exchange_flags != 0);
868 return use_exchange_id == has_exchange_flags;
869}
870
NeilBrown28ce6052005-06-23 22:03:56 -0700871static struct nfs4_client *
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300872find_confirmed_client_by_str(const char *dname, unsigned int hashval,
873 bool use_exchange_id)
NeilBrown28ce6052005-06-23 22:03:56 -0700874{
875 struct nfs4_client *clp;
876
877 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300878 if (same_name(clp->cl_recdir, dname) &&
879 match_clientid_establishment(clp, use_exchange_id))
NeilBrown28ce6052005-06-23 22:03:56 -0700880 return clp;
881 }
882 return NULL;
883}
884
885static struct nfs4_client *
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300886find_unconfirmed_client_by_str(const char *dname, unsigned int hashval,
887 bool use_exchange_id)
NeilBrown28ce6052005-06-23 22:03:56 -0700888{
889 struct nfs4_client *clp;
890
891 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300892 if (same_name(clp->cl_recdir, dname) &&
893 match_clientid_establishment(clp, use_exchange_id))
NeilBrown28ce6052005-06-23 22:03:56 -0700894 return clp;
895 }
896 return NULL;
897}
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899/* a helper function for parse_callback */
900static int
901parse_octet(unsigned int *lenp, char **addrp)
902{
903 unsigned int len = *lenp;
904 char *p = *addrp;
905 int n = -1;
906 char c;
907
908 for (;;) {
909 if (!len)
910 break;
911 len--;
912 c = *p++;
913 if (c == '.')
914 break;
915 if ((c < '0') || (c > '9')) {
916 n = -1;
917 break;
918 }
919 if (n < 0)
920 n = 0;
921 n = (n * 10) + (c - '0');
922 if (n > 255) {
923 n = -1;
924 break;
925 }
926 }
927 *lenp = len;
928 *addrp = p;
929 return n;
930}
931
932/* parse and set the setclientid ipv4 callback address */
NeilBrownfd39ca92005-06-23 22:04:03 -0700933static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp)
935{
936 int temp = 0;
937 u32 cbaddr = 0;
938 u16 cbport = 0;
939 u32 addrlen = addr_len;
940 char *addr = addr_val;
941 int i, shift;
942
943 /* ipaddress */
944 shift = 24;
945 for(i = 4; i > 0 ; i--) {
946 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
947 return 0;
948 }
949 cbaddr |= (temp << shift);
950 if (shift > 0)
951 shift -= 8;
952 }
953 *cbaddrp = cbaddr;
954
955 /* port */
956 shift = 8;
957 for(i = 2; i > 0 ; i--) {
958 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
959 return 0;
960 }
961 cbport |= (temp << shift);
962 if (shift > 0)
963 shift -= 8;
964 }
965 *cbportp = cbport;
966 return 1;
967}
968
NeilBrownfd39ca92005-06-23 22:04:03 -0700969static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se)
971{
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400972 struct nfs4_cb_conn *cb = &clp->cl_cb_conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 /* Currently, we only support tcp for the callback channel */
975 if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3))
976 goto out_err;
977
978 if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val,
979 &cb->cb_addr, &cb->cb_port)))
980 goto out_err;
Andy Adamsonab52ae62009-06-16 04:20:53 +0300981 cb->cb_minorversion = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 cb->cb_prog = se->se_callback_prog;
983 cb->cb_ident = se->se_callback_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return;
985out_err:
Neil Brown849823c2005-09-13 01:25:36 -0700986 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 "will not receive delegations\n",
988 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return;
991}
992
Andy Adamson074fe892009-04-03 08:28:15 +0300993void
994nfsd4_set_statp(struct svc_rqst *rqstp, __be32 *statp)
995{
996 struct nfsd4_compoundres *resp = rqstp->rq_resp;
997
998 resp->cstate.statp = statp;
999}
1000
1001/*
1002 * Dereference the result pages.
1003 */
1004static void
1005nfsd4_release_respages(struct page **respages, short resused)
1006{
1007 int i;
1008
1009 dprintk("--> %s\n", __func__);
1010 for (i = 0; i < resused; i++) {
1011 if (!respages[i])
1012 continue;
1013 put_page(respages[i]);
1014 respages[i] = NULL;
1015 }
1016}
1017
1018static void
1019nfsd4_copy_pages(struct page **topages, struct page **frompages, short count)
1020{
1021 int i;
1022
1023 for (i = 0; i < count; i++) {
1024 topages[i] = frompages[i];
1025 if (!topages[i])
1026 continue;
1027 get_page(topages[i]);
1028 }
1029}
1030
1031/*
1032 * Cache the reply pages up to NFSD_PAGES_PER_SLOT + 1, clearing the previous
1033 * pages. We add a page to NFSD_PAGES_PER_SLOT for the case where the total
1034 * length of the XDR response is less than se_fmaxresp_cached
1035 * (NFSD_PAGES_PER_SLOT * PAGE_SIZE) but the xdr_buf pages is used for a
1036 * of the reply (e.g. readdir).
1037 *
1038 * Store the base and length of the rq_req.head[0] page
1039 * of the NFSv4.1 data, just past the rpc header.
1040 */
1041void
1042nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1043{
1044 struct nfsd4_cache_entry *entry = &resp->cstate.slot->sl_cache_entry;
1045 struct svc_rqst *rqstp = resp->rqstp;
1046 struct nfsd4_compoundargs *args = rqstp->rq_argp;
1047 struct nfsd4_op *op = &args->ops[resp->opcnt];
1048 struct kvec *resv = &rqstp->rq_res.head[0];
1049
1050 dprintk("--> %s entry %p\n", __func__, entry);
1051
1052 /* Don't cache a failed OP_SEQUENCE. */
1053 if (resp->opcnt == 1 && op->opnum == OP_SEQUENCE && resp->cstate.status)
1054 return;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001055
Andy Adamson074fe892009-04-03 08:28:15 +03001056 nfsd4_release_respages(entry->ce_respages, entry->ce_resused);
Andy Adamsonbf864a32009-04-03 08:28:35 +03001057 entry->ce_opcnt = resp->opcnt;
1058 entry->ce_status = resp->cstate.status;
1059
1060 /*
1061 * Don't need a page to cache just the sequence operation - the slot
1062 * does this for us!
1063 */
1064
1065 if (nfsd4_not_cached(resp)) {
1066 entry->ce_resused = 0;
1067 entry->ce_rpchdrlen = 0;
1068 dprintk("%s Just cache SEQUENCE. ce_cachethis %d\n", __func__,
1069 resp->cstate.slot->sl_cache_entry.ce_cachethis);
1070 return;
1071 }
Andy Adamson074fe892009-04-03 08:28:15 +03001072 entry->ce_resused = rqstp->rq_resused;
1073 if (entry->ce_resused > NFSD_PAGES_PER_SLOT + 1)
1074 entry->ce_resused = NFSD_PAGES_PER_SLOT + 1;
1075 nfsd4_copy_pages(entry->ce_respages, rqstp->rq_respages,
1076 entry->ce_resused);
Andy Adamson074fe892009-04-03 08:28:15 +03001077 entry->ce_datav.iov_base = resp->cstate.statp;
1078 entry->ce_datav.iov_len = resv->iov_len - ((char *)resp->cstate.statp -
1079 (char *)page_address(rqstp->rq_respages[0]));
Andy Adamson074fe892009-04-03 08:28:15 +03001080 /* Current request rpc header length*/
1081 entry->ce_rpchdrlen = (char *)resp->cstate.statp -
1082 (char *)page_address(rqstp->rq_respages[0]);
1083}
1084
1085/*
1086 * We keep the rpc header, but take the nfs reply from the replycache.
1087 */
1088static int
1089nfsd41_copy_replay_data(struct nfsd4_compoundres *resp,
1090 struct nfsd4_cache_entry *entry)
1091{
1092 struct svc_rqst *rqstp = resp->rqstp;
1093 struct kvec *resv = &resp->rqstp->rq_res.head[0];
1094 int len;
1095
1096 /* Current request rpc header length*/
1097 len = (char *)resp->cstate.statp -
1098 (char *)page_address(rqstp->rq_respages[0]);
1099 if (entry->ce_datav.iov_len + len > PAGE_SIZE) {
1100 dprintk("%s v41 cached reply too large (%Zd).\n", __func__,
1101 entry->ce_datav.iov_len);
1102 return 0;
1103 }
1104 /* copy the cached reply nfsd data past the current rpc header */
1105 memcpy((char *)resv->iov_base + len, entry->ce_datav.iov_base,
1106 entry->ce_datav.iov_len);
1107 resv->iov_len = len + entry->ce_datav.iov_len;
1108 return 1;
1109}
1110
1111/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04001112 * Encode the replay sequence operation from the slot values.
1113 * If cachethis is FALSE encode the uncached rep error on the next
1114 * operation which sets resp->p and increments resp->opcnt for
1115 * nfs4svc_encode_compoundres.
1116 *
1117 */
1118static __be32
1119nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1120 struct nfsd4_compoundres *resp)
1121{
1122 struct nfsd4_op *op;
1123 struct nfsd4_slot *slot = resp->cstate.slot;
1124
1125 dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__,
1126 resp->opcnt, resp->cstate.slot->sl_cache_entry.ce_cachethis);
1127
1128 /* Encode the replayed sequence operation */
1129 op = &args->ops[resp->opcnt - 1];
1130 nfsd4_encode_operation(resp, op);
1131
1132 /* Return nfserr_retry_uncached_rep in next operation. */
1133 if (args->opcnt > 1 && slot->sl_cache_entry.ce_cachethis == 0) {
1134 op = &args->ops[resp->opcnt++];
1135 op->status = nfserr_retry_uncached_rep;
1136 nfsd4_encode_operation(resp, op);
1137 }
1138 return op->status;
1139}
1140
1141/*
Andy Adamson074fe892009-04-03 08:28:15 +03001142 * Keep the first page of the replay. Copy the NFSv4.1 data from the first
1143 * cached page. Replace any futher replay pages from the cache.
1144 */
1145__be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03001146nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1147 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03001148{
1149 struct nfsd4_cache_entry *entry = &resp->cstate.slot->sl_cache_entry;
1150 __be32 status;
1151
1152 dprintk("--> %s entry %p\n", __func__, entry);
1153
Andy Adamsonbf864a32009-04-03 08:28:35 +03001154 /*
1155 * If this is just the sequence operation, we did not keep
1156 * a page in the cache entry because we can just use the
1157 * slot info stored in struct nfsd4_sequence that was checked
1158 * against the slot in nfsd4_sequence().
1159 *
1160 * This occurs when seq->cachethis is FALSE, or when the client
1161 * session inactivity timer fires and a solo sequence operation
1162 * is sent (lease renewal).
1163 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04001164 seq->maxslots = resp->cstate.session->se_fchannel.maxreqs;
1165
1166 /* Either returns 0 or nfserr_retry_uncached */
1167 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1168 if (status == nfserr_retry_uncached_rep)
1169 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03001170
1171 if (!nfsd41_copy_replay_data(resp, entry)) {
1172 /*
1173 * Not enough room to use the replay rpc header, send the
1174 * cached header. Release all the allocated result pages.
1175 */
1176 svc_free_res_pages(resp->rqstp);
1177 nfsd4_copy_pages(resp->rqstp->rq_respages, entry->ce_respages,
1178 entry->ce_resused);
1179 } else {
1180 /* Release all but the first allocated result page */
1181
1182 resp->rqstp->rq_resused--;
1183 svc_free_res_pages(resp->rqstp);
1184
1185 nfsd4_copy_pages(&resp->rqstp->rq_respages[1],
1186 &entry->ce_respages[1],
1187 entry->ce_resused - 1);
1188 }
1189
1190 resp->rqstp->rq_resused = entry->ce_resused;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001191 resp->opcnt = entry->ce_opcnt;
1192 resp->cstate.iovlen = entry->ce_datav.iov_len + entry->ce_rpchdrlen;
Andy Adamson074fe892009-04-03 08:28:15 +03001193 status = entry->ce_status;
1194
1195 return status;
1196}
1197
Andy Adamson0733d212009-04-03 08:28:01 +03001198/*
1199 * Set the exchange_id flags returned by the server.
1200 */
1201static void
1202nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1203{
1204 /* pNFS is not supported */
1205 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1206
1207 /* Referrals are supported, Migration is not. */
1208 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1209
1210 /* set the wire flags to return to client. */
1211 clid->flags = new->cl_exchange_flags;
1212}
1213
Al Virob37ad282006-10-19 23:28:59 -07001214__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03001215nfsd4_exchange_id(struct svc_rqst *rqstp,
1216 struct nfsd4_compound_state *cstate,
1217 struct nfsd4_exchange_id *exid)
1218{
Andy Adamson0733d212009-04-03 08:28:01 +03001219 struct nfs4_client *unconf, *conf, *new;
1220 int status;
1221 unsigned int strhashval;
1222 char dname[HEXDIR_LEN];
1223 nfs4_verifier verf = exid->verifier;
1224 u32 ip_addr = svc_addr_in(rqstp)->sin_addr.s_addr;
1225
1226 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
1227 " ip_addr=%u flags %x, spa_how %d\n",
1228 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
1229 ip_addr, exid->flags, exid->spa_how);
1230
1231 if (!check_name(exid->clname) || (exid->flags & ~EXCHGID4_FLAG_MASK_A))
1232 return nfserr_inval;
1233
1234 /* Currently only support SP4_NONE */
1235 switch (exid->spa_how) {
1236 case SP4_NONE:
1237 break;
1238 case SP4_SSV:
1239 return nfserr_encr_alg_unsupp;
1240 default:
1241 BUG(); /* checked by xdr code */
1242 case SP4_MACH_CRED:
1243 return nfserr_serverfault; /* no excuse :-/ */
1244 }
1245
1246 status = nfs4_make_rec_clidname(dname, &exid->clname);
1247
1248 if (status)
1249 goto error;
1250
1251 strhashval = clientstr_hashval(dname);
1252
1253 nfs4_lock_state();
1254 status = nfs_ok;
1255
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001256 conf = find_confirmed_client_by_str(dname, strhashval, true);
Andy Adamson0733d212009-04-03 08:28:01 +03001257 if (conf) {
1258 if (!same_verf(&verf, &conf->cl_verifier)) {
1259 /* 18.35.4 case 8 */
1260 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1261 status = nfserr_not_same;
1262 goto out;
1263 }
1264 /* Client reboot: destroy old state */
1265 expire_client(conf);
1266 goto out_new;
1267 }
1268 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1269 /* 18.35.4 case 9 */
1270 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1271 status = nfserr_perm;
1272 goto out;
1273 }
1274 expire_client(conf);
1275 goto out_new;
1276 }
Andy Adamson0733d212009-04-03 08:28:01 +03001277 /*
1278 * Set bit when the owner id and verifier map to an already
1279 * confirmed client id (18.35.3).
1280 */
1281 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1282
1283 /*
1284 * Falling into 18.35.4 case 2, possible router replay.
1285 * Leave confirmed record intact and return same result.
1286 */
1287 copy_verf(conf, &verf);
1288 new = conf;
1289 goto out_copy;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03001290 }
1291
1292 /* 18.35.4 case 7 */
1293 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1294 status = nfserr_noent;
1295 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03001296 }
1297
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001298 unconf = find_unconfirmed_client_by_str(dname, strhashval, true);
Andy Adamson0733d212009-04-03 08:28:01 +03001299 if (unconf) {
1300 /*
1301 * Possible retry or client restart. Per 18.35.4 case 4,
1302 * a new unconfirmed record should be generated regardless
1303 * of whether any properties have changed.
1304 */
1305 expire_client(unconf);
1306 }
1307
1308out_new:
1309 /* Normal case */
1310 new = create_client(exid->clname, dname);
1311 if (new == NULL) {
1312 status = nfserr_resource;
1313 goto out;
1314 }
1315
1316 copy_verf(new, &verf);
1317 copy_cred(&new->cl_cred, &rqstp->rq_cred);
1318 new->cl_addr = ip_addr;
1319 gen_clid(new);
1320 gen_confirm(new);
1321 add_to_unconfirmed(new, strhashval);
1322out_copy:
1323 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1324 exid->clientid.cl_id = new->cl_clientid.cl_id;
1325
Andy Adamson38eb76a2009-04-03 08:28:32 +03001326 exid->seqid = 1;
Andy Adamson0733d212009-04-03 08:28:01 +03001327 nfsd4_set_ex_flags(new, exid);
1328
1329 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001330 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03001331 status = nfs_ok;
1332
1333out:
1334 nfs4_unlock_state();
1335error:
1336 dprintk("nfsd4_exchange_id returns %d\n", ntohl(status));
1337 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001338}
1339
Benny Halevyb85d4c02009-04-03 08:28:08 +03001340static int
Andy Adamson88e588d2009-07-23 19:02:15 -04001341check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001342{
Andy Adamson88e588d2009-07-23 19:02:15 -04001343 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1344 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001345
1346 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04001347 if (slot_inuse) {
1348 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001349 return nfserr_jukebox;
1350 else
1351 return nfserr_seq_misordered;
1352 }
1353 /* Normal */
Andy Adamson88e588d2009-07-23 19:02:15 -04001354 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03001355 return nfs_ok;
1356 /* Replay */
Andy Adamson88e588d2009-07-23 19:02:15 -04001357 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001358 return nfserr_replay_cache;
1359 /* Wraparound */
Andy Adamson88e588d2009-07-23 19:02:15 -04001360 if (seqid == 1 && (slot_seqid + 1) == 0)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001361 return nfs_ok;
1362 /* Misordered replay or misordered new request */
1363 return nfserr_seq_misordered;
1364}
1365
Andy Adamson49557cc2009-07-23 19:02:16 -04001366/*
1367 * Cache the create session result into the create session single DRC
1368 * slot cache by saving the xdr structure. sl_seqid has been set.
1369 * Do this for solo or embedded create session operations.
1370 */
1371static void
1372nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
1373 struct nfsd4_clid_slot *slot, int nfserr)
1374{
1375 slot->sl_status = nfserr;
1376 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1377}
1378
1379static __be32
1380nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1381 struct nfsd4_clid_slot *slot)
1382{
1383 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1384 return slot->sl_status;
1385}
1386
Andy Adamson069b6ad2009-04-03 08:27:58 +03001387__be32
1388nfsd4_create_session(struct svc_rqst *rqstp,
1389 struct nfsd4_compound_state *cstate,
1390 struct nfsd4_create_session *cr_ses)
1391{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001392 u32 ip_addr = svc_addr_in(rqstp)->sin_addr.s_addr;
1393 struct nfs4_client *conf, *unconf;
Andy Adamson49557cc2009-07-23 19:02:16 -04001394 struct nfsd4_clid_slot *cs_slot = NULL;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001395 int status = 0;
1396
1397 nfs4_lock_state();
1398 unconf = find_unconfirmed_client(&cr_ses->clientid);
1399 conf = find_confirmed_client(&cr_ses->clientid);
1400
1401 if (conf) {
Andy Adamson49557cc2009-07-23 19:02:16 -04001402 cs_slot = &conf->cl_cs_slot;
1403 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001404 if (status == nfserr_replay_cache) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001405 dprintk("Got a create_session replay! seqid= %d\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001406 cs_slot->sl_seqid);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001407 /* Return the cached reply status */
Andy Adamson49557cc2009-07-23 19:02:16 -04001408 status = nfsd4_replay_create_session(cr_ses, cs_slot);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001409 goto out;
Andy Adamson49557cc2009-07-23 19:02:16 -04001410 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001411 status = nfserr_seq_misordered;
1412 dprintk("Sequence misordered!\n");
1413 dprintk("Expected seqid= %d but got seqid= %d\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001414 cs_slot->sl_seqid, cr_ses->seqid);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001415 goto out;
1416 }
Andy Adamson49557cc2009-07-23 19:02:16 -04001417 cs_slot->sl_seqid++;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001418 } else if (unconf) {
1419 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
1420 (ip_addr != unconf->cl_addr)) {
1421 status = nfserr_clid_inuse;
1422 goto out;
1423 }
1424
Andy Adamson49557cc2009-07-23 19:02:16 -04001425 cs_slot = &unconf->cl_cs_slot;
1426 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001427 if (status) {
1428 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001429 status = nfserr_seq_misordered;
Andy Adamson49557cc2009-07-23 19:02:16 -04001430 goto out_cache;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001431 }
1432
Andy Adamson49557cc2009-07-23 19:02:16 -04001433 cs_slot->sl_seqid++; /* from 0 to 1 */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001434 move_to_confirmed(unconf);
1435
1436 /*
1437 * We do not support RDMA or persistent sessions
1438 */
1439 cr_ses->flags &= ~SESSION4_PERSIST;
1440 cr_ses->flags &= ~SESSION4_RDMA;
1441
1442 conf = unconf;
1443 } else {
1444 status = nfserr_stale_clientid;
1445 goto out;
1446 }
1447
1448 status = alloc_init_session(rqstp, conf, cr_ses);
1449 if (status)
1450 goto out;
1451
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001452 memcpy(cr_ses->sessionid.data, conf->cl_sessionid.data,
1453 NFS4_MAX_SESSIONID_LEN);
Andy Adamson49557cc2009-07-23 19:02:16 -04001454 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001455
Andy Adamson49557cc2009-07-23 19:02:16 -04001456out_cache:
1457 /* cache solo and embedded create sessions under the state lock */
1458 nfsd4_cache_create_session(cr_ses, cs_slot, status);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001459out:
1460 nfs4_unlock_state();
1461 dprintk("%s returns %d\n", __func__, ntohl(status));
1462 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001463}
1464
1465__be32
1466nfsd4_destroy_session(struct svc_rqst *r,
1467 struct nfsd4_compound_state *cstate,
1468 struct nfsd4_destroy_session *sessionid)
1469{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001470 struct nfsd4_session *ses;
1471 u32 status = nfserr_badsession;
1472
1473 /* Notes:
1474 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1475 * - Should we return nfserr_back_chan_busy if waiting for
1476 * callbacks on to-be-destroyed session?
1477 * - Do we need to clear any callback info from previous session?
1478 */
1479
1480 dump_sessionid(__func__, &sessionid->sessionid);
1481 spin_lock(&sessionid_lock);
1482 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1483 if (!ses) {
1484 spin_unlock(&sessionid_lock);
1485 goto out;
1486 }
1487
1488 unhash_session(ses);
1489 spin_unlock(&sessionid_lock);
1490
1491 /* wait for callbacks */
1492 shutdown_callback_client(ses->se_client);
1493 nfsd4_put_session(ses);
1494 status = nfs_ok;
1495out:
1496 dprintk("%s returns %d\n", __func__, ntohl(status));
1497 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001498}
1499
1500__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03001501nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001502 struct nfsd4_compound_state *cstate,
1503 struct nfsd4_sequence *seq)
1504{
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001505 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001506 struct nfsd4_session *session;
1507 struct nfsd4_slot *slot;
1508 int status;
1509
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001510 if (resp->opcnt != 1)
1511 return nfserr_sequence_pos;
1512
Benny Halevyb85d4c02009-04-03 08:28:08 +03001513 spin_lock(&sessionid_lock);
1514 status = nfserr_badsession;
1515 session = find_in_sessionid_hashtbl(&seq->sessionid);
1516 if (!session)
1517 goto out;
1518
1519 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03001520 if (seq->slotid >= session->se_fchannel.maxreqs)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001521 goto out;
1522
1523 slot = &session->se_slots[seq->slotid];
1524 dprintk("%s: slotid %d\n", __func__, seq->slotid);
1525
Andy Adamson88e588d2009-07-23 19:02:15 -04001526 status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001527 if (status == nfserr_replay_cache) {
1528 cstate->slot = slot;
1529 cstate->session = session;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001530 /* Return the cached reply status and set cstate->status
Andy Adamsonbf864a32009-04-03 08:28:35 +03001531 * for nfsd4_svc_encode_compoundres processing */
1532 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03001533 cstate->status = nfserr_replay_cache;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001534 goto replay_cache;
1535 }
1536 if (status)
1537 goto out;
1538
1539 /* Success! bump slot seqid */
1540 slot->sl_inuse = true;
1541 slot->sl_seqid = seq->seqid;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001542 slot->sl_cache_entry.ce_cachethis = seq->cachethis;
1543 /* Always set the cache entry cachethis for solo sequence */
1544 if (nfsd4_is_solo_sequence(resp))
1545 slot->sl_cache_entry.ce_cachethis = 1;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001546
1547 cstate->slot = slot;
1548 cstate->session = session;
1549
1550replay_cache:
1551 /* Renew the clientid on success and on replay.
1552 * Hold a session reference until done processing the compound:
1553 * nfsd4_put_session called only if the cstate slot is set.
1554 */
1555 renew_client(session->se_client);
1556 nfsd4_get_session(session);
1557out:
1558 spin_unlock(&sessionid_lock);
1559 dprintk("%s: return %d\n", __func__, ntohl(status));
1560 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001561}
1562
1563__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001564nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1565 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Chuck Lever27459f02007-02-12 00:53:34 -08001567 struct sockaddr_in *sin = svc_addr_in(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 struct xdr_netobj clname = {
1569 .len = setclid->se_namelen,
1570 .data = setclid->se_name,
1571 };
1572 nfs4_verifier clverifier = setclid->se_verf;
1573 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -07001574 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -07001575 __be32 status;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -05001576 char *princ;
NeilBrowna55370a2005-06-23 22:03:52 -07001577 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -07001580 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
NeilBrowna55370a2005-06-23 22:03:52 -07001582 status = nfs4_make_rec_clidname(dname, &clname);
1583 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -07001584 return status;
NeilBrowna55370a2005-06-23 22:03:52 -07001585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 /*
1587 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1588 * We get here on a DRC miss.
1589 */
1590
NeilBrowna55370a2005-06-23 22:03:52 -07001591 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 nfs4_lock_state();
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001594 conf = find_confirmed_client_by_str(dname, strhashval, false);
NeilBrown28ce6052005-06-23 22:03:56 -07001595 if (conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001596 /* RFC 3530 14.2.33 CASE 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 status = nfserr_clid_inuse;
J. Bruce Fields026722c2009-03-18 15:06:26 -04001598 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1599 dprintk("NFSD: setclientid: string in use by client"
1600 " at %pI4\n", &conf->cl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 goto out;
1602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001604 /*
1605 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
1606 * has a description of SETCLIENTID request processing consisting
1607 * of 5 bullet points, labeled as CASE0 - CASE4 below.
1608 */
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001609 unconf = find_unconfirmed_client_by_str(dname, strhashval, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 status = nfserr_resource;
1611 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001612 /*
1613 * RFC 3530 14.2.33 CASE 4:
1614 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 */
1616 if (unconf)
1617 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -07001618 new = create_client(clname, dname);
1619 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001622 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001624 * RFC 3530 14.2.33 CASE 1:
1625 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 */
NeilBrown31f4a6c2005-06-23 22:04:06 -07001627 if (unconf) {
1628 /* Note this is removing unconfirmed {*x***},
1629 * which is stronger than RFC recommended {vxc**}.
1630 * This has the advantage that there is at most
1631 * one {*x***} in either list at any time.
1632 */
1633 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
NeilBrowna55370a2005-06-23 22:03:52 -07001635 new = create_client(clname, dname);
1636 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 } else if (!unconf) {
1640 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001641 * RFC 3530 14.2.33 CASE 2:
1642 * probable client reboot; state will be removed if
1643 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 */
NeilBrowna55370a2005-06-23 22:03:52 -07001645 new = create_client(clname, dname);
1646 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 gen_clid(new);
J. Bruce Fields49ba8782007-11-19 19:09:50 -05001649 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001650 /*
1651 * RFC 3530 14.2.33 CASE 3:
1652 * probable client reboot; state will be removed if
1653 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 */
1655 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -07001656 new = create_client(clname, dname);
1657 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -04001661 copy_verf(new, &clverifier);
1662 new->cl_addr = sin->sin_addr.s_addr;
Olga Kornievskaia61054b12008-12-23 16:19:00 -05001663 new->cl_flavor = rqstp->rq_flavor;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -05001664 princ = svc_gss_principal(rqstp);
1665 if (princ) {
1666 new->cl_principal = kstrdup(princ, GFP_KERNEL);
1667 if (new->cl_principal == NULL) {
1668 free_client(new);
1669 goto out;
1670 }
1671 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -04001672 copy_cred(&new->cl_cred, &rqstp->rq_cred);
1673 gen_confirm(new);
1674 gen_callback(new, setclid);
1675 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
1677 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
1678 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
1679 status = nfs_ok;
1680out:
1681 nfs4_unlock_state();
1682 return status;
1683}
1684
1685
1686/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001687 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
1688 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
1689 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 */
Al Virob37ad282006-10-19 23:28:59 -07001691__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001692nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
1693 struct nfsd4_compound_state *cstate,
1694 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
Chuck Lever27459f02007-02-12 00:53:34 -08001696 struct sockaddr_in *sin = svc_addr_in(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -07001697 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
1699 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07001700 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 if (STALE_CLIENTID(clid))
1703 return nfserr_stale_clientid;
1704 /*
1705 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1706 * We get here on a DRC miss.
1707 */
1708
1709 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -07001710
1711 conf = find_confirmed_client(clid);
1712 unconf = find_unconfirmed_client(clid);
1713
1714 status = nfserr_clid_inuse;
Chuck Lever27459f02007-02-12 00:53:34 -08001715 if (conf && conf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -07001716 goto out;
Chuck Lever27459f02007-02-12 00:53:34 -08001717 if (unconf && unconf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -07001718 goto out;
1719
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001720 /*
1721 * section 14.2.34 of RFC 3530 has a description of
1722 * SETCLIENTID_CONFIRM request processing consisting
1723 * of 4 bullet points, labeled as CASE1 - CASE4 below.
1724 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -05001725 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001726 /*
1727 * RFC 3530 14.2.34 CASE 1:
1728 * callback update
1729 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001730 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 status = nfserr_clid_inuse;
1732 else {
NeilBrown1a69c172005-06-23 22:04:08 -07001733 /* XXX: We just turn off callbacks until we can handle
1734 * change request correctly. */
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -04001735 atomic_set(&conf->cl_cb_conn.cb_set, 0);
NeilBrown1a69c172005-06-23 22:04:08 -07001736 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -07001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -05001740 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001741 /*
1742 * RFC 3530 14.2.34 CASE 2:
1743 * probable retransmitted request; play it safe and
1744 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -07001745 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001746 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -07001748 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -07001750 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001751 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001752 /*
1753 * RFC 3530 14.2.34 CASE 3:
1754 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -07001755 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001756 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 status = nfserr_clid_inuse;
1758 } else {
NeilBrown1a69c172005-06-23 22:04:08 -07001759 unsigned int hash =
1760 clientstr_hashval(unconf->cl_recdir);
1761 conf = find_confirmed_client_by_str(unconf->cl_recdir,
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001762 hash, false);
NeilBrown1a69c172005-06-23 22:04:08 -07001763 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -07001764 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07001765 expire_client(conf);
1766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -07001768 conf = unconf;
J. Bruce Fields46f8a642007-11-22 13:54:18 -05001769 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07001770 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001772 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
1773 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -07001774 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001775 /*
1776 * RFC 3530 14.2.34 CASE 4:
1777 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -07001778 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -07001780 } else {
NeilBrown08e89872005-06-23 22:04:11 -07001781 /* check that we have hit one of the cases...*/
1782 status = nfserr_clid_inuse;
1783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 nfs4_unlock_state();
1786 return status;
1787}
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789/* OPEN Share state helper functions */
1790static inline struct nfs4_file *
1791alloc_init_file(struct inode *ino)
1792{
1793 struct nfs4_file *fp;
1794 unsigned int hashval = file_hashval(ino);
1795
NeilBrowne60d4392005-06-23 22:03:01 -07001796 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
1797 if (fp) {
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001798 atomic_set(&fp->fi_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -07001800 INIT_LIST_HEAD(&fp->fi_stateids);
1801 INIT_LIST_HEAD(&fp->fi_delegations);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001802 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001804 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 fp->fi_inode = igrab(ino);
1806 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07001807 fp->fi_had_conflict = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return fp;
1809 }
1810 return NULL;
1811}
1812
1813static void
Christoph Lametere18b8902006-12-06 20:33:20 -08001814nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07001815{
NeilBrowne60d4392005-06-23 22:03:01 -07001816 if (*slab == NULL)
1817 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001818 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001819 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07001820}
1821
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001822void
NeilBrowne60d4392005-06-23 22:03:01 -07001823nfsd4_free_slabs(void)
1824{
1825 nfsd4_free_slab(&stateowner_slab);
1826 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07001827 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001828 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001829}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831static int
1832nfsd4_init_slabs(void)
1833{
1834 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09001835 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001836 if (stateowner_slab == NULL)
1837 goto out_nomem;
1838 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09001839 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001840 if (file_slab == NULL)
1841 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07001842 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09001843 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07001844 if (stateid_slab == NULL)
1845 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07001846 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09001847 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001848 if (deleg_slab == NULL)
1849 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07001851out_nomem:
1852 nfsd4_free_slabs();
1853 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1854 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
1857void
1858nfs4_free_stateowner(struct kref *kref)
1859{
1860 struct nfs4_stateowner *sop =
1861 container_of(kref, struct nfs4_stateowner, so_ref);
1862 kfree(sop->so_owner.data);
1863 kmem_cache_free(stateowner_slab, sop);
1864}
1865
1866static inline struct nfs4_stateowner *
1867alloc_stateowner(struct xdr_netobj *owner)
1868{
1869 struct nfs4_stateowner *sop;
1870
1871 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1872 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1873 memcpy(sop->so_owner.data, owner->data, owner->len);
1874 sop->so_owner.len = owner->len;
1875 kref_init(&sop->so_ref);
1876 return sop;
1877 }
1878 kmem_cache_free(stateowner_slab, sop);
1879 }
1880 return NULL;
1881}
1882
1883static struct nfs4_stateowner *
1884alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1885 struct nfs4_stateowner *sop;
1886 struct nfs4_replay *rp;
1887 unsigned int idhashval;
1888
1889 if (!(sop = alloc_stateowner(&open->op_owner)))
1890 return NULL;
1891 idhashval = ownerid_hashval(current_ownerid);
1892 INIT_LIST_HEAD(&sop->so_idhash);
1893 INIT_LIST_HEAD(&sop->so_strhash);
1894 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07001895 INIT_LIST_HEAD(&sop->so_stateids);
1896 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 INIT_LIST_HEAD(&sop->so_close_lru);
1898 sop->so_time = 0;
1899 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1900 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001901 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 sop->so_is_open_owner = 1;
1903 sop->so_id = current_ownerid++;
1904 sop->so_client = clp;
1905 sop->so_seqid = open->op_seqid;
1906 sop->so_confirmed = 0;
1907 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08001908 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 rp->rp_buflen = 0;
1910 rp->rp_buf = rp->rp_ibuf;
1911 return sop;
1912}
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914static inline void
1915init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1916 struct nfs4_stateowner *sop = open->op_stateowner;
1917 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1918
1919 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07001920 INIT_LIST_HEAD(&stp->st_perstateowner);
1921 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 INIT_LIST_HEAD(&stp->st_perfile);
1923 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001924 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07001925 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07001927 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 stp->st_file = fp;
Bian Naimeng78155ed2009-04-22 18:25:37 +08001929 stp->st_stateid.si_boot = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 stp->st_stateid.si_stateownerid = sop->so_id;
1931 stp->st_stateid.si_fileid = fp->fi_id;
1932 stp->st_stateid.si_generation = 0;
1933 stp->st_access_bmap = 0;
1934 stp->st_deny_bmap = 0;
Andy Adamson84459a12009-04-03 08:28:56 +03001935 __set_bit(open->op_share_access & ~NFS4_SHARE_WANT_MASK,
1936 &stp->st_access_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07001938 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939}
1940
1941static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942move_to_close_lru(struct nfs4_stateowner *sop)
1943{
1944 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1945
NeilBrown358dd552006-04-10 22:55:42 -07001946 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 sop->so_time = get_seconds();
1948}
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001951same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
1952 clientid_t *clid)
1953{
1954 return (sop->so_owner.len == owner->len) &&
1955 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
1956 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
1959static struct nfs4_stateowner *
1960find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1961{
1962 struct nfs4_stateowner *so = NULL;
1963
1964 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001965 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return so;
1967 }
1968 return NULL;
1969}
1970
1971/* search file_hashtbl[] for file */
1972static struct nfs4_file *
1973find_file(struct inode *ino)
1974{
1975 unsigned int hashval = file_hashval(ino);
1976 struct nfs4_file *fp;
1977
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001978 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07001980 if (fp->fi_inode == ino) {
1981 get_nfs4_file(fp);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001982 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07001984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001986 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 return NULL;
1988}
1989
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001990static inline int access_valid(u32 x, u32 minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001991{
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001992 if ((x & NFS4_SHARE_ACCESS_MASK) < NFS4_SHARE_ACCESS_READ)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001993 return 0;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001994 if ((x & NFS4_SHARE_ACCESS_MASK) > NFS4_SHARE_ACCESS_BOTH)
1995 return 0;
1996 x &= ~NFS4_SHARE_ACCESS_MASK;
1997 if (minorversion && x) {
1998 if ((x & NFS4_SHARE_WANT_MASK) > NFS4_SHARE_WANT_CANCEL)
1999 return 0;
2000 if ((x & NFS4_SHARE_WHEN_MASK) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED)
2001 return 0;
2002 x &= ~(NFS4_SHARE_WANT_MASK | NFS4_SHARE_WHEN_MASK);
2003 }
2004 if (x)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002005 return 0;
2006 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002007}
2008
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002009static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002010{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002011 /* Note: unlike access bits, deny bits may be zero. */
2012 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002013}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04002015/*
2016 * We store the NONE, READ, WRITE, and BOTH bits separately in the
2017 * st_{access,deny}_bmap field of the stateid, in order to track not
2018 * only what share bits are currently in force, but also what
2019 * combinations of share bits previous opens have used. This allows us
2020 * to enforce the recommendation of rfc 3530 14.2.19 that the server
2021 * return an error if the client attempt to downgrade to a combination
2022 * of share bits not explicable by closing some of its previous opens.
2023 *
2024 * XXX: This enforcement is actually incomplete, since we don't keep
2025 * track of access/deny bit combinations; so, e.g., we allow:
2026 *
2027 * OPEN allow read, deny write
2028 * OPEN allow both, deny none
2029 * DOWNGRADE allow read, deny none
2030 *
2031 * which we should reject.
2032 */
NeilBrownfd39ca92005-06-23 22:04:03 -07002033static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034set_access(unsigned int *access, unsigned long bmap) {
2035 int i;
2036
2037 *access = 0;
2038 for (i = 1; i < 4; i++) {
2039 if (test_bit(i, &bmap))
2040 *access |= i;
2041 }
2042}
2043
NeilBrownfd39ca92005-06-23 22:04:03 -07002044static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045set_deny(unsigned int *deny, unsigned long bmap) {
2046 int i;
2047
2048 *deny = 0;
2049 for (i = 0; i < 4; i++) {
2050 if (test_bit(i, &bmap))
2051 *deny |= i ;
2052 }
2053}
2054
2055static int
2056test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
2057 unsigned int access, deny;
2058
2059 set_access(&access, stp->st_access_bmap);
2060 set_deny(&deny, stp->st_deny_bmap);
2061 if ((access & open->op_share_deny) || (deny & open->op_share_access))
2062 return 0;
2063 return 1;
2064}
2065
2066/*
2067 * Called to check deny when READ with all zero stateid or
2068 * WRITE with all zero or all one stateid
2069 */
Al Virob37ad282006-10-19 23:28:59 -07002070static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2072{
2073 struct inode *ino = current_fh->fh_dentry->d_inode;
2074 struct nfs4_file *fp;
2075 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07002076 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 dprintk("NFSD: nfs4_share_conflict\n");
2079
2080 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002081 if (!fp)
2082 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07002083 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07002085 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
2086 if (test_bit(deny_type, &stp->st_deny_bmap) ||
2087 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
2088 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
NeilBrown13cd2182005-06-23 22:03:10 -07002090 ret = nfs_ok;
2091out:
2092 put_nfs4_file(fp);
2093 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
2096static inline void
2097nfs4_file_downgrade(struct file *filp, unsigned int share_access)
2098{
2099 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
Dave Hansenaceaf782008-02-15 14:37:31 -08002100 drop_file_write_access(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
2102 }
2103}
2104
2105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 * Spawn a thread to perform a recall on the delegation represented
2107 * by the lease (file_lock)
2108 *
2109 * Called from break_lease() with lock_kernel() held.
2110 * Note: we assume break_lease will only call this *once* for any given
2111 * lease.
2112 */
2113static
2114void nfsd_break_deleg_cb(struct file_lock *fl)
2115{
J. Bruce Fields63e48632009-05-01 22:36:55 -04002116 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
2119 if (!dp)
2120 return;
2121
2122 /* We're assuming the state code never drops its reference
2123 * without first removing the lease. Since we're in this lease
2124 * callback (and since the lease code is serialized by the kernel
2125 * lock) we know the server hasn't removed the lease yet, we know
2126 * it's safe to take a reference: */
2127 atomic_inc(&dp->dl_count);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04002128 atomic_inc(&dp->dl_client->cl_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 spin_lock(&recall_lock);
2131 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
2132 spin_unlock(&recall_lock);
2133
2134 /* only place dl_time is set. protected by lock_kernel*/
2135 dp->dl_time = get_seconds();
2136
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04002137 /*
2138 * We don't want the locks code to timeout the lease for us;
2139 * we'll remove it ourself if the delegation isn't returned
2140 * in time.
2141 */
2142 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
J. Bruce Fields63e48632009-05-01 22:36:55 -04002144 dp->dl_file->fi_had_conflict = true;
2145 nfsd4_cb_recall(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146}
2147
2148/*
2149 * The file_lock is being reapd.
2150 *
2151 * Called by locks_free_lock() with lock_kernel() held.
2152 */
2153static
2154void nfsd_release_deleg_cb(struct file_lock *fl)
2155{
2156 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
2157
2158 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
2159
2160 if (!(fl->fl_flags & FL_LEASE) || !dp)
2161 return;
2162 dp->dl_flock = NULL;
2163}
2164
2165/*
2166 * Set the delegation file_lock back pointer.
2167 *
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04002168 * Called from setlease() with lock_kernel() held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 */
2170static
2171void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
2172{
2173 struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
2174
2175 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
2176 if (!dp)
2177 return;
2178 dp->dl_flock = new;
2179}
2180
2181/*
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04002182 * Called from setlease() with lock_kernel() held
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 */
2184static
2185int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
2186{
2187 struct nfs4_delegation *onlistd =
2188 (struct nfs4_delegation *)onlist->fl_owner;
2189 struct nfs4_delegation *tryd =
2190 (struct nfs4_delegation *)try->fl_owner;
2191
2192 if (onlist->fl_lmops != try->fl_lmops)
2193 return 0;
2194
2195 return onlistd->dl_client == tryd->dl_client;
2196}
2197
2198
2199static
2200int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2201{
2202 if (arg & F_UNLCK)
2203 return lease_modify(onlist, arg);
2204 else
2205 return -EAGAIN;
2206}
2207
NeilBrownfd39ca92005-06-23 22:04:03 -07002208static struct lock_manager_operations nfsd_lease_mng_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 .fl_break = nfsd_break_deleg_cb,
2210 .fl_release_private = nfsd_release_deleg_cb,
2211 .fl_copy_lock = nfsd_copy_lock_deleg_cb,
2212 .fl_mylease = nfsd_same_client_deleg_cb,
2213 .fl_change = nfsd_change_deleg_cb,
2214};
2215
2216
Al Virob37ad282006-10-19 23:28:59 -07002217__be32
Andy Adamson66689582009-04-03 08:28:45 +03002218nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2219 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 clientid_t *clientid = &open->op_clientid;
2222 struct nfs4_client *clp = NULL;
2223 unsigned int strhashval;
2224 struct nfs4_stateowner *sop = NULL;
2225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002227 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 if (STALE_CLIENTID(&open->op_clientid))
2230 return nfserr_stale_clientid;
2231
2232 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
2233 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002234 open->op_stateowner = sop;
2235 if (!sop) {
2236 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 clp = find_confirmed_client(clientid);
2238 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002239 return nfserr_expired;
2240 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 }
Andy Adamson66689582009-04-03 08:28:45 +03002242 /* When sessions are used, skip open sequenceid processing */
2243 if (nfsd4_has_session(cstate))
2244 goto renew;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002245 if (!sop->so_confirmed) {
2246 /* Replace unconfirmed owners without checking for replay. */
2247 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002248 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002249 open->op_stateowner = NULL;
2250 goto renew;
2251 }
2252 if (open->op_seqid == sop->so_seqid - 1) {
2253 if (sop->so_replay.rp_buflen)
Al Viroa90b0612006-10-19 23:29:03 -07002254 return nfserr_replay_me;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002255 /* The original OPEN failed so spectacularly
2256 * that we don't even have replay data saved!
2257 * Therefore, we have no choice but to continue
2258 * processing this OPEN; presumably, we'll
2259 * fail again for the same reason.
2260 */
2261 dprintk("nfsd4_process_open1: replay with no replay cache\n");
2262 goto renew;
2263 }
2264 if (open->op_seqid != sop->so_seqid)
2265 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002267 if (open->op_stateowner == NULL) {
2268 sop = alloc_init_open_stateowner(strhashval, clp, open);
2269 if (sop == NULL)
2270 return nfserr_resource;
2271 open->op_stateowner = sop;
2272 }
2273 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002275 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
Al Virob37ad282006-10-19 23:28:59 -07002278static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07002279nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2280{
2281 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2282 return nfserr_openmode;
2283 else
2284 return nfs_ok;
2285}
2286
NeilBrown52f4fb42005-06-23 22:02:49 -07002287static struct nfs4_delegation *
2288find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
2289{
2290 struct nfs4_delegation *dp;
2291
NeilBrownea1da632005-06-23 22:04:17 -07002292 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) {
NeilBrown52f4fb42005-06-23 22:02:49 -07002293 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
2294 return dp;
2295 }
2296 return NULL;
2297}
2298
Al Virob37ad282006-10-19 23:28:59 -07002299static __be32
NeilBrown567d9822005-06-23 22:02:53 -07002300nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
2301 struct nfs4_delegation **dp)
2302{
2303 int flags;
Al Virob37ad282006-10-19 23:28:59 -07002304 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07002305
2306 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
2307 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07002308 goto out;
NeilBrown567d9822005-06-23 22:02:53 -07002309 flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
2310 RD_STATE : WR_STATE;
2311 status = nfs4_check_delegmode(*dp, flags);
2312 if (status)
2313 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002314out:
2315 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
2316 return nfs_ok;
2317 if (status)
2318 return status;
2319 open->op_stateowner->so_confirmed = 1;
2320 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07002321}
2322
Al Virob37ad282006-10-19 23:28:59 -07002323static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
2325{
2326 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07002327 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 struct nfs4_stateowner *sop = open->op_stateowner;
2329
NeilBrown8beefa22005-06-23 22:03:08 -07002330 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 /* ignore lock owners */
2332 if (local->st_stateowner->so_is_open_owner == 0)
2333 continue;
2334 /* remember if we have seen this open owner */
2335 if (local->st_stateowner == sop)
2336 *stpp = local;
2337 /* check for conflicting share reservations */
2338 if (!test_share(local, open))
2339 goto out;
2340 }
2341 status = 0;
2342out:
2343 return status;
2344}
2345
NeilBrown5ac049a2005-06-23 22:03:03 -07002346static inline struct nfs4_stateid *
2347nfs4_alloc_stateid(void)
2348{
2349 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
2350}
2351
Al Virob37ad282006-10-19 23:28:59 -07002352static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
NeilBrown567d9822005-06-23 22:02:53 -07002354 struct nfs4_delegation *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 struct svc_fh *cur_fh, int flags)
2356{
2357 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
NeilBrown5ac049a2005-06-23 22:03:03 -07002359 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 if (stp == NULL)
2361 return nfserr_resource;
2362
NeilBrown567d9822005-06-23 22:02:53 -07002363 if (dp) {
2364 get_file(dp->dl_vfs_file);
2365 stp->st_vfs_file = dp->dl_vfs_file;
2366 } else {
Al Virob37ad282006-10-19 23:28:59 -07002367 __be32 status;
NeilBrown567d9822005-06-23 22:02:53 -07002368 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
2369 &stp->st_vfs_file);
2370 if (status) {
2371 if (status == nfserr_dropit)
2372 status = nfserr_jukebox;
NeilBrown5ac049a2005-06-23 22:03:03 -07002373 kmem_cache_free(stateid_slab, stp);
NeilBrown567d9822005-06-23 22:02:53 -07002374 return status;
2375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 *stpp = stp;
2378 return 0;
2379}
2380
Al Virob37ad282006-10-19 23:28:59 -07002381static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2383 struct nfsd4_open *open)
2384{
2385 struct iattr iattr = {
2386 .ia_valid = ATTR_SIZE,
2387 .ia_size = 0,
2388 };
2389 if (!open->op_truncate)
2390 return 0;
2391 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08002392 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2394}
2395
Al Virob37ad282006-10-19 23:28:59 -07002396static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
2398{
2399 struct file *filp = stp->st_vfs_file;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08002400 struct inode *inode = filp->f_path.dentry->d_inode;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002401 unsigned int share_access, new_writer;
Al Virob37ad282006-10-19 23:28:59 -07002402 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404 set_access(&share_access, stp->st_access_bmap);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002405 new_writer = (~share_access) & open->op_share_access
2406 & NFS4_SHARE_ACCESS_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002408 if (new_writer) {
Al Virob37ad282006-10-19 23:28:59 -07002409 int err = get_write_access(inode);
2410 if (err)
2411 return nfserrno(err);
Benny Halevye518f052008-07-04 15:38:41 +03002412 err = mnt_want_write(cur_fh->fh_export->ex_path.mnt);
2413 if (err)
2414 return nfserrno(err);
2415 file_take_write(filp);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 status = nfsd4_truncate(rqstp, cur_fh, open);
2418 if (status) {
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002419 if (new_writer)
2420 put_write_access(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 return status;
2422 }
2423 /* remember the open */
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002424 filp->f_mode |= open->op_share_access;
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04002425 __set_bit(open->op_share_access, &stp->st_access_bmap);
2426 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428 return nfs_ok;
2429}
2430
2431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432static void
NeilBrown37515172005-07-07 17:59:16 -07002433nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434{
NeilBrown37515172005-07-07 17:59:16 -07002435 open->op_stateowner->so_confirmed = 1;
2436 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438
2439/*
2440 * Attempt to hand out a delegation.
2441 */
2442static void
2443nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
2444{
2445 struct nfs4_delegation *dp;
2446 struct nfs4_stateowner *sop = stp->st_stateowner;
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -04002447 struct nfs4_cb_conn *cb = &sop->so_client->cl_cb_conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 struct file_lock fl, *flp = &fl;
2449 int status, flag = 0;
2450
2451 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07002452 open->op_recall = 0;
2453 switch (open->op_claim_type) {
2454 case NFS4_OPEN_CLAIM_PREVIOUS:
2455 if (!atomic_read(&cb->cb_set))
2456 open->op_recall = 1;
2457 flag = open->op_delegate_type;
2458 if (flag == NFS4_OPEN_DELEGATE_NONE)
2459 goto out;
2460 break;
2461 case NFS4_OPEN_CLAIM_NULL:
2462 /* Let's not give out any delegations till everyone's
2463 * had the chance to reclaim theirs.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002464 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07002465 goto out;
2466 if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
2467 goto out;
2468 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2469 flag = NFS4_OPEN_DELEGATE_WRITE;
2470 else
2471 flag = NFS4_OPEN_DELEGATE_READ;
2472 break;
2473 default:
2474 goto out;
2475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
2477 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
2478 if (dp == NULL) {
2479 flag = NFS4_OPEN_DELEGATE_NONE;
2480 goto out;
2481 }
2482 locks_init_lock(&fl);
2483 fl.fl_lmops = &nfsd_lease_mng_ops;
2484 fl.fl_flags = FL_LEASE;
Felix Blyakher9167f502008-02-26 10:54:36 -08002485 fl.fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 fl.fl_end = OFFSET_MAX;
2487 fl.fl_owner = (fl_owner_t)dp;
2488 fl.fl_file = stp->st_vfs_file;
2489 fl.fl_pid = current->tgid;
2490
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04002491 /* vfs_setlease checks to see if delegation should be handed out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 * the lock_manager callbacks fl_mylease and fl_change are used
2493 */
Felix Blyakher9167f502008-02-26 10:54:36 -08002494 if ((status = vfs_setlease(stp->st_vfs_file, fl.fl_type, &flp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
NeilBrownc9071322005-04-16 15:26:38 -07002496 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 flag = NFS4_OPEN_DELEGATE_NONE;
2498 goto out;
2499 }
2500
2501 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
2502
2503 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
2504 dp->dl_stateid.si_boot,
2505 dp->dl_stateid.si_stateownerid,
2506 dp->dl_stateid.si_fileid,
2507 dp->dl_stateid.si_generation);
2508out:
NeilBrown7b190fe2005-06-23 22:03:23 -07002509 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
2510 && flag == NFS4_OPEN_DELEGATE_NONE
2511 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002512 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 open->op_delegate_type = flag;
2514}
2515
2516/*
2517 * called with nfs4_lock_state() held.
2518 */
Al Virob37ad282006-10-19 23:28:59 -07002519__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2521{
Andy Adamson66689582009-04-03 08:28:45 +03002522 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 struct nfs4_file *fp = NULL;
2524 struct inode *ino = current_fh->fh_dentry->d_inode;
2525 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07002526 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07002527 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 status = nfserr_inval;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002530 if (!access_valid(open->op_share_access, resp->cstate.minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002531 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 goto out;
2533 /*
2534 * Lookup file; if found, lookup stateid and check open request,
2535 * and check for delegations in the process of being recalled.
2536 * If not found, create the nfs4_file struct
2537 */
2538 fp = find_file(ino);
2539 if (fp) {
2540 if ((status = nfs4_check_open(fp, open, &stp)))
2541 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002542 status = nfs4_check_deleg(fp, open, &dp);
2543 if (status)
2544 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07002546 status = nfserr_bad_stateid;
2547 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2548 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 status = nfserr_resource;
2550 fp = alloc_init_file(ino);
2551 if (fp == NULL)
2552 goto out;
2553 }
2554
2555 /*
2556 * OPEN the file, or upgrade an existing OPEN.
2557 * If truncate fails, the OPEN fails.
2558 */
2559 if (stp) {
2560 /* Stateid was found, this is an OPEN upgrade */
2561 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
2562 if (status)
2563 goto out;
NeilBrown444c2c02005-07-07 17:59:22 -07002564 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 } else {
2566 /* Stateid was not found, this is a new OPEN */
2567 int flags = 0;
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -07002568 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002569 flags |= NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002571 flags |= NFSD_MAY_WRITE;
NeilBrown567d9822005-06-23 22:02:53 -07002572 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
2573 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 goto out;
2575 init_stateid(stp, fp, open);
2576 status = nfsd4_truncate(rqstp, current_fh, open);
2577 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05002578 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 goto out;
2580 }
Andy Adamson66689582009-04-03 08:28:45 +03002581 if (nfsd4_has_session(&resp->cstate))
2582 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 }
2584 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
2585
Andy Adamson66689582009-04-03 08:28:45 +03002586 if (nfsd4_has_session(&resp->cstate))
2587 open->op_stateowner->so_confirmed = 1;
2588
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 /*
2590 * Attempt to hand out a delegation. No error return, because the
2591 * OPEN succeeds even if we fail.
2592 */
2593 nfs4_open_delegation(current_fh, open, stp);
2594
2595 status = nfs_ok;
2596
2597 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
2598 stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid,
2599 stp->st_stateid.si_fileid, stp->st_stateid.si_generation);
2600out:
NeilBrown13cd2182005-06-23 22:03:10 -07002601 if (fp)
2602 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07002603 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
2604 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 /*
2606 * To finish the open response, we just need to set the rflags.
2607 */
2608 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Andy Adamson66689582009-04-03 08:28:45 +03002609 if (!open->op_stateowner->so_confirmed &&
2610 !nfsd4_has_session(&resp->cstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
2612
2613 return status;
2614}
2615
Al Virob37ad282006-10-19 23:28:59 -07002616__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002617nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2618 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
2620 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07002621 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623 nfs4_lock_state();
2624 dprintk("process_renew(%08x/%08x): starting\n",
2625 clid->cl_boot, clid->cl_id);
2626 status = nfserr_stale_clientid;
2627 if (STALE_CLIENTID(clid))
2628 goto out;
2629 clp = find_confirmed_client(clid);
2630 status = nfserr_expired;
2631 if (clp == NULL) {
2632 /* We assume the client took too long to RENEW. */
2633 dprintk("nfsd4_renew: clientid not found!\n");
2634 goto out;
2635 }
2636 renew_client(clp);
2637 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07002638 if (!list_empty(&clp->cl_delegations)
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -04002639 && !atomic_read(&clp->cl_cb_conn.cb_set))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 goto out;
2641 status = nfs_ok;
2642out:
2643 nfs4_unlock_state();
2644 return status;
2645}
2646
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002647struct lock_manager nfsd4_manager = {
2648};
2649
NeilBrowna76b4312005-06-23 22:04:01 -07002650static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002651nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07002652{
2653 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07002654 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002655 locks_end_grace(&nfsd4_manager);
NeilBrowna76b4312005-06-23 22:04:01 -07002656}
2657
NeilBrownfd39ca92005-06-23 22:04:03 -07002658static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659nfs4_laundromat(void)
2660{
2661 struct nfs4_client *clp;
2662 struct nfs4_stateowner *sop;
2663 struct nfs4_delegation *dp;
2664 struct list_head *pos, *next, reaplist;
2665 time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
2666 time_t t, clientid_val = NFSD_LEASE_TIME;
2667 time_t u, test_val = NFSD_LEASE_TIME;
2668
2669 nfs4_lock_state();
2670
2671 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002672 if (locks_in_grace())
2673 nfsd4_end_grace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 list_for_each_safe(pos, next, &client_lru) {
2675 clp = list_entry(pos, struct nfs4_client, cl_lru);
2676 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
2677 t = clp->cl_time - cutoff;
2678 if (clientid_val > t)
2679 clientid_val = t;
2680 break;
2681 }
2682 dprintk("NFSD: purging unused client (clientid %08x)\n",
2683 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07002684 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 expire_client(clp);
2686 }
2687 INIT_LIST_HEAD(&reaplist);
2688 spin_lock(&recall_lock);
2689 list_for_each_safe(pos, next, &del_recall_lru) {
2690 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
2691 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
2692 u = dp->dl_time - cutoff;
2693 if (test_val > u)
2694 test_val = u;
2695 break;
2696 }
2697 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
2698 dp, dp->dl_flock);
2699 list_move(&dp->dl_recall_lru, &reaplist);
2700 }
2701 spin_unlock(&recall_lock);
2702 list_for_each_safe(pos, next, &reaplist) {
2703 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
2704 list_del_init(&dp->dl_recall_lru);
2705 unhash_delegation(dp);
2706 }
2707 test_val = NFSD_LEASE_TIME;
2708 list_for_each_safe(pos, next, &close_lru) {
2709 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
2710 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
2711 u = sop->so_time - cutoff;
2712 if (test_val > u)
2713 test_val = u;
2714 break;
2715 }
2716 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
2717 sop->so_id);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002718 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 }
2720 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
2721 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
2722 nfs4_unlock_state();
2723 return clientid_val;
2724}
2725
Harvey Harrisona254b242008-02-20 12:49:00 -08002726static struct workqueue_struct *laundry_wq;
2727static void laundromat_main(struct work_struct *);
2728static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
2729
2730static void
David Howellsc4028952006-11-22 14:57:56 +00002731laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
2733 time_t t;
2734
2735 t = nfs4_laundromat();
2736 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07002737 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738}
2739
NeilBrownfd39ca92005-06-23 22:04:03 -07002740static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07002741search_close_lru(u32 st_id, int flags)
2742{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 struct nfs4_stateowner *local = NULL;
2744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (flags & CLOSE_STATE) {
2746 list_for_each_entry(local, &close_lru, so_close_lru) {
2747 if (local->so_id == st_id)
2748 return local;
2749 }
2750 }
2751 return NULL;
2752}
2753
2754static inline int
2755nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
2756{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08002757 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758}
2759
2760static int
2761STALE_STATEID(stateid_t *stateid)
2762{
Bian Naimeng78155ed2009-04-22 18:25:37 +08002763 if (time_after((unsigned long)boot_time,
2764 (unsigned long)stateid->si_boot)) {
2765 dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
2766 stateid->si_boot, stateid->si_stateownerid,
2767 stateid->si_fileid, stateid->si_generation);
2768 return 1;
2769 }
2770 return 0;
2771}
2772
2773static int
2774EXPIRED_STATEID(stateid_t *stateid)
2775{
2776 if (time_before((unsigned long)boot_time,
2777 ((unsigned long)stateid->si_boot)) &&
J. Bruce Fieldsb8fd47a2009-04-29 11:36:17 -04002778 time_before((unsigned long)(stateid->si_boot + lease_time), get_seconds())) {
Bian Naimeng78155ed2009-04-22 18:25:37 +08002779 dprintk("NFSD: expired stateid (%08x/%08x/%08x/%08x)!\n",
2780 stateid->si_boot, stateid->si_stateownerid,
2781 stateid->si_fileid, stateid->si_generation);
2782 return 1;
2783 }
2784 return 0;
2785}
2786
2787static __be32
2788stateid_error_map(stateid_t *stateid)
2789{
2790 if (STALE_STATEID(stateid))
2791 return nfserr_stale_stateid;
2792 if (EXPIRED_STATEID(stateid))
2793 return nfserr_expired;
2794
2795 dprintk("NFSD: bad stateid (%08x/%08x/%08x/%08x)!\n",
2796 stateid->si_boot, stateid->si_stateownerid,
2797 stateid->si_fileid, stateid->si_generation);
2798 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799}
2800
2801static inline int
2802access_permit_read(unsigned long access_bmap)
2803{
2804 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
2805 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
2806 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
2807}
2808
2809static inline int
2810access_permit_write(unsigned long access_bmap)
2811{
2812 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
2813 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
2814}
2815
2816static
Al Virob37ad282006-10-19 23:28:59 -07002817__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
Al Virob37ad282006-10-19 23:28:59 -07002819 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
2821 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
2822 goto out;
2823 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
2824 goto out;
2825 status = nfs_ok;
2826out:
2827 return status;
2828}
2829
Al Virob37ad282006-10-19 23:28:59 -07002830static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2832{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002833 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002835 else if (locks_in_grace()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 /* Answer in remaining cases depends on existance of
2837 * conflicting state; so we must wait out the grace period. */
2838 return nfserr_grace;
2839 } else if (flags & WR_STATE)
2840 return nfs4_share_conflict(current_fh,
2841 NFS4_SHARE_DENY_WRITE);
2842 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2843 return nfs4_share_conflict(current_fh,
2844 NFS4_SHARE_DENY_READ);
2845}
2846
2847/*
2848 * Allow READ/WRITE during grace period on recovered state only for files
2849 * that are not able to provide mandatory locking.
2850 */
2851static inline int
J. Bruce Fields18f82732009-02-21 15:23:01 -08002852grace_disallows_io(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002854 return locks_in_grace() && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855}
2856
Andy Adamson66689582009-04-03 08:28:45 +03002857static int check_stateid_generation(stateid_t *in, stateid_t *ref, int flags)
J. Bruce Fields0836f582008-01-26 19:08:12 -05002858{
Andy Adamson66689582009-04-03 08:28:45 +03002859 /*
2860 * When sessions are used the stateid generation number is ignored
2861 * when it is zero.
2862 */
2863 if ((flags & HAS_SESSION) && in->si_generation == 0)
2864 goto out;
2865
J. Bruce Fields0836f582008-01-26 19:08:12 -05002866 /* If the client sends us a stateid from the future, it's buggy: */
2867 if (in->si_generation > ref->si_generation)
2868 return nfserr_bad_stateid;
2869 /*
2870 * The following, however, can happen. For example, if the
2871 * client sends an open and some IO at the same time, the open
2872 * may bump si_generation while the IO is still in flight.
2873 * Thanks to hard links and renames, the client never knows what
2874 * file an open will affect. So it could avoid that situation
2875 * only by serializing all opens and IO from the same open
2876 * owner. To recover from the old_stateid error, the client
2877 * will just have to retry the IO:
2878 */
2879 if (in->si_generation < ref->si_generation)
2880 return nfserr_old_stateid;
Andy Adamson66689582009-04-03 08:28:45 +03002881out:
J. Bruce Fields0836f582008-01-26 19:08:12 -05002882 return nfs_ok;
2883}
2884
J. Bruce Fields3e633072009-02-21 13:17:19 -08002885static int is_delegation_stateid(stateid_t *stateid)
2886{
2887 return stateid->si_fileid == 0;
2888}
2889
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890/*
2891* Checks for stateid operations
2892*/
Al Virob37ad282006-10-19 23:28:59 -07002893__be32
Benny Halevydd453df2009-04-03 08:28:41 +03002894nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
2895 stateid_t *stateid, int flags, struct file **filpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896{
2897 struct nfs4_stateid *stp = NULL;
2898 struct nfs4_delegation *dp = NULL;
Benny Halevydd453df2009-04-03 08:28:41 +03002899 struct svc_fh *current_fh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07002901 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 if (filpp)
2904 *filpp = NULL;
2905
J. Bruce Fields18f82732009-02-21 15:23:01 -08002906 if (grace_disallows_io(ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return nfserr_grace;
2908
Andy Adamson66689582009-04-03 08:28:45 +03002909 if (nfsd4_has_session(cstate))
2910 flags |= HAS_SESSION;
2911
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2913 return check_special_stateids(current_fh, stateid, flags);
2914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 status = nfserr_stale_stateid;
2916 if (STALE_STATEID(stateid))
2917 goto out;
2918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 status = nfserr_bad_stateid;
J. Bruce Fields3e633072009-02-21 13:17:19 -08002920 if (is_delegation_stateid(stateid)) {
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002921 dp = find_delegation_stateid(ino, stateid);
Bian Naimeng78155ed2009-04-22 18:25:37 +08002922 if (!dp) {
2923 status = stateid_error_map(stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 goto out;
Bian Naimeng78155ed2009-04-22 18:25:37 +08002925 }
Andy Adamson66689582009-04-03 08:28:45 +03002926 status = check_stateid_generation(stateid, &dp->dl_stateid,
2927 flags);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002928 if (status)
2929 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002930 status = nfs4_check_delegmode(dp, flags);
2931 if (status)
2932 goto out;
2933 renew_client(dp->dl_client);
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002934 if (filpp)
2935 *filpp = dp->dl_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002937 stp = find_stateid(stateid, flags);
Bian Naimeng78155ed2009-04-22 18:25:37 +08002938 if (!stp) {
2939 status = stateid_error_map(stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 goto out;
Bian Naimeng78155ed2009-04-22 18:25:37 +08002941 }
J. Bruce Fields6150ef02009-02-21 13:36:16 -08002942 if (nfs4_check_fh(current_fh, stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 goto out;
2944 if (!stp->st_stateowner->so_confirmed)
2945 goto out;
Andy Adamson66689582009-04-03 08:28:45 +03002946 status = check_stateid_generation(stateid, &stp->st_stateid,
2947 flags);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002948 if (status)
2949 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002950 status = nfs4_check_openmode(stp, flags);
2951 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 goto out;
2953 renew_client(stp->st_stateowner->so_client);
2954 if (filpp)
2955 *filpp = stp->st_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 }
2957 status = nfs_ok;
2958out:
2959 return status;
2960}
2961
NeilBrown4c4cd222005-07-07 17:59:27 -07002962static inline int
2963setlkflg (int type)
2964{
2965 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
2966 RD_STATE : WR_STATE;
2967}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
2969/*
2970 * Checks for sequence id mutating operations.
2971 */
Al Virob37ad282006-10-19 23:28:59 -07002972static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03002973nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
2974 stateid_t *stateid, int flags,
2975 struct nfs4_stateowner **sopp,
2976 struct nfs4_stateid **stpp, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 struct nfs4_stateid *stp;
2979 struct nfs4_stateowner *sop;
Benny Halevydd453df2009-04-03 08:28:41 +03002980 struct svc_fh *current_fh = &cstate->current_fh;
J. Bruce Fields0836f582008-01-26 19:08:12 -05002981 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
2983 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2984 "stateid = (%08x/%08x/%08x/%08x)\n", seqid,
2985 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2986 stateid->si_generation);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 *stpp = NULL;
2989 *sopp = NULL;
2990
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002992 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002993 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 }
2995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07002997 return nfserr_stale_stateid;
Andy Adamson66689582009-04-03 08:28:45 +03002998
2999 if (nfsd4_has_session(cstate))
3000 flags |= HAS_SESSION;
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 /*
3003 * We return BAD_STATEID if filehandle doesn't match stateid,
3004 * the confirmed flag is incorrecly set, or the generation
3005 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 */
NeilBrownf8816512005-07-07 17:59:25 -07003007 stp = find_stateid(stateid, flags);
3008 if (stp == NULL) {
3009 /*
3010 * Also, we should make sure this isn't just the result of
3011 * a replayed close:
3012 */
3013 sop = search_close_lru(stateid->si_stateownerid, flags);
3014 if (sop == NULL)
Bian Naimeng78155ed2009-04-22 18:25:37 +08003015 return stateid_error_map(stateid);
NeilBrownf8816512005-07-07 17:59:25 -07003016 *sopp = sop;
3017 goto check_replay;
3018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
J. Bruce Fields39325bd2007-11-26 17:06:39 -05003020 *stpp = stp;
3021 *sopp = sop = stp->st_stateowner;
3022
NeilBrown4c4cd222005-07-07 17:59:27 -07003023 if (lock) {
NeilBrown4c4cd222005-07-07 17:59:27 -07003024 clientid_t *lockclid = &lock->v.new.clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 struct nfs4_client *clp = sop->so_client;
NeilBrown4c4cd222005-07-07 17:59:27 -07003026 int lkflg = 0;
Al Virob37ad282006-10-19 23:28:59 -07003027 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
NeilBrown4c4cd222005-07-07 17:59:27 -07003029 lkflg = setlkflg(lock->lk_type);
3030
3031 if (lock->lk_is_new) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003032 if (!sop->so_is_open_owner)
3033 return nfserr_bad_stateid;
Andy Adamson60adfc52009-04-03 08:28:50 +03003034 if (!(flags & HAS_SESSION) &&
3035 !same_clid(&clp->cl_clientid, lockclid))
3036 return nfserr_bad_stateid;
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003037 /* stp is the open stateid */
3038 status = nfs4_check_openmode(stp, lkflg);
3039 if (status)
3040 return status;
3041 } else {
3042 /* stp is the lock stateid */
3043 status = nfs4_check_openmode(stp->st_openstp, lkflg);
3044 if (status)
3045 return status;
NeilBrown4c4cd222005-07-07 17:59:27 -07003046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
3048
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003049 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003050 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07003051 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 }
3053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 /*
3055 * We now validate the seqid and stateid generation numbers.
3056 * For the moment, we ignore the possibility of
3057 * generation number wraparound.
3058 */
Andy Adamson66689582009-04-03 08:28:45 +03003059 if (!(flags & HAS_SESSION) && seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 goto check_replay;
3061
NeilBrown3a4f98b2005-07-07 17:59:26 -07003062 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003063 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003064 " unconfirmed stateowner!\n");
3065 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07003067 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003068 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003069 " confirmed yet!\n");
3070 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 }
Andy Adamson66689582009-04-03 08:28:45 +03003072 status = check_stateid_generation(stateid, &stp->st_stateid, flags);
J. Bruce Fields0836f582008-01-26 19:08:12 -05003073 if (status)
3074 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07003075 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07003076 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07003079 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07003080 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 /* indicate replay to calling function */
Al Viroa90b0612006-10-19 23:29:03 -07003082 return nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 }
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003084 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
NeilBrown3a4f98b2005-07-07 17:59:26 -07003085 sop->so_seqid, seqid);
3086 *sopp = NULL;
3087 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088}
3089
Al Virob37ad282006-10-19 23:28:59 -07003090__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003091nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003092 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093{
Al Virob37ad282006-10-19 23:28:59 -07003094 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 struct nfs4_stateowner *sop;
3096 struct nfs4_stateid *stp;
3097
3098 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003099 (int)cstate->current_fh.fh_dentry->d_name.len,
3100 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003102 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07003103 if (status)
3104 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
3106 nfs4_lock_state();
3107
Benny Halevydd453df2009-04-03 08:28:41 +03003108 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003109 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003110 CONFIRM | OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 &oc->oc_stateowner, &stp, NULL)))
3112 goto out;
3113
3114 sop = oc->oc_stateowner;
3115 sop->so_confirmed = 1;
3116 update_stateid(&stp->st_stateid);
3117 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
3118 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
3119 "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid,
3120 stp->st_stateid.si_boot,
3121 stp->st_stateid.si_stateownerid,
3122 stp->st_stateid.si_fileid,
3123 stp->st_stateid.si_generation);
NeilBrownc7b9a452005-06-23 22:04:30 -07003124
3125 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126out:
Neil Brownf2327d92005-09-13 01:25:37 -07003127 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 nfs4_get_stateowner(oc->oc_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003129 cstate->replay_owner = oc->oc_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 nfs4_unlock_state();
3132 return status;
3133}
3134
3135
3136/*
3137 * unset all bits in union bitmap (bmap) that
3138 * do not exist in share (from successful OPEN_DOWNGRADE)
3139 */
3140static void
3141reset_union_bmap_access(unsigned long access, unsigned long *bmap)
3142{
3143 int i;
3144 for (i = 1; i < 4; i++) {
3145 if ((i & access) != i)
3146 __clear_bit(i, bmap);
3147 }
3148}
3149
3150static void
3151reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
3152{
3153 int i;
3154 for (i = 0; i < 4; i++) {
3155 if ((i & deny) != i)
3156 __clear_bit(i, bmap);
3157 }
3158}
3159
Al Virob37ad282006-10-19 23:28:59 -07003160__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003161nfsd4_open_downgrade(struct svc_rqst *rqstp,
3162 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003163 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164{
Al Virob37ad282006-10-19 23:28:59 -07003165 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 struct nfs4_stateid *stp;
3167 unsigned int share_access;
3168
3169 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003170 (int)cstate->current_fh.fh_dentry->d_name.len,
3171 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Andy Adamsond87a8ad2009-04-03 08:28:53 +03003173 if (!access_valid(od->od_share_access, cstate->minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07003174 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 return nfserr_inval;
3176
3177 nfs4_lock_state();
Benny Halevydd453df2009-04-03 08:28:41 +03003178 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003179 od->od_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 &od->od_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003181 OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 &od->od_stateowner, &stp, NULL)))
3183 goto out;
3184
3185 status = nfserr_inval;
3186 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
3187 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
3188 stp->st_access_bmap, od->od_share_access);
3189 goto out;
3190 }
3191 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
3192 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3193 stp->st_deny_bmap, od->od_share_deny);
3194 goto out;
3195 }
3196 set_access(&share_access, stp->st_access_bmap);
3197 nfs4_file_downgrade(stp->st_vfs_file,
3198 share_access & ~od->od_share_access);
3199
3200 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
3201 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
3202
3203 update_stateid(&stp->st_stateid);
3204 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
3205 status = nfs_ok;
3206out:
Neil Brownf2327d92005-09-13 01:25:37 -07003207 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 nfs4_get_stateowner(od->od_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003209 cstate->replay_owner = od->od_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 nfs4_unlock_state();
3212 return status;
3213}
3214
3215/*
3216 * nfs4_unlock_state() called after encode
3217 */
Al Virob37ad282006-10-19 23:28:59 -07003218__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003219nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003220 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221{
Al Virob37ad282006-10-19 23:28:59 -07003222 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 struct nfs4_stateid *stp;
3224
3225 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003226 (int)cstate->current_fh.fh_dentry->d_name.len,
3227 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229 nfs4_lock_state();
3230 /* check close_lru for replay */
Benny Halevydd453df2009-04-03 08:28:41 +03003231 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003232 close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 &close->cl_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003234 OPEN_STATE | CLOSE_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 &close->cl_stateowner, &stp, NULL)))
3236 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 status = nfs_ok;
3238 update_stateid(&stp->st_stateid);
3239 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
3240
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003241 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05003242 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003243
3244 /* place unused nfs4_stateowners on so_close_lru list to be
3245 * released by the laundromat service after the lease period
3246 * to enable us to handle CLOSE replay
3247 */
3248 if (list_empty(&close->cl_stateowner->so_stateids))
3249 move_to_close_lru(close->cl_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250out:
Neil Brownf2327d92005-09-13 01:25:37 -07003251 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 nfs4_get_stateowner(close->cl_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003253 cstate->replay_owner = close->cl_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 nfs4_unlock_state();
3256 return status;
3257}
3258
Al Virob37ad282006-10-19 23:28:59 -07003259__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003260nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3261 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003263 struct nfs4_delegation *dp;
3264 stateid_t *stateid = &dr->dr_stateid;
3265 struct inode *inode;
Al Virob37ad282006-10-19 23:28:59 -07003266 __be32 status;
Andy Adamson66689582009-04-03 08:28:45 +03003267 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003269 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003270 return status;
3271 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
Andy Adamson66689582009-04-03 08:28:45 +03003273 if (nfsd4_has_session(cstate))
3274 flags |= HAS_SESSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 nfs4_lock_state();
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003276 status = nfserr_bad_stateid;
3277 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3278 goto out;
3279 status = nfserr_stale_stateid;
3280 if (STALE_STATEID(stateid))
3281 goto out;
J. Bruce Fields7e0f7cf2009-02-21 13:32:28 -08003282 status = nfserr_bad_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003283 if (!is_delegation_stateid(stateid))
3284 goto out;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003285 dp = find_delegation_stateid(inode, stateid);
Bian Naimeng78155ed2009-04-22 18:25:37 +08003286 if (!dp) {
3287 status = stateid_error_map(stateid);
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003288 goto out;
Bian Naimeng78155ed2009-04-22 18:25:37 +08003289 }
Andy Adamson66689582009-04-03 08:28:45 +03003290 status = check_stateid_generation(stateid, &dp->dl_stateid, flags);
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003291 if (status)
3292 goto out;
3293 renew_client(dp->dl_client);
3294
3295 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003297 nfs4_unlock_state();
3298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 return status;
3300}
3301
3302
3303/*
3304 * Lock owner state (byte-range locks)
3305 */
3306#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
3307#define LOCK_HASH_BITS 8
3308#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
3309#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
3310
Benny Halevy87df4de2008-12-15 19:42:03 +02003311static inline u64
3312end_offset(u64 start, u64 len)
3313{
3314 u64 end;
3315
3316 end = start + len;
3317 return end >= start ? end: NFS4_MAX_UINT64;
3318}
3319
3320/* last octet in a range */
3321static inline u64
3322last_byte_offset(u64 start, u64 len)
3323{
3324 u64 end;
3325
3326 BUG_ON(!len);
3327 end = start + len;
3328 return end > start ? end - 1: NFS4_MAX_UINT64;
3329}
3330
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331#define lockownerid_hashval(id) \
3332 ((id) & LOCK_HASH_MASK)
3333
3334static inline unsigned int
3335lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
3336 struct xdr_netobj *ownername)
3337{
3338 return (file_hashval(inode) + cl_id
3339 + opaque_hashval(ownername->data, ownername->len))
3340 & LOCK_HASH_MASK;
3341}
3342
3343static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
3344static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
3345static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
3346
NeilBrownfd39ca92005-06-23 22:04:03 -07003347static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348find_stateid(stateid_t *stid, int flags)
3349{
Krishna Kumar9346eff2008-10-20 11:44:28 +05303350 struct nfs4_stateid *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 u32 st_id = stid->si_stateownerid;
3352 u32 f_id = stid->si_fileid;
3353 unsigned int hashval;
3354
3355 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
Krishna Kumar9346eff2008-10-20 11:44:28 +05303356 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 hashval = stateid_hashval(st_id, f_id);
3358 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
3359 if ((local->st_stateid.si_stateownerid == st_id) &&
3360 (local->st_stateid.si_fileid == f_id))
3361 return local;
3362 }
3363 }
Krishna Kumar9346eff2008-10-20 11:44:28 +05303364
3365 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 hashval = stateid_hashval(st_id, f_id);
3367 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
3368 if ((local->st_stateid.si_stateownerid == st_id) &&
3369 (local->st_stateid.si_fileid == f_id))
3370 return local;
3371 }
Neil Brown849823c2005-09-13 01:25:36 -07003372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 return NULL;
3374}
3375
3376static struct nfs4_delegation *
3377find_delegation_stateid(struct inode *ino, stateid_t *stid)
3378{
NeilBrown13cd2182005-06-23 22:03:10 -07003379 struct nfs4_file *fp;
3380 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
3382 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
3383 stid->si_boot, stid->si_stateownerid,
3384 stid->si_fileid, stid->si_generation);
3385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07003387 if (!fp)
3388 return NULL;
3389 dl = find_delegation_file(fp, stid);
3390 put_nfs4_file(fp);
3391 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392}
3393
3394/*
3395 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3396 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3397 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3398 * locking, this prevents us from being completely protocol-compliant. The
3399 * real solution to this problem is to start using unsigned file offsets in
3400 * the VFS, but this is a very deep change!
3401 */
3402static inline void
3403nfs4_transform_lock_offset(struct file_lock *lock)
3404{
3405 if (lock->fl_start < 0)
3406 lock->fl_start = OFFSET_MAX;
3407 if (lock->fl_end < 0)
3408 lock->fl_end = OFFSET_MAX;
3409}
3410
NeilBrownd5b90262006-04-10 22:55:22 -07003411/* Hack!: For now, we're defining this just so we can use a pointer to it
3412 * as a unique cookie to identify our (NFSv4's) posix locks. */
Adrian Bunke465a772006-04-10 22:55:23 -07003413static struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07003414};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
3416static inline void
3417nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3418{
NeilBrownd5b90262006-04-10 22:55:22 -07003419 struct nfs4_stateowner *sop;
3420 unsigned int hval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
NeilBrownd5b90262006-04-10 22:55:22 -07003422 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3423 sop = (struct nfs4_stateowner *) fl->fl_owner;
3424 hval = lockownerid_hashval(sop->so_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 kref_get(&sop->so_ref);
3426 deny->ld_sop = sop;
3427 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07003428 } else {
3429 deny->ld_sop = NULL;
3430 deny->ld_clientid.cl_boot = 0;
3431 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 }
3433 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02003434 deny->ld_length = NFS4_MAX_UINT64;
3435 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 deny->ld_length = fl->fl_end - fl->fl_start + 1;
3437 deny->ld_type = NFS4_READ_LT;
3438 if (fl->fl_type != F_RDLCK)
3439 deny->ld_type = NFS4_WRITE_LT;
3440}
3441
3442static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443find_lockstateowner_str(struct inode *inode, clientid_t *clid,
3444 struct xdr_netobj *owner)
3445{
3446 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
3447 struct nfs4_stateowner *op;
3448
3449 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003450 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 return op;
3452 }
3453 return NULL;
3454}
3455
3456/*
3457 * Alloc a lock owner structure.
3458 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
3459 * occured.
3460 *
3461 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 */
3463
3464static struct nfs4_stateowner *
3465alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
3466 struct nfs4_stateowner *sop;
3467 struct nfs4_replay *rp;
3468 unsigned int idhashval;
3469
3470 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
3471 return NULL;
3472 idhashval = lockownerid_hashval(current_ownerid);
3473 INIT_LIST_HEAD(&sop->so_idhash);
3474 INIT_LIST_HEAD(&sop->so_strhash);
3475 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07003476 INIT_LIST_HEAD(&sop->so_stateids);
3477 INIT_LIST_HEAD(&sop->so_perstateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
3479 sop->so_time = 0;
3480 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
3481 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07003482 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 sop->so_is_open_owner = 0;
3484 sop->so_id = current_ownerid++;
3485 sop->so_client = clp;
Neil Brownb59e3c02005-09-13 01:25:38 -07003486 /* It is the openowner seqid that will be incremented in encode in the
3487 * case of new lockowners; so increment the lock seqid manually: */
3488 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 sop->so_confirmed = 1;
3490 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08003491 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 rp->rp_buflen = 0;
3493 rp->rp_buf = rp->rp_ibuf;
3494 return sop;
3495}
3496
NeilBrownfd39ca92005-06-23 22:04:03 -07003497static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
3499{
3500 struct nfs4_stateid *stp;
3501 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
3502
NeilBrown5ac049a2005-06-23 22:03:03 -07003503 stp = nfs4_alloc_stateid();
3504 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 goto out;
3506 INIT_LIST_HEAD(&stp->st_hash);
3507 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07003508 INIT_LIST_HEAD(&stp->st_perstateowner);
3509 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07003511 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07003512 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07003514 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 stp->st_file = fp;
Bian Naimeng78155ed2009-04-22 18:25:37 +08003516 stp->st_stateid.si_boot = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 stp->st_stateid.si_stateownerid = sop->so_id;
3518 stp->st_stateid.si_fileid = fp->fi_id;
3519 stp->st_stateid.si_generation = 0;
3520 stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
3521 stp->st_access_bmap = open_stp->st_access_bmap;
3522 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07003523 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
3525out:
3526 return stp;
3527}
3528
NeilBrownfd39ca92005-06-23 22:04:03 -07003529static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530check_lock_length(u64 offset, u64 length)
3531{
Benny Halevy87df4de2008-12-15 19:42:03 +02003532 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 LOFF_OVERFLOW(offset, length)));
3534}
3535
3536/*
3537 * LOCK operation
3538 */
Al Virob37ad282006-10-19 23:28:59 -07003539__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003540nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003541 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542{
NeilBrown3e9e3db2005-06-23 22:04:20 -07003543 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07003544 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 struct nfs4_stateid *lock_stp;
3546 struct file *filp;
3547 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05003548 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07003549 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 unsigned int strhashval;
Marc Eshel150b3932007-01-18 16:15:35 -05003551 unsigned int cmd;
Al Virob8dd7b92006-10-19 23:29:01 -07003552 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3555 (long long) lock->lk_offset,
3556 (long long) lock->lk_length);
3557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 if (check_lock_length(lock->lk_offset, lock->lk_length))
3559 return nfserr_inval;
3560
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003561 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02003562 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08003563 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3564 return status;
3565 }
3566
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 nfs4_lock_state();
3568
3569 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07003570 /*
3571 * Client indicates that this is a new lockowner.
3572 * Use open owner and open stateid to create lock owner and
3573 * lock stateid.
3574 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 struct nfs4_stateid *open_stp = NULL;
3576 struct nfs4_file *fp;
3577
3578 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03003579 if (!nfsd4_has_session(cstate) &&
3580 STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 /* validate and update open stateid and open seqid */
Benny Halevydd453df2009-04-03 08:28:41 +03003584 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 lock->lk_new_open_seqid,
3586 &lock->lk_new_open_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003587 OPEN_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08003588 &lock->lk_replay_owner, &open_stp,
Neil Brownb59e3c02005-09-13 01:25:38 -07003589 lock);
NeilBrown37515172005-07-07 17:59:16 -07003590 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08003592 open_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 /* create lockowner and lock stateid */
3594 fp = open_stp->st_file;
3595 strhashval = lock_ownerstr_hashval(fp->fi_inode,
3596 open_sop->so_client->cl_clientid.cl_id,
3597 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07003598 /* XXX: Do we need to check for duplicate stateowners on
3599 * the same file, or should they just be allowed (and
3600 * create new stateids)? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 status = nfserr_resource;
Neil Brownb59e3c02005-09-13 01:25:38 -07003602 lock_sop = alloc_init_lock_stateowner(strhashval,
3603 open_sop->so_client, open_stp, lock);
3604 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07003606 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08003607 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 } else {
3610 /* lock (lock owner + lock stateid) already exists */
Benny Halevydd453df2009-04-03 08:28:41 +03003611 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 lock->lk_old_lock_seqid,
3613 &lock->lk_old_lock_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003614 LOCK_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08003615 &lock->lk_replay_owner, &lock_stp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 if (status)
3617 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08003618 lock_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08003620 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 filp = lock_stp->st_vfs_file;
3622
NeilBrown0dd395dc2005-07-07 17:59:15 -07003623 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003624 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395dc2005-07-07 17:59:15 -07003625 goto out;
3626 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003627 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395dc2005-07-07 17:59:15 -07003628 goto out;
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 locks_init_lock(&file_lock);
3631 switch (lock->lk_type) {
3632 case NFS4_READ_LT:
3633 case NFS4_READW_LT:
3634 file_lock.fl_type = F_RDLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05003635 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 break;
3637 case NFS4_WRITE_LT:
3638 case NFS4_WRITEW_LT:
3639 file_lock.fl_type = F_WRLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05003640 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 break;
3642 default:
3643 status = nfserr_inval;
3644 goto out;
3645 }
Neil Brownb59e3c02005-09-13 01:25:38 -07003646 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 file_lock.fl_pid = current->tgid;
3648 file_lock.fl_file = filp;
3649 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07003650 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
3652 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02003653 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 nfs4_transform_lock_offset(&file_lock);
3655
3656 /*
3657 * Try to lock the file in the VFS.
3658 * Note: locks.c uses the BKL to protect the inode's lock list.
3659 */
3660
Marc Eshelfd85b812006-11-28 16:26:41 -05003661 err = vfs_lock_file(filp, cmd, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07003662 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 case 0: /* success! */
3664 update_stateid(&lock_stp->st_stateid);
3665 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
3666 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07003667 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08003668 break;
3669 case (EAGAIN): /* conflock holds conflicting lock */
3670 status = nfserr_denied;
3671 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
3672 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
3673 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 case (EDEADLK):
3675 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08003676 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05003678 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08003679 status = nfserr_resource;
3680 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08003683 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003684 release_lockowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08003685 if (lock->lk_replay_owner) {
3686 nfs4_get_stateowner(lock->lk_replay_owner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003687 cstate->replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07003688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 nfs4_unlock_state();
3690 return status;
3691}
3692
3693/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08003694 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
3695 * so we do a temporary open here just to get an open file to pass to
3696 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
3697 * inode operation.)
3698 */
3699static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
3700{
3701 struct file *file;
3702 int err;
3703
3704 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
3705 if (err)
3706 return err;
3707 err = vfs_test_lock(file, lock);
3708 nfsd_close(file);
3709 return err;
3710}
3711
3712/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 * LOCKT operation
3714 */
Al Virob37ad282006-10-19 23:28:59 -07003715__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003716nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3717 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718{
3719 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 struct file_lock file_lock;
Marc Eshelfd85b812006-11-28 16:26:41 -05003721 int error;
Al Virob37ad282006-10-19 23:28:59 -07003722 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003724 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 return nfserr_grace;
3726
3727 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
3728 return nfserr_inval;
3729
3730 lockt->lt_stateowner = NULL;
3731 nfs4_lock_state();
3732
3733 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03003734 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003737 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) {
Neil Brown849823c2005-09-13 01:25:36 -07003738 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 if (status == nfserr_symlink)
3740 status = nfserr_inval;
3741 goto out;
3742 }
3743
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003744 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 locks_init_lock(&file_lock);
3746 switch (lockt->lt_type) {
3747 case NFS4_READ_LT:
3748 case NFS4_READW_LT:
3749 file_lock.fl_type = F_RDLCK;
3750 break;
3751 case NFS4_WRITE_LT:
3752 case NFS4_WRITEW_LT:
3753 file_lock.fl_type = F_WRLCK;
3754 break;
3755 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003756 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 status = nfserr_inval;
3758 goto out;
3759 }
3760
3761 lockt->lt_stateowner = find_lockstateowner_str(inode,
3762 &lockt->lt_clientid, &lockt->lt_owner);
3763 if (lockt->lt_stateowner)
3764 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
3765 file_lock.fl_pid = current->tgid;
3766 file_lock.fl_flags = FL_POSIX;
3767
3768 file_lock.fl_start = lockt->lt_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02003769 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
3771 nfs4_transform_lock_offset(&file_lock);
3772
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08003774 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05003775 if (error) {
3776 status = nfserrno(error);
3777 goto out;
3778 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05003779 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05003781 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 }
3783out:
3784 nfs4_unlock_state();
3785 return status;
3786}
3787
Al Virob37ad282006-10-19 23:28:59 -07003788__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003789nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003790 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791{
3792 struct nfs4_stateid *stp;
3793 struct file *filp = NULL;
3794 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07003795 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07003796 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
3798 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
3799 (long long) locku->lu_offset,
3800 (long long) locku->lu_length);
3801
3802 if (check_lock_length(locku->lu_offset, locku->lu_length))
3803 return nfserr_inval;
3804
3805 nfs4_lock_state();
3806
Benny Halevydd453df2009-04-03 08:28:41 +03003807 if ((status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 locku->lu_seqid,
3809 &locku->lu_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003810 LOCK_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 &locku->lu_stateowner, &stp, NULL)))
3812 goto out;
3813
3814 filp = stp->st_vfs_file;
3815 BUG_ON(!filp);
3816 locks_init_lock(&file_lock);
3817 file_lock.fl_type = F_UNLCK;
3818 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
3819 file_lock.fl_pid = current->tgid;
3820 file_lock.fl_file = filp;
3821 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07003822 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 file_lock.fl_start = locku->lu_offset;
3824
Benny Halevy87df4de2008-12-15 19:42:03 +02003825 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 nfs4_transform_lock_offset(&file_lock);
3827
3828 /*
3829 * Try to unlock the file in the VFS.
3830 */
Marc Eshelfd85b812006-11-28 16:26:41 -05003831 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07003832 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05003833 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 goto out_nfserr;
3835 }
3836 /*
3837 * OK, unlock succeeded; the only thing left to do is update the stateid.
3838 */
3839 update_stateid(&stp->st_stateid);
3840 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
3841
3842out:
Neil Brownf2327d92005-09-13 01:25:37 -07003843 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 nfs4_get_stateowner(locku->lu_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003845 cstate->replay_owner = locku->lu_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 nfs4_unlock_state();
3848 return status;
3849
3850out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07003851 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 goto out;
3853}
3854
3855/*
3856 * returns
3857 * 1: locks held by lockowner
3858 * 0: no locks held by lockowner
3859 */
3860static int
3861check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
3862{
3863 struct file_lock **flpp;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08003864 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 int status = 0;
3866
3867 lock_kernel();
3868 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003869 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 status = 1;
3871 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 }
3874out:
3875 unlock_kernel();
3876 return status;
3877}
3878
Al Virob37ad282006-10-19 23:28:59 -07003879__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003880nfsd4_release_lockowner(struct svc_rqst *rqstp,
3881 struct nfsd4_compound_state *cstate,
3882 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883{
3884 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003885 struct nfs4_stateowner *sop;
3886 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003888 struct list_head matches;
3889 int i;
Al Virob37ad282006-10-19 23:28:59 -07003890 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
3892 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3893 clid->cl_boot, clid->cl_id);
3894
3895 /* XXX check for lease expiration */
3896
3897 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07003898 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
3901 nfs4_lock_state();
3902
NeilBrown3e9e3db2005-06-23 22:04:20 -07003903 status = nfserr_locks_held;
3904 /* XXX: we're doing a linear search through all the lockowners.
3905 * Yipes! For now we'll just hope clients aren't really using
3906 * release_lockowner much, but eventually we have to fix these
3907 * data structures. */
3908 INIT_LIST_HEAD(&matches);
3909 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3910 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003911 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07003912 continue;
3913 list_for_each_entry(stp, &sop->so_stateids,
3914 st_perstateowner) {
3915 if (check_for_locks(stp->st_vfs_file, sop))
3916 goto out;
3917 /* Note: so_perclient unused for lockowners,
3918 * so it's OK to fool with here. */
3919 list_add(&sop->so_perclient, &matches);
3920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07003922 }
3923 /* Clients probably won't expect us to return with some (but not all)
3924 * of the lockowner state released; so don't release any until all
3925 * have been checked. */
3926 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07003927 while (!list_empty(&matches)) {
3928 sop = list_entry(matches.next, struct nfs4_stateowner,
3929 so_perclient);
3930 /* unhash_stateowner deletes so_perclient only
3931 * for openowners. */
3932 list_del(&sop->so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003933 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 }
3935out:
3936 nfs4_unlock_state();
3937 return status;
3938}
3939
3940static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07003941alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942{
NeilBrowna55370a2005-06-23 22:03:52 -07003943 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944}
3945
NeilBrownc7b9a452005-06-23 22:04:30 -07003946int
Andy Adamsona1bcecd2009-04-03 08:28:05 +03003947nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
NeilBrownc7b9a452005-06-23 22:04:30 -07003948{
3949 unsigned int strhashval = clientstr_hashval(name);
3950 struct nfs4_client *clp;
3951
Andy Adamsona1bcecd2009-04-03 08:28:05 +03003952 clp = find_confirmed_client_by_str(name, strhashval, use_exchange_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07003953 return clp ? 1 : 0;
3954}
3955
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956/*
3957 * failure => all reset bets are off, nfserr_no_grace...
3958 */
NeilBrown190e4fb2005-06-23 22:04:25 -07003959int
3960nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961{
3962 unsigned int strhashval;
3963 struct nfs4_client_reclaim *crp = NULL;
3964
NeilBrowna55370a2005-06-23 22:03:52 -07003965 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
3966 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 if (!crp)
3968 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07003969 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 INIT_LIST_HEAD(&crp->cr_strhash);
3971 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07003972 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 reclaim_str_hashtbl_size++;
3974 return 1;
3975}
3976
3977static void
3978nfs4_release_reclaim(void)
3979{
3980 struct nfs4_client_reclaim *crp = NULL;
3981 int i;
3982
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3984 while (!list_empty(&reclaim_str_hashtbl[i])) {
3985 crp = list_entry(reclaim_str_hashtbl[i].next,
3986 struct nfs4_client_reclaim, cr_strhash);
3987 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 kfree(crp);
3989 reclaim_str_hashtbl_size--;
3990 }
3991 }
3992 BUG_ON(reclaim_str_hashtbl_size);
3993}
3994
3995/*
3996 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07003997static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998nfs4_find_reclaim_client(clientid_t *clid)
3999{
4000 unsigned int strhashval;
4001 struct nfs4_client *clp;
4002 struct nfs4_client_reclaim *crp = NULL;
4003
4004
4005 /* find clientid in conf_id_hashtbl */
4006 clp = find_confirmed_client(clid);
4007 if (clp == NULL)
4008 return NULL;
4009
NeilBrowna55370a2005-06-23 22:03:52 -07004010 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
4011 clp->cl_name.len, clp->cl_name.data,
4012 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
4014 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07004015 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07004017 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 return crp;
4019 }
4020 }
4021 return NULL;
4022}
4023
4024/*
4025* Called from OPEN. Look for clientid in reclaim list.
4026*/
Al Virob37ad282006-10-19 23:28:59 -07004027__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028nfs4_check_open_reclaim(clientid_t *clid)
4029{
NeilBrowndfc83562005-06-23 22:03:16 -07004030 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031}
4032
NeilBrownac4d8ff22005-06-23 22:03:30 -07004033/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004035int
NeilBrownac4d8ff22005-06-23 22:03:30 -07004036nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004038 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004040 status = nfsd4_init_slabs();
4041 if (status)
4042 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4044 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
4045 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
4046 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
4047 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
Wang Chen02cb2852009-04-24 15:41:57 +08004048 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 }
Marc Eshel5282fd72009-04-03 08:27:52 +03004050 for (i = 0; i < SESSION_HASH_SIZE; i++)
4051 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 for (i = 0; i < FILE_HASH_SIZE; i++) {
4053 INIT_LIST_HEAD(&file_hashtbl[i]);
4054 }
4055 for (i = 0; i < OWNER_HASH_SIZE; i++) {
4056 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
4057 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
4058 }
4059 for (i = 0; i < STATEID_HASH_SIZE; i++) {
4060 INIT_LIST_HEAD(&stateid_hashtbl[i]);
4061 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
4062 }
4063 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4064 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
4065 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
4066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 INIT_LIST_HEAD(&close_lru);
4069 INIT_LIST_HEAD(&client_lru);
4070 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07004071 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004072 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07004073}
4074
NeilBrown190e4fb2005-06-23 22:04:25 -07004075static void
4076nfsd4_load_reboot_recovery_data(void)
4077{
4078 int status;
4079
NeilBrown0964a3d2005-06-23 22:04:32 -07004080 nfs4_lock_state();
4081 nfsd4_init_recdir(user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -07004082 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07004083 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07004084 if (status)
4085 printk("NFSD: Failure reading reboot recovery data\n");
4086}
4087
Marc Eshel9a8db972007-07-17 04:04:35 -07004088unsigned long
4089get_nfs4_grace_period(void)
4090{
4091 return max(user_lease_time, lease_time) * HZ;
4092}
4093
Meelap Shahc2f1a552007-07-17 04:04:39 -07004094/*
4095 * Since the lifetime of a delegation isn't limited to that of an open, a
4096 * client may quite reasonably hang on to a delegation as long as it has
4097 * the inode cached. This becomes an obvious problem the first time a
4098 * client's inode cache approaches the size of the server's total memory.
4099 *
4100 * For now we avoid this problem by imposing a hard limit on the number
4101 * of delegations, which varies according to the server's memory size.
4102 */
4103static void
4104set_max_delegations(void)
4105{
4106 /*
4107 * Allow at most 4 delegations per megabyte of RAM. Quick
4108 * estimates suggest that in the worst case (where every delegation
4109 * is for a different inode), a delegation could take about 1.5K,
4110 * giving a worst case usage of about 6% of memory.
4111 */
4112 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4113}
4114
NeilBrownac4d8ff22005-06-23 22:03:30 -07004115/* initialization to perform when the nfsd service is started: */
4116
4117static void
4118__nfs4_state_start(void)
4119{
Marc Eshel9a8db972007-07-17 04:04:35 -07004120 unsigned long grace_time;
NeilBrownac4d8ff22005-06-23 22:03:30 -07004121
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004123 grace_time = get_nfs4_grace_period();
NeilBrownd99a05ad2005-06-23 22:03:21 -07004124 lease_time = user_lease_time;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004125 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07004126 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
4127 grace_time/HZ);
NeilBrown58da2822005-06-23 22:03:19 -07004128 laundry_wq = create_singlethread_workqueue("nfsd4");
Marc Eshel9a8db972007-07-17 04:04:35 -07004129 queue_delayed_work(laundry_wq, &laundromat_work, grace_time);
Meelap Shahc2f1a552007-07-17 04:04:39 -07004130 set_max_delegations();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131}
4132
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004133void
NeilBrown76a35502005-06-23 22:03:26 -07004134nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 if (nfs4_init)
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004137 return;
NeilBrown190e4fb2005-06-23 22:04:25 -07004138 nfsd4_load_reboot_recovery_data();
NeilBrown76a35502005-06-23 22:03:26 -07004139 __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 nfs4_init = 1;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142}
4143
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144time_t
4145nfs4_lease_time(void)
4146{
4147 return lease_time;
4148}
4149
4150static void
4151__nfs4_state_shutdown(void)
4152{
4153 int i;
4154 struct nfs4_client *clp = NULL;
4155 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 struct list_head *pos, *next, reaplist;
4157
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4159 while (!list_empty(&conf_id_hashtbl[i])) {
4160 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4161 expire_client(clp);
4162 }
4163 while (!list_empty(&unconf_str_hashtbl[i])) {
4164 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4165 expire_client(clp);
4166 }
4167 }
4168 INIT_LIST_HEAD(&reaplist);
4169 spin_lock(&recall_lock);
4170 list_for_each_safe(pos, next, &del_recall_lru) {
4171 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4172 list_move(&dp->dl_recall_lru, &reaplist);
4173 }
4174 spin_unlock(&recall_lock);
4175 list_for_each_safe(pos, next, &reaplist) {
4176 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4177 list_del_init(&dp->dl_recall_lru);
4178 unhash_delegation(dp);
4179 }
4180
NeilBrown190e4fb2005-06-23 22:04:25 -07004181 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 nfs4_init = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183}
4184
4185void
4186nfs4_state_shutdown(void)
4187{
NeilBrown5e8d5c22006-04-10 22:55:37 -07004188 cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work);
4189 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06004190 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 nfs4_lock_state();
4192 nfs4_release_reclaim();
4193 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 nfs4_unlock_state();
4195}
4196
Jeff Layton3dd98a32008-06-10 08:40:36 -04004197/*
4198 * user_recovery_dirname is protected by the nfsd_mutex since it's only
4199 * accessed when nfsd is starting.
4200 */
NeilBrown0964a3d2005-06-23 22:04:32 -07004201static void
4202nfs4_set_recdir(char *recdir)
4203{
NeilBrown0964a3d2005-06-23 22:04:32 -07004204 strcpy(user_recovery_dirname, recdir);
NeilBrown0964a3d2005-06-23 22:04:32 -07004205}
4206
4207/*
4208 * Change the NFSv4 recovery directory to recdir.
4209 */
4210int
4211nfs4_reset_recoverydir(char *recdir)
4212{
4213 int status;
Al Viroa63bb992008-08-02 01:03:36 -04004214 struct path path;
NeilBrown0964a3d2005-06-23 22:04:32 -07004215
Al Viroa63bb992008-08-02 01:03:36 -04004216 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
NeilBrown0964a3d2005-06-23 22:04:32 -07004217 if (status)
4218 return status;
4219 status = -ENOTDIR;
Al Viroa63bb992008-08-02 01:03:36 -04004220 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
NeilBrown0964a3d2005-06-23 22:04:32 -07004221 nfs4_set_recdir(recdir);
4222 status = 0;
4223 }
Al Viroa63bb992008-08-02 01:03:36 -04004224 path_put(&path);
NeilBrown0964a3d2005-06-23 22:04:32 -07004225 return status;
4226}
4227
Jeff Layton3dd98a32008-06-10 08:40:36 -04004228char *
4229nfs4_recoverydir(void)
4230{
4231 return user_recovery_dirname;
4232}
4233
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234/*
4235 * Called when leasetime is changed.
4236 *
NeilBrownd99a05ad2005-06-23 22:03:21 -07004237 * The only way the protocol gives us to handle on-the-fly lease changes is to
4238 * simulate a reboot. Instead of doing that, we just wait till the next time
4239 * we start to register any changes in lease time. If the administrator
4240 * really wants to change the lease time *now*, they can go ahead and bring
4241 * nfsd down and then back up again after changing the lease time.
Jeff Layton3dd98a32008-06-10 08:40:36 -04004242 *
4243 * user_lease_time is protected by nfsd_mutex since it's only really accessed
4244 * when nfsd is starting
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 */
4246void
4247nfs4_reset_lease(time_t leasetime)
4248{
NeilBrownd99a05ad2005-06-23 22:03:21 -07004249 user_lease_time = leasetime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250}