blob: 099938ebc9d3ad7c2870775a61d2d960b44fb246 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2* linux/fs/nfsd/nfs4state.c
3*
4* Copyright (c) 2001 The Regents of the University of Michigan.
5* All rights reserved.
6*
7* Kendrick Smith <kmsmith@umich.edu>
8* Andy Adamson <kandros@umich.edu>
9*
10* Redistribution and use in source and binary forms, with or without
11* modification, are permitted provided that the following conditions
12* are met:
13*
14* 1. Redistributions of source code must retain the above copyright
15* notice, this list of conditions and the following disclaimer.
16* 2. Redistributions in binary form must reproduce the above copyright
17* notice, this list of conditions and the following disclaimer in the
18* documentation and/or other materials provided with the distribution.
19* 3. Neither the name of the University nor the names of its
20* contributors may be used to endorse or promote products derived
21* from this software without specific prior written permission.
22*
23* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34*
35*/
36
37#include <linux/param.h>
38#include <linux/major.h>
39#include <linux/slab.h>
40
41#include <linux/sunrpc/svc.h>
42#include <linux/nfsd/nfsd.h>
43#include <linux/nfsd/cache.h>
Dave Hansenaceaf782008-02-15 14:37:31 -080044#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/mount.h>
46#include <linux/workqueue.h>
47#include <linux/smp_lock.h>
48#include <linux/kthread.h>
49#include <linux/nfs4.h>
50#include <linux/nfsd/state.h>
51#include <linux/nfsd/xdr4.h>
NeilBrown0964a3d2005-06-23 22:04:32 -070052#include <linux/namei.h>
Meelap Shahc2f1a552007-07-17 04:04:39 -070053#include <linux/swap.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080054#include <linux/mutex.h>
Marc Eshelfd85b812006-11-28 16:26:41 -050055#include <linux/lockd/bind.h>
Marc Eshel9a8db972007-07-17 04:04:35 -070056#include <linux/module.h>
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -050057#include <linux/sunrpc/svcauth_gss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define NFSDDBG_FACILITY NFSDDBG_PROC
60
61/* Globals */
62static time_t lease_time = 90; /* default lease time */
NeilBrownd99a05a2005-06-23 22:03:21 -070063static time_t user_lease_time = 90;
NeilBrownfd39ca92005-06-23 22:04:03 -070064static time_t boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static u32 current_ownerid = 1;
66static u32 current_fileid = 1;
67static u32 current_delegid = 1;
68static u32 nfs4_init;
NeilBrownfd39ca92005-06-23 22:04:03 -070069static stateid_t zerostateid; /* bits all 0 */
70static stateid_t onestateid; /* bits all 1 */
71
72#define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
73#define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* forward declarations */
NeilBrownfd39ca92005-06-23 22:04:03 -070076static struct nfs4_stateid * find_stateid(stateid_t *stid, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
NeilBrown0964a3d2005-06-23 22:04:32 -070078static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
79static void nfs4_set_recdir(char *recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* Locking:
82 *
Ingo Molnar353ab6e2006-03-26 01:37:12 -080083 * client_mutex:
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * protects clientid_hashtbl[], clientstr_hashtbl[],
85 * unconfstr_hashtbl[], uncofid_hashtbl[].
86 */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080087static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Christoph Lametere18b8902006-12-06 20:33:20 -080089static struct kmem_cache *stateowner_slab = NULL;
90static struct kmem_cache *file_slab = NULL;
91static struct kmem_cache *stateid_slab = NULL;
92static struct kmem_cache *deleg_slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094void
95nfs4_lock_state(void)
96{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080097 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100void
101nfs4_unlock_state(void)
102{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800103 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106static inline u32
107opaque_hashval(const void *ptr, int nbytes)
108{
109 unsigned char *cptr = (unsigned char *) ptr;
110
111 u32 x = 0;
112 while (nbytes--) {
113 x *= 37;
114 x += *cptr++;
115 }
116 return x;
117}
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/*
120 * Delegation state
121 */
122
123/* recall_lock protects the del_recall_lru */
Ingo Molnar34af9462006-06-27 02:53:55 -0700124static DEFINE_SPINLOCK(recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static struct list_head del_recall_lru;
126
NeilBrown13cd2182005-06-23 22:03:10 -0700127static void
128free_nfs4_file(struct kref *kref)
129{
130 struct nfs4_file *fp = container_of(kref, struct nfs4_file, fi_ref);
131 list_del(&fp->fi_hash);
132 iput(fp->fi_inode);
133 kmem_cache_free(file_slab, fp);
134}
135
136static inline void
137put_nfs4_file(struct nfs4_file *fi)
138{
139 kref_put(&fi->fi_ref, free_nfs4_file);
140}
141
142static inline void
143get_nfs4_file(struct nfs4_file *fi)
144{
145 kref_get(&fi->fi_ref);
146}
147
NeilBrownef0f3392006-04-10 22:55:41 -0700148static int num_delegations;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700149unsigned int max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700150
151/*
152 * Open owner state (share locks)
153 */
154
155/* hash tables for nfs4_stateowner */
156#define OWNER_HASH_BITS 8
157#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
158#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
159
160#define ownerid_hashval(id) \
161 ((id) & OWNER_HASH_MASK)
162#define ownerstr_hashval(clientid, ownername) \
163 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
164
165static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE];
166static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
167
168/* hash table for nfs4_file */
169#define FILE_HASH_BITS 8
170#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
171#define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
172/* hash table for (open)nfs4_stateid */
173#define STATEID_HASH_BITS 10
174#define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
175#define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
176
177#define file_hashval(x) \
178 hash_ptr(x, FILE_HASH_BITS)
179#define stateid_hashval(owner_id, file_id) \
180 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
181
182static struct list_head file_hashtbl[FILE_HASH_SIZE];
183static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static struct nfs4_delegation *
186alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
187{
188 struct nfs4_delegation *dp;
189 struct nfs4_file *fp = stp->st_file;
190 struct nfs4_callback *cb = &stp->st_stateowner->so_client->cl_callback;
191
192 dprintk("NFSD alloc_init_deleg\n");
Meelap Shah47f99402007-07-17 04:04:40 -0700193 if (fp->fi_had_conflict)
194 return NULL;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700195 if (num_delegations > max_delegations)
NeilBrownef0f3392006-04-10 22:55:41 -0700196 return NULL;
NeilBrown5b2d21c2005-06-23 22:03:04 -0700197 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
198 if (dp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return dp;
NeilBrownef0f3392006-04-10 22:55:41 -0700200 num_delegations++;
NeilBrownea1da632005-06-23 22:04:17 -0700201 INIT_LIST_HEAD(&dp->dl_perfile);
202 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 INIT_LIST_HEAD(&dp->dl_recall_lru);
204 dp->dl_client = clp;
NeilBrown13cd2182005-06-23 22:03:10 -0700205 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 dp->dl_file = fp;
207 dp->dl_flock = NULL;
208 get_file(stp->st_vfs_file);
209 dp->dl_vfs_file = stp->st_vfs_file;
210 dp->dl_type = type;
211 dp->dl_recall.cbr_dp = NULL;
212 dp->dl_recall.cbr_ident = cb->cb_ident;
213 dp->dl_recall.cbr_trunc = 0;
214 dp->dl_stateid.si_boot = boot_time;
215 dp->dl_stateid.si_stateownerid = current_delegid++;
216 dp->dl_stateid.si_fileid = 0;
217 dp->dl_stateid.si_generation = 0;
J. Bruce Fields6c02eaa2009-02-02 17:30:51 -0500218 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 dp->dl_time = 0;
220 atomic_set(&dp->dl_count, 1);
NeilBrownea1da632005-06-23 22:04:17 -0700221 list_add(&dp->dl_perfile, &fp->fi_delegations);
222 list_add(&dp->dl_perclnt, &clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return dp;
224}
225
226void
227nfs4_put_delegation(struct nfs4_delegation *dp)
228{
229 if (atomic_dec_and_test(&dp->dl_count)) {
230 dprintk("NFSD: freeing dp %p\n",dp);
NeilBrown13cd2182005-06-23 22:03:10 -0700231 put_nfs4_file(dp->dl_file);
NeilBrown5b2d21c2005-06-23 22:03:04 -0700232 kmem_cache_free(deleg_slab, dp);
NeilBrownef0f3392006-04-10 22:55:41 -0700233 num_delegations--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235}
236
237/* Remove the associated file_lock first, then remove the delegation.
238 * lease_modify() is called to remove the FS_LEASE file_lock from
239 * the i_flock list, eventually calling nfsd's lock_manager
240 * fl_release_callback.
241 */
242static void
243nfs4_close_delegation(struct nfs4_delegation *dp)
244{
245 struct file *filp = dp->dl_vfs_file;
246
247 dprintk("NFSD: close_delegation dp %p\n",dp);
248 dp->dl_vfs_file = NULL;
249 /* The following nfsd_close may not actually close the file,
250 * but we want to remove the lease in any case. */
NeilBrownc9071322005-04-16 15:26:38 -0700251 if (dp->dl_flock)
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -0400252 vfs_setlease(filp, F_UNLCK, &dp->dl_flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 nfsd_close(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256/* Called under the state lock. */
257static void
258unhash_delegation(struct nfs4_delegation *dp)
259{
NeilBrownea1da632005-06-23 22:04:17 -0700260 list_del_init(&dp->dl_perfile);
261 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 spin_lock(&recall_lock);
263 list_del_init(&dp->dl_recall_lru);
264 spin_unlock(&recall_lock);
265 nfs4_close_delegation(dp);
266 nfs4_put_delegation(dp);
267}
268
269/*
270 * SETCLIENTID state
271 */
272
273/* Hash tables for nfs4_clientid state */
274#define CLIENT_HASH_BITS 4
275#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
276#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
277
278#define clientid_hashval(id) \
279 ((id) & CLIENT_HASH_MASK)
NeilBrowna55370a2005-06-23 22:03:52 -0700280#define clientstr_hashval(name) \
281 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/*
283 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
284 * used in reboot/reset lease grace period processing
285 *
286 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
287 * setclientid_confirmed info.
288 *
289 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
290 * setclientid info.
291 *
292 * client_lru holds client queue ordered by nfs4_client.cl_time
293 * for lease renewal.
294 *
295 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
296 * for last close replay.
297 */
298static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
299static int reclaim_str_hashtbl_size = 0;
300static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
301static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
302static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
303static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
304static struct list_head client_lru;
305static struct list_head close_lru;
306
J. Bruce Fields22839632009-01-11 14:27:17 -0500307static void unhash_generic_stateid(struct nfs4_stateid *stp)
308{
309 list_del(&stp->st_hash);
310 list_del(&stp->st_perfile);
311 list_del(&stp->st_perstateowner);
312}
313
314static void free_generic_stateid(struct nfs4_stateid *stp)
315{
316 put_nfs4_file(stp->st_file);
317 kmem_cache_free(stateid_slab, stp);
318}
319
320static void release_lock_stateid(struct nfs4_stateid *stp)
321{
322 unhash_generic_stateid(stp);
323 locks_remove_posix(stp->st_vfs_file, (fl_owner_t)stp->st_stateowner);
324 free_generic_stateid(stp);
325}
326
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500327static void unhash_lockowner(struct nfs4_stateowner *sop)
328{
329 struct nfs4_stateid *stp;
330
331 list_del(&sop->so_idhash);
332 list_del(&sop->so_strhash);
333 list_del(&sop->so_perstateid);
334 while (!list_empty(&sop->so_stateids)) {
335 stp = list_first_entry(&sop->so_stateids,
336 struct nfs4_stateid, st_perstateowner);
337 release_lock_stateid(stp);
338 }
339}
340
341static void release_lockowner(struct nfs4_stateowner *sop)
342{
343 unhash_lockowner(sop);
344 nfs4_put_stateowner(sop);
345}
346
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500347static void
348release_stateid_lockowners(struct nfs4_stateid *open_stp)
349{
350 struct nfs4_stateowner *lock_sop;
351
352 while (!list_empty(&open_stp->st_lockowners)) {
353 lock_sop = list_entry(open_stp->st_lockowners.next,
354 struct nfs4_stateowner, so_perstateid);
355 /* list_del(&open_stp->st_lockowners); */
356 BUG_ON(lock_sop->so_is_open_owner);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500357 release_lockowner(lock_sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500358 }
359}
360
J. Bruce Fields22839632009-01-11 14:27:17 -0500361static void release_open_stateid(struct nfs4_stateid *stp)
362{
363 unhash_generic_stateid(stp);
364 release_stateid_lockowners(stp);
365 nfsd_close(stp->st_vfs_file);
366 free_generic_stateid(stp);
367}
368
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500369static void unhash_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500370{
371 struct nfs4_stateid *stp;
372
373 list_del(&sop->so_idhash);
374 list_del(&sop->so_strhash);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500375 list_del(&sop->so_perclient);
376 list_del(&sop->so_perstateid); /* XXX: necessary? */
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500377 while (!list_empty(&sop->so_stateids)) {
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500378 stp = list_first_entry(&sop->so_stateids,
379 struct nfs4_stateid, st_perstateowner);
380 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500381 }
382}
383
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500384static void release_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500385{
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500386 unhash_openowner(sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500387 list_del(&sop->so_close_lru);
388 nfs4_put_stateowner(sop);
389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391static inline void
392renew_client(struct nfs4_client *clp)
393{
394 /*
395 * Move client to the end to the LRU list.
396 */
397 dprintk("renewing client (clientid %08x/%08x)\n",
398 clp->cl_clientid.cl_boot,
399 clp->cl_clientid.cl_id);
400 list_move_tail(&clp->cl_lru, &client_lru);
401 clp->cl_time = get_seconds();
402}
403
404/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
405static int
406STALE_CLIENTID(clientid_t *clid)
407{
408 if (clid->cl_boot == boot_time)
409 return 0;
410 dprintk("NFSD stale clientid (%08x/%08x)\n",
411 clid->cl_boot, clid->cl_id);
412 return 1;
413}
414
415/*
416 * XXX Should we use a slab cache ?
417 * This type of memory management is somewhat inefficient, but we use it
418 * anyway since SETCLIENTID is not a common operation.
419 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500420static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 struct nfs4_client *clp;
423
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500424 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
425 if (clp == NULL)
426 return NULL;
427 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
428 if (clp->cl_name.data == NULL) {
429 kfree(clp);
430 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500432 memcpy(clp->cl_name.data, name.data, name.len);
433 clp->cl_name.len = name.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return clp;
435}
436
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400437static void
438shutdown_callback_client(struct nfs4_client *clp)
439{
440 struct rpc_clnt *clnt = clp->cl_callback.cb_client;
441
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400442 if (clnt) {
J. Bruce Fields404ec112007-11-23 22:26:18 -0500443 /*
444 * Callback threads take a reference on the client, so there
445 * should be no outstanding callbacks at this point.
446 */
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400447 clp->cl_callback.cb_client = NULL;
448 rpc_shutdown_client(clnt);
449 }
450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452static inline void
453free_client(struct nfs4_client *clp)
454{
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400455 shutdown_callback_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (clp->cl_cred.cr_group_info)
457 put_group_info(clp->cl_cred.cr_group_info);
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500458 kfree(clp->cl_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 kfree(clp->cl_name.data);
460 kfree(clp);
461}
462
463void
464put_nfs4_client(struct nfs4_client *clp)
465{
466 if (atomic_dec_and_test(&clp->cl_count))
467 free_client(clp);
468}
469
470static void
471expire_client(struct nfs4_client *clp)
472{
473 struct nfs4_stateowner *sop;
474 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 struct list_head reaplist;
476
477 dprintk("NFSD: expire_client cl_count %d\n",
478 atomic_read(&clp->cl_count));
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 INIT_LIST_HEAD(&reaplist);
481 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700482 while (!list_empty(&clp->cl_delegations)) {
483 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
485 dp->dl_flock);
NeilBrownea1da632005-06-23 22:04:17 -0700486 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 list_move(&dp->dl_recall_lru, &reaplist);
488 }
489 spin_unlock(&recall_lock);
490 while (!list_empty(&reaplist)) {
491 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
492 list_del_init(&dp->dl_recall_lru);
493 unhash_delegation(dp);
494 }
495 list_del(&clp->cl_idhash);
496 list_del(&clp->cl_strhash);
497 list_del(&clp->cl_lru);
NeilBrownea1da632005-06-23 22:04:17 -0700498 while (!list_empty(&clp->cl_openowners)) {
499 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500500 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
502 put_nfs4_client(clp);
503}
504
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500505static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir)
506{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct nfs4_client *clp;
508
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500509 clp = alloc_client(name);
510 if (clp == NULL)
511 return NULL;
NeilBrowna55370a2005-06-23 22:03:52 -0700512 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 atomic_set(&clp->cl_count, 1);
514 atomic_set(&clp->cl_callback.cb_set, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 INIT_LIST_HEAD(&clp->cl_idhash);
516 INIT_LIST_HEAD(&clp->cl_strhash);
NeilBrownea1da632005-06-23 22:04:17 -0700517 INIT_LIST_HEAD(&clp->cl_openowners);
518 INIT_LIST_HEAD(&clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 INIT_LIST_HEAD(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return clp;
521}
522
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500523static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
524{
525 memcpy(target->cl_verifier.data, source->data,
526 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500529static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
530{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
532 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
533}
534
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500535static void copy_cred(struct svc_cred *target, struct svc_cred *source)
536{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 target->cr_uid = source->cr_uid;
538 target->cr_gid = source->cr_gid;
539 target->cr_group_info = source->cr_group_info;
540 get_group_info(target->cr_group_info);
541}
542
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500543static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400544{
NeilBrowna55370a2005-06-23 22:03:52 -0700545 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400549same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
550{
551 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400555same_clid(clientid_t *cl1, clientid_t *cl2)
556{
557 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560/* XXX what about NGROUP */
561static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400562same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
563{
564 return cr1->cr_uid == cr2->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
J. Bruce Fields5ec7b462007-11-21 21:58:56 -0500567static void gen_clid(struct nfs4_client *clp)
568{
569 static u32 current_clientid = 1;
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 clp->cl_clientid.cl_boot = boot_time;
572 clp->cl_clientid.cl_id = current_clientid++;
573}
574
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500575static void gen_confirm(struct nfs4_client *clp)
576{
577 static u32 i;
578 u32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 p = (u32 *)clp->cl_confirm.data;
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500581 *p++ = get_seconds();
582 *p++ = i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500585static int check_name(struct xdr_netobj name)
586{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (name.len == 0)
588 return 0;
589 if (name.len > NFS4_OPAQUE_LIMIT) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400590 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return 0;
592 }
593 return 1;
594}
595
NeilBrownfd39ca92005-06-23 22:04:03 -0700596static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
598{
599 unsigned int idhashval;
600
601 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
602 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
603 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
604 list_add_tail(&clp->cl_lru, &client_lru);
605 clp->cl_time = get_seconds();
606}
607
NeilBrownfd39ca92005-06-23 22:04:03 -0700608static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609move_to_confirmed(struct nfs4_client *clp)
610{
611 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
612 unsigned int strhashval;
613
614 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
615 list_del_init(&clp->cl_strhash);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700616 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -0700617 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
619 renew_client(clp);
620}
621
622static struct nfs4_client *
623find_confirmed_client(clientid_t *clid)
624{
625 struct nfs4_client *clp;
626 unsigned int idhashval = clientid_hashval(clid->cl_id);
627
628 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400629 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return clp;
631 }
632 return NULL;
633}
634
635static struct nfs4_client *
636find_unconfirmed_client(clientid_t *clid)
637{
638 struct nfs4_client *clp;
639 unsigned int idhashval = clientid_hashval(clid->cl_id);
640
641 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400642 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return clp;
644 }
645 return NULL;
646}
647
NeilBrown28ce6052005-06-23 22:03:56 -0700648static struct nfs4_client *
649find_confirmed_client_by_str(const char *dname, unsigned int hashval)
650{
651 struct nfs4_client *clp;
652
653 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
654 if (same_name(clp->cl_recdir, dname))
655 return clp;
656 }
657 return NULL;
658}
659
660static struct nfs4_client *
661find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
662{
663 struct nfs4_client *clp;
664
665 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
666 if (same_name(clp->cl_recdir, dname))
667 return clp;
668 }
669 return NULL;
670}
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/* a helper function for parse_callback */
673static int
674parse_octet(unsigned int *lenp, char **addrp)
675{
676 unsigned int len = *lenp;
677 char *p = *addrp;
678 int n = -1;
679 char c;
680
681 for (;;) {
682 if (!len)
683 break;
684 len--;
685 c = *p++;
686 if (c == '.')
687 break;
688 if ((c < '0') || (c > '9')) {
689 n = -1;
690 break;
691 }
692 if (n < 0)
693 n = 0;
694 n = (n * 10) + (c - '0');
695 if (n > 255) {
696 n = -1;
697 break;
698 }
699 }
700 *lenp = len;
701 *addrp = p;
702 return n;
703}
704
705/* parse and set the setclientid ipv4 callback address */
NeilBrownfd39ca92005-06-23 22:04:03 -0700706static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp)
708{
709 int temp = 0;
710 u32 cbaddr = 0;
711 u16 cbport = 0;
712 u32 addrlen = addr_len;
713 char *addr = addr_val;
714 int i, shift;
715
716 /* ipaddress */
717 shift = 24;
718 for(i = 4; i > 0 ; i--) {
719 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
720 return 0;
721 }
722 cbaddr |= (temp << shift);
723 if (shift > 0)
724 shift -= 8;
725 }
726 *cbaddrp = cbaddr;
727
728 /* port */
729 shift = 8;
730 for(i = 2; i > 0 ; i--) {
731 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
732 return 0;
733 }
734 cbport |= (temp << shift);
735 if (shift > 0)
736 shift -= 8;
737 }
738 *cbportp = cbport;
739 return 1;
740}
741
NeilBrownfd39ca92005-06-23 22:04:03 -0700742static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se)
744{
745 struct nfs4_callback *cb = &clp->cl_callback;
746
747 /* Currently, we only support tcp for the callback channel */
748 if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3))
749 goto out_err;
750
751 if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val,
752 &cb->cb_addr, &cb->cb_port)))
753 goto out_err;
754 cb->cb_prog = se->se_callback_prog;
755 cb->cb_ident = se->se_callback_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return;
757out_err:
Neil Brown849823c2005-09-13 01:25:36 -0700758 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 "will not receive delegations\n",
760 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return;
763}
764
Al Virob37ad282006-10-19 23:28:59 -0700765__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800766nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
767 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Chuck Lever27459f02007-02-12 00:53:34 -0800769 struct sockaddr_in *sin = svc_addr_in(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 struct xdr_netobj clname = {
771 .len = setclid->se_namelen,
772 .data = setclid->se_name,
773 };
774 nfs4_verifier clverifier = setclid->se_verf;
775 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -0700776 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -0700777 __be32 status;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500778 char *princ;
NeilBrowna55370a2005-06-23 22:03:52 -0700779 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -0700782 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
NeilBrowna55370a2005-06-23 22:03:52 -0700784 status = nfs4_make_rec_clidname(dname, &clname);
785 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -0700786 return status;
NeilBrowna55370a2005-06-23 22:03:52 -0700787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /*
789 * XXX The Duplicate Request Cache (DRC) has been checked (??)
790 * We get here on a DRC miss.
791 */
792
NeilBrowna55370a2005-06-23 22:03:52 -0700793 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 nfs4_lock_state();
NeilBrown28ce6052005-06-23 22:03:56 -0700796 conf = find_confirmed_client_by_str(dname, strhashval);
797 if (conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500798 /* RFC 3530 14.2.33 CASE 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 status = nfserr_clid_inuse;
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400800 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)
Chuck Lever27459f02007-02-12 00:53:34 -0800801 || conf->cl_addr != sin->sin_addr.s_addr) {
Harvey Harrisonbe859402008-10-31 00:56:28 -0700802 dprintk("NFSD: setclientid: string in use by clientat %pI4\n",
803 &conf->cl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 goto out;
805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500807 /*
808 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
809 * has a description of SETCLIENTID request processing consisting
810 * of 5 bullet points, labeled as CASE0 - CASE4 below.
811 */
NeilBrown28ce6052005-06-23 22:03:56 -0700812 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 status = nfserr_resource;
814 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500815 /*
816 * RFC 3530 14.2.33 CASE 4:
817 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 */
819 if (unconf)
820 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700821 new = create_client(clname, dname);
822 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400825 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500827 * RFC 3530 14.2.33 CASE 1:
828 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
NeilBrown31f4a6c2005-06-23 22:04:06 -0700830 if (unconf) {
831 /* Note this is removing unconfirmed {*x***},
832 * which is stronger than RFC recommended {vxc**}.
833 * This has the advantage that there is at most
834 * one {*x***} in either list at any time.
835 */
836 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
NeilBrowna55370a2005-06-23 22:03:52 -0700838 new = create_client(clname, dname);
839 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 } else if (!unconf) {
843 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500844 * RFC 3530 14.2.33 CASE 2:
845 * probable client reboot; state will be removed if
846 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
NeilBrowna55370a2005-06-23 22:03:52 -0700848 new = create_client(clname, dname);
849 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 gen_clid(new);
J. Bruce Fields49ba8782007-11-19 19:09:50 -0500852 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500853 /*
854 * RFC 3530 14.2.33 CASE 3:
855 * probable client reboot; state will be removed if
856 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 */
858 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700859 new = create_client(clname, dname);
860 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -0400864 copy_verf(new, &clverifier);
865 new->cl_addr = sin->sin_addr.s_addr;
Olga Kornievskaia61054b12008-12-23 16:19:00 -0500866 new->cl_flavor = rqstp->rq_flavor;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500867 princ = svc_gss_principal(rqstp);
868 if (princ) {
869 new->cl_principal = kstrdup(princ, GFP_KERNEL);
870 if (new->cl_principal == NULL) {
871 free_client(new);
872 goto out;
873 }
874 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -0400875 copy_cred(&new->cl_cred, &rqstp->rq_cred);
876 gen_confirm(new);
877 gen_callback(new, setclid);
878 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
880 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
881 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
882 status = nfs_ok;
883out:
884 nfs4_unlock_state();
885 return status;
886}
887
888
889/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500890 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
891 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
892 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
Al Virob37ad282006-10-19 23:28:59 -0700894__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800895nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
896 struct nfsd4_compound_state *cstate,
897 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Chuck Lever27459f02007-02-12 00:53:34 -0800899 struct sockaddr_in *sin = svc_addr_in(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -0700900 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
902 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -0700903 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 if (STALE_CLIENTID(clid))
906 return nfserr_stale_clientid;
907 /*
908 * XXX The Duplicate Request Cache (DRC) has been checked (??)
909 * We get here on a DRC miss.
910 */
911
912 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -0700913
914 conf = find_confirmed_client(clid);
915 unconf = find_unconfirmed_client(clid);
916
917 status = nfserr_clid_inuse;
Chuck Lever27459f02007-02-12 00:53:34 -0800918 if (conf && conf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -0700919 goto out;
Chuck Lever27459f02007-02-12 00:53:34 -0800920 if (unconf && unconf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -0700921 goto out;
922
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500923 /*
924 * section 14.2.34 of RFC 3530 has a description of
925 * SETCLIENTID_CONFIRM request processing consisting
926 * of 4 bullet points, labeled as CASE1 - CASE4 below.
927 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -0500928 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500929 /*
930 * RFC 3530 14.2.34 CASE 1:
931 * callback update
932 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400933 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 status = nfserr_clid_inuse;
935 else {
NeilBrown1a69c172005-06-23 22:04:08 -0700936 /* XXX: We just turn off callbacks until we can handle
937 * change request correctly. */
NeilBrowncb36d632005-06-23 22:04:23 -0700938 atomic_set(&conf->cl_callback.cb_set, 0);
NeilBrown21ab45a2005-06-23 22:04:14 -0700939 gen_confirm(conf);
NeilBrown46309022005-07-07 17:59:10 -0700940 nfsd4_remove_clid_dir(unconf);
NeilBrown1a69c172005-06-23 22:04:08 -0700941 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -0700943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -0500945 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500946 /*
947 * RFC 3530 14.2.34 CASE 2:
948 * probable retransmitted request; play it safe and
949 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -0700950 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400951 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -0700953 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -0700955 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400956 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500957 /*
958 * RFC 3530 14.2.34 CASE 3:
959 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -0700960 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400961 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 status = nfserr_clid_inuse;
963 } else {
NeilBrown1a69c172005-06-23 22:04:08 -0700964 unsigned int hash =
965 clientstr_hashval(unconf->cl_recdir);
966 conf = find_confirmed_client_by_str(unconf->cl_recdir,
967 hash);
968 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -0700969 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700970 expire_client(conf);
971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -0700973 conf = unconf;
J. Bruce Fields46f8a642007-11-22 13:54:18 -0500974 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700975 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400977 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
978 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -0700979 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500980 /*
981 * RFC 3530 14.2.34 CASE 4:
982 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -0700983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -0700985 } else {
NeilBrown08e89872005-06-23 22:04:11 -0700986 /* check that we have hit one of the cases...*/
987 status = nfserr_clid_inuse;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 nfs4_unlock_state();
991 return status;
992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994/* OPEN Share state helper functions */
995static inline struct nfs4_file *
996alloc_init_file(struct inode *ino)
997{
998 struct nfs4_file *fp;
999 unsigned int hashval = file_hashval(ino);
1000
NeilBrowne60d4392005-06-23 22:03:01 -07001001 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
1002 if (fp) {
NeilBrown13cd2182005-06-23 22:03:10 -07001003 kref_init(&fp->fi_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -07001005 INIT_LIST_HEAD(&fp->fi_stateids);
1006 INIT_LIST_HEAD(&fp->fi_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
1008 fp->fi_inode = igrab(ino);
1009 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07001010 fp->fi_had_conflict = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return fp;
1012 }
1013 return NULL;
1014}
1015
1016static void
Christoph Lametere18b8902006-12-06 20:33:20 -08001017nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07001018{
NeilBrowne60d4392005-06-23 22:03:01 -07001019 if (*slab == NULL)
1020 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001021 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001022 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07001023}
1024
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001025void
NeilBrowne60d4392005-06-23 22:03:01 -07001026nfsd4_free_slabs(void)
1027{
1028 nfsd4_free_slab(&stateowner_slab);
1029 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07001030 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001031 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001032}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034static int
1035nfsd4_init_slabs(void)
1036{
1037 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09001038 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001039 if (stateowner_slab == NULL)
1040 goto out_nomem;
1041 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09001042 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001043 if (file_slab == NULL)
1044 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07001045 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09001046 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07001047 if (stateid_slab == NULL)
1048 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07001049 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09001050 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001051 if (deleg_slab == NULL)
1052 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07001054out_nomem:
1055 nfsd4_free_slabs();
1056 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1057 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
1060void
1061nfs4_free_stateowner(struct kref *kref)
1062{
1063 struct nfs4_stateowner *sop =
1064 container_of(kref, struct nfs4_stateowner, so_ref);
1065 kfree(sop->so_owner.data);
1066 kmem_cache_free(stateowner_slab, sop);
1067}
1068
1069static inline struct nfs4_stateowner *
1070alloc_stateowner(struct xdr_netobj *owner)
1071{
1072 struct nfs4_stateowner *sop;
1073
1074 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1075 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1076 memcpy(sop->so_owner.data, owner->data, owner->len);
1077 sop->so_owner.len = owner->len;
1078 kref_init(&sop->so_ref);
1079 return sop;
1080 }
1081 kmem_cache_free(stateowner_slab, sop);
1082 }
1083 return NULL;
1084}
1085
1086static struct nfs4_stateowner *
1087alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1088 struct nfs4_stateowner *sop;
1089 struct nfs4_replay *rp;
1090 unsigned int idhashval;
1091
1092 if (!(sop = alloc_stateowner(&open->op_owner)))
1093 return NULL;
1094 idhashval = ownerid_hashval(current_ownerid);
1095 INIT_LIST_HEAD(&sop->so_idhash);
1096 INIT_LIST_HEAD(&sop->so_strhash);
1097 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07001098 INIT_LIST_HEAD(&sop->so_stateids);
1099 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 INIT_LIST_HEAD(&sop->so_close_lru);
1101 sop->so_time = 0;
1102 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1103 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001104 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 sop->so_is_open_owner = 1;
1106 sop->so_id = current_ownerid++;
1107 sop->so_client = clp;
1108 sop->so_seqid = open->op_seqid;
1109 sop->so_confirmed = 0;
1110 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08001111 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 rp->rp_buflen = 0;
1113 rp->rp_buf = rp->rp_ibuf;
1114 return sop;
1115}
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117static inline void
1118init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1119 struct nfs4_stateowner *sop = open->op_stateowner;
1120 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1121
1122 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07001123 INIT_LIST_HEAD(&stp->st_perstateowner);
1124 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 INIT_LIST_HEAD(&stp->st_perfile);
1126 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001127 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07001128 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07001130 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 stp->st_file = fp;
1132 stp->st_stateid.si_boot = boot_time;
1133 stp->st_stateid.si_stateownerid = sop->so_id;
1134 stp->st_stateid.si_fileid = fp->fi_id;
1135 stp->st_stateid.si_generation = 0;
1136 stp->st_access_bmap = 0;
1137 stp->st_deny_bmap = 0;
1138 __set_bit(open->op_share_access, &stp->st_access_bmap);
1139 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07001140 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144move_to_close_lru(struct nfs4_stateowner *sop)
1145{
1146 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1147
NeilBrown358dd552006-04-10 22:55:42 -07001148 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 sop->so_time = get_seconds();
1150}
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001153same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
1154 clientid_t *clid)
1155{
1156 return (sop->so_owner.len == owner->len) &&
1157 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
1158 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
1161static struct nfs4_stateowner *
1162find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1163{
1164 struct nfs4_stateowner *so = NULL;
1165
1166 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001167 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return so;
1169 }
1170 return NULL;
1171}
1172
1173/* search file_hashtbl[] for file */
1174static struct nfs4_file *
1175find_file(struct inode *ino)
1176{
1177 unsigned int hashval = file_hashval(ino);
1178 struct nfs4_file *fp;
1179
1180 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07001181 if (fp->fi_inode == ino) {
1182 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07001184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
1186 return NULL;
1187}
1188
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001189static inline int access_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001190{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001191 if (x < NFS4_SHARE_ACCESS_READ)
1192 return 0;
1193 if (x > NFS4_SHARE_ACCESS_BOTH)
1194 return 0;
1195 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001196}
1197
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001198static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001199{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001200 /* Note: unlike access bits, deny bits may be zero. */
1201 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001202}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04001204/*
1205 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1206 * st_{access,deny}_bmap field of the stateid, in order to track not
1207 * only what share bits are currently in force, but also what
1208 * combinations of share bits previous opens have used. This allows us
1209 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1210 * return an error if the client attempt to downgrade to a combination
1211 * of share bits not explicable by closing some of its previous opens.
1212 *
1213 * XXX: This enforcement is actually incomplete, since we don't keep
1214 * track of access/deny bit combinations; so, e.g., we allow:
1215 *
1216 * OPEN allow read, deny write
1217 * OPEN allow both, deny none
1218 * DOWNGRADE allow read, deny none
1219 *
1220 * which we should reject.
1221 */
NeilBrownfd39ca92005-06-23 22:04:03 -07001222static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223set_access(unsigned int *access, unsigned long bmap) {
1224 int i;
1225
1226 *access = 0;
1227 for (i = 1; i < 4; i++) {
1228 if (test_bit(i, &bmap))
1229 *access |= i;
1230 }
1231}
1232
NeilBrownfd39ca92005-06-23 22:04:03 -07001233static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234set_deny(unsigned int *deny, unsigned long bmap) {
1235 int i;
1236
1237 *deny = 0;
1238 for (i = 0; i < 4; i++) {
1239 if (test_bit(i, &bmap))
1240 *deny |= i ;
1241 }
1242}
1243
1244static int
1245test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
1246 unsigned int access, deny;
1247
1248 set_access(&access, stp->st_access_bmap);
1249 set_deny(&deny, stp->st_deny_bmap);
1250 if ((access & open->op_share_deny) || (deny & open->op_share_access))
1251 return 0;
1252 return 1;
1253}
1254
1255/*
1256 * Called to check deny when READ with all zero stateid or
1257 * WRITE with all zero or all one stateid
1258 */
Al Virob37ad282006-10-19 23:28:59 -07001259static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
1261{
1262 struct inode *ino = current_fh->fh_dentry->d_inode;
1263 struct nfs4_file *fp;
1264 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07001265 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 dprintk("NFSD: nfs4_share_conflict\n");
1268
1269 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07001270 if (!fp)
1271 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07001272 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07001274 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
1275 if (test_bit(deny_type, &stp->st_deny_bmap) ||
1276 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
1277 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
NeilBrown13cd2182005-06-23 22:03:10 -07001279 ret = nfs_ok;
1280out:
1281 put_nfs4_file(fp);
1282 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285static inline void
1286nfs4_file_downgrade(struct file *filp, unsigned int share_access)
1287{
1288 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
Dave Hansenaceaf782008-02-15 14:37:31 -08001289 drop_file_write_access(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
1291 }
1292}
1293
1294/*
1295 * Recall a delegation
1296 */
1297static int
1298do_recall(void *__dp)
1299{
1300 struct nfs4_delegation *dp = __dp;
1301
Meelap Shah47f99402007-07-17 04:04:40 -07001302 dp->dl_file->fi_had_conflict = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 nfsd4_cb_recall(dp);
1304 return 0;
1305}
1306
1307/*
1308 * Spawn a thread to perform a recall on the delegation represented
1309 * by the lease (file_lock)
1310 *
1311 * Called from break_lease() with lock_kernel() held.
1312 * Note: we assume break_lease will only call this *once* for any given
1313 * lease.
1314 */
1315static
1316void nfsd_break_deleg_cb(struct file_lock *fl)
1317{
1318 struct nfs4_delegation *dp= (struct nfs4_delegation *)fl->fl_owner;
1319 struct task_struct *t;
1320
1321 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
1322 if (!dp)
1323 return;
1324
1325 /* We're assuming the state code never drops its reference
1326 * without first removing the lease. Since we're in this lease
1327 * callback (and since the lease code is serialized by the kernel
1328 * lock) we know the server hasn't removed the lease yet, we know
1329 * it's safe to take a reference: */
1330 atomic_inc(&dp->dl_count);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04001331 atomic_inc(&dp->dl_client->cl_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 spin_lock(&recall_lock);
1334 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
1335 spin_unlock(&recall_lock);
1336
1337 /* only place dl_time is set. protected by lock_kernel*/
1338 dp->dl_time = get_seconds();
1339
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04001340 /*
1341 * We don't want the locks code to timeout the lease for us;
1342 * we'll remove it ourself if the delegation isn't returned
1343 * in time.
1344 */
1345 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall");
1348 if (IS_ERR(t)) {
1349 struct nfs4_client *clp = dp->dl_client;
1350
1351 printk(KERN_INFO "NFSD: Callback thread failed for "
1352 "for client (clientid %08x/%08x)\n",
1353 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04001354 put_nfs4_client(dp->dl_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 nfs4_put_delegation(dp);
1356 }
1357}
1358
1359/*
1360 * The file_lock is being reapd.
1361 *
1362 * Called by locks_free_lock() with lock_kernel() held.
1363 */
1364static
1365void nfsd_release_deleg_cb(struct file_lock *fl)
1366{
1367 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
1368
1369 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
1370
1371 if (!(fl->fl_flags & FL_LEASE) || !dp)
1372 return;
1373 dp->dl_flock = NULL;
1374}
1375
1376/*
1377 * Set the delegation file_lock back pointer.
1378 *
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001379 * Called from setlease() with lock_kernel() held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 */
1381static
1382void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
1383{
1384 struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
1385
1386 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
1387 if (!dp)
1388 return;
1389 dp->dl_flock = new;
1390}
1391
1392/*
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001393 * Called from setlease() with lock_kernel() held
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 */
1395static
1396int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
1397{
1398 struct nfs4_delegation *onlistd =
1399 (struct nfs4_delegation *)onlist->fl_owner;
1400 struct nfs4_delegation *tryd =
1401 (struct nfs4_delegation *)try->fl_owner;
1402
1403 if (onlist->fl_lmops != try->fl_lmops)
1404 return 0;
1405
1406 return onlistd->dl_client == tryd->dl_client;
1407}
1408
1409
1410static
1411int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
1412{
1413 if (arg & F_UNLCK)
1414 return lease_modify(onlist, arg);
1415 else
1416 return -EAGAIN;
1417}
1418
NeilBrownfd39ca92005-06-23 22:04:03 -07001419static struct lock_manager_operations nfsd_lease_mng_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 .fl_break = nfsd_break_deleg_cb,
1421 .fl_release_private = nfsd_release_deleg_cb,
1422 .fl_copy_lock = nfsd_copy_lock_deleg_cb,
1423 .fl_mylease = nfsd_same_client_deleg_cb,
1424 .fl_change = nfsd_change_deleg_cb,
1425};
1426
1427
Al Virob37ad282006-10-19 23:28:59 -07001428__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429nfsd4_process_open1(struct nfsd4_open *open)
1430{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 clientid_t *clientid = &open->op_clientid;
1432 struct nfs4_client *clp = NULL;
1433 unsigned int strhashval;
1434 struct nfs4_stateowner *sop = NULL;
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001437 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 if (STALE_CLIENTID(&open->op_clientid))
1440 return nfserr_stale_clientid;
1441
1442 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
1443 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001444 open->op_stateowner = sop;
1445 if (!sop) {
1446 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 clp = find_confirmed_client(clientid);
1448 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001449 return nfserr_expired;
1450 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001452 if (!sop->so_confirmed) {
1453 /* Replace unconfirmed owners without checking for replay. */
1454 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001455 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001456 open->op_stateowner = NULL;
1457 goto renew;
1458 }
1459 if (open->op_seqid == sop->so_seqid - 1) {
1460 if (sop->so_replay.rp_buflen)
Al Viroa90b0612006-10-19 23:29:03 -07001461 return nfserr_replay_me;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001462 /* The original OPEN failed so spectacularly
1463 * that we don't even have replay data saved!
1464 * Therefore, we have no choice but to continue
1465 * processing this OPEN; presumably, we'll
1466 * fail again for the same reason.
1467 */
1468 dprintk("nfsd4_process_open1: replay with no replay cache\n");
1469 goto renew;
1470 }
1471 if (open->op_seqid != sop->so_seqid)
1472 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001474 if (open->op_stateowner == NULL) {
1475 sop = alloc_init_open_stateowner(strhashval, clp, open);
1476 if (sop == NULL)
1477 return nfserr_resource;
1478 open->op_stateowner = sop;
1479 }
1480 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001482 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
Al Virob37ad282006-10-19 23:28:59 -07001485static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07001486nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
1487{
1488 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
1489 return nfserr_openmode;
1490 else
1491 return nfs_ok;
1492}
1493
NeilBrown52f4fb42005-06-23 22:02:49 -07001494static struct nfs4_delegation *
1495find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
1496{
1497 struct nfs4_delegation *dp;
1498
NeilBrownea1da632005-06-23 22:04:17 -07001499 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) {
NeilBrown52f4fb42005-06-23 22:02:49 -07001500 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
1501 return dp;
1502 }
1503 return NULL;
1504}
1505
Al Virob37ad282006-10-19 23:28:59 -07001506static __be32
NeilBrown567d9822005-06-23 22:02:53 -07001507nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
1508 struct nfs4_delegation **dp)
1509{
1510 int flags;
Al Virob37ad282006-10-19 23:28:59 -07001511 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07001512
1513 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
1514 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07001515 goto out;
NeilBrown567d9822005-06-23 22:02:53 -07001516 flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
1517 RD_STATE : WR_STATE;
1518 status = nfs4_check_delegmode(*dp, flags);
1519 if (status)
1520 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001521out:
1522 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
1523 return nfs_ok;
1524 if (status)
1525 return status;
1526 open->op_stateowner->so_confirmed = 1;
1527 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07001528}
1529
Al Virob37ad282006-10-19 23:28:59 -07001530static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
1532{
1533 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07001534 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 struct nfs4_stateowner *sop = open->op_stateowner;
1536
NeilBrown8beefa22005-06-23 22:03:08 -07001537 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 /* ignore lock owners */
1539 if (local->st_stateowner->so_is_open_owner == 0)
1540 continue;
1541 /* remember if we have seen this open owner */
1542 if (local->st_stateowner == sop)
1543 *stpp = local;
1544 /* check for conflicting share reservations */
1545 if (!test_share(local, open))
1546 goto out;
1547 }
1548 status = 0;
1549out:
1550 return status;
1551}
1552
NeilBrown5ac049a2005-06-23 22:03:03 -07001553static inline struct nfs4_stateid *
1554nfs4_alloc_stateid(void)
1555{
1556 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
1557}
1558
Al Virob37ad282006-10-19 23:28:59 -07001559static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
NeilBrown567d9822005-06-23 22:02:53 -07001561 struct nfs4_delegation *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 struct svc_fh *cur_fh, int flags)
1563{
1564 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
NeilBrown5ac049a2005-06-23 22:03:03 -07001566 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (stp == NULL)
1568 return nfserr_resource;
1569
NeilBrown567d9822005-06-23 22:02:53 -07001570 if (dp) {
1571 get_file(dp->dl_vfs_file);
1572 stp->st_vfs_file = dp->dl_vfs_file;
1573 } else {
Al Virob37ad282006-10-19 23:28:59 -07001574 __be32 status;
NeilBrown567d9822005-06-23 22:02:53 -07001575 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
1576 &stp->st_vfs_file);
1577 if (status) {
1578 if (status == nfserr_dropit)
1579 status = nfserr_jukebox;
NeilBrown5ac049a2005-06-23 22:03:03 -07001580 kmem_cache_free(stateid_slab, stp);
NeilBrown567d9822005-06-23 22:02:53 -07001581 return status;
1582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 *stpp = stp;
1585 return 0;
1586}
1587
Al Virob37ad282006-10-19 23:28:59 -07001588static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
1590 struct nfsd4_open *open)
1591{
1592 struct iattr iattr = {
1593 .ia_valid = ATTR_SIZE,
1594 .ia_size = 0,
1595 };
1596 if (!open->op_truncate)
1597 return 0;
1598 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08001599 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
1601}
1602
Al Virob37ad282006-10-19 23:28:59 -07001603static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
1605{
1606 struct file *filp = stp->st_vfs_file;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001607 struct inode *inode = filp->f_path.dentry->d_inode;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001608 unsigned int share_access, new_writer;
Al Virob37ad282006-10-19 23:28:59 -07001609 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 set_access(&share_access, stp->st_access_bmap);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001612 new_writer = (~share_access) & open->op_share_access
1613 & NFS4_SHARE_ACCESS_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001615 if (new_writer) {
Al Virob37ad282006-10-19 23:28:59 -07001616 int err = get_write_access(inode);
1617 if (err)
1618 return nfserrno(err);
Benny Halevye518f052008-07-04 15:38:41 +03001619 err = mnt_want_write(cur_fh->fh_export->ex_path.mnt);
1620 if (err)
1621 return nfserrno(err);
1622 file_take_write(filp);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 status = nfsd4_truncate(rqstp, cur_fh, open);
1625 if (status) {
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001626 if (new_writer)
1627 put_write_access(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 return status;
1629 }
1630 /* remember the open */
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001631 filp->f_mode |= open->op_share_access;
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04001632 __set_bit(open->op_share_access, &stp->st_access_bmap);
1633 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 return nfs_ok;
1636}
1637
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639static void
NeilBrown37515172005-07-07 17:59:16 -07001640nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
NeilBrown37515172005-07-07 17:59:16 -07001642 open->op_stateowner->so_confirmed = 1;
1643 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
1646/*
1647 * Attempt to hand out a delegation.
1648 */
1649static void
1650nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
1651{
1652 struct nfs4_delegation *dp;
1653 struct nfs4_stateowner *sop = stp->st_stateowner;
1654 struct nfs4_callback *cb = &sop->so_client->cl_callback;
1655 struct file_lock fl, *flp = &fl;
1656 int status, flag = 0;
1657
1658 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07001659 open->op_recall = 0;
1660 switch (open->op_claim_type) {
1661 case NFS4_OPEN_CLAIM_PREVIOUS:
1662 if (!atomic_read(&cb->cb_set))
1663 open->op_recall = 1;
1664 flag = open->op_delegate_type;
1665 if (flag == NFS4_OPEN_DELEGATE_NONE)
1666 goto out;
1667 break;
1668 case NFS4_OPEN_CLAIM_NULL:
1669 /* Let's not give out any delegations till everyone's
1670 * had the chance to reclaim theirs.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001671 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07001672 goto out;
1673 if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
1674 goto out;
1675 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1676 flag = NFS4_OPEN_DELEGATE_WRITE;
1677 else
1678 flag = NFS4_OPEN_DELEGATE_READ;
1679 break;
1680 default:
1681 goto out;
1682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
1685 if (dp == NULL) {
1686 flag = NFS4_OPEN_DELEGATE_NONE;
1687 goto out;
1688 }
1689 locks_init_lock(&fl);
1690 fl.fl_lmops = &nfsd_lease_mng_ops;
1691 fl.fl_flags = FL_LEASE;
Felix Blyakher9167f502008-02-26 10:54:36 -08001692 fl.fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 fl.fl_end = OFFSET_MAX;
1694 fl.fl_owner = (fl_owner_t)dp;
1695 fl.fl_file = stp->st_vfs_file;
1696 fl.fl_pid = current->tgid;
1697
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001698 /* vfs_setlease checks to see if delegation should be handed out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 * the lock_manager callbacks fl_mylease and fl_change are used
1700 */
Felix Blyakher9167f502008-02-26 10:54:36 -08001701 if ((status = vfs_setlease(stp->st_vfs_file, fl.fl_type, &flp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
NeilBrownc9071322005-04-16 15:26:38 -07001703 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 flag = NFS4_OPEN_DELEGATE_NONE;
1705 goto out;
1706 }
1707
1708 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
1709
1710 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1711 dp->dl_stateid.si_boot,
1712 dp->dl_stateid.si_stateownerid,
1713 dp->dl_stateid.si_fileid,
1714 dp->dl_stateid.si_generation);
1715out:
NeilBrown7b190fe2005-06-23 22:03:23 -07001716 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
1717 && flag == NFS4_OPEN_DELEGATE_NONE
1718 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04001719 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 open->op_delegate_type = flag;
1721}
1722
1723/*
1724 * called with nfs4_lock_state() held.
1725 */
Al Virob37ad282006-10-19 23:28:59 -07001726__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
1728{
1729 struct nfs4_file *fp = NULL;
1730 struct inode *ino = current_fh->fh_dentry->d_inode;
1731 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07001732 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07001733 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 status = nfserr_inval;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001736 if (!access_valid(open->op_share_access)
1737 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 goto out;
1739 /*
1740 * Lookup file; if found, lookup stateid and check open request,
1741 * and check for delegations in the process of being recalled.
1742 * If not found, create the nfs4_file struct
1743 */
1744 fp = find_file(ino);
1745 if (fp) {
1746 if ((status = nfs4_check_open(fp, open, &stp)))
1747 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001748 status = nfs4_check_deleg(fp, open, &dp);
1749 if (status)
1750 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07001752 status = nfserr_bad_stateid;
1753 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
1754 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 status = nfserr_resource;
1756 fp = alloc_init_file(ino);
1757 if (fp == NULL)
1758 goto out;
1759 }
1760
1761 /*
1762 * OPEN the file, or upgrade an existing OPEN.
1763 * If truncate fails, the OPEN fails.
1764 */
1765 if (stp) {
1766 /* Stateid was found, this is an OPEN upgrade */
1767 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
1768 if (status)
1769 goto out;
NeilBrown444c2c02005-07-07 17:59:22 -07001770 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 } else {
1772 /* Stateid was not found, this is a new OPEN */
1773 int flags = 0;
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -07001774 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001775 flags |= NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001777 flags |= NFSD_MAY_WRITE;
NeilBrown567d9822005-06-23 22:02:53 -07001778 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
1779 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 goto out;
1781 init_stateid(stp, fp, open);
1782 status = nfsd4_truncate(rqstp, current_fh, open);
1783 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05001784 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 goto out;
1786 }
1787 }
1788 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
1789
1790 /*
1791 * Attempt to hand out a delegation. No error return, because the
1792 * OPEN succeeds even if we fail.
1793 */
1794 nfs4_open_delegation(current_fh, open, stp);
1795
1796 status = nfs_ok;
1797
1798 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1799 stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid,
1800 stp->st_stateid.si_fileid, stp->st_stateid.si_generation);
1801out:
NeilBrown13cd2182005-06-23 22:03:10 -07001802 if (fp)
1803 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07001804 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1805 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 /*
1807 * To finish the open response, we just need to set the rflags.
1808 */
1809 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
1810 if (!open->op_stateowner->so_confirmed)
1811 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
1812
1813 return status;
1814}
1815
Al Virob37ad282006-10-19 23:28:59 -07001816__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001817nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1818 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07001821 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 nfs4_lock_state();
1824 dprintk("process_renew(%08x/%08x): starting\n",
1825 clid->cl_boot, clid->cl_id);
1826 status = nfserr_stale_clientid;
1827 if (STALE_CLIENTID(clid))
1828 goto out;
1829 clp = find_confirmed_client(clid);
1830 status = nfserr_expired;
1831 if (clp == NULL) {
1832 /* We assume the client took too long to RENEW. */
1833 dprintk("nfsd4_renew: clientid not found!\n");
1834 goto out;
1835 }
1836 renew_client(clp);
1837 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07001838 if (!list_empty(&clp->cl_delegations)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 && !atomic_read(&clp->cl_callback.cb_set))
1840 goto out;
1841 status = nfs_ok;
1842out:
1843 nfs4_unlock_state();
1844 return status;
1845}
1846
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001847struct lock_manager nfsd4_manager = {
1848};
1849
NeilBrowna76b4312005-06-23 22:04:01 -07001850static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001851nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07001852{
1853 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07001854 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001855 locks_end_grace(&nfsd4_manager);
NeilBrowna76b4312005-06-23 22:04:01 -07001856}
1857
NeilBrownfd39ca92005-06-23 22:04:03 -07001858static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859nfs4_laundromat(void)
1860{
1861 struct nfs4_client *clp;
1862 struct nfs4_stateowner *sop;
1863 struct nfs4_delegation *dp;
1864 struct list_head *pos, *next, reaplist;
1865 time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
1866 time_t t, clientid_val = NFSD_LEASE_TIME;
1867 time_t u, test_val = NFSD_LEASE_TIME;
1868
1869 nfs4_lock_state();
1870
1871 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001872 if (locks_in_grace())
1873 nfsd4_end_grace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 list_for_each_safe(pos, next, &client_lru) {
1875 clp = list_entry(pos, struct nfs4_client, cl_lru);
1876 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
1877 t = clp->cl_time - cutoff;
1878 if (clientid_val > t)
1879 clientid_val = t;
1880 break;
1881 }
1882 dprintk("NFSD: purging unused client (clientid %08x)\n",
1883 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07001884 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 expire_client(clp);
1886 }
1887 INIT_LIST_HEAD(&reaplist);
1888 spin_lock(&recall_lock);
1889 list_for_each_safe(pos, next, &del_recall_lru) {
1890 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1891 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
1892 u = dp->dl_time - cutoff;
1893 if (test_val > u)
1894 test_val = u;
1895 break;
1896 }
1897 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1898 dp, dp->dl_flock);
1899 list_move(&dp->dl_recall_lru, &reaplist);
1900 }
1901 spin_unlock(&recall_lock);
1902 list_for_each_safe(pos, next, &reaplist) {
1903 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1904 list_del_init(&dp->dl_recall_lru);
1905 unhash_delegation(dp);
1906 }
1907 test_val = NFSD_LEASE_TIME;
1908 list_for_each_safe(pos, next, &close_lru) {
1909 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
1910 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
1911 u = sop->so_time - cutoff;
1912 if (test_val > u)
1913 test_val = u;
1914 break;
1915 }
1916 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1917 sop->so_id);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001918 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 }
1920 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
1921 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
1922 nfs4_unlock_state();
1923 return clientid_val;
1924}
1925
Harvey Harrisona254b242008-02-20 12:49:00 -08001926static struct workqueue_struct *laundry_wq;
1927static void laundromat_main(struct work_struct *);
1928static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
1929
1930static void
David Howellsc4028952006-11-22 14:57:56 +00001931laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
1933 time_t t;
1934
1935 t = nfs4_laundromat();
1936 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07001937 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
NeilBrownfd39ca92005-06-23 22:04:03 -07001940static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07001941search_close_lru(u32 st_id, int flags)
1942{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 struct nfs4_stateowner *local = NULL;
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (flags & CLOSE_STATE) {
1946 list_for_each_entry(local, &close_lru, so_close_lru) {
1947 if (local->so_id == st_id)
1948 return local;
1949 }
1950 }
1951 return NULL;
1952}
1953
1954static inline int
1955nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
1956{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001957 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
1960static int
1961STALE_STATEID(stateid_t *stateid)
1962{
1963 if (stateid->si_boot == boot_time)
1964 return 0;
Neil Brown849823c2005-09-13 01:25:36 -07001965 dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
1967 stateid->si_generation);
1968 return 1;
1969}
1970
1971static inline int
1972access_permit_read(unsigned long access_bmap)
1973{
1974 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
1975 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
1976 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
1977}
1978
1979static inline int
1980access_permit_write(unsigned long access_bmap)
1981{
1982 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
1983 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
1984}
1985
1986static
Al Virob37ad282006-10-19 23:28:59 -07001987__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
Al Virob37ad282006-10-19 23:28:59 -07001989 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
1992 goto out;
1993 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
1994 goto out;
1995 status = nfs_ok;
1996out:
1997 return status;
1998}
1999
Al Virob37ad282006-10-19 23:28:59 -07002000static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2002{
2003 /* Trying to call delegreturn with a special stateid? Yuch: */
2004 if (!(flags & (RD_STATE | WR_STATE)))
2005 return nfserr_bad_stateid;
2006 else if (ONE_STATEID(stateid) && (flags & RD_STATE))
2007 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002008 else if (locks_in_grace()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 /* Answer in remaining cases depends on existance of
2010 * conflicting state; so we must wait out the grace period. */
2011 return nfserr_grace;
2012 } else if (flags & WR_STATE)
2013 return nfs4_share_conflict(current_fh,
2014 NFS4_SHARE_DENY_WRITE);
2015 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2016 return nfs4_share_conflict(current_fh,
2017 NFS4_SHARE_DENY_READ);
2018}
2019
2020/*
2021 * Allow READ/WRITE during grace period on recovered state only for files
2022 * that are not able to provide mandatory locking.
2023 */
2024static inline int
2025io_during_grace_disallowed(struct inode *inode, int flags)
2026{
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002027 return locks_in_grace() && (flags & (RD_STATE | WR_STATE))
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002028 && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029}
2030
J. Bruce Fields0836f582008-01-26 19:08:12 -05002031static int check_stateid_generation(stateid_t *in, stateid_t *ref)
2032{
2033 /* If the client sends us a stateid from the future, it's buggy: */
2034 if (in->si_generation > ref->si_generation)
2035 return nfserr_bad_stateid;
2036 /*
2037 * The following, however, can happen. For example, if the
2038 * client sends an open and some IO at the same time, the open
2039 * may bump si_generation while the IO is still in flight.
2040 * Thanks to hard links and renames, the client never knows what
2041 * file an open will affect. So it could avoid that situation
2042 * only by serializing all opens and IO from the same open
2043 * owner. To recover from the old_stateid error, the client
2044 * will just have to retry the IO:
2045 */
2046 if (in->si_generation < ref->si_generation)
2047 return nfserr_old_stateid;
2048 return nfs_ok;
2049}
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051/*
2052* Checks for stateid operations
2053*/
Al Virob37ad282006-10-19 23:28:59 -07002054__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055nfs4_preprocess_stateid_op(struct svc_fh *current_fh, stateid_t *stateid, int flags, struct file **filpp)
2056{
2057 struct nfs4_stateid *stp = NULL;
2058 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07002060 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 dprintk("NFSD: preprocess_stateid_op: stateid = (%08x/%08x/%08x/%08x)\n",
2063 stateid->si_boot, stateid->si_stateownerid,
2064 stateid->si_fileid, stateid->si_generation);
2065 if (filpp)
2066 *filpp = NULL;
2067
2068 if (io_during_grace_disallowed(ino, flags))
2069 return nfserr_grace;
2070
2071 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2072 return check_special_stateids(current_fh, stateid, flags);
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 status = nfserr_stale_stateid;
2075 if (STALE_STATEID(stateid))
2076 goto out;
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 status = nfserr_bad_stateid;
2079 if (!stateid->si_fileid) { /* delegation stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002080 dp = find_delegation_stateid(ino, stateid);
2081 if (!dp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 dprintk("NFSD: delegation stateid not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 goto out;
2084 }
J. Bruce Fieldsfd03b092009-02-21 11:27:30 -08002085 status = check_stateid_generation(stateid, &dp->dl_stateid);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002086 if (status)
2087 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002088 status = nfs4_check_delegmode(dp, flags);
2089 if (status)
2090 goto out;
2091 renew_client(dp->dl_client);
2092 if (flags & DELEG_RET)
2093 unhash_delegation(dp);
2094 if (filpp)
2095 *filpp = dp->dl_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002097 stp = find_stateid(stateid, flags);
2098 if (!stp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 dprintk("NFSD: open or lock stateid not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 goto out;
2101 }
2102 if ((flags & CHECK_FH) && nfs4_check_fh(current_fh, stp))
2103 goto out;
2104 if (!stp->st_stateowner->so_confirmed)
2105 goto out;
J. Bruce Fieldsfd03b092009-02-21 11:27:30 -08002106 status = check_stateid_generation(stateid, &stp->st_stateid);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002107 if (status)
2108 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002109 status = nfs4_check_openmode(stp, flags);
2110 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 goto out;
2112 renew_client(stp->st_stateowner->so_client);
2113 if (filpp)
2114 *filpp = stp->st_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
2116 status = nfs_ok;
2117out:
2118 return status;
2119}
2120
NeilBrown4c4cd222005-07-07 17:59:27 -07002121static inline int
2122setlkflg (int type)
2123{
2124 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
2125 RD_STATE : WR_STATE;
2126}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128/*
2129 * Checks for sequence id mutating operations.
2130 */
Al Virob37ad282006-10-19 23:28:59 -07002131static __be32
NeilBrown4c4cd222005-07-07 17:59:27 -07002132nfs4_preprocess_seqid_op(struct svc_fh *current_fh, u32 seqid, stateid_t *stateid, int flags, struct nfs4_stateowner **sopp, struct nfs4_stateid **stpp, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 struct nfs4_stateid *stp;
2135 struct nfs4_stateowner *sop;
J. Bruce Fields0836f582008-01-26 19:08:12 -05002136 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2139 "stateid = (%08x/%08x/%08x/%08x)\n", seqid,
2140 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2141 stateid->si_generation);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 *stpp = NULL;
2144 *sopp = NULL;
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002147 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002148 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07002152 return nfserr_stale_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 /*
2154 * We return BAD_STATEID if filehandle doesn't match stateid,
2155 * the confirmed flag is incorrecly set, or the generation
2156 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 */
NeilBrownf8816512005-07-07 17:59:25 -07002158 stp = find_stateid(stateid, flags);
2159 if (stp == NULL) {
2160 /*
2161 * Also, we should make sure this isn't just the result of
2162 * a replayed close:
2163 */
2164 sop = search_close_lru(stateid->si_stateownerid, flags);
2165 if (sop == NULL)
2166 return nfserr_bad_stateid;
2167 *sopp = sop;
2168 goto check_replay;
2169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
J. Bruce Fields39325bd2007-11-26 17:06:39 -05002171 *stpp = stp;
2172 *sopp = sop = stp->st_stateowner;
2173
NeilBrown4c4cd222005-07-07 17:59:27 -07002174 if (lock) {
NeilBrown4c4cd222005-07-07 17:59:27 -07002175 clientid_t *lockclid = &lock->v.new.clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 struct nfs4_client *clp = sop->so_client;
NeilBrown4c4cd222005-07-07 17:59:27 -07002177 int lkflg = 0;
Al Virob37ad282006-10-19 23:28:59 -07002178 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
NeilBrown4c4cd222005-07-07 17:59:27 -07002180 lkflg = setlkflg(lock->lk_type);
2181
2182 if (lock->lk_is_new) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002183 if (!sop->so_is_open_owner)
2184 return nfserr_bad_stateid;
2185 if (!same_clid(&clp->cl_clientid, lockclid))
NeilBrown4c4cd222005-07-07 17:59:27 -07002186 return nfserr_bad_stateid;
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002187 /* stp is the open stateid */
2188 status = nfs4_check_openmode(stp, lkflg);
2189 if (status)
2190 return status;
2191 } else {
2192 /* stp is the lock stateid */
2193 status = nfs4_check_openmode(stp->st_openstp, lkflg);
2194 if (status)
2195 return status;
NeilBrown4c4cd222005-07-07 17:59:27 -07002196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
2198
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002199 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002200 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002201 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 /*
2205 * We now validate the seqid and stateid generation numbers.
2206 * For the moment, we ignore the possibility of
2207 * generation number wraparound.
2208 */
NeilBrownbd9aac52005-07-07 17:59:19 -07002209 if (seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 goto check_replay;
2211
NeilBrown3a4f98b2005-07-07 17:59:26 -07002212 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002213 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07002214 " unconfirmed stateowner!\n");
2215 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07002217 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002218 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07002219 " confirmed yet!\n");
2220 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
J. Bruce Fields0836f582008-01-26 19:08:12 -05002222 status = check_stateid_generation(stateid, &stp->st_stateid);
2223 if (status)
2224 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07002225 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002226 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07002229 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07002230 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 /* indicate replay to calling function */
Al Viroa90b0612006-10-19 23:29:03 -07002232 return nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002234 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
NeilBrown3a4f98b2005-07-07 17:59:26 -07002235 sop->so_seqid, seqid);
2236 *sopp = NULL;
2237 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
Al Virob37ad282006-10-19 23:28:59 -07002240__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002241nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002242 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
Al Virob37ad282006-10-19 23:28:59 -07002244 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 struct nfs4_stateowner *sop;
2246 struct nfs4_stateid *stp;
2247
2248 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002249 (int)cstate->current_fh.fh_dentry->d_name.len,
2250 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002252 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07002253 if (status)
2254 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 nfs4_lock_state();
2257
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002258 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2259 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002260 CONFIRM | OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 &oc->oc_stateowner, &stp, NULL)))
2262 goto out;
2263
2264 sop = oc->oc_stateowner;
2265 sop->so_confirmed = 1;
2266 update_stateid(&stp->st_stateid);
2267 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
2268 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
2269 "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid,
2270 stp->st_stateid.si_boot,
2271 stp->st_stateid.si_stateownerid,
2272 stp->st_stateid.si_fileid,
2273 stp->st_stateid.si_generation);
NeilBrownc7b9a452005-06-23 22:04:30 -07002274
2275 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276out:
Neil Brownf2327d92005-09-13 01:25:37 -07002277 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 nfs4_get_stateowner(oc->oc_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002279 cstate->replay_owner = oc->oc_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 nfs4_unlock_state();
2282 return status;
2283}
2284
2285
2286/*
2287 * unset all bits in union bitmap (bmap) that
2288 * do not exist in share (from successful OPEN_DOWNGRADE)
2289 */
2290static void
2291reset_union_bmap_access(unsigned long access, unsigned long *bmap)
2292{
2293 int i;
2294 for (i = 1; i < 4; i++) {
2295 if ((i & access) != i)
2296 __clear_bit(i, bmap);
2297 }
2298}
2299
2300static void
2301reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
2302{
2303 int i;
2304 for (i = 0; i < 4; i++) {
2305 if ((i & deny) != i)
2306 __clear_bit(i, bmap);
2307 }
2308}
2309
Al Virob37ad282006-10-19 23:28:59 -07002310__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002311nfsd4_open_downgrade(struct svc_rqst *rqstp,
2312 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002313 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
Al Virob37ad282006-10-19 23:28:59 -07002315 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 struct nfs4_stateid *stp;
2317 unsigned int share_access;
2318
2319 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002320 (int)cstate->current_fh.fh_dentry->d_name.len,
2321 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002323 if (!access_valid(od->od_share_access)
2324 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 return nfserr_inval;
2326
2327 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002328 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2329 od->od_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 &od->od_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002331 OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 &od->od_stateowner, &stp, NULL)))
2333 goto out;
2334
2335 status = nfserr_inval;
2336 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
2337 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2338 stp->st_access_bmap, od->od_share_access);
2339 goto out;
2340 }
2341 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
2342 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2343 stp->st_deny_bmap, od->od_share_deny);
2344 goto out;
2345 }
2346 set_access(&share_access, stp->st_access_bmap);
2347 nfs4_file_downgrade(stp->st_vfs_file,
2348 share_access & ~od->od_share_access);
2349
2350 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
2351 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
2352
2353 update_stateid(&stp->st_stateid);
2354 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
2355 status = nfs_ok;
2356out:
Neil Brownf2327d92005-09-13 01:25:37 -07002357 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 nfs4_get_stateowner(od->od_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002359 cstate->replay_owner = od->od_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 nfs4_unlock_state();
2362 return status;
2363}
2364
2365/*
2366 * nfs4_unlock_state() called after encode
2367 */
Al Virob37ad282006-10-19 23:28:59 -07002368__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002369nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002370 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Al Virob37ad282006-10-19 23:28:59 -07002372 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 struct nfs4_stateid *stp;
2374
2375 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002376 (int)cstate->current_fh.fh_dentry->d_name.len,
2377 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
2379 nfs4_lock_state();
2380 /* check close_lru for replay */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002381 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2382 close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 &close->cl_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002384 OPEN_STATE | CLOSE_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 &close->cl_stateowner, &stp, NULL)))
2386 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 status = nfs_ok;
2388 update_stateid(&stp->st_stateid);
2389 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
2390
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002391 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05002392 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002393
2394 /* place unused nfs4_stateowners on so_close_lru list to be
2395 * released by the laundromat service after the lease period
2396 * to enable us to handle CLOSE replay
2397 */
2398 if (list_empty(&close->cl_stateowner->so_stateids))
2399 move_to_close_lru(close->cl_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400out:
Neil Brownf2327d92005-09-13 01:25:37 -07002401 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 nfs4_get_stateowner(close->cl_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002403 cstate->replay_owner = close->cl_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 nfs4_unlock_state();
2406 return status;
2407}
2408
Al Virob37ad282006-10-19 23:28:59 -07002409__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002410nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2411 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412{
Al Virob37ad282006-10-19 23:28:59 -07002413 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002415 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 goto out;
2417
2418 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002419 status = nfs4_preprocess_stateid_op(&cstate->current_fh,
2420 &dr->dr_stateid, DELEG_RET, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 nfs4_unlock_state();
2422out:
2423 return status;
2424}
2425
2426
2427/*
2428 * Lock owner state (byte-range locks)
2429 */
2430#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
2431#define LOCK_HASH_BITS 8
2432#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
2433#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
2434
Benny Halevy87df4de2008-12-15 19:42:03 +02002435static inline u64
2436end_offset(u64 start, u64 len)
2437{
2438 u64 end;
2439
2440 end = start + len;
2441 return end >= start ? end: NFS4_MAX_UINT64;
2442}
2443
2444/* last octet in a range */
2445static inline u64
2446last_byte_offset(u64 start, u64 len)
2447{
2448 u64 end;
2449
2450 BUG_ON(!len);
2451 end = start + len;
2452 return end > start ? end - 1: NFS4_MAX_UINT64;
2453}
2454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455#define lockownerid_hashval(id) \
2456 ((id) & LOCK_HASH_MASK)
2457
2458static inline unsigned int
2459lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
2460 struct xdr_netobj *ownername)
2461{
2462 return (file_hashval(inode) + cl_id
2463 + opaque_hashval(ownername->data, ownername->len))
2464 & LOCK_HASH_MASK;
2465}
2466
2467static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
2468static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
2469static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
2470
NeilBrownfd39ca92005-06-23 22:04:03 -07002471static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472find_stateid(stateid_t *stid, int flags)
2473{
Krishna Kumar9346eff2008-10-20 11:44:28 +05302474 struct nfs4_stateid *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 u32 st_id = stid->si_stateownerid;
2476 u32 f_id = stid->si_fileid;
2477 unsigned int hashval;
2478
2479 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
Krishna Kumar9346eff2008-10-20 11:44:28 +05302480 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 hashval = stateid_hashval(st_id, f_id);
2482 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
2483 if ((local->st_stateid.si_stateownerid == st_id) &&
2484 (local->st_stateid.si_fileid == f_id))
2485 return local;
2486 }
2487 }
Krishna Kumar9346eff2008-10-20 11:44:28 +05302488
2489 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 hashval = stateid_hashval(st_id, f_id);
2491 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
2492 if ((local->st_stateid.si_stateownerid == st_id) &&
2493 (local->st_stateid.si_fileid == f_id))
2494 return local;
2495 }
Neil Brown849823c2005-09-13 01:25:36 -07002496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 return NULL;
2498}
2499
2500static struct nfs4_delegation *
2501find_delegation_stateid(struct inode *ino, stateid_t *stid)
2502{
NeilBrown13cd2182005-06-23 22:03:10 -07002503 struct nfs4_file *fp;
2504 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2507 stid->si_boot, stid->si_stateownerid,
2508 stid->si_fileid, stid->si_generation);
2509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002511 if (!fp)
2512 return NULL;
2513 dl = find_delegation_file(fp, stid);
2514 put_nfs4_file(fp);
2515 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
2518/*
2519 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2520 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2521 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
2522 * locking, this prevents us from being completely protocol-compliant. The
2523 * real solution to this problem is to start using unsigned file offsets in
2524 * the VFS, but this is a very deep change!
2525 */
2526static inline void
2527nfs4_transform_lock_offset(struct file_lock *lock)
2528{
2529 if (lock->fl_start < 0)
2530 lock->fl_start = OFFSET_MAX;
2531 if (lock->fl_end < 0)
2532 lock->fl_end = OFFSET_MAX;
2533}
2534
NeilBrownd5b90262006-04-10 22:55:22 -07002535/* Hack!: For now, we're defining this just so we can use a pointer to it
2536 * as a unique cookie to identify our (NFSv4's) posix locks. */
Adrian Bunke465a772006-04-10 22:55:23 -07002537static struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07002538};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540static inline void
2541nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
2542{
NeilBrownd5b90262006-04-10 22:55:22 -07002543 struct nfs4_stateowner *sop;
2544 unsigned int hval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
NeilBrownd5b90262006-04-10 22:55:22 -07002546 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
2547 sop = (struct nfs4_stateowner *) fl->fl_owner;
2548 hval = lockownerid_hashval(sop->so_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 kref_get(&sop->so_ref);
2550 deny->ld_sop = sop;
2551 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07002552 } else {
2553 deny->ld_sop = NULL;
2554 deny->ld_clientid.cl_boot = 0;
2555 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 }
2557 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02002558 deny->ld_length = NFS4_MAX_UINT64;
2559 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 deny->ld_length = fl->fl_end - fl->fl_start + 1;
2561 deny->ld_type = NFS4_READ_LT;
2562 if (fl->fl_type != F_RDLCK)
2563 deny->ld_type = NFS4_WRITE_LT;
2564}
2565
2566static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567find_lockstateowner_str(struct inode *inode, clientid_t *clid,
2568 struct xdr_netobj *owner)
2569{
2570 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
2571 struct nfs4_stateowner *op;
2572
2573 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002574 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 return op;
2576 }
2577 return NULL;
2578}
2579
2580/*
2581 * Alloc a lock owner structure.
2582 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
2583 * occured.
2584 *
2585 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 */
2587
2588static struct nfs4_stateowner *
2589alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
2590 struct nfs4_stateowner *sop;
2591 struct nfs4_replay *rp;
2592 unsigned int idhashval;
2593
2594 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
2595 return NULL;
2596 idhashval = lockownerid_hashval(current_ownerid);
2597 INIT_LIST_HEAD(&sop->so_idhash);
2598 INIT_LIST_HEAD(&sop->so_strhash);
2599 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07002600 INIT_LIST_HEAD(&sop->so_stateids);
2601 INIT_LIST_HEAD(&sop->so_perstateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
2603 sop->so_time = 0;
2604 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
2605 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002606 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 sop->so_is_open_owner = 0;
2608 sop->so_id = current_ownerid++;
2609 sop->so_client = clp;
Neil Brownb59e3c02005-09-13 01:25:38 -07002610 /* It is the openowner seqid that will be incremented in encode in the
2611 * case of new lockowners; so increment the lock seqid manually: */
2612 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 sop->so_confirmed = 1;
2614 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08002615 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 rp->rp_buflen = 0;
2617 rp->rp_buf = rp->rp_ibuf;
2618 return sop;
2619}
2620
NeilBrownfd39ca92005-06-23 22:04:03 -07002621static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
2623{
2624 struct nfs4_stateid *stp;
2625 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2626
NeilBrown5ac049a2005-06-23 22:03:03 -07002627 stp = nfs4_alloc_stateid();
2628 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 goto out;
2630 INIT_LIST_HEAD(&stp->st_hash);
2631 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07002632 INIT_LIST_HEAD(&stp->st_perstateowner);
2633 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07002635 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07002636 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07002638 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 stp->st_file = fp;
2640 stp->st_stateid.si_boot = boot_time;
2641 stp->st_stateid.si_stateownerid = sop->so_id;
2642 stp->st_stateid.si_fileid = fp->fi_id;
2643 stp->st_stateid.si_generation = 0;
2644 stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
2645 stp->st_access_bmap = open_stp->st_access_bmap;
2646 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07002647 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649out:
2650 return stp;
2651}
2652
NeilBrownfd39ca92005-06-23 22:04:03 -07002653static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654check_lock_length(u64 offset, u64 length)
2655{
Benny Halevy87df4de2008-12-15 19:42:03 +02002656 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 LOFF_OVERFLOW(offset, length)));
2658}
2659
2660/*
2661 * LOCK operation
2662 */
Al Virob37ad282006-10-19 23:28:59 -07002663__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002664nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002665 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
NeilBrown3e9e3db2005-06-23 22:04:20 -07002667 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07002668 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 struct nfs4_stateid *lock_stp;
2670 struct file *filp;
2671 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05002672 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07002673 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 unsigned int strhashval;
Marc Eshel150b3932007-01-18 16:15:35 -05002675 unsigned int cmd;
Al Virob8dd7b92006-10-19 23:29:01 -07002676 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2679 (long long) lock->lk_offset,
2680 (long long) lock->lk_length);
2681
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 if (check_lock_length(lock->lk_offset, lock->lk_length))
2683 return nfserr_inval;
2684
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002685 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002686 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08002687 dprintk("NFSD: nfsd4_lock: permission denied!\n");
2688 return status;
2689 }
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 nfs4_lock_state();
2692
2693 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07002694 /*
2695 * Client indicates that this is a new lockowner.
2696 * Use open owner and open stateid to create lock owner and
2697 * lock stateid.
2698 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 struct nfs4_stateid *open_stp = NULL;
2700 struct nfs4_file *fp;
2701
2702 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002703 if (STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 /* validate and update open stateid and open seqid */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002707 status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 lock->lk_new_open_seqid,
2709 &lock->lk_new_open_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002710 OPEN_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002711 &lock->lk_replay_owner, &open_stp,
Neil Brownb59e3c02005-09-13 01:25:38 -07002712 lock);
NeilBrown37515172005-07-07 17:59:16 -07002713 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002715 open_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 /* create lockowner and lock stateid */
2717 fp = open_stp->st_file;
2718 strhashval = lock_ownerstr_hashval(fp->fi_inode,
2719 open_sop->so_client->cl_clientid.cl_id,
2720 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07002721 /* XXX: Do we need to check for duplicate stateowners on
2722 * the same file, or should they just be allowed (and
2723 * create new stateids)? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 status = nfserr_resource;
Neil Brownb59e3c02005-09-13 01:25:38 -07002725 lock_sop = alloc_init_lock_stateowner(strhashval,
2726 open_sop->so_client, open_stp, lock);
2727 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07002729 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08002730 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 } else {
2733 /* lock (lock owner + lock stateid) already exists */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002734 status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 lock->lk_old_lock_seqid,
2736 &lock->lk_old_lock_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002737 LOCK_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002738 &lock->lk_replay_owner, &lock_stp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 if (status)
2740 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002741 lock_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08002743 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 filp = lock_stp->st_vfs_file;
2745
NeilBrown0dd395d2005-07-07 17:59:15 -07002746 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002747 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07002748 goto out;
2749 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002750 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07002751 goto out;
2752
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 locks_init_lock(&file_lock);
2754 switch (lock->lk_type) {
2755 case NFS4_READ_LT:
2756 case NFS4_READW_LT:
2757 file_lock.fl_type = F_RDLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05002758 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 break;
2760 case NFS4_WRITE_LT:
2761 case NFS4_WRITEW_LT:
2762 file_lock.fl_type = F_WRLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05002763 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 break;
2765 default:
2766 status = nfserr_inval;
2767 goto out;
2768 }
Neil Brownb59e3c02005-09-13 01:25:38 -07002769 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 file_lock.fl_pid = current->tgid;
2771 file_lock.fl_file = filp;
2772 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002773 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02002776 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 nfs4_transform_lock_offset(&file_lock);
2778
2779 /*
2780 * Try to lock the file in the VFS.
2781 * Note: locks.c uses the BKL to protect the inode's lock list.
2782 */
2783
Marc Eshelfd85b812006-11-28 16:26:41 -05002784 err = vfs_lock_file(filp, cmd, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07002785 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 case 0: /* success! */
2787 update_stateid(&lock_stp->st_stateid);
2788 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
2789 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07002790 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002791 break;
2792 case (EAGAIN): /* conflock holds conflicting lock */
2793 status = nfserr_denied;
2794 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2795 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
2796 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 case (EDEADLK):
2798 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002799 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05002801 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002802 status = nfserr_resource;
2803 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08002806 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002807 release_lockowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08002808 if (lock->lk_replay_owner) {
2809 nfs4_get_stateowner(lock->lk_replay_owner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002810 cstate->replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07002811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 nfs4_unlock_state();
2813 return status;
2814}
2815
2816/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08002817 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
2818 * so we do a temporary open here just to get an open file to pass to
2819 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
2820 * inode operation.)
2821 */
2822static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
2823{
2824 struct file *file;
2825 int err;
2826
2827 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
2828 if (err)
2829 return err;
2830 err = vfs_test_lock(file, lock);
2831 nfsd_close(file);
2832 return err;
2833}
2834
2835/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 * LOCKT operation
2837 */
Al Virob37ad282006-10-19 23:28:59 -07002838__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002839nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2840 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
2842 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 struct file_lock file_lock;
Marc Eshelfd85b812006-11-28 16:26:41 -05002844 int error;
Al Virob37ad282006-10-19 23:28:59 -07002845 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002847 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 return nfserr_grace;
2849
2850 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
2851 return nfserr_inval;
2852
2853 lockt->lt_stateowner = NULL;
2854 nfs4_lock_state();
2855
2856 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002857 if (STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002860 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) {
Neil Brown849823c2005-09-13 01:25:36 -07002861 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (status == nfserr_symlink)
2863 status = nfserr_inval;
2864 goto out;
2865 }
2866
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002867 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 locks_init_lock(&file_lock);
2869 switch (lockt->lt_type) {
2870 case NFS4_READ_LT:
2871 case NFS4_READW_LT:
2872 file_lock.fl_type = F_RDLCK;
2873 break;
2874 case NFS4_WRITE_LT:
2875 case NFS4_WRITEW_LT:
2876 file_lock.fl_type = F_WRLCK;
2877 break;
2878 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002879 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 status = nfserr_inval;
2881 goto out;
2882 }
2883
2884 lockt->lt_stateowner = find_lockstateowner_str(inode,
2885 &lockt->lt_clientid, &lockt->lt_owner);
2886 if (lockt->lt_stateowner)
2887 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
2888 file_lock.fl_pid = current->tgid;
2889 file_lock.fl_flags = FL_POSIX;
2890
2891 file_lock.fl_start = lockt->lt_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02002892 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
2894 nfs4_transform_lock_offset(&file_lock);
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08002897 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05002898 if (error) {
2899 status = nfserrno(error);
2900 goto out;
2901 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002902 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002904 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 }
2906out:
2907 nfs4_unlock_state();
2908 return status;
2909}
2910
Al Virob37ad282006-10-19 23:28:59 -07002911__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002912nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002913 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
2915 struct nfs4_stateid *stp;
2916 struct file *filp = NULL;
2917 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07002918 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002919 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
2921 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2922 (long long) locku->lu_offset,
2923 (long long) locku->lu_length);
2924
2925 if (check_lock_length(locku->lu_offset, locku->lu_length))
2926 return nfserr_inval;
2927
2928 nfs4_lock_state();
2929
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002930 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 locku->lu_seqid,
2932 &locku->lu_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002933 LOCK_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 &locku->lu_stateowner, &stp, NULL)))
2935 goto out;
2936
2937 filp = stp->st_vfs_file;
2938 BUG_ON(!filp);
2939 locks_init_lock(&file_lock);
2940 file_lock.fl_type = F_UNLCK;
2941 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
2942 file_lock.fl_pid = current->tgid;
2943 file_lock.fl_file = filp;
2944 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002945 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 file_lock.fl_start = locku->lu_offset;
2947
Benny Halevy87df4de2008-12-15 19:42:03 +02002948 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 nfs4_transform_lock_offset(&file_lock);
2950
2951 /*
2952 * Try to unlock the file in the VFS.
2953 */
Marc Eshelfd85b812006-11-28 16:26:41 -05002954 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07002955 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05002956 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 goto out_nfserr;
2958 }
2959 /*
2960 * OK, unlock succeeded; the only thing left to do is update the stateid.
2961 */
2962 update_stateid(&stp->st_stateid);
2963 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
2964
2965out:
Neil Brownf2327d92005-09-13 01:25:37 -07002966 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 nfs4_get_stateowner(locku->lu_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002968 cstate->replay_owner = locku->lu_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 nfs4_unlock_state();
2971 return status;
2972
2973out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002974 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 goto out;
2976}
2977
2978/*
2979 * returns
2980 * 1: locks held by lockowner
2981 * 0: no locks held by lockowner
2982 */
2983static int
2984check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
2985{
2986 struct file_lock **flpp;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08002987 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 int status = 0;
2989
2990 lock_kernel();
2991 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08002992 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 status = 1;
2994 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08002995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 }
2997out:
2998 unlock_kernel();
2999 return status;
3000}
3001
Al Virob37ad282006-10-19 23:28:59 -07003002__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003003nfsd4_release_lockowner(struct svc_rqst *rqstp,
3004 struct nfsd4_compound_state *cstate,
3005 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006{
3007 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003008 struct nfs4_stateowner *sop;
3009 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003011 struct list_head matches;
3012 int i;
Al Virob37ad282006-10-19 23:28:59 -07003013 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
3015 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3016 clid->cl_boot, clid->cl_id);
3017
3018 /* XXX check for lease expiration */
3019
3020 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07003021 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
3024 nfs4_lock_state();
3025
NeilBrown3e9e3db2005-06-23 22:04:20 -07003026 status = nfserr_locks_held;
3027 /* XXX: we're doing a linear search through all the lockowners.
3028 * Yipes! For now we'll just hope clients aren't really using
3029 * release_lockowner much, but eventually we have to fix these
3030 * data structures. */
3031 INIT_LIST_HEAD(&matches);
3032 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3033 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003034 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07003035 continue;
3036 list_for_each_entry(stp, &sop->so_stateids,
3037 st_perstateowner) {
3038 if (check_for_locks(stp->st_vfs_file, sop))
3039 goto out;
3040 /* Note: so_perclient unused for lockowners,
3041 * so it's OK to fool with here. */
3042 list_add(&sop->so_perclient, &matches);
3043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07003045 }
3046 /* Clients probably won't expect us to return with some (but not all)
3047 * of the lockowner state released; so don't release any until all
3048 * have been checked. */
3049 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07003050 while (!list_empty(&matches)) {
3051 sop = list_entry(matches.next, struct nfs4_stateowner,
3052 so_perclient);
3053 /* unhash_stateowner deletes so_perclient only
3054 * for openowners. */
3055 list_del(&sop->so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003056 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 }
3058out:
3059 nfs4_unlock_state();
3060 return status;
3061}
3062
3063static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07003064alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
NeilBrowna55370a2005-06-23 22:03:52 -07003066 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
3068
NeilBrownc7b9a452005-06-23 22:04:30 -07003069int
3070nfs4_has_reclaimed_state(const char *name)
3071{
3072 unsigned int strhashval = clientstr_hashval(name);
3073 struct nfs4_client *clp;
3074
3075 clp = find_confirmed_client_by_str(name, strhashval);
3076 return clp ? 1 : 0;
3077}
3078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079/*
3080 * failure => all reset bets are off, nfserr_no_grace...
3081 */
NeilBrown190e4fb2005-06-23 22:04:25 -07003082int
3083nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
3085 unsigned int strhashval;
3086 struct nfs4_client_reclaim *crp = NULL;
3087
NeilBrowna55370a2005-06-23 22:03:52 -07003088 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
3089 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 if (!crp)
3091 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07003092 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 INIT_LIST_HEAD(&crp->cr_strhash);
3094 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07003095 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 reclaim_str_hashtbl_size++;
3097 return 1;
3098}
3099
3100static void
3101nfs4_release_reclaim(void)
3102{
3103 struct nfs4_client_reclaim *crp = NULL;
3104 int i;
3105
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3107 while (!list_empty(&reclaim_str_hashtbl[i])) {
3108 crp = list_entry(reclaim_str_hashtbl[i].next,
3109 struct nfs4_client_reclaim, cr_strhash);
3110 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 kfree(crp);
3112 reclaim_str_hashtbl_size--;
3113 }
3114 }
3115 BUG_ON(reclaim_str_hashtbl_size);
3116}
3117
3118/*
3119 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07003120static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121nfs4_find_reclaim_client(clientid_t *clid)
3122{
3123 unsigned int strhashval;
3124 struct nfs4_client *clp;
3125 struct nfs4_client_reclaim *crp = NULL;
3126
3127
3128 /* find clientid in conf_id_hashtbl */
3129 clp = find_confirmed_client(clid);
3130 if (clp == NULL)
3131 return NULL;
3132
NeilBrowna55370a2005-06-23 22:03:52 -07003133 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3134 clp->cl_name.len, clp->cl_name.data,
3135 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
3137 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07003138 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07003140 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 return crp;
3142 }
3143 }
3144 return NULL;
3145}
3146
3147/*
3148* Called from OPEN. Look for clientid in reclaim list.
3149*/
Al Virob37ad282006-10-19 23:28:59 -07003150__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151nfs4_check_open_reclaim(clientid_t *clid)
3152{
NeilBrowndfc83562005-06-23 22:03:16 -07003153 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154}
3155
NeilBrownac4d8ff22005-06-23 22:03:30 -07003156/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003158int
NeilBrownac4d8ff22005-06-23 22:03:30 -07003159nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003161 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003163 status = nfsd4_init_slabs();
3164 if (status)
3165 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3167 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
3168 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
3169 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
3170 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
3171 }
3172 for (i = 0; i < FILE_HASH_SIZE; i++) {
3173 INIT_LIST_HEAD(&file_hashtbl[i]);
3174 }
3175 for (i = 0; i < OWNER_HASH_SIZE; i++) {
3176 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
3177 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
3178 }
3179 for (i = 0; i < STATEID_HASH_SIZE; i++) {
3180 INIT_LIST_HEAD(&stateid_hashtbl[i]);
3181 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
3182 }
3183 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3184 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
3185 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
3186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 INIT_LIST_HEAD(&close_lru);
3189 INIT_LIST_HEAD(&client_lru);
3190 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07003191 for (i = 0; i < CLIENT_HASH_SIZE; i++)
3192 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
3193 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003194 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003195}
3196
NeilBrown190e4fb2005-06-23 22:04:25 -07003197static void
3198nfsd4_load_reboot_recovery_data(void)
3199{
3200 int status;
3201
NeilBrown0964a3d2005-06-23 22:04:32 -07003202 nfs4_lock_state();
3203 nfsd4_init_recdir(user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -07003204 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07003205 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07003206 if (status)
3207 printk("NFSD: Failure reading reboot recovery data\n");
3208}
3209
Marc Eshel9a8db972007-07-17 04:04:35 -07003210unsigned long
3211get_nfs4_grace_period(void)
3212{
3213 return max(user_lease_time, lease_time) * HZ;
3214}
3215
Meelap Shahc2f1a552007-07-17 04:04:39 -07003216/*
3217 * Since the lifetime of a delegation isn't limited to that of an open, a
3218 * client may quite reasonably hang on to a delegation as long as it has
3219 * the inode cached. This becomes an obvious problem the first time a
3220 * client's inode cache approaches the size of the server's total memory.
3221 *
3222 * For now we avoid this problem by imposing a hard limit on the number
3223 * of delegations, which varies according to the server's memory size.
3224 */
3225static void
3226set_max_delegations(void)
3227{
3228 /*
3229 * Allow at most 4 delegations per megabyte of RAM. Quick
3230 * estimates suggest that in the worst case (where every delegation
3231 * is for a different inode), a delegation could take about 1.5K,
3232 * giving a worst case usage of about 6% of memory.
3233 */
3234 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
3235}
3236
NeilBrownac4d8ff22005-06-23 22:03:30 -07003237/* initialization to perform when the nfsd service is started: */
3238
3239static void
3240__nfs4_state_start(void)
3241{
Marc Eshel9a8db972007-07-17 04:04:35 -07003242 unsigned long grace_time;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003245 grace_time = get_nfs4_grace_period();
NeilBrownd99a05a2005-06-23 22:03:21 -07003246 lease_time = user_lease_time;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003247 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07003248 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
3249 grace_time/HZ);
NeilBrown58da2822005-06-23 22:03:19 -07003250 laundry_wq = create_singlethread_workqueue("nfsd4");
Marc Eshel9a8db972007-07-17 04:04:35 -07003251 queue_delayed_work(laundry_wq, &laundromat_work, grace_time);
Meelap Shahc2f1a552007-07-17 04:04:39 -07003252 set_max_delegations();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253}
3254
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003255void
NeilBrown76a35502005-06-23 22:03:26 -07003256nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 if (nfs4_init)
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003259 return;
NeilBrown190e4fb2005-06-23 22:04:25 -07003260 nfsd4_load_reboot_recovery_data();
NeilBrown76a35502005-06-23 22:03:26 -07003261 __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 nfs4_init = 1;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003263 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264}
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266time_t
3267nfs4_lease_time(void)
3268{
3269 return lease_time;
3270}
3271
3272static void
3273__nfs4_state_shutdown(void)
3274{
3275 int i;
3276 struct nfs4_client *clp = NULL;
3277 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 struct list_head *pos, *next, reaplist;
3279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3281 while (!list_empty(&conf_id_hashtbl[i])) {
3282 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
3283 expire_client(clp);
3284 }
3285 while (!list_empty(&unconf_str_hashtbl[i])) {
3286 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
3287 expire_client(clp);
3288 }
3289 }
3290 INIT_LIST_HEAD(&reaplist);
3291 spin_lock(&recall_lock);
3292 list_for_each_safe(pos, next, &del_recall_lru) {
3293 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3294 list_move(&dp->dl_recall_lru, &reaplist);
3295 }
3296 spin_unlock(&recall_lock);
3297 list_for_each_safe(pos, next, &reaplist) {
3298 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3299 list_del_init(&dp->dl_recall_lru);
3300 unhash_delegation(dp);
3301 }
3302
NeilBrown190e4fb2005-06-23 22:04:25 -07003303 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 nfs4_init = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
3307void
3308nfs4_state_shutdown(void)
3309{
NeilBrown5e8d5c22006-04-10 22:55:37 -07003310 cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work);
3311 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06003312 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 nfs4_lock_state();
3314 nfs4_release_reclaim();
3315 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 nfs4_unlock_state();
3317}
3318
Jeff Layton3dd98a32008-06-10 08:40:36 -04003319/*
3320 * user_recovery_dirname is protected by the nfsd_mutex since it's only
3321 * accessed when nfsd is starting.
3322 */
NeilBrown0964a3d2005-06-23 22:04:32 -07003323static void
3324nfs4_set_recdir(char *recdir)
3325{
NeilBrown0964a3d2005-06-23 22:04:32 -07003326 strcpy(user_recovery_dirname, recdir);
NeilBrown0964a3d2005-06-23 22:04:32 -07003327}
3328
3329/*
3330 * Change the NFSv4 recovery directory to recdir.
3331 */
3332int
3333nfs4_reset_recoverydir(char *recdir)
3334{
3335 int status;
Al Viroa63bb992008-08-02 01:03:36 -04003336 struct path path;
NeilBrown0964a3d2005-06-23 22:04:32 -07003337
Al Viroa63bb992008-08-02 01:03:36 -04003338 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
NeilBrown0964a3d2005-06-23 22:04:32 -07003339 if (status)
3340 return status;
3341 status = -ENOTDIR;
Al Viroa63bb992008-08-02 01:03:36 -04003342 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
NeilBrown0964a3d2005-06-23 22:04:32 -07003343 nfs4_set_recdir(recdir);
3344 status = 0;
3345 }
Al Viroa63bb992008-08-02 01:03:36 -04003346 path_put(&path);
NeilBrown0964a3d2005-06-23 22:04:32 -07003347 return status;
3348}
3349
Jeff Layton3dd98a32008-06-10 08:40:36 -04003350char *
3351nfs4_recoverydir(void)
3352{
3353 return user_recovery_dirname;
3354}
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356/*
3357 * Called when leasetime is changed.
3358 *
NeilBrownd99a05a2005-06-23 22:03:21 -07003359 * The only way the protocol gives us to handle on-the-fly lease changes is to
3360 * simulate a reboot. Instead of doing that, we just wait till the next time
3361 * we start to register any changes in lease time. If the administrator
3362 * really wants to change the lease time *now*, they can go ahead and bring
3363 * nfsd down and then back up again after changing the lease time.
Jeff Layton3dd98a32008-06-10 08:40:36 -04003364 *
3365 * user_lease_time is protected by nfsd_mutex since it's only really accessed
3366 * when nfsd is starting
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 */
3368void
3369nfs4_reset_lease(time_t leasetime)
3370{
NeilBrownd99a05a2005-06-23 22:03:21 -07003371 user_lease_time = leasetime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372}