blob: 8c70f12159b6a39e81519c9e7e6a12725e4e46d2 [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
J. Bruce Fields8b671b82009-02-22 14:51:34 -080081/* Locking: */
82
83/* Currently used for almost all code touching nfsv4 state: */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080084static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
J. Bruce Fields8b671b82009-02-22 14:51:34 -080086/*
87 * Currently used for the del_recall_lru and file hash table. In an
88 * effort to decrease the scope of the client_mutex, this spinlock may
89 * eventually cover more:
90 */
91static DEFINE_SPINLOCK(recall_lock);
92
Christoph Lametere18b8902006-12-06 20:33:20 -080093static struct kmem_cache *stateowner_slab = NULL;
94static struct kmem_cache *file_slab = NULL;
95static struct kmem_cache *stateid_slab = NULL;
96static struct kmem_cache *deleg_slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098void
99nfs4_lock_state(void)
100{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800101 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104void
105nfs4_unlock_state(void)
106{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800107 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
110static inline u32
111opaque_hashval(const void *ptr, int nbytes)
112{
113 unsigned char *cptr = (unsigned char *) ptr;
114
115 u32 x = 0;
116 while (nbytes--) {
117 x *= 37;
118 x += *cptr++;
119 }
120 return x;
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static struct list_head del_recall_lru;
124
NeilBrown13cd2182005-06-23 22:03:10 -0700125static inline void
126put_nfs4_file(struct nfs4_file *fi)
127{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800128 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
129 list_del(&fi->fi_hash);
130 spin_unlock(&recall_lock);
131 iput(fi->fi_inode);
132 kmem_cache_free(file_slab, fi);
133 }
NeilBrown13cd2182005-06-23 22:03:10 -0700134}
135
136static inline void
137get_nfs4_file(struct nfs4_file *fi)
138{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800139 atomic_inc(&fi->fi_ref);
NeilBrown13cd2182005-06-23 22:03:10 -0700140}
141
NeilBrownef0f3392006-04-10 22:55:41 -0700142static int num_delegations;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700143unsigned int max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700144
145/*
146 * Open owner state (share locks)
147 */
148
149/* hash tables for nfs4_stateowner */
150#define OWNER_HASH_BITS 8
151#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
152#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
153
154#define ownerid_hashval(id) \
155 ((id) & OWNER_HASH_MASK)
156#define ownerstr_hashval(clientid, ownername) \
157 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
158
159static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE];
160static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
161
162/* hash table for nfs4_file */
163#define FILE_HASH_BITS 8
164#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
165#define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
166/* hash table for (open)nfs4_stateid */
167#define STATEID_HASH_BITS 10
168#define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
169#define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
170
171#define file_hashval(x) \
172 hash_ptr(x, FILE_HASH_BITS)
173#define stateid_hashval(owner_id, file_id) \
174 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
175
176static struct list_head file_hashtbl[FILE_HASH_SIZE];
177static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static struct nfs4_delegation *
180alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
181{
182 struct nfs4_delegation *dp;
183 struct nfs4_file *fp = stp->st_file;
184 struct nfs4_callback *cb = &stp->st_stateowner->so_client->cl_callback;
185
186 dprintk("NFSD alloc_init_deleg\n");
Meelap Shah47f99402007-07-17 04:04:40 -0700187 if (fp->fi_had_conflict)
188 return NULL;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700189 if (num_delegations > max_delegations)
NeilBrownef0f3392006-04-10 22:55:41 -0700190 return NULL;
NeilBrown5b2d21c2005-06-23 22:03:04 -0700191 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
192 if (dp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return dp;
NeilBrownef0f3392006-04-10 22:55:41 -0700194 num_delegations++;
NeilBrownea1da632005-06-23 22:04:17 -0700195 INIT_LIST_HEAD(&dp->dl_perfile);
196 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 INIT_LIST_HEAD(&dp->dl_recall_lru);
198 dp->dl_client = clp;
NeilBrown13cd2182005-06-23 22:03:10 -0700199 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 dp->dl_file = fp;
201 dp->dl_flock = NULL;
202 get_file(stp->st_vfs_file);
203 dp->dl_vfs_file = stp->st_vfs_file;
204 dp->dl_type = type;
205 dp->dl_recall.cbr_dp = NULL;
206 dp->dl_recall.cbr_ident = cb->cb_ident;
207 dp->dl_recall.cbr_trunc = 0;
208 dp->dl_stateid.si_boot = boot_time;
209 dp->dl_stateid.si_stateownerid = current_delegid++;
210 dp->dl_stateid.si_fileid = 0;
211 dp->dl_stateid.si_generation = 0;
J. Bruce Fields6c02eaa2009-02-02 17:30:51 -0500212 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 dp->dl_time = 0;
214 atomic_set(&dp->dl_count, 1);
NeilBrownea1da632005-06-23 22:04:17 -0700215 list_add(&dp->dl_perfile, &fp->fi_delegations);
216 list_add(&dp->dl_perclnt, &clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return dp;
218}
219
220void
221nfs4_put_delegation(struct nfs4_delegation *dp)
222{
223 if (atomic_dec_and_test(&dp->dl_count)) {
224 dprintk("NFSD: freeing dp %p\n",dp);
NeilBrown13cd2182005-06-23 22:03:10 -0700225 put_nfs4_file(dp->dl_file);
NeilBrown5b2d21c2005-06-23 22:03:04 -0700226 kmem_cache_free(deleg_slab, dp);
NeilBrownef0f3392006-04-10 22:55:41 -0700227 num_delegations--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229}
230
231/* Remove the associated file_lock first, then remove the delegation.
232 * lease_modify() is called to remove the FS_LEASE file_lock from
233 * the i_flock list, eventually calling nfsd's lock_manager
234 * fl_release_callback.
235 */
236static void
237nfs4_close_delegation(struct nfs4_delegation *dp)
238{
239 struct file *filp = dp->dl_vfs_file;
240
241 dprintk("NFSD: close_delegation dp %p\n",dp);
242 dp->dl_vfs_file = NULL;
243 /* The following nfsd_close may not actually close the file,
244 * but we want to remove the lease in any case. */
NeilBrownc9071322005-04-16 15:26:38 -0700245 if (dp->dl_flock)
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -0400246 vfs_setlease(filp, F_UNLCK, &dp->dl_flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 nfsd_close(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250/* Called under the state lock. */
251static void
252unhash_delegation(struct nfs4_delegation *dp)
253{
NeilBrownea1da632005-06-23 22:04:17 -0700254 list_del_init(&dp->dl_perfile);
255 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 spin_lock(&recall_lock);
257 list_del_init(&dp->dl_recall_lru);
258 spin_unlock(&recall_lock);
259 nfs4_close_delegation(dp);
260 nfs4_put_delegation(dp);
261}
262
263/*
264 * SETCLIENTID state
265 */
266
267/* Hash tables for nfs4_clientid state */
268#define CLIENT_HASH_BITS 4
269#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
270#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
271
272#define clientid_hashval(id) \
273 ((id) & CLIENT_HASH_MASK)
NeilBrowna55370a2005-06-23 22:03:52 -0700274#define clientstr_hashval(name) \
275 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/*
277 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
278 * used in reboot/reset lease grace period processing
279 *
280 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
281 * setclientid_confirmed info.
282 *
283 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
284 * setclientid info.
285 *
286 * client_lru holds client queue ordered by nfs4_client.cl_time
287 * for lease renewal.
288 *
289 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
290 * for last close replay.
291 */
292static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
293static int reclaim_str_hashtbl_size = 0;
294static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
295static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
296static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
297static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
298static struct list_head client_lru;
299static struct list_head close_lru;
300
J. Bruce Fields22839632009-01-11 14:27:17 -0500301static void unhash_generic_stateid(struct nfs4_stateid *stp)
302{
303 list_del(&stp->st_hash);
304 list_del(&stp->st_perfile);
305 list_del(&stp->st_perstateowner);
306}
307
308static void free_generic_stateid(struct nfs4_stateid *stp)
309{
310 put_nfs4_file(stp->st_file);
311 kmem_cache_free(stateid_slab, stp);
312}
313
314static void release_lock_stateid(struct nfs4_stateid *stp)
315{
316 unhash_generic_stateid(stp);
317 locks_remove_posix(stp->st_vfs_file, (fl_owner_t)stp->st_stateowner);
318 free_generic_stateid(stp);
319}
320
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500321static void unhash_lockowner(struct nfs4_stateowner *sop)
322{
323 struct nfs4_stateid *stp;
324
325 list_del(&sop->so_idhash);
326 list_del(&sop->so_strhash);
327 list_del(&sop->so_perstateid);
328 while (!list_empty(&sop->so_stateids)) {
329 stp = list_first_entry(&sop->so_stateids,
330 struct nfs4_stateid, st_perstateowner);
331 release_lock_stateid(stp);
332 }
333}
334
335static void release_lockowner(struct nfs4_stateowner *sop)
336{
337 unhash_lockowner(sop);
338 nfs4_put_stateowner(sop);
339}
340
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500341static void
342release_stateid_lockowners(struct nfs4_stateid *open_stp)
343{
344 struct nfs4_stateowner *lock_sop;
345
346 while (!list_empty(&open_stp->st_lockowners)) {
347 lock_sop = list_entry(open_stp->st_lockowners.next,
348 struct nfs4_stateowner, so_perstateid);
349 /* list_del(&open_stp->st_lockowners); */
350 BUG_ON(lock_sop->so_is_open_owner);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500351 release_lockowner(lock_sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500352 }
353}
354
J. Bruce Fields22839632009-01-11 14:27:17 -0500355static void release_open_stateid(struct nfs4_stateid *stp)
356{
357 unhash_generic_stateid(stp);
358 release_stateid_lockowners(stp);
359 nfsd_close(stp->st_vfs_file);
360 free_generic_stateid(stp);
361}
362
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500363static void unhash_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500364{
365 struct nfs4_stateid *stp;
366
367 list_del(&sop->so_idhash);
368 list_del(&sop->so_strhash);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500369 list_del(&sop->so_perclient);
370 list_del(&sop->so_perstateid); /* XXX: necessary? */
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500371 while (!list_empty(&sop->so_stateids)) {
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500372 stp = list_first_entry(&sop->so_stateids,
373 struct nfs4_stateid, st_perstateowner);
374 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500375 }
376}
377
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500378static void release_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500379{
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500380 unhash_openowner(sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500381 list_del(&sop->so_close_lru);
382 nfs4_put_stateowner(sop);
383}
384
Andy Adamson7116ed62009-04-03 08:27:43 +0300385static void
386release_session(struct nfsd4_session *ses)
387{
388 list_del(&ses->se_hash);
389 list_del(&ses->se_perclnt);
390 nfsd4_put_session(ses);
391}
392
393void
394free_session(struct kref *kref)
395{
396 struct nfsd4_session *ses;
397
398 ses = container_of(kref, struct nfsd4_session, se_ref);
399 kfree(ses->se_slots);
400 kfree(ses);
401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403static inline void
404renew_client(struct nfs4_client *clp)
405{
406 /*
407 * Move client to the end to the LRU list.
408 */
409 dprintk("renewing client (clientid %08x/%08x)\n",
410 clp->cl_clientid.cl_boot,
411 clp->cl_clientid.cl_id);
412 list_move_tail(&clp->cl_lru, &client_lru);
413 clp->cl_time = get_seconds();
414}
415
416/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
417static int
418STALE_CLIENTID(clientid_t *clid)
419{
420 if (clid->cl_boot == boot_time)
421 return 0;
422 dprintk("NFSD stale clientid (%08x/%08x)\n",
423 clid->cl_boot, clid->cl_id);
424 return 1;
425}
426
427/*
428 * XXX Should we use a slab cache ?
429 * This type of memory management is somewhat inefficient, but we use it
430 * anyway since SETCLIENTID is not a common operation.
431 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500432static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 struct nfs4_client *clp;
435
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500436 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
437 if (clp == NULL)
438 return NULL;
439 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
440 if (clp->cl_name.data == NULL) {
441 kfree(clp);
442 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500444 memcpy(clp->cl_name.data, name.data, name.len);
445 clp->cl_name.len = name.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return clp;
447}
448
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400449static void
450shutdown_callback_client(struct nfs4_client *clp)
451{
452 struct rpc_clnt *clnt = clp->cl_callback.cb_client;
453
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400454 if (clnt) {
J. Bruce Fields404ec112007-11-23 22:26:18 -0500455 /*
456 * Callback threads take a reference on the client, so there
457 * should be no outstanding callbacks at this point.
458 */
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400459 clp->cl_callback.cb_client = NULL;
460 rpc_shutdown_client(clnt);
461 }
462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464static inline void
465free_client(struct nfs4_client *clp)
466{
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400467 shutdown_callback_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (clp->cl_cred.cr_group_info)
469 put_group_info(clp->cl_cred.cr_group_info);
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500470 kfree(clp->cl_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 kfree(clp->cl_name.data);
472 kfree(clp);
473}
474
475void
476put_nfs4_client(struct nfs4_client *clp)
477{
478 if (atomic_dec_and_test(&clp->cl_count))
479 free_client(clp);
480}
481
482static void
483expire_client(struct nfs4_client *clp)
484{
485 struct nfs4_stateowner *sop;
486 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 struct list_head reaplist;
488
489 dprintk("NFSD: expire_client cl_count %d\n",
490 atomic_read(&clp->cl_count));
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 INIT_LIST_HEAD(&reaplist);
493 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700494 while (!list_empty(&clp->cl_delegations)) {
495 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
497 dp->dl_flock);
NeilBrownea1da632005-06-23 22:04:17 -0700498 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 list_move(&dp->dl_recall_lru, &reaplist);
500 }
501 spin_unlock(&recall_lock);
502 while (!list_empty(&reaplist)) {
503 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
504 list_del_init(&dp->dl_recall_lru);
505 unhash_delegation(dp);
506 }
507 list_del(&clp->cl_idhash);
508 list_del(&clp->cl_strhash);
509 list_del(&clp->cl_lru);
NeilBrownea1da632005-06-23 22:04:17 -0700510 while (!list_empty(&clp->cl_openowners)) {
511 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500512 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 put_nfs4_client(clp);
515}
516
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500517static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir)
518{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct nfs4_client *clp;
520
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500521 clp = alloc_client(name);
522 if (clp == NULL)
523 return NULL;
NeilBrowna55370a2005-06-23 22:03:52 -0700524 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 atomic_set(&clp->cl_count, 1);
526 atomic_set(&clp->cl_callback.cb_set, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 INIT_LIST_HEAD(&clp->cl_idhash);
528 INIT_LIST_HEAD(&clp->cl_strhash);
NeilBrownea1da632005-06-23 22:04:17 -0700529 INIT_LIST_HEAD(&clp->cl_openowners);
530 INIT_LIST_HEAD(&clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 INIT_LIST_HEAD(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return clp;
533}
534
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500535static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
536{
537 memcpy(target->cl_verifier.data, source->data,
538 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500541static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
542{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
544 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
545}
546
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500547static void copy_cred(struct svc_cred *target, struct svc_cred *source)
548{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 target->cr_uid = source->cr_uid;
550 target->cr_gid = source->cr_gid;
551 target->cr_group_info = source->cr_group_info;
552 get_group_info(target->cr_group_info);
553}
554
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500555static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400556{
NeilBrowna55370a2005-06-23 22:03:52 -0700557 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400561same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
562{
563 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400567same_clid(clientid_t *cl1, clientid_t *cl2)
568{
569 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
572/* XXX what about NGROUP */
573static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400574same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
575{
576 return cr1->cr_uid == cr2->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
J. Bruce Fields5ec7b462007-11-21 21:58:56 -0500579static void gen_clid(struct nfs4_client *clp)
580{
581 static u32 current_clientid = 1;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 clp->cl_clientid.cl_boot = boot_time;
584 clp->cl_clientid.cl_id = current_clientid++;
585}
586
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500587static void gen_confirm(struct nfs4_client *clp)
588{
589 static u32 i;
590 u32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 p = (u32 *)clp->cl_confirm.data;
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500593 *p++ = get_seconds();
594 *p++ = i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500597static int check_name(struct xdr_netobj name)
598{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (name.len == 0)
600 return 0;
601 if (name.len > NFS4_OPAQUE_LIMIT) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400602 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return 0;
604 }
605 return 1;
606}
607
NeilBrownfd39ca92005-06-23 22:04:03 -0700608static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
610{
611 unsigned int idhashval;
612
613 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
614 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
615 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
616 list_add_tail(&clp->cl_lru, &client_lru);
617 clp->cl_time = get_seconds();
618}
619
NeilBrownfd39ca92005-06-23 22:04:03 -0700620static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621move_to_confirmed(struct nfs4_client *clp)
622{
623 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
624 unsigned int strhashval;
625
626 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
627 list_del_init(&clp->cl_strhash);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700628 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -0700629 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
631 renew_client(clp);
632}
633
634static struct nfs4_client *
635find_confirmed_client(clientid_t *clid)
636{
637 struct nfs4_client *clp;
638 unsigned int idhashval = clientid_hashval(clid->cl_id);
639
640 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400641 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return clp;
643 }
644 return NULL;
645}
646
647static struct nfs4_client *
648find_unconfirmed_client(clientid_t *clid)
649{
650 struct nfs4_client *clp;
651 unsigned int idhashval = clientid_hashval(clid->cl_id);
652
653 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400654 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return clp;
656 }
657 return NULL;
658}
659
NeilBrown28ce6052005-06-23 22:03:56 -0700660static struct nfs4_client *
661find_confirmed_client_by_str(const char *dname, unsigned int hashval)
662{
663 struct nfs4_client *clp;
664
665 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
666 if (same_name(clp->cl_recdir, dname))
667 return clp;
668 }
669 return NULL;
670}
671
672static struct nfs4_client *
673find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
674{
675 struct nfs4_client *clp;
676
677 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
678 if (same_name(clp->cl_recdir, dname))
679 return clp;
680 }
681 return NULL;
682}
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684/* a helper function for parse_callback */
685static int
686parse_octet(unsigned int *lenp, char **addrp)
687{
688 unsigned int len = *lenp;
689 char *p = *addrp;
690 int n = -1;
691 char c;
692
693 for (;;) {
694 if (!len)
695 break;
696 len--;
697 c = *p++;
698 if (c == '.')
699 break;
700 if ((c < '0') || (c > '9')) {
701 n = -1;
702 break;
703 }
704 if (n < 0)
705 n = 0;
706 n = (n * 10) + (c - '0');
707 if (n > 255) {
708 n = -1;
709 break;
710 }
711 }
712 *lenp = len;
713 *addrp = p;
714 return n;
715}
716
717/* parse and set the setclientid ipv4 callback address */
NeilBrownfd39ca92005-06-23 22:04:03 -0700718static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp)
720{
721 int temp = 0;
722 u32 cbaddr = 0;
723 u16 cbport = 0;
724 u32 addrlen = addr_len;
725 char *addr = addr_val;
726 int i, shift;
727
728 /* ipaddress */
729 shift = 24;
730 for(i = 4; i > 0 ; i--) {
731 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
732 return 0;
733 }
734 cbaddr |= (temp << shift);
735 if (shift > 0)
736 shift -= 8;
737 }
738 *cbaddrp = cbaddr;
739
740 /* port */
741 shift = 8;
742 for(i = 2; i > 0 ; i--) {
743 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
744 return 0;
745 }
746 cbport |= (temp << shift);
747 if (shift > 0)
748 shift -= 8;
749 }
750 *cbportp = cbport;
751 return 1;
752}
753
NeilBrownfd39ca92005-06-23 22:04:03 -0700754static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se)
756{
757 struct nfs4_callback *cb = &clp->cl_callback;
758
759 /* Currently, we only support tcp for the callback channel */
760 if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3))
761 goto out_err;
762
763 if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val,
764 &cb->cb_addr, &cb->cb_port)))
765 goto out_err;
766 cb->cb_prog = se->se_callback_prog;
767 cb->cb_ident = se->se_callback_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return;
769out_err:
Neil Brown849823c2005-09-13 01:25:36 -0700770 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 "will not receive delegations\n",
772 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return;
775}
776
Al Virob37ad282006-10-19 23:28:59 -0700777__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800778nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
779 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Chuck Lever27459f02007-02-12 00:53:34 -0800781 struct sockaddr_in *sin = svc_addr_in(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct xdr_netobj clname = {
783 .len = setclid->se_namelen,
784 .data = setclid->se_name,
785 };
786 nfs4_verifier clverifier = setclid->se_verf;
787 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -0700788 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -0700789 __be32 status;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500790 char *princ;
NeilBrowna55370a2005-06-23 22:03:52 -0700791 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -0700794 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
NeilBrowna55370a2005-06-23 22:03:52 -0700796 status = nfs4_make_rec_clidname(dname, &clname);
797 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -0700798 return status;
NeilBrowna55370a2005-06-23 22:03:52 -0700799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /*
801 * XXX The Duplicate Request Cache (DRC) has been checked (??)
802 * We get here on a DRC miss.
803 */
804
NeilBrowna55370a2005-06-23 22:03:52 -0700805 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 nfs4_lock_state();
NeilBrown28ce6052005-06-23 22:03:56 -0700808 conf = find_confirmed_client_by_str(dname, strhashval);
809 if (conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500810 /* RFC 3530 14.2.33 CASE 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 status = nfserr_clid_inuse;
J. Bruce Fields026722c2009-03-18 15:06:26 -0400812 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
813 dprintk("NFSD: setclientid: string in use by client"
814 " at %pI4\n", &conf->cl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 goto out;
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500818 /*
819 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
820 * has a description of SETCLIENTID request processing consisting
821 * of 5 bullet points, labeled as CASE0 - CASE4 below.
822 */
NeilBrown28ce6052005-06-23 22:03:56 -0700823 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 status = nfserr_resource;
825 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500826 /*
827 * RFC 3530 14.2.33 CASE 4:
828 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
830 if (unconf)
831 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700832 new = create_client(clname, dname);
833 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400836 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500838 * RFC 3530 14.2.33 CASE 1:
839 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 */
NeilBrown31f4a6c2005-06-23 22:04:06 -0700841 if (unconf) {
842 /* Note this is removing unconfirmed {*x***},
843 * which is stronger than RFC recommended {vxc**}.
844 * This has the advantage that there is at most
845 * one {*x***} in either list at any time.
846 */
847 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
NeilBrowna55370a2005-06-23 22:03:52 -0700849 new = create_client(clname, dname);
850 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 } else if (!unconf) {
854 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500855 * RFC 3530 14.2.33 CASE 2:
856 * probable client reboot; state will be removed if
857 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 */
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);
J. Bruce Fields49ba8782007-11-19 19:09:50 -0500863 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500864 /*
865 * RFC 3530 14.2.33 CASE 3:
866 * probable client reboot; state will be removed if
867 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 */
869 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700870 new = create_client(clname, dname);
871 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -0400875 copy_verf(new, &clverifier);
876 new->cl_addr = sin->sin_addr.s_addr;
Olga Kornievskaia61054b12008-12-23 16:19:00 -0500877 new->cl_flavor = rqstp->rq_flavor;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500878 princ = svc_gss_principal(rqstp);
879 if (princ) {
880 new->cl_principal = kstrdup(princ, GFP_KERNEL);
881 if (new->cl_principal == NULL) {
882 free_client(new);
883 goto out;
884 }
885 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -0400886 copy_cred(&new->cl_cred, &rqstp->rq_cred);
887 gen_confirm(new);
888 gen_callback(new, setclid);
889 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
891 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
892 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
893 status = nfs_ok;
894out:
895 nfs4_unlock_state();
896 return status;
897}
898
899
900/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500901 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
902 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
903 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 */
Al Virob37ad282006-10-19 23:28:59 -0700905__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800906nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
907 struct nfsd4_compound_state *cstate,
908 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Chuck Lever27459f02007-02-12 00:53:34 -0800910 struct sockaddr_in *sin = svc_addr_in(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -0700911 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
913 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -0700914 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 if (STALE_CLIENTID(clid))
917 return nfserr_stale_clientid;
918 /*
919 * XXX The Duplicate Request Cache (DRC) has been checked (??)
920 * We get here on a DRC miss.
921 */
922
923 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -0700924
925 conf = find_confirmed_client(clid);
926 unconf = find_unconfirmed_client(clid);
927
928 status = nfserr_clid_inuse;
Chuck Lever27459f02007-02-12 00:53:34 -0800929 if (conf && conf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -0700930 goto out;
Chuck Lever27459f02007-02-12 00:53:34 -0800931 if (unconf && unconf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -0700932 goto out;
933
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500934 /*
935 * section 14.2.34 of RFC 3530 has a description of
936 * SETCLIENTID_CONFIRM request processing consisting
937 * of 4 bullet points, labeled as CASE1 - CASE4 below.
938 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -0500939 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500940 /*
941 * RFC 3530 14.2.34 CASE 1:
942 * callback update
943 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400944 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 status = nfserr_clid_inuse;
946 else {
NeilBrown1a69c172005-06-23 22:04:08 -0700947 /* XXX: We just turn off callbacks until we can handle
948 * change request correctly. */
NeilBrowncb36d632005-06-23 22:04:23 -0700949 atomic_set(&conf->cl_callback.cb_set, 0);
NeilBrown21ab45a2005-06-23 22:04:14 -0700950 gen_confirm(conf);
NeilBrown46309022005-07-07 17:59:10 -0700951 nfsd4_remove_clid_dir(unconf);
NeilBrown1a69c172005-06-23 22:04:08 -0700952 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -0500956 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500957 /*
958 * RFC 3530 14.2.34 CASE 2:
959 * probable retransmitted request; play it safe and
960 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -0700961 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400962 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -0700964 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -0700966 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400967 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500968 /*
969 * RFC 3530 14.2.34 CASE 3:
970 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -0700971 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400972 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 status = nfserr_clid_inuse;
974 } else {
NeilBrown1a69c172005-06-23 22:04:08 -0700975 unsigned int hash =
976 clientstr_hashval(unconf->cl_recdir);
977 conf = find_confirmed_client_by_str(unconf->cl_recdir,
978 hash);
979 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -0700980 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700981 expire_client(conf);
982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -0700984 conf = unconf;
J. Bruce Fields46f8a642007-11-22 13:54:18 -0500985 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700986 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400988 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
989 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -0700990 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500991 /*
992 * RFC 3530 14.2.34 CASE 4:
993 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -0700994 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -0700996 } else {
NeilBrown08e89872005-06-23 22:04:11 -0700997 /* check that we have hit one of the cases...*/
998 status = nfserr_clid_inuse;
999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 nfs4_unlock_state();
1002 return status;
1003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005/* OPEN Share state helper functions */
1006static inline struct nfs4_file *
1007alloc_init_file(struct inode *ino)
1008{
1009 struct nfs4_file *fp;
1010 unsigned int hashval = file_hashval(ino);
1011
NeilBrowne60d4392005-06-23 22:03:01 -07001012 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
1013 if (fp) {
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001014 atomic_set(&fp->fi_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -07001016 INIT_LIST_HEAD(&fp->fi_stateids);
1017 INIT_LIST_HEAD(&fp->fi_delegations);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001018 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001020 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 fp->fi_inode = igrab(ino);
1022 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07001023 fp->fi_had_conflict = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return fp;
1025 }
1026 return NULL;
1027}
1028
1029static void
Christoph Lametere18b8902006-12-06 20:33:20 -08001030nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07001031{
NeilBrowne60d4392005-06-23 22:03:01 -07001032 if (*slab == NULL)
1033 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001034 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001035 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07001036}
1037
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001038void
NeilBrowne60d4392005-06-23 22:03:01 -07001039nfsd4_free_slabs(void)
1040{
1041 nfsd4_free_slab(&stateowner_slab);
1042 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07001043 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001044 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001045}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047static int
1048nfsd4_init_slabs(void)
1049{
1050 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09001051 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001052 if (stateowner_slab == NULL)
1053 goto out_nomem;
1054 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09001055 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001056 if (file_slab == NULL)
1057 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07001058 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09001059 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07001060 if (stateid_slab == NULL)
1061 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07001062 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09001063 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001064 if (deleg_slab == NULL)
1065 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07001067out_nomem:
1068 nfsd4_free_slabs();
1069 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1070 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
1073void
1074nfs4_free_stateowner(struct kref *kref)
1075{
1076 struct nfs4_stateowner *sop =
1077 container_of(kref, struct nfs4_stateowner, so_ref);
1078 kfree(sop->so_owner.data);
1079 kmem_cache_free(stateowner_slab, sop);
1080}
1081
1082static inline struct nfs4_stateowner *
1083alloc_stateowner(struct xdr_netobj *owner)
1084{
1085 struct nfs4_stateowner *sop;
1086
1087 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1088 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1089 memcpy(sop->so_owner.data, owner->data, owner->len);
1090 sop->so_owner.len = owner->len;
1091 kref_init(&sop->so_ref);
1092 return sop;
1093 }
1094 kmem_cache_free(stateowner_slab, sop);
1095 }
1096 return NULL;
1097}
1098
1099static struct nfs4_stateowner *
1100alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1101 struct nfs4_stateowner *sop;
1102 struct nfs4_replay *rp;
1103 unsigned int idhashval;
1104
1105 if (!(sop = alloc_stateowner(&open->op_owner)))
1106 return NULL;
1107 idhashval = ownerid_hashval(current_ownerid);
1108 INIT_LIST_HEAD(&sop->so_idhash);
1109 INIT_LIST_HEAD(&sop->so_strhash);
1110 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07001111 INIT_LIST_HEAD(&sop->so_stateids);
1112 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 INIT_LIST_HEAD(&sop->so_close_lru);
1114 sop->so_time = 0;
1115 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1116 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001117 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 sop->so_is_open_owner = 1;
1119 sop->so_id = current_ownerid++;
1120 sop->so_client = clp;
1121 sop->so_seqid = open->op_seqid;
1122 sop->so_confirmed = 0;
1123 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08001124 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 rp->rp_buflen = 0;
1126 rp->rp_buf = rp->rp_ibuf;
1127 return sop;
1128}
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130static inline void
1131init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1132 struct nfs4_stateowner *sop = open->op_stateowner;
1133 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1134
1135 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07001136 INIT_LIST_HEAD(&stp->st_perstateowner);
1137 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 INIT_LIST_HEAD(&stp->st_perfile);
1139 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001140 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07001141 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07001143 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 stp->st_file = fp;
1145 stp->st_stateid.si_boot = boot_time;
1146 stp->st_stateid.si_stateownerid = sop->so_id;
1147 stp->st_stateid.si_fileid = fp->fi_id;
1148 stp->st_stateid.si_generation = 0;
1149 stp->st_access_bmap = 0;
1150 stp->st_deny_bmap = 0;
1151 __set_bit(open->op_share_access, &stp->st_access_bmap);
1152 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07001153 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
1156static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157move_to_close_lru(struct nfs4_stateowner *sop)
1158{
1159 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1160
NeilBrown358dd552006-04-10 22:55:42 -07001161 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 sop->so_time = get_seconds();
1163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001166same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
1167 clientid_t *clid)
1168{
1169 return (sop->so_owner.len == owner->len) &&
1170 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
1171 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
1174static struct nfs4_stateowner *
1175find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1176{
1177 struct nfs4_stateowner *so = NULL;
1178
1179 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001180 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return so;
1182 }
1183 return NULL;
1184}
1185
1186/* search file_hashtbl[] for file */
1187static struct nfs4_file *
1188find_file(struct inode *ino)
1189{
1190 unsigned int hashval = file_hashval(ino);
1191 struct nfs4_file *fp;
1192
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001193 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07001195 if (fp->fi_inode == ino) {
1196 get_nfs4_file(fp);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001197 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07001199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001201 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return NULL;
1203}
1204
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001205static inline int access_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001206{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001207 if (x < NFS4_SHARE_ACCESS_READ)
1208 return 0;
1209 if (x > NFS4_SHARE_ACCESS_BOTH)
1210 return 0;
1211 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001212}
1213
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001214static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001215{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001216 /* Note: unlike access bits, deny bits may be zero. */
1217 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001218}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04001220/*
1221 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1222 * st_{access,deny}_bmap field of the stateid, in order to track not
1223 * only what share bits are currently in force, but also what
1224 * combinations of share bits previous opens have used. This allows us
1225 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1226 * return an error if the client attempt to downgrade to a combination
1227 * of share bits not explicable by closing some of its previous opens.
1228 *
1229 * XXX: This enforcement is actually incomplete, since we don't keep
1230 * track of access/deny bit combinations; so, e.g., we allow:
1231 *
1232 * OPEN allow read, deny write
1233 * OPEN allow both, deny none
1234 * DOWNGRADE allow read, deny none
1235 *
1236 * which we should reject.
1237 */
NeilBrownfd39ca92005-06-23 22:04:03 -07001238static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239set_access(unsigned int *access, unsigned long bmap) {
1240 int i;
1241
1242 *access = 0;
1243 for (i = 1; i < 4; i++) {
1244 if (test_bit(i, &bmap))
1245 *access |= i;
1246 }
1247}
1248
NeilBrownfd39ca92005-06-23 22:04:03 -07001249static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250set_deny(unsigned int *deny, unsigned long bmap) {
1251 int i;
1252
1253 *deny = 0;
1254 for (i = 0; i < 4; i++) {
1255 if (test_bit(i, &bmap))
1256 *deny |= i ;
1257 }
1258}
1259
1260static int
1261test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
1262 unsigned int access, deny;
1263
1264 set_access(&access, stp->st_access_bmap);
1265 set_deny(&deny, stp->st_deny_bmap);
1266 if ((access & open->op_share_deny) || (deny & open->op_share_access))
1267 return 0;
1268 return 1;
1269}
1270
1271/*
1272 * Called to check deny when READ with all zero stateid or
1273 * WRITE with all zero or all one stateid
1274 */
Al Virob37ad282006-10-19 23:28:59 -07001275static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
1277{
1278 struct inode *ino = current_fh->fh_dentry->d_inode;
1279 struct nfs4_file *fp;
1280 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07001281 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 dprintk("NFSD: nfs4_share_conflict\n");
1284
1285 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07001286 if (!fp)
1287 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07001288 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07001290 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
1291 if (test_bit(deny_type, &stp->st_deny_bmap) ||
1292 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
1293 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
NeilBrown13cd2182005-06-23 22:03:10 -07001295 ret = nfs_ok;
1296out:
1297 put_nfs4_file(fp);
1298 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301static inline void
1302nfs4_file_downgrade(struct file *filp, unsigned int share_access)
1303{
1304 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
Dave Hansenaceaf782008-02-15 14:37:31 -08001305 drop_file_write_access(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
1307 }
1308}
1309
1310/*
1311 * Recall a delegation
1312 */
1313static int
1314do_recall(void *__dp)
1315{
1316 struct nfs4_delegation *dp = __dp;
1317
Meelap Shah47f99402007-07-17 04:04:40 -07001318 dp->dl_file->fi_had_conflict = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 nfsd4_cb_recall(dp);
1320 return 0;
1321}
1322
1323/*
1324 * Spawn a thread to perform a recall on the delegation represented
1325 * by the lease (file_lock)
1326 *
1327 * Called from break_lease() with lock_kernel() held.
1328 * Note: we assume break_lease will only call this *once* for any given
1329 * lease.
1330 */
1331static
1332void nfsd_break_deleg_cb(struct file_lock *fl)
1333{
1334 struct nfs4_delegation *dp= (struct nfs4_delegation *)fl->fl_owner;
1335 struct task_struct *t;
1336
1337 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
1338 if (!dp)
1339 return;
1340
1341 /* We're assuming the state code never drops its reference
1342 * without first removing the lease. Since we're in this lease
1343 * callback (and since the lease code is serialized by the kernel
1344 * lock) we know the server hasn't removed the lease yet, we know
1345 * it's safe to take a reference: */
1346 atomic_inc(&dp->dl_count);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04001347 atomic_inc(&dp->dl_client->cl_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 spin_lock(&recall_lock);
1350 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
1351 spin_unlock(&recall_lock);
1352
1353 /* only place dl_time is set. protected by lock_kernel*/
1354 dp->dl_time = get_seconds();
1355
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04001356 /*
1357 * We don't want the locks code to timeout the lease for us;
1358 * we'll remove it ourself if the delegation isn't returned
1359 * in time.
1360 */
1361 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall");
1364 if (IS_ERR(t)) {
1365 struct nfs4_client *clp = dp->dl_client;
1366
1367 printk(KERN_INFO "NFSD: Callback thread failed for "
1368 "for client (clientid %08x/%08x)\n",
1369 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04001370 put_nfs4_client(dp->dl_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 nfs4_put_delegation(dp);
1372 }
1373}
1374
1375/*
1376 * The file_lock is being reapd.
1377 *
1378 * Called by locks_free_lock() with lock_kernel() held.
1379 */
1380static
1381void nfsd_release_deleg_cb(struct file_lock *fl)
1382{
1383 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
1384
1385 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
1386
1387 if (!(fl->fl_flags & FL_LEASE) || !dp)
1388 return;
1389 dp->dl_flock = NULL;
1390}
1391
1392/*
1393 * Set the delegation file_lock back pointer.
1394 *
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001395 * Called from setlease() with lock_kernel() held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 */
1397static
1398void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
1399{
1400 struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
1401
1402 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
1403 if (!dp)
1404 return;
1405 dp->dl_flock = new;
1406}
1407
1408/*
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001409 * Called from setlease() with lock_kernel() held
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 */
1411static
1412int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
1413{
1414 struct nfs4_delegation *onlistd =
1415 (struct nfs4_delegation *)onlist->fl_owner;
1416 struct nfs4_delegation *tryd =
1417 (struct nfs4_delegation *)try->fl_owner;
1418
1419 if (onlist->fl_lmops != try->fl_lmops)
1420 return 0;
1421
1422 return onlistd->dl_client == tryd->dl_client;
1423}
1424
1425
1426static
1427int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
1428{
1429 if (arg & F_UNLCK)
1430 return lease_modify(onlist, arg);
1431 else
1432 return -EAGAIN;
1433}
1434
NeilBrownfd39ca92005-06-23 22:04:03 -07001435static struct lock_manager_operations nfsd_lease_mng_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 .fl_break = nfsd_break_deleg_cb,
1437 .fl_release_private = nfsd_release_deleg_cb,
1438 .fl_copy_lock = nfsd_copy_lock_deleg_cb,
1439 .fl_mylease = nfsd_same_client_deleg_cb,
1440 .fl_change = nfsd_change_deleg_cb,
1441};
1442
1443
Al Virob37ad282006-10-19 23:28:59 -07001444__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445nfsd4_process_open1(struct nfsd4_open *open)
1446{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 clientid_t *clientid = &open->op_clientid;
1448 struct nfs4_client *clp = NULL;
1449 unsigned int strhashval;
1450 struct nfs4_stateowner *sop = NULL;
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001453 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 if (STALE_CLIENTID(&open->op_clientid))
1456 return nfserr_stale_clientid;
1457
1458 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
1459 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001460 open->op_stateowner = sop;
1461 if (!sop) {
1462 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 clp = find_confirmed_client(clientid);
1464 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001465 return nfserr_expired;
1466 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001468 if (!sop->so_confirmed) {
1469 /* Replace unconfirmed owners without checking for replay. */
1470 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001471 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001472 open->op_stateowner = NULL;
1473 goto renew;
1474 }
1475 if (open->op_seqid == sop->so_seqid - 1) {
1476 if (sop->so_replay.rp_buflen)
Al Viroa90b0612006-10-19 23:29:03 -07001477 return nfserr_replay_me;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001478 /* The original OPEN failed so spectacularly
1479 * that we don't even have replay data saved!
1480 * Therefore, we have no choice but to continue
1481 * processing this OPEN; presumably, we'll
1482 * fail again for the same reason.
1483 */
1484 dprintk("nfsd4_process_open1: replay with no replay cache\n");
1485 goto renew;
1486 }
1487 if (open->op_seqid != sop->so_seqid)
1488 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001490 if (open->op_stateowner == NULL) {
1491 sop = alloc_init_open_stateowner(strhashval, clp, open);
1492 if (sop == NULL)
1493 return nfserr_resource;
1494 open->op_stateowner = sop;
1495 }
1496 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001498 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Al Virob37ad282006-10-19 23:28:59 -07001501static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07001502nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
1503{
1504 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
1505 return nfserr_openmode;
1506 else
1507 return nfs_ok;
1508}
1509
NeilBrown52f4fb42005-06-23 22:02:49 -07001510static struct nfs4_delegation *
1511find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
1512{
1513 struct nfs4_delegation *dp;
1514
NeilBrownea1da632005-06-23 22:04:17 -07001515 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) {
NeilBrown52f4fb42005-06-23 22:02:49 -07001516 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
1517 return dp;
1518 }
1519 return NULL;
1520}
1521
Al Virob37ad282006-10-19 23:28:59 -07001522static __be32
NeilBrown567d9822005-06-23 22:02:53 -07001523nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
1524 struct nfs4_delegation **dp)
1525{
1526 int flags;
Al Virob37ad282006-10-19 23:28:59 -07001527 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07001528
1529 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
1530 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07001531 goto out;
NeilBrown567d9822005-06-23 22:02:53 -07001532 flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
1533 RD_STATE : WR_STATE;
1534 status = nfs4_check_delegmode(*dp, flags);
1535 if (status)
1536 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001537out:
1538 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
1539 return nfs_ok;
1540 if (status)
1541 return status;
1542 open->op_stateowner->so_confirmed = 1;
1543 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07001544}
1545
Al Virob37ad282006-10-19 23:28:59 -07001546static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
1548{
1549 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07001550 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 struct nfs4_stateowner *sop = open->op_stateowner;
1552
NeilBrown8beefa22005-06-23 22:03:08 -07001553 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /* ignore lock owners */
1555 if (local->st_stateowner->so_is_open_owner == 0)
1556 continue;
1557 /* remember if we have seen this open owner */
1558 if (local->st_stateowner == sop)
1559 *stpp = local;
1560 /* check for conflicting share reservations */
1561 if (!test_share(local, open))
1562 goto out;
1563 }
1564 status = 0;
1565out:
1566 return status;
1567}
1568
NeilBrown5ac049a2005-06-23 22:03:03 -07001569static inline struct nfs4_stateid *
1570nfs4_alloc_stateid(void)
1571{
1572 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
1573}
1574
Al Virob37ad282006-10-19 23:28:59 -07001575static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
NeilBrown567d9822005-06-23 22:02:53 -07001577 struct nfs4_delegation *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 struct svc_fh *cur_fh, int flags)
1579{
1580 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
NeilBrown5ac049a2005-06-23 22:03:03 -07001582 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (stp == NULL)
1584 return nfserr_resource;
1585
NeilBrown567d9822005-06-23 22:02:53 -07001586 if (dp) {
1587 get_file(dp->dl_vfs_file);
1588 stp->st_vfs_file = dp->dl_vfs_file;
1589 } else {
Al Virob37ad282006-10-19 23:28:59 -07001590 __be32 status;
NeilBrown567d9822005-06-23 22:02:53 -07001591 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
1592 &stp->st_vfs_file);
1593 if (status) {
1594 if (status == nfserr_dropit)
1595 status = nfserr_jukebox;
NeilBrown5ac049a2005-06-23 22:03:03 -07001596 kmem_cache_free(stateid_slab, stp);
NeilBrown567d9822005-06-23 22:02:53 -07001597 return status;
1598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 *stpp = stp;
1601 return 0;
1602}
1603
Al Virob37ad282006-10-19 23:28:59 -07001604static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
1606 struct nfsd4_open *open)
1607{
1608 struct iattr iattr = {
1609 .ia_valid = ATTR_SIZE,
1610 .ia_size = 0,
1611 };
1612 if (!open->op_truncate)
1613 return 0;
1614 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08001615 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
1617}
1618
Al Virob37ad282006-10-19 23:28:59 -07001619static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
1621{
1622 struct file *filp = stp->st_vfs_file;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001623 struct inode *inode = filp->f_path.dentry->d_inode;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001624 unsigned int share_access, new_writer;
Al Virob37ad282006-10-19 23:28:59 -07001625 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 set_access(&share_access, stp->st_access_bmap);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001628 new_writer = (~share_access) & open->op_share_access
1629 & NFS4_SHARE_ACCESS_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001631 if (new_writer) {
Al Virob37ad282006-10-19 23:28:59 -07001632 int err = get_write_access(inode);
1633 if (err)
1634 return nfserrno(err);
Benny Halevye518f052008-07-04 15:38:41 +03001635 err = mnt_want_write(cur_fh->fh_export->ex_path.mnt);
1636 if (err)
1637 return nfserrno(err);
1638 file_take_write(filp);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 status = nfsd4_truncate(rqstp, cur_fh, open);
1641 if (status) {
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001642 if (new_writer)
1643 put_write_access(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return status;
1645 }
1646 /* remember the open */
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001647 filp->f_mode |= open->op_share_access;
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04001648 __set_bit(open->op_share_access, &stp->st_access_bmap);
1649 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 return nfs_ok;
1652}
1653
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655static void
NeilBrown37515172005-07-07 17:59:16 -07001656nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
NeilBrown37515172005-07-07 17:59:16 -07001658 open->op_stateowner->so_confirmed = 1;
1659 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
1662/*
1663 * Attempt to hand out a delegation.
1664 */
1665static void
1666nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
1667{
1668 struct nfs4_delegation *dp;
1669 struct nfs4_stateowner *sop = stp->st_stateowner;
1670 struct nfs4_callback *cb = &sop->so_client->cl_callback;
1671 struct file_lock fl, *flp = &fl;
1672 int status, flag = 0;
1673
1674 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07001675 open->op_recall = 0;
1676 switch (open->op_claim_type) {
1677 case NFS4_OPEN_CLAIM_PREVIOUS:
1678 if (!atomic_read(&cb->cb_set))
1679 open->op_recall = 1;
1680 flag = open->op_delegate_type;
1681 if (flag == NFS4_OPEN_DELEGATE_NONE)
1682 goto out;
1683 break;
1684 case NFS4_OPEN_CLAIM_NULL:
1685 /* Let's not give out any delegations till everyone's
1686 * had the chance to reclaim theirs.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001687 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07001688 goto out;
1689 if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
1690 goto out;
1691 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1692 flag = NFS4_OPEN_DELEGATE_WRITE;
1693 else
1694 flag = NFS4_OPEN_DELEGATE_READ;
1695 break;
1696 default:
1697 goto out;
1698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
1701 if (dp == NULL) {
1702 flag = NFS4_OPEN_DELEGATE_NONE;
1703 goto out;
1704 }
1705 locks_init_lock(&fl);
1706 fl.fl_lmops = &nfsd_lease_mng_ops;
1707 fl.fl_flags = FL_LEASE;
Felix Blyakher9167f502008-02-26 10:54:36 -08001708 fl.fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 fl.fl_end = OFFSET_MAX;
1710 fl.fl_owner = (fl_owner_t)dp;
1711 fl.fl_file = stp->st_vfs_file;
1712 fl.fl_pid = current->tgid;
1713
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001714 /* vfs_setlease checks to see if delegation should be handed out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 * the lock_manager callbacks fl_mylease and fl_change are used
1716 */
Felix Blyakher9167f502008-02-26 10:54:36 -08001717 if ((status = vfs_setlease(stp->st_vfs_file, fl.fl_type, &flp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
NeilBrownc9071322005-04-16 15:26:38 -07001719 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 flag = NFS4_OPEN_DELEGATE_NONE;
1721 goto out;
1722 }
1723
1724 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
1725
1726 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1727 dp->dl_stateid.si_boot,
1728 dp->dl_stateid.si_stateownerid,
1729 dp->dl_stateid.si_fileid,
1730 dp->dl_stateid.si_generation);
1731out:
NeilBrown7b190fe2005-06-23 22:03:23 -07001732 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
1733 && flag == NFS4_OPEN_DELEGATE_NONE
1734 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04001735 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 open->op_delegate_type = flag;
1737}
1738
1739/*
1740 * called with nfs4_lock_state() held.
1741 */
Al Virob37ad282006-10-19 23:28:59 -07001742__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
1744{
1745 struct nfs4_file *fp = NULL;
1746 struct inode *ino = current_fh->fh_dentry->d_inode;
1747 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07001748 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07001749 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 status = nfserr_inval;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001752 if (!access_valid(open->op_share_access)
1753 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 goto out;
1755 /*
1756 * Lookup file; if found, lookup stateid and check open request,
1757 * and check for delegations in the process of being recalled.
1758 * If not found, create the nfs4_file struct
1759 */
1760 fp = find_file(ino);
1761 if (fp) {
1762 if ((status = nfs4_check_open(fp, open, &stp)))
1763 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001764 status = nfs4_check_deleg(fp, open, &dp);
1765 if (status)
1766 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07001768 status = nfserr_bad_stateid;
1769 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
1770 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 status = nfserr_resource;
1772 fp = alloc_init_file(ino);
1773 if (fp == NULL)
1774 goto out;
1775 }
1776
1777 /*
1778 * OPEN the file, or upgrade an existing OPEN.
1779 * If truncate fails, the OPEN fails.
1780 */
1781 if (stp) {
1782 /* Stateid was found, this is an OPEN upgrade */
1783 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
1784 if (status)
1785 goto out;
NeilBrown444c2c02005-07-07 17:59:22 -07001786 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 } else {
1788 /* Stateid was not found, this is a new OPEN */
1789 int flags = 0;
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -07001790 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001791 flags |= NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001793 flags |= NFSD_MAY_WRITE;
NeilBrown567d9822005-06-23 22:02:53 -07001794 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
1795 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 goto out;
1797 init_stateid(stp, fp, open);
1798 status = nfsd4_truncate(rqstp, current_fh, open);
1799 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05001800 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 goto out;
1802 }
1803 }
1804 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
1805
1806 /*
1807 * Attempt to hand out a delegation. No error return, because the
1808 * OPEN succeeds even if we fail.
1809 */
1810 nfs4_open_delegation(current_fh, open, stp);
1811
1812 status = nfs_ok;
1813
1814 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1815 stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid,
1816 stp->st_stateid.si_fileid, stp->st_stateid.si_generation);
1817out:
NeilBrown13cd2182005-06-23 22:03:10 -07001818 if (fp)
1819 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07001820 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1821 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 /*
1823 * To finish the open response, we just need to set the rflags.
1824 */
1825 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
1826 if (!open->op_stateowner->so_confirmed)
1827 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
1828
1829 return status;
1830}
1831
Al Virob37ad282006-10-19 23:28:59 -07001832__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001833nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1834 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07001837 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 nfs4_lock_state();
1840 dprintk("process_renew(%08x/%08x): starting\n",
1841 clid->cl_boot, clid->cl_id);
1842 status = nfserr_stale_clientid;
1843 if (STALE_CLIENTID(clid))
1844 goto out;
1845 clp = find_confirmed_client(clid);
1846 status = nfserr_expired;
1847 if (clp == NULL) {
1848 /* We assume the client took too long to RENEW. */
1849 dprintk("nfsd4_renew: clientid not found!\n");
1850 goto out;
1851 }
1852 renew_client(clp);
1853 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07001854 if (!list_empty(&clp->cl_delegations)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 && !atomic_read(&clp->cl_callback.cb_set))
1856 goto out;
1857 status = nfs_ok;
1858out:
1859 nfs4_unlock_state();
1860 return status;
1861}
1862
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001863struct lock_manager nfsd4_manager = {
1864};
1865
NeilBrowna76b4312005-06-23 22:04:01 -07001866static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001867nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07001868{
1869 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07001870 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001871 locks_end_grace(&nfsd4_manager);
NeilBrowna76b4312005-06-23 22:04:01 -07001872}
1873
NeilBrownfd39ca92005-06-23 22:04:03 -07001874static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875nfs4_laundromat(void)
1876{
1877 struct nfs4_client *clp;
1878 struct nfs4_stateowner *sop;
1879 struct nfs4_delegation *dp;
1880 struct list_head *pos, *next, reaplist;
1881 time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
1882 time_t t, clientid_val = NFSD_LEASE_TIME;
1883 time_t u, test_val = NFSD_LEASE_TIME;
1884
1885 nfs4_lock_state();
1886
1887 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001888 if (locks_in_grace())
1889 nfsd4_end_grace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 list_for_each_safe(pos, next, &client_lru) {
1891 clp = list_entry(pos, struct nfs4_client, cl_lru);
1892 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
1893 t = clp->cl_time - cutoff;
1894 if (clientid_val > t)
1895 clientid_val = t;
1896 break;
1897 }
1898 dprintk("NFSD: purging unused client (clientid %08x)\n",
1899 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07001900 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 expire_client(clp);
1902 }
1903 INIT_LIST_HEAD(&reaplist);
1904 spin_lock(&recall_lock);
1905 list_for_each_safe(pos, next, &del_recall_lru) {
1906 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1907 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
1908 u = dp->dl_time - cutoff;
1909 if (test_val > u)
1910 test_val = u;
1911 break;
1912 }
1913 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1914 dp, dp->dl_flock);
1915 list_move(&dp->dl_recall_lru, &reaplist);
1916 }
1917 spin_unlock(&recall_lock);
1918 list_for_each_safe(pos, next, &reaplist) {
1919 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1920 list_del_init(&dp->dl_recall_lru);
1921 unhash_delegation(dp);
1922 }
1923 test_val = NFSD_LEASE_TIME;
1924 list_for_each_safe(pos, next, &close_lru) {
1925 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
1926 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
1927 u = sop->so_time - cutoff;
1928 if (test_val > u)
1929 test_val = u;
1930 break;
1931 }
1932 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1933 sop->so_id);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001934 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
1937 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
1938 nfs4_unlock_state();
1939 return clientid_val;
1940}
1941
Harvey Harrisona254b242008-02-20 12:49:00 -08001942static struct workqueue_struct *laundry_wq;
1943static void laundromat_main(struct work_struct *);
1944static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
1945
1946static void
David Howellsc4028952006-11-22 14:57:56 +00001947laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
1949 time_t t;
1950
1951 t = nfs4_laundromat();
1952 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07001953 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
NeilBrownfd39ca92005-06-23 22:04:03 -07001956static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07001957search_close_lru(u32 st_id, int flags)
1958{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 struct nfs4_stateowner *local = NULL;
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (flags & CLOSE_STATE) {
1962 list_for_each_entry(local, &close_lru, so_close_lru) {
1963 if (local->so_id == st_id)
1964 return local;
1965 }
1966 }
1967 return NULL;
1968}
1969
1970static inline int
1971nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
1972{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001973 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
1975
1976static int
1977STALE_STATEID(stateid_t *stateid)
1978{
1979 if (stateid->si_boot == boot_time)
1980 return 0;
Neil Brown849823c2005-09-13 01:25:36 -07001981 dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
1983 stateid->si_generation);
1984 return 1;
1985}
1986
1987static inline int
1988access_permit_read(unsigned long access_bmap)
1989{
1990 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
1991 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
1992 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
1993}
1994
1995static inline int
1996access_permit_write(unsigned long access_bmap)
1997{
1998 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
1999 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
2000}
2001
2002static
Al Virob37ad282006-10-19 23:28:59 -07002003__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
Al Virob37ad282006-10-19 23:28:59 -07002005 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
2008 goto out;
2009 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
2010 goto out;
2011 status = nfs_ok;
2012out:
2013 return status;
2014}
2015
Al Virob37ad282006-10-19 23:28:59 -07002016static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2018{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002019 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002021 else if (locks_in_grace()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 /* Answer in remaining cases depends on existance of
2023 * conflicting state; so we must wait out the grace period. */
2024 return nfserr_grace;
2025 } else if (flags & WR_STATE)
2026 return nfs4_share_conflict(current_fh,
2027 NFS4_SHARE_DENY_WRITE);
2028 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2029 return nfs4_share_conflict(current_fh,
2030 NFS4_SHARE_DENY_READ);
2031}
2032
2033/*
2034 * Allow READ/WRITE during grace period on recovered state only for files
2035 * that are not able to provide mandatory locking.
2036 */
2037static inline int
J. Bruce Fields18f82732009-02-21 15:23:01 -08002038grace_disallows_io(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002040 return locks_in_grace() && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041}
2042
J. Bruce Fields0836f582008-01-26 19:08:12 -05002043static int check_stateid_generation(stateid_t *in, stateid_t *ref)
2044{
2045 /* If the client sends us a stateid from the future, it's buggy: */
2046 if (in->si_generation > ref->si_generation)
2047 return nfserr_bad_stateid;
2048 /*
2049 * The following, however, can happen. For example, if the
2050 * client sends an open and some IO at the same time, the open
2051 * may bump si_generation while the IO is still in flight.
2052 * Thanks to hard links and renames, the client never knows what
2053 * file an open will affect. So it could avoid that situation
2054 * only by serializing all opens and IO from the same open
2055 * owner. To recover from the old_stateid error, the client
2056 * will just have to retry the IO:
2057 */
2058 if (in->si_generation < ref->si_generation)
2059 return nfserr_old_stateid;
2060 return nfs_ok;
2061}
2062
J. Bruce Fields3e633072009-02-21 13:17:19 -08002063static int is_delegation_stateid(stateid_t *stateid)
2064{
2065 return stateid->si_fileid == 0;
2066}
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/*
2069* Checks for stateid operations
2070*/
Al Virob37ad282006-10-19 23:28:59 -07002071__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072nfs4_preprocess_stateid_op(struct svc_fh *current_fh, stateid_t *stateid, int flags, struct file **filpp)
2073{
2074 struct nfs4_stateid *stp = NULL;
2075 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07002077 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (filpp)
2080 *filpp = NULL;
2081
J. Bruce Fields18f82732009-02-21 15:23:01 -08002082 if (grace_disallows_io(ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return nfserr_grace;
2084
2085 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2086 return check_special_stateids(current_fh, stateid, flags);
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 status = nfserr_stale_stateid;
2089 if (STALE_STATEID(stateid))
2090 goto out;
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 status = nfserr_bad_stateid;
J. Bruce Fields3e633072009-02-21 13:17:19 -08002093 if (is_delegation_stateid(stateid)) {
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002094 dp = find_delegation_stateid(ino, stateid);
J. Bruce Fields819a8f52009-02-21 12:13:24 -08002095 if (!dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 goto out;
J. Bruce Fieldsfd03b092009-02-21 11:27:30 -08002097 status = check_stateid_generation(stateid, &dp->dl_stateid);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002098 if (status)
2099 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002100 status = nfs4_check_delegmode(dp, flags);
2101 if (status)
2102 goto out;
2103 renew_client(dp->dl_client);
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002104 if (filpp)
2105 *filpp = dp->dl_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002107 stp = find_stateid(stateid, flags);
J. Bruce Fields819a8f52009-02-21 12:13:24 -08002108 if (!stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 goto out;
J. Bruce Fields6150ef02009-02-21 13:36:16 -08002110 if (nfs4_check_fh(current_fh, stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 goto out;
2112 if (!stp->st_stateowner->so_confirmed)
2113 goto out;
J. Bruce Fieldsfd03b092009-02-21 11:27:30 -08002114 status = check_stateid_generation(stateid, &stp->st_stateid);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002115 if (status)
2116 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002117 status = nfs4_check_openmode(stp, flags);
2118 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 goto out;
2120 renew_client(stp->st_stateowner->so_client);
2121 if (filpp)
2122 *filpp = stp->st_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124 status = nfs_ok;
2125out:
2126 return status;
2127}
2128
NeilBrown4c4cd222005-07-07 17:59:27 -07002129static inline int
2130setlkflg (int type)
2131{
2132 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
2133 RD_STATE : WR_STATE;
2134}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136/*
2137 * Checks for sequence id mutating operations.
2138 */
Al Virob37ad282006-10-19 23:28:59 -07002139static __be32
NeilBrown4c4cd222005-07-07 17:59:27 -07002140nfs4_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 -07002141{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 struct nfs4_stateid *stp;
2143 struct nfs4_stateowner *sop;
J. Bruce Fields0836f582008-01-26 19:08:12 -05002144 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2147 "stateid = (%08x/%08x/%08x/%08x)\n", seqid,
2148 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2149 stateid->si_generation);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 *stpp = NULL;
2152 *sopp = NULL;
2153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002155 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002156 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07002160 return nfserr_stale_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 /*
2162 * We return BAD_STATEID if filehandle doesn't match stateid,
2163 * the confirmed flag is incorrecly set, or the generation
2164 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 */
NeilBrownf8816512005-07-07 17:59:25 -07002166 stp = find_stateid(stateid, flags);
2167 if (stp == NULL) {
2168 /*
2169 * Also, we should make sure this isn't just the result of
2170 * a replayed close:
2171 */
2172 sop = search_close_lru(stateid->si_stateownerid, flags);
2173 if (sop == NULL)
2174 return nfserr_bad_stateid;
2175 *sopp = sop;
2176 goto check_replay;
2177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
J. Bruce Fields39325bd2007-11-26 17:06:39 -05002179 *stpp = stp;
2180 *sopp = sop = stp->st_stateowner;
2181
NeilBrown4c4cd222005-07-07 17:59:27 -07002182 if (lock) {
NeilBrown4c4cd222005-07-07 17:59:27 -07002183 clientid_t *lockclid = &lock->v.new.clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 struct nfs4_client *clp = sop->so_client;
NeilBrown4c4cd222005-07-07 17:59:27 -07002185 int lkflg = 0;
Al Virob37ad282006-10-19 23:28:59 -07002186 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
NeilBrown4c4cd222005-07-07 17:59:27 -07002188 lkflg = setlkflg(lock->lk_type);
2189
2190 if (lock->lk_is_new) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002191 if (!sop->so_is_open_owner)
2192 return nfserr_bad_stateid;
2193 if (!same_clid(&clp->cl_clientid, lockclid))
NeilBrown4c4cd222005-07-07 17:59:27 -07002194 return nfserr_bad_stateid;
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002195 /* stp is the open stateid */
2196 status = nfs4_check_openmode(stp, lkflg);
2197 if (status)
2198 return status;
2199 } else {
2200 /* stp is the lock stateid */
2201 status = nfs4_check_openmode(stp->st_openstp, lkflg);
2202 if (status)
2203 return status;
NeilBrown4c4cd222005-07-07 17:59:27 -07002204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
2206
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002207 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002208 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002209 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 /*
2213 * We now validate the seqid and stateid generation numbers.
2214 * For the moment, we ignore the possibility of
2215 * generation number wraparound.
2216 */
NeilBrownbd9aac52005-07-07 17:59:19 -07002217 if (seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 goto check_replay;
2219
NeilBrown3a4f98b2005-07-07 17:59:26 -07002220 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002221 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07002222 " unconfirmed stateowner!\n");
2223 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07002225 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002226 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07002227 " confirmed yet!\n");
2228 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 }
J. Bruce Fields0836f582008-01-26 19:08:12 -05002230 status = check_stateid_generation(stateid, &stp->st_stateid);
2231 if (status)
2232 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07002233 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002234 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07002237 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07002238 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 /* indicate replay to calling function */
Al Viroa90b0612006-10-19 23:29:03 -07002240 return nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 }
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002242 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
NeilBrown3a4f98b2005-07-07 17:59:26 -07002243 sop->so_seqid, seqid);
2244 *sopp = NULL;
2245 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246}
2247
Al Virob37ad282006-10-19 23:28:59 -07002248__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002249nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002250 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
Al Virob37ad282006-10-19 23:28:59 -07002252 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 struct nfs4_stateowner *sop;
2254 struct nfs4_stateid *stp;
2255
2256 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002257 (int)cstate->current_fh.fh_dentry->d_name.len,
2258 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002260 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07002261 if (status)
2262 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 nfs4_lock_state();
2265
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002266 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2267 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002268 CONFIRM | OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 &oc->oc_stateowner, &stp, NULL)))
2270 goto out;
2271
2272 sop = oc->oc_stateowner;
2273 sop->so_confirmed = 1;
2274 update_stateid(&stp->st_stateid);
2275 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
2276 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
2277 "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid,
2278 stp->st_stateid.si_boot,
2279 stp->st_stateid.si_stateownerid,
2280 stp->st_stateid.si_fileid,
2281 stp->st_stateid.si_generation);
NeilBrownc7b9a452005-06-23 22:04:30 -07002282
2283 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284out:
Neil Brownf2327d92005-09-13 01:25:37 -07002285 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 nfs4_get_stateowner(oc->oc_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002287 cstate->replay_owner = oc->oc_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 nfs4_unlock_state();
2290 return status;
2291}
2292
2293
2294/*
2295 * unset all bits in union bitmap (bmap) that
2296 * do not exist in share (from successful OPEN_DOWNGRADE)
2297 */
2298static void
2299reset_union_bmap_access(unsigned long access, unsigned long *bmap)
2300{
2301 int i;
2302 for (i = 1; i < 4; i++) {
2303 if ((i & access) != i)
2304 __clear_bit(i, bmap);
2305 }
2306}
2307
2308static void
2309reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
2310{
2311 int i;
2312 for (i = 0; i < 4; i++) {
2313 if ((i & deny) != i)
2314 __clear_bit(i, bmap);
2315 }
2316}
2317
Al Virob37ad282006-10-19 23:28:59 -07002318__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002319nfsd4_open_downgrade(struct svc_rqst *rqstp,
2320 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002321 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Al Virob37ad282006-10-19 23:28:59 -07002323 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 struct nfs4_stateid *stp;
2325 unsigned int share_access;
2326
2327 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002328 (int)cstate->current_fh.fh_dentry->d_name.len,
2329 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002331 if (!access_valid(od->od_share_access)
2332 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return nfserr_inval;
2334
2335 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002336 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2337 od->od_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 &od->od_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002339 OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 &od->od_stateowner, &stp, NULL)))
2341 goto out;
2342
2343 status = nfserr_inval;
2344 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
2345 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2346 stp->st_access_bmap, od->od_share_access);
2347 goto out;
2348 }
2349 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
2350 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2351 stp->st_deny_bmap, od->od_share_deny);
2352 goto out;
2353 }
2354 set_access(&share_access, stp->st_access_bmap);
2355 nfs4_file_downgrade(stp->st_vfs_file,
2356 share_access & ~od->od_share_access);
2357
2358 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
2359 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
2360
2361 update_stateid(&stp->st_stateid);
2362 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
2363 status = nfs_ok;
2364out:
Neil Brownf2327d92005-09-13 01:25:37 -07002365 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 nfs4_get_stateowner(od->od_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002367 cstate->replay_owner = od->od_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 nfs4_unlock_state();
2370 return status;
2371}
2372
2373/*
2374 * nfs4_unlock_state() called after encode
2375 */
Al Virob37ad282006-10-19 23:28:59 -07002376__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002377nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002378 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379{
Al Virob37ad282006-10-19 23:28:59 -07002380 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 struct nfs4_stateid *stp;
2382
2383 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002384 (int)cstate->current_fh.fh_dentry->d_name.len,
2385 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 nfs4_lock_state();
2388 /* check close_lru for replay */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002389 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2390 close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 &close->cl_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002392 OPEN_STATE | CLOSE_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 &close->cl_stateowner, &stp, NULL)))
2394 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 status = nfs_ok;
2396 update_stateid(&stp->st_stateid);
2397 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
2398
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002399 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05002400 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002401
2402 /* place unused nfs4_stateowners on so_close_lru list to be
2403 * released by the laundromat service after the lease period
2404 * to enable us to handle CLOSE replay
2405 */
2406 if (list_empty(&close->cl_stateowner->so_stateids))
2407 move_to_close_lru(close->cl_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408out:
Neil Brownf2327d92005-09-13 01:25:37 -07002409 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 nfs4_get_stateowner(close->cl_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002411 cstate->replay_owner = close->cl_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 nfs4_unlock_state();
2414 return status;
2415}
2416
Al Virob37ad282006-10-19 23:28:59 -07002417__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002418nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2419 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002421 struct nfs4_delegation *dp;
2422 stateid_t *stateid = &dr->dr_stateid;
2423 struct inode *inode;
Al Virob37ad282006-10-19 23:28:59 -07002424 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002426 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002427 return status;
2428 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 nfs4_lock_state();
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002431 status = nfserr_bad_stateid;
2432 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2433 goto out;
2434 status = nfserr_stale_stateid;
2435 if (STALE_STATEID(stateid))
2436 goto out;
J. Bruce Fields7e0f7cf2009-02-21 13:32:28 -08002437 status = nfserr_bad_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002438 if (!is_delegation_stateid(stateid))
2439 goto out;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002440 dp = find_delegation_stateid(inode, stateid);
2441 if (!dp)
2442 goto out;
2443 status = check_stateid_generation(stateid, &dp->dl_stateid);
2444 if (status)
2445 goto out;
2446 renew_client(dp->dl_client);
2447
2448 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002450 nfs4_unlock_state();
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 return status;
2453}
2454
2455
2456/*
2457 * Lock owner state (byte-range locks)
2458 */
2459#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
2460#define LOCK_HASH_BITS 8
2461#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
2462#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
2463
Benny Halevy87df4de2008-12-15 19:42:03 +02002464static inline u64
2465end_offset(u64 start, u64 len)
2466{
2467 u64 end;
2468
2469 end = start + len;
2470 return end >= start ? end: NFS4_MAX_UINT64;
2471}
2472
2473/* last octet in a range */
2474static inline u64
2475last_byte_offset(u64 start, u64 len)
2476{
2477 u64 end;
2478
2479 BUG_ON(!len);
2480 end = start + len;
2481 return end > start ? end - 1: NFS4_MAX_UINT64;
2482}
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484#define lockownerid_hashval(id) \
2485 ((id) & LOCK_HASH_MASK)
2486
2487static inline unsigned int
2488lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
2489 struct xdr_netobj *ownername)
2490{
2491 return (file_hashval(inode) + cl_id
2492 + opaque_hashval(ownername->data, ownername->len))
2493 & LOCK_HASH_MASK;
2494}
2495
2496static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
2497static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
2498static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
2499
NeilBrownfd39ca92005-06-23 22:04:03 -07002500static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501find_stateid(stateid_t *stid, int flags)
2502{
Krishna Kumar9346eff2008-10-20 11:44:28 +05302503 struct nfs4_stateid *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 u32 st_id = stid->si_stateownerid;
2505 u32 f_id = stid->si_fileid;
2506 unsigned int hashval;
2507
2508 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
Krishna Kumar9346eff2008-10-20 11:44:28 +05302509 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 hashval = stateid_hashval(st_id, f_id);
2511 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
2512 if ((local->st_stateid.si_stateownerid == st_id) &&
2513 (local->st_stateid.si_fileid == f_id))
2514 return local;
2515 }
2516 }
Krishna Kumar9346eff2008-10-20 11:44:28 +05302517
2518 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 hashval = stateid_hashval(st_id, f_id);
2520 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
2521 if ((local->st_stateid.si_stateownerid == st_id) &&
2522 (local->st_stateid.si_fileid == f_id))
2523 return local;
2524 }
Neil Brown849823c2005-09-13 01:25:36 -07002525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 return NULL;
2527}
2528
2529static struct nfs4_delegation *
2530find_delegation_stateid(struct inode *ino, stateid_t *stid)
2531{
NeilBrown13cd2182005-06-23 22:03:10 -07002532 struct nfs4_file *fp;
2533 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2536 stid->si_boot, stid->si_stateownerid,
2537 stid->si_fileid, stid->si_generation);
2538
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002540 if (!fp)
2541 return NULL;
2542 dl = find_delegation_file(fp, stid);
2543 put_nfs4_file(fp);
2544 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
2546
2547/*
2548 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2549 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2550 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
2551 * locking, this prevents us from being completely protocol-compliant. The
2552 * real solution to this problem is to start using unsigned file offsets in
2553 * the VFS, but this is a very deep change!
2554 */
2555static inline void
2556nfs4_transform_lock_offset(struct file_lock *lock)
2557{
2558 if (lock->fl_start < 0)
2559 lock->fl_start = OFFSET_MAX;
2560 if (lock->fl_end < 0)
2561 lock->fl_end = OFFSET_MAX;
2562}
2563
NeilBrownd5b90262006-04-10 22:55:22 -07002564/* Hack!: For now, we're defining this just so we can use a pointer to it
2565 * as a unique cookie to identify our (NFSv4's) posix locks. */
Adrian Bunke465a772006-04-10 22:55:23 -07002566static struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07002567};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569static inline void
2570nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
2571{
NeilBrownd5b90262006-04-10 22:55:22 -07002572 struct nfs4_stateowner *sop;
2573 unsigned int hval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
NeilBrownd5b90262006-04-10 22:55:22 -07002575 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
2576 sop = (struct nfs4_stateowner *) fl->fl_owner;
2577 hval = lockownerid_hashval(sop->so_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 kref_get(&sop->so_ref);
2579 deny->ld_sop = sop;
2580 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07002581 } else {
2582 deny->ld_sop = NULL;
2583 deny->ld_clientid.cl_boot = 0;
2584 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 }
2586 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02002587 deny->ld_length = NFS4_MAX_UINT64;
2588 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 deny->ld_length = fl->fl_end - fl->fl_start + 1;
2590 deny->ld_type = NFS4_READ_LT;
2591 if (fl->fl_type != F_RDLCK)
2592 deny->ld_type = NFS4_WRITE_LT;
2593}
2594
2595static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596find_lockstateowner_str(struct inode *inode, clientid_t *clid,
2597 struct xdr_netobj *owner)
2598{
2599 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
2600 struct nfs4_stateowner *op;
2601
2602 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002603 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 return op;
2605 }
2606 return NULL;
2607}
2608
2609/*
2610 * Alloc a lock owner structure.
2611 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
2612 * occured.
2613 *
2614 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 */
2616
2617static struct nfs4_stateowner *
2618alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
2619 struct nfs4_stateowner *sop;
2620 struct nfs4_replay *rp;
2621 unsigned int idhashval;
2622
2623 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
2624 return NULL;
2625 idhashval = lockownerid_hashval(current_ownerid);
2626 INIT_LIST_HEAD(&sop->so_idhash);
2627 INIT_LIST_HEAD(&sop->so_strhash);
2628 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07002629 INIT_LIST_HEAD(&sop->so_stateids);
2630 INIT_LIST_HEAD(&sop->so_perstateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
2632 sop->so_time = 0;
2633 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
2634 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002635 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 sop->so_is_open_owner = 0;
2637 sop->so_id = current_ownerid++;
2638 sop->so_client = clp;
Neil Brownb59e3c02005-09-13 01:25:38 -07002639 /* It is the openowner seqid that will be incremented in encode in the
2640 * case of new lockowners; so increment the lock seqid manually: */
2641 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 sop->so_confirmed = 1;
2643 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08002644 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 rp->rp_buflen = 0;
2646 rp->rp_buf = rp->rp_ibuf;
2647 return sop;
2648}
2649
NeilBrownfd39ca92005-06-23 22:04:03 -07002650static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
2652{
2653 struct nfs4_stateid *stp;
2654 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2655
NeilBrown5ac049a2005-06-23 22:03:03 -07002656 stp = nfs4_alloc_stateid();
2657 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 goto out;
2659 INIT_LIST_HEAD(&stp->st_hash);
2660 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07002661 INIT_LIST_HEAD(&stp->st_perstateowner);
2662 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07002664 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07002665 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07002667 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 stp->st_file = fp;
2669 stp->st_stateid.si_boot = boot_time;
2670 stp->st_stateid.si_stateownerid = sop->so_id;
2671 stp->st_stateid.si_fileid = fp->fi_id;
2672 stp->st_stateid.si_generation = 0;
2673 stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
2674 stp->st_access_bmap = open_stp->st_access_bmap;
2675 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07002676 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678out:
2679 return stp;
2680}
2681
NeilBrownfd39ca92005-06-23 22:04:03 -07002682static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683check_lock_length(u64 offset, u64 length)
2684{
Benny Halevy87df4de2008-12-15 19:42:03 +02002685 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 LOFF_OVERFLOW(offset, length)));
2687}
2688
2689/*
2690 * LOCK operation
2691 */
Al Virob37ad282006-10-19 23:28:59 -07002692__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002693nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002694 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
NeilBrown3e9e3db2005-06-23 22:04:20 -07002696 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07002697 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 struct nfs4_stateid *lock_stp;
2699 struct file *filp;
2700 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05002701 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07002702 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 unsigned int strhashval;
Marc Eshel150b3932007-01-18 16:15:35 -05002704 unsigned int cmd;
Al Virob8dd7b92006-10-19 23:29:01 -07002705 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
2707 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2708 (long long) lock->lk_offset,
2709 (long long) lock->lk_length);
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (check_lock_length(lock->lk_offset, lock->lk_length))
2712 return nfserr_inval;
2713
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002714 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002715 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08002716 dprintk("NFSD: nfsd4_lock: permission denied!\n");
2717 return status;
2718 }
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 nfs4_lock_state();
2721
2722 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07002723 /*
2724 * Client indicates that this is a new lockowner.
2725 * Use open owner and open stateid to create lock owner and
2726 * lock stateid.
2727 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 struct nfs4_stateid *open_stp = NULL;
2729 struct nfs4_file *fp;
2730
2731 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002732 if (STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 /* validate and update open stateid and open seqid */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002736 status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 lock->lk_new_open_seqid,
2738 &lock->lk_new_open_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002739 OPEN_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002740 &lock->lk_replay_owner, &open_stp,
Neil Brownb59e3c02005-09-13 01:25:38 -07002741 lock);
NeilBrown37515172005-07-07 17:59:16 -07002742 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002744 open_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 /* create lockowner and lock stateid */
2746 fp = open_stp->st_file;
2747 strhashval = lock_ownerstr_hashval(fp->fi_inode,
2748 open_sop->so_client->cl_clientid.cl_id,
2749 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07002750 /* XXX: Do we need to check for duplicate stateowners on
2751 * the same file, or should they just be allowed (and
2752 * create new stateids)? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 status = nfserr_resource;
Neil Brownb59e3c02005-09-13 01:25:38 -07002754 lock_sop = alloc_init_lock_stateowner(strhashval,
2755 open_sop->so_client, open_stp, lock);
2756 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07002758 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08002759 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 } else {
2762 /* lock (lock owner + lock stateid) already exists */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002763 status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 lock->lk_old_lock_seqid,
2765 &lock->lk_old_lock_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002766 LOCK_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002767 &lock->lk_replay_owner, &lock_stp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (status)
2769 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002770 lock_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08002772 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 filp = lock_stp->st_vfs_file;
2774
NeilBrown0dd395d2005-07-07 17:59:15 -07002775 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002776 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07002777 goto out;
2778 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002779 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07002780 goto out;
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 locks_init_lock(&file_lock);
2783 switch (lock->lk_type) {
2784 case NFS4_READ_LT:
2785 case NFS4_READW_LT:
2786 file_lock.fl_type = F_RDLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05002787 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 break;
2789 case NFS4_WRITE_LT:
2790 case NFS4_WRITEW_LT:
2791 file_lock.fl_type = F_WRLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05002792 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 break;
2794 default:
2795 status = nfserr_inval;
2796 goto out;
2797 }
Neil Brownb59e3c02005-09-13 01:25:38 -07002798 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 file_lock.fl_pid = current->tgid;
2800 file_lock.fl_file = filp;
2801 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002802 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02002805 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 nfs4_transform_lock_offset(&file_lock);
2807
2808 /*
2809 * Try to lock the file in the VFS.
2810 * Note: locks.c uses the BKL to protect the inode's lock list.
2811 */
2812
Marc Eshelfd85b812006-11-28 16:26:41 -05002813 err = vfs_lock_file(filp, cmd, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07002814 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 case 0: /* success! */
2816 update_stateid(&lock_stp->st_stateid);
2817 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
2818 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07002819 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002820 break;
2821 case (EAGAIN): /* conflock holds conflicting lock */
2822 status = nfserr_denied;
2823 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2824 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
2825 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 case (EDEADLK):
2827 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002828 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05002830 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002831 status = nfserr_resource;
2832 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08002835 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002836 release_lockowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08002837 if (lock->lk_replay_owner) {
2838 nfs4_get_stateowner(lock->lk_replay_owner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002839 cstate->replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07002840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 nfs4_unlock_state();
2842 return status;
2843}
2844
2845/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08002846 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
2847 * so we do a temporary open here just to get an open file to pass to
2848 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
2849 * inode operation.)
2850 */
2851static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
2852{
2853 struct file *file;
2854 int err;
2855
2856 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
2857 if (err)
2858 return err;
2859 err = vfs_test_lock(file, lock);
2860 nfsd_close(file);
2861 return err;
2862}
2863
2864/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 * LOCKT operation
2866 */
Al Virob37ad282006-10-19 23:28:59 -07002867__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002868nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2869 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870{
2871 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 struct file_lock file_lock;
Marc Eshelfd85b812006-11-28 16:26:41 -05002873 int error;
Al Virob37ad282006-10-19 23:28:59 -07002874 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002876 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return nfserr_grace;
2878
2879 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
2880 return nfserr_inval;
2881
2882 lockt->lt_stateowner = NULL;
2883 nfs4_lock_state();
2884
2885 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002886 if (STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002889 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) {
Neil Brown849823c2005-09-13 01:25:36 -07002890 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 if (status == nfserr_symlink)
2892 status = nfserr_inval;
2893 goto out;
2894 }
2895
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002896 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 locks_init_lock(&file_lock);
2898 switch (lockt->lt_type) {
2899 case NFS4_READ_LT:
2900 case NFS4_READW_LT:
2901 file_lock.fl_type = F_RDLCK;
2902 break;
2903 case NFS4_WRITE_LT:
2904 case NFS4_WRITEW_LT:
2905 file_lock.fl_type = F_WRLCK;
2906 break;
2907 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002908 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 status = nfserr_inval;
2910 goto out;
2911 }
2912
2913 lockt->lt_stateowner = find_lockstateowner_str(inode,
2914 &lockt->lt_clientid, &lockt->lt_owner);
2915 if (lockt->lt_stateowner)
2916 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
2917 file_lock.fl_pid = current->tgid;
2918 file_lock.fl_flags = FL_POSIX;
2919
2920 file_lock.fl_start = lockt->lt_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02002921 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923 nfs4_transform_lock_offset(&file_lock);
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08002926 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05002927 if (error) {
2928 status = nfserrno(error);
2929 goto out;
2930 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002931 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002933 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 }
2935out:
2936 nfs4_unlock_state();
2937 return status;
2938}
2939
Al Virob37ad282006-10-19 23:28:59 -07002940__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002941nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002942 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943{
2944 struct nfs4_stateid *stp;
2945 struct file *filp = NULL;
2946 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07002947 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002948 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
2950 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2951 (long long) locku->lu_offset,
2952 (long long) locku->lu_length);
2953
2954 if (check_lock_length(locku->lu_offset, locku->lu_length))
2955 return nfserr_inval;
2956
2957 nfs4_lock_state();
2958
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002959 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 locku->lu_seqid,
2961 &locku->lu_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002962 LOCK_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 &locku->lu_stateowner, &stp, NULL)))
2964 goto out;
2965
2966 filp = stp->st_vfs_file;
2967 BUG_ON(!filp);
2968 locks_init_lock(&file_lock);
2969 file_lock.fl_type = F_UNLCK;
2970 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
2971 file_lock.fl_pid = current->tgid;
2972 file_lock.fl_file = filp;
2973 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002974 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 file_lock.fl_start = locku->lu_offset;
2976
Benny Halevy87df4de2008-12-15 19:42:03 +02002977 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 nfs4_transform_lock_offset(&file_lock);
2979
2980 /*
2981 * Try to unlock the file in the VFS.
2982 */
Marc Eshelfd85b812006-11-28 16:26:41 -05002983 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07002984 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05002985 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 goto out_nfserr;
2987 }
2988 /*
2989 * OK, unlock succeeded; the only thing left to do is update the stateid.
2990 */
2991 update_stateid(&stp->st_stateid);
2992 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
2993
2994out:
Neil Brownf2327d92005-09-13 01:25:37 -07002995 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 nfs4_get_stateowner(locku->lu_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002997 cstate->replay_owner = locku->lu_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 nfs4_unlock_state();
3000 return status;
3001
3002out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07003003 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 goto out;
3005}
3006
3007/*
3008 * returns
3009 * 1: locks held by lockowner
3010 * 0: no locks held by lockowner
3011 */
3012static int
3013check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
3014{
3015 struct file_lock **flpp;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08003016 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 int status = 0;
3018
3019 lock_kernel();
3020 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003021 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 status = 1;
3023 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 }
3026out:
3027 unlock_kernel();
3028 return status;
3029}
3030
Al Virob37ad282006-10-19 23:28:59 -07003031__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003032nfsd4_release_lockowner(struct svc_rqst *rqstp,
3033 struct nfsd4_compound_state *cstate,
3034 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035{
3036 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003037 struct nfs4_stateowner *sop;
3038 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003040 struct list_head matches;
3041 int i;
Al Virob37ad282006-10-19 23:28:59 -07003042 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
3044 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3045 clid->cl_boot, clid->cl_id);
3046
3047 /* XXX check for lease expiration */
3048
3049 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07003050 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
3053 nfs4_lock_state();
3054
NeilBrown3e9e3db2005-06-23 22:04:20 -07003055 status = nfserr_locks_held;
3056 /* XXX: we're doing a linear search through all the lockowners.
3057 * Yipes! For now we'll just hope clients aren't really using
3058 * release_lockowner much, but eventually we have to fix these
3059 * data structures. */
3060 INIT_LIST_HEAD(&matches);
3061 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3062 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003063 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07003064 continue;
3065 list_for_each_entry(stp, &sop->so_stateids,
3066 st_perstateowner) {
3067 if (check_for_locks(stp->st_vfs_file, sop))
3068 goto out;
3069 /* Note: so_perclient unused for lockowners,
3070 * so it's OK to fool with here. */
3071 list_add(&sop->so_perclient, &matches);
3072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07003074 }
3075 /* Clients probably won't expect us to return with some (but not all)
3076 * of the lockowner state released; so don't release any until all
3077 * have been checked. */
3078 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07003079 while (!list_empty(&matches)) {
3080 sop = list_entry(matches.next, struct nfs4_stateowner,
3081 so_perclient);
3082 /* unhash_stateowner deletes so_perclient only
3083 * for openowners. */
3084 list_del(&sop->so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003085 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 }
3087out:
3088 nfs4_unlock_state();
3089 return status;
3090}
3091
3092static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07003093alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094{
NeilBrowna55370a2005-06-23 22:03:52 -07003095 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096}
3097
NeilBrownc7b9a452005-06-23 22:04:30 -07003098int
3099nfs4_has_reclaimed_state(const char *name)
3100{
3101 unsigned int strhashval = clientstr_hashval(name);
3102 struct nfs4_client *clp;
3103
3104 clp = find_confirmed_client_by_str(name, strhashval);
3105 return clp ? 1 : 0;
3106}
3107
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108/*
3109 * failure => all reset bets are off, nfserr_no_grace...
3110 */
NeilBrown190e4fb2005-06-23 22:04:25 -07003111int
3112nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113{
3114 unsigned int strhashval;
3115 struct nfs4_client_reclaim *crp = NULL;
3116
NeilBrowna55370a2005-06-23 22:03:52 -07003117 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
3118 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (!crp)
3120 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07003121 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 INIT_LIST_HEAD(&crp->cr_strhash);
3123 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07003124 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 reclaim_str_hashtbl_size++;
3126 return 1;
3127}
3128
3129static void
3130nfs4_release_reclaim(void)
3131{
3132 struct nfs4_client_reclaim *crp = NULL;
3133 int i;
3134
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3136 while (!list_empty(&reclaim_str_hashtbl[i])) {
3137 crp = list_entry(reclaim_str_hashtbl[i].next,
3138 struct nfs4_client_reclaim, cr_strhash);
3139 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 kfree(crp);
3141 reclaim_str_hashtbl_size--;
3142 }
3143 }
3144 BUG_ON(reclaim_str_hashtbl_size);
3145}
3146
3147/*
3148 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07003149static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150nfs4_find_reclaim_client(clientid_t *clid)
3151{
3152 unsigned int strhashval;
3153 struct nfs4_client *clp;
3154 struct nfs4_client_reclaim *crp = NULL;
3155
3156
3157 /* find clientid in conf_id_hashtbl */
3158 clp = find_confirmed_client(clid);
3159 if (clp == NULL)
3160 return NULL;
3161
NeilBrowna55370a2005-06-23 22:03:52 -07003162 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3163 clp->cl_name.len, clp->cl_name.data,
3164 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07003167 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07003169 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 return crp;
3171 }
3172 }
3173 return NULL;
3174}
3175
3176/*
3177* Called from OPEN. Look for clientid in reclaim list.
3178*/
Al Virob37ad282006-10-19 23:28:59 -07003179__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180nfs4_check_open_reclaim(clientid_t *clid)
3181{
NeilBrowndfc83562005-06-23 22:03:16 -07003182 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183}
3184
NeilBrownac4d8ff22005-06-23 22:03:30 -07003185/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003187int
NeilBrownac4d8ff22005-06-23 22:03:30 -07003188nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003190 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003192 status = nfsd4_init_slabs();
3193 if (status)
3194 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3196 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
3197 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
3198 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
3199 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
3200 }
3201 for (i = 0; i < FILE_HASH_SIZE; i++) {
3202 INIT_LIST_HEAD(&file_hashtbl[i]);
3203 }
3204 for (i = 0; i < OWNER_HASH_SIZE; i++) {
3205 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
3206 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
3207 }
3208 for (i = 0; i < STATEID_HASH_SIZE; i++) {
3209 INIT_LIST_HEAD(&stateid_hashtbl[i]);
3210 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
3211 }
3212 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3213 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
3214 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
3215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 INIT_LIST_HEAD(&close_lru);
3218 INIT_LIST_HEAD(&client_lru);
3219 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07003220 for (i = 0; i < CLIENT_HASH_SIZE; i++)
3221 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
3222 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003223 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003224}
3225
NeilBrown190e4fb2005-06-23 22:04:25 -07003226static void
3227nfsd4_load_reboot_recovery_data(void)
3228{
3229 int status;
3230
NeilBrown0964a3d2005-06-23 22:04:32 -07003231 nfs4_lock_state();
3232 nfsd4_init_recdir(user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -07003233 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07003234 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07003235 if (status)
3236 printk("NFSD: Failure reading reboot recovery data\n");
3237}
3238
Marc Eshel9a8db972007-07-17 04:04:35 -07003239unsigned long
3240get_nfs4_grace_period(void)
3241{
3242 return max(user_lease_time, lease_time) * HZ;
3243}
3244
Meelap Shahc2f1a552007-07-17 04:04:39 -07003245/*
3246 * Since the lifetime of a delegation isn't limited to that of an open, a
3247 * client may quite reasonably hang on to a delegation as long as it has
3248 * the inode cached. This becomes an obvious problem the first time a
3249 * client's inode cache approaches the size of the server's total memory.
3250 *
3251 * For now we avoid this problem by imposing a hard limit on the number
3252 * of delegations, which varies according to the server's memory size.
3253 */
3254static void
3255set_max_delegations(void)
3256{
3257 /*
3258 * Allow at most 4 delegations per megabyte of RAM. Quick
3259 * estimates suggest that in the worst case (where every delegation
3260 * is for a different inode), a delegation could take about 1.5K,
3261 * giving a worst case usage of about 6% of memory.
3262 */
3263 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
3264}
3265
NeilBrownac4d8ff22005-06-23 22:03:30 -07003266/* initialization to perform when the nfsd service is started: */
3267
3268static void
3269__nfs4_state_start(void)
3270{
Marc Eshel9a8db972007-07-17 04:04:35 -07003271 unsigned long grace_time;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003274 grace_time = get_nfs4_grace_period();
NeilBrownd99a05a2005-06-23 22:03:21 -07003275 lease_time = user_lease_time;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003276 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07003277 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
3278 grace_time/HZ);
NeilBrown58da2822005-06-23 22:03:19 -07003279 laundry_wq = create_singlethread_workqueue("nfsd4");
Marc Eshel9a8db972007-07-17 04:04:35 -07003280 queue_delayed_work(laundry_wq, &laundromat_work, grace_time);
Meelap Shahc2f1a552007-07-17 04:04:39 -07003281 set_max_delegations();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282}
3283
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003284void
NeilBrown76a35502005-06-23 22:03:26 -07003285nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 if (nfs4_init)
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003288 return;
NeilBrown190e4fb2005-06-23 22:04:25 -07003289 nfsd4_load_reboot_recovery_data();
NeilBrown76a35502005-06-23 22:03:26 -07003290 __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 nfs4_init = 1;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003292 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293}
3294
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295time_t
3296nfs4_lease_time(void)
3297{
3298 return lease_time;
3299}
3300
3301static void
3302__nfs4_state_shutdown(void)
3303{
3304 int i;
3305 struct nfs4_client *clp = NULL;
3306 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 struct list_head *pos, *next, reaplist;
3308
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3310 while (!list_empty(&conf_id_hashtbl[i])) {
3311 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
3312 expire_client(clp);
3313 }
3314 while (!list_empty(&unconf_str_hashtbl[i])) {
3315 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
3316 expire_client(clp);
3317 }
3318 }
3319 INIT_LIST_HEAD(&reaplist);
3320 spin_lock(&recall_lock);
3321 list_for_each_safe(pos, next, &del_recall_lru) {
3322 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3323 list_move(&dp->dl_recall_lru, &reaplist);
3324 }
3325 spin_unlock(&recall_lock);
3326 list_for_each_safe(pos, next, &reaplist) {
3327 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3328 list_del_init(&dp->dl_recall_lru);
3329 unhash_delegation(dp);
3330 }
3331
NeilBrown190e4fb2005-06-23 22:04:25 -07003332 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 nfs4_init = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334}
3335
3336void
3337nfs4_state_shutdown(void)
3338{
NeilBrown5e8d5c22006-04-10 22:55:37 -07003339 cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work);
3340 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06003341 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 nfs4_lock_state();
3343 nfs4_release_reclaim();
3344 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 nfs4_unlock_state();
3346}
3347
Jeff Layton3dd98a32008-06-10 08:40:36 -04003348/*
3349 * user_recovery_dirname is protected by the nfsd_mutex since it's only
3350 * accessed when nfsd is starting.
3351 */
NeilBrown0964a3d2005-06-23 22:04:32 -07003352static void
3353nfs4_set_recdir(char *recdir)
3354{
NeilBrown0964a3d2005-06-23 22:04:32 -07003355 strcpy(user_recovery_dirname, recdir);
NeilBrown0964a3d2005-06-23 22:04:32 -07003356}
3357
3358/*
3359 * Change the NFSv4 recovery directory to recdir.
3360 */
3361int
3362nfs4_reset_recoverydir(char *recdir)
3363{
3364 int status;
Al Viroa63bb992008-08-02 01:03:36 -04003365 struct path path;
NeilBrown0964a3d2005-06-23 22:04:32 -07003366
Al Viroa63bb992008-08-02 01:03:36 -04003367 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
NeilBrown0964a3d2005-06-23 22:04:32 -07003368 if (status)
3369 return status;
3370 status = -ENOTDIR;
Al Viroa63bb992008-08-02 01:03:36 -04003371 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
NeilBrown0964a3d2005-06-23 22:04:32 -07003372 nfs4_set_recdir(recdir);
3373 status = 0;
3374 }
Al Viroa63bb992008-08-02 01:03:36 -04003375 path_put(&path);
NeilBrown0964a3d2005-06-23 22:04:32 -07003376 return status;
3377}
3378
Jeff Layton3dd98a32008-06-10 08:40:36 -04003379char *
3380nfs4_recoverydir(void)
3381{
3382 return user_recovery_dirname;
3383}
3384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385/*
3386 * Called when leasetime is changed.
3387 *
NeilBrownd99a05a2005-06-23 22:03:21 -07003388 * The only way the protocol gives us to handle on-the-fly lease changes is to
3389 * simulate a reboot. Instead of doing that, we just wait till the next time
3390 * we start to register any changes in lease time. If the administrator
3391 * really wants to change the lease time *now*, they can go ahead and bring
3392 * nfsd down and then back up again after changing the lease time.
Jeff Layton3dd98a32008-06-10 08:40:36 -04003393 *
3394 * user_lease_time is protected by nfsd_mutex since it's only really accessed
3395 * when nfsd is starting
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 */
3397void
3398nfs4_reset_lease(time_t leasetime)
3399{
NeilBrownd99a05a2005-06-23 22:03:21 -07003400 user_lease_time = leasetime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401}