blob: 070e9e5c0452da816dfcaa52c04ad038e377dd83 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385static inline void
386renew_client(struct nfs4_client *clp)
387{
388 /*
389 * Move client to the end to the LRU list.
390 */
391 dprintk("renewing client (clientid %08x/%08x)\n",
392 clp->cl_clientid.cl_boot,
393 clp->cl_clientid.cl_id);
394 list_move_tail(&clp->cl_lru, &client_lru);
395 clp->cl_time = get_seconds();
396}
397
398/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
399static int
400STALE_CLIENTID(clientid_t *clid)
401{
402 if (clid->cl_boot == boot_time)
403 return 0;
404 dprintk("NFSD stale clientid (%08x/%08x)\n",
405 clid->cl_boot, clid->cl_id);
406 return 1;
407}
408
409/*
410 * XXX Should we use a slab cache ?
411 * This type of memory management is somewhat inefficient, but we use it
412 * anyway since SETCLIENTID is not a common operation.
413 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500414static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 struct nfs4_client *clp;
417
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500418 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
419 if (clp == NULL)
420 return NULL;
421 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
422 if (clp->cl_name.data == NULL) {
423 kfree(clp);
424 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500426 memcpy(clp->cl_name.data, name.data, name.len);
427 clp->cl_name.len = name.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return clp;
429}
430
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400431static void
432shutdown_callback_client(struct nfs4_client *clp)
433{
434 struct rpc_clnt *clnt = clp->cl_callback.cb_client;
435
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400436 if (clnt) {
J. Bruce Fields404ec112007-11-23 22:26:18 -0500437 /*
438 * Callback threads take a reference on the client, so there
439 * should be no outstanding callbacks at this point.
440 */
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400441 clp->cl_callback.cb_client = NULL;
442 rpc_shutdown_client(clnt);
443 }
444}
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446static inline void
447free_client(struct nfs4_client *clp)
448{
J. Bruce Fields1b1a9b32007-09-12 08:43:59 -0400449 shutdown_callback_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (clp->cl_cred.cr_group_info)
451 put_group_info(clp->cl_cred.cr_group_info);
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500452 kfree(clp->cl_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 kfree(clp->cl_name.data);
454 kfree(clp);
455}
456
457void
458put_nfs4_client(struct nfs4_client *clp)
459{
460 if (atomic_dec_and_test(&clp->cl_count))
461 free_client(clp);
462}
463
464static void
465expire_client(struct nfs4_client *clp)
466{
467 struct nfs4_stateowner *sop;
468 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 struct list_head reaplist;
470
471 dprintk("NFSD: expire_client cl_count %d\n",
472 atomic_read(&clp->cl_count));
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 INIT_LIST_HEAD(&reaplist);
475 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700476 while (!list_empty(&clp->cl_delegations)) {
477 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
479 dp->dl_flock);
NeilBrownea1da632005-06-23 22:04:17 -0700480 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 list_move(&dp->dl_recall_lru, &reaplist);
482 }
483 spin_unlock(&recall_lock);
484 while (!list_empty(&reaplist)) {
485 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
486 list_del_init(&dp->dl_recall_lru);
487 unhash_delegation(dp);
488 }
489 list_del(&clp->cl_idhash);
490 list_del(&clp->cl_strhash);
491 list_del(&clp->cl_lru);
NeilBrownea1da632005-06-23 22:04:17 -0700492 while (!list_empty(&clp->cl_openowners)) {
493 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500494 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496 put_nfs4_client(clp);
497}
498
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500499static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir)
500{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct nfs4_client *clp;
502
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500503 clp = alloc_client(name);
504 if (clp == NULL)
505 return NULL;
NeilBrowna55370a2005-06-23 22:03:52 -0700506 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 atomic_set(&clp->cl_count, 1);
508 atomic_set(&clp->cl_callback.cb_set, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 INIT_LIST_HEAD(&clp->cl_idhash);
510 INIT_LIST_HEAD(&clp->cl_strhash);
NeilBrownea1da632005-06-23 22:04:17 -0700511 INIT_LIST_HEAD(&clp->cl_openowners);
512 INIT_LIST_HEAD(&clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 INIT_LIST_HEAD(&clp->cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return clp;
515}
516
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500517static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
518{
519 memcpy(target->cl_verifier.data, source->data,
520 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500523static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
524{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
526 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
527}
528
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500529static void copy_cred(struct svc_cred *target, struct svc_cred *source)
530{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 target->cr_uid = source->cr_uid;
532 target->cr_gid = source->cr_gid;
533 target->cr_group_info = source->cr_group_info;
534 get_group_info(target->cr_group_info);
535}
536
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500537static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400538{
NeilBrowna55370a2005-06-23 22:03:52 -0700539 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400543same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
544{
545 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400549same_clid(clientid_t *cl1, clientid_t *cl2)
550{
551 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554/* XXX what about NGROUP */
555static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400556same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
557{
558 return cr1->cr_uid == cr2->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
J. Bruce Fields5ec7b462007-11-21 21:58:56 -0500561static void gen_clid(struct nfs4_client *clp)
562{
563 static u32 current_clientid = 1;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 clp->cl_clientid.cl_boot = boot_time;
566 clp->cl_clientid.cl_id = current_clientid++;
567}
568
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500569static void gen_confirm(struct nfs4_client *clp)
570{
571 static u32 i;
572 u32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 p = (u32 *)clp->cl_confirm.data;
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -0500575 *p++ = get_seconds();
576 *p++ = i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500579static int check_name(struct xdr_netobj name)
580{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (name.len == 0)
582 return 0;
583 if (name.len > NFS4_OPAQUE_LIMIT) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400584 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return 0;
586 }
587 return 1;
588}
589
NeilBrownfd39ca92005-06-23 22:04:03 -0700590static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
592{
593 unsigned int idhashval;
594
595 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
596 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
597 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
598 list_add_tail(&clp->cl_lru, &client_lru);
599 clp->cl_time = get_seconds();
600}
601
NeilBrownfd39ca92005-06-23 22:04:03 -0700602static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603move_to_confirmed(struct nfs4_client *clp)
604{
605 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
606 unsigned int strhashval;
607
608 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
609 list_del_init(&clp->cl_strhash);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700610 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -0700611 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
613 renew_client(clp);
614}
615
616static struct nfs4_client *
617find_confirmed_client(clientid_t *clid)
618{
619 struct nfs4_client *clp;
620 unsigned int idhashval = clientid_hashval(clid->cl_id);
621
622 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400623 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return clp;
625 }
626 return NULL;
627}
628
629static struct nfs4_client *
630find_unconfirmed_client(clientid_t *clid)
631{
632 struct nfs4_client *clp;
633 unsigned int idhashval = clientid_hashval(clid->cl_id);
634
635 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400636 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return clp;
638 }
639 return NULL;
640}
641
NeilBrown28ce6052005-06-23 22:03:56 -0700642static struct nfs4_client *
643find_confirmed_client_by_str(const char *dname, unsigned int hashval)
644{
645 struct nfs4_client *clp;
646
647 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
648 if (same_name(clp->cl_recdir, dname))
649 return clp;
650 }
651 return NULL;
652}
653
654static struct nfs4_client *
655find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
656{
657 struct nfs4_client *clp;
658
659 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
660 if (same_name(clp->cl_recdir, dname))
661 return clp;
662 }
663 return NULL;
664}
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666/* a helper function for parse_callback */
667static int
668parse_octet(unsigned int *lenp, char **addrp)
669{
670 unsigned int len = *lenp;
671 char *p = *addrp;
672 int n = -1;
673 char c;
674
675 for (;;) {
676 if (!len)
677 break;
678 len--;
679 c = *p++;
680 if (c == '.')
681 break;
682 if ((c < '0') || (c > '9')) {
683 n = -1;
684 break;
685 }
686 if (n < 0)
687 n = 0;
688 n = (n * 10) + (c - '0');
689 if (n > 255) {
690 n = -1;
691 break;
692 }
693 }
694 *lenp = len;
695 *addrp = p;
696 return n;
697}
698
699/* parse and set the setclientid ipv4 callback address */
NeilBrownfd39ca92005-06-23 22:04:03 -0700700static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp)
702{
703 int temp = 0;
704 u32 cbaddr = 0;
705 u16 cbport = 0;
706 u32 addrlen = addr_len;
707 char *addr = addr_val;
708 int i, shift;
709
710 /* ipaddress */
711 shift = 24;
712 for(i = 4; i > 0 ; i--) {
713 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
714 return 0;
715 }
716 cbaddr |= (temp << shift);
717 if (shift > 0)
718 shift -= 8;
719 }
720 *cbaddrp = cbaddr;
721
722 /* port */
723 shift = 8;
724 for(i = 2; i > 0 ; i--) {
725 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
726 return 0;
727 }
728 cbport |= (temp << shift);
729 if (shift > 0)
730 shift -= 8;
731 }
732 *cbportp = cbport;
733 return 1;
734}
735
NeilBrownfd39ca92005-06-23 22:04:03 -0700736static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se)
738{
739 struct nfs4_callback *cb = &clp->cl_callback;
740
741 /* Currently, we only support tcp for the callback channel */
742 if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3))
743 goto out_err;
744
745 if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val,
746 &cb->cb_addr, &cb->cb_port)))
747 goto out_err;
748 cb->cb_prog = se->se_callback_prog;
749 cb->cb_ident = se->se_callback_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return;
751out_err:
Neil Brown849823c2005-09-13 01:25:36 -0700752 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 "will not receive delegations\n",
754 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return;
757}
758
Al Virob37ad282006-10-19 23:28:59 -0700759__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800760nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
761 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Chuck Lever27459f02007-02-12 00:53:34 -0800763 struct sockaddr_in *sin = svc_addr_in(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct xdr_netobj clname = {
765 .len = setclid->se_namelen,
766 .data = setclid->se_name,
767 };
768 nfs4_verifier clverifier = setclid->se_verf;
769 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -0700770 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -0700771 __be32 status;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500772 char *princ;
NeilBrowna55370a2005-06-23 22:03:52 -0700773 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -0700776 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
NeilBrowna55370a2005-06-23 22:03:52 -0700778 status = nfs4_make_rec_clidname(dname, &clname);
779 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -0700780 return status;
NeilBrowna55370a2005-06-23 22:03:52 -0700781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /*
783 * XXX The Duplicate Request Cache (DRC) has been checked (??)
784 * We get here on a DRC miss.
785 */
786
NeilBrowna55370a2005-06-23 22:03:52 -0700787 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 nfs4_lock_state();
NeilBrown28ce6052005-06-23 22:03:56 -0700790 conf = find_confirmed_client_by_str(dname, strhashval);
791 if (conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500792 /* RFC 3530 14.2.33 CASE 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 status = nfserr_clid_inuse;
J. Bruce Fields026722c2009-03-18 15:06:26 -0400794 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
795 dprintk("NFSD: setclientid: string in use by client"
796 " at %pI4\n", &conf->cl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 goto out;
798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500800 /*
801 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
802 * has a description of SETCLIENTID request processing consisting
803 * of 5 bullet points, labeled as CASE0 - CASE4 below.
804 */
NeilBrown28ce6052005-06-23 22:03:56 -0700805 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 status = nfserr_resource;
807 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500808 /*
809 * RFC 3530 14.2.33 CASE 4:
810 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 */
812 if (unconf)
813 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700814 new = create_client(clname, dname);
815 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400818 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500820 * RFC 3530 14.2.33 CASE 1:
821 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 */
NeilBrown31f4a6c2005-06-23 22:04:06 -0700823 if (unconf) {
824 /* Note this is removing unconfirmed {*x***},
825 * which is stronger than RFC recommended {vxc**}.
826 * This has the advantage that there is at most
827 * one {*x***} in either list at any time.
828 */
829 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
NeilBrowna55370a2005-06-23 22:03:52 -0700831 new = create_client(clname, dname);
832 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 } else if (!unconf) {
836 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500837 * RFC 3530 14.2.33 CASE 2:
838 * probable client reboot; state will be removed if
839 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 */
NeilBrowna55370a2005-06-23 22:03:52 -0700841 new = create_client(clname, dname);
842 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 gen_clid(new);
J. Bruce Fields49ba8782007-11-19 19:09:50 -0500845 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500846 /*
847 * RFC 3530 14.2.33 CASE 3:
848 * probable client reboot; state will be removed if
849 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 */
851 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700852 new = create_client(clname, dname);
853 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -0400857 copy_verf(new, &clverifier);
858 new->cl_addr = sin->sin_addr.s_addr;
Olga Kornievskaia61054b12008-12-23 16:19:00 -0500859 new->cl_flavor = rqstp->rq_flavor;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500860 princ = svc_gss_principal(rqstp);
861 if (princ) {
862 new->cl_principal = kstrdup(princ, GFP_KERNEL);
863 if (new->cl_principal == NULL) {
864 free_client(new);
865 goto out;
866 }
867 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -0400868 copy_cred(&new->cl_cred, &rqstp->rq_cred);
869 gen_confirm(new);
870 gen_callback(new, setclid);
871 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
873 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
874 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
875 status = nfs_ok;
876out:
877 nfs4_unlock_state();
878 return status;
879}
880
881
882/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500883 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
884 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
885 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 */
Al Virob37ad282006-10-19 23:28:59 -0700887__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800888nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
889 struct nfsd4_compound_state *cstate,
890 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Chuck Lever27459f02007-02-12 00:53:34 -0800892 struct sockaddr_in *sin = svc_addr_in(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -0700893 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
895 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -0700896 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 if (STALE_CLIENTID(clid))
899 return nfserr_stale_clientid;
900 /*
901 * XXX The Duplicate Request Cache (DRC) has been checked (??)
902 * We get here on a DRC miss.
903 */
904
905 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -0700906
907 conf = find_confirmed_client(clid);
908 unconf = find_unconfirmed_client(clid);
909
910 status = nfserr_clid_inuse;
Chuck Lever27459f02007-02-12 00:53:34 -0800911 if (conf && conf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -0700912 goto out;
Chuck Lever27459f02007-02-12 00:53:34 -0800913 if (unconf && unconf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -0700914 goto out;
915
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500916 /*
917 * section 14.2.34 of RFC 3530 has a description of
918 * SETCLIENTID_CONFIRM request processing consisting
919 * of 4 bullet points, labeled as CASE1 - CASE4 below.
920 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -0500921 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500922 /*
923 * RFC 3530 14.2.34 CASE 1:
924 * callback update
925 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400926 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 status = nfserr_clid_inuse;
928 else {
NeilBrown1a69c172005-06-23 22:04:08 -0700929 /* XXX: We just turn off callbacks until we can handle
930 * change request correctly. */
NeilBrowncb36d632005-06-23 22:04:23 -0700931 atomic_set(&conf->cl_callback.cb_set, 0);
NeilBrown21ab45a2005-06-23 22:04:14 -0700932 gen_confirm(conf);
NeilBrown46309022005-07-07 17:59:10 -0700933 nfsd4_remove_clid_dir(unconf);
NeilBrown1a69c172005-06-23 22:04:08 -0700934 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -0500938 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500939 /*
940 * RFC 3530 14.2.34 CASE 2:
941 * probable retransmitted request; play it safe and
942 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -0700943 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400944 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -0700946 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -0700948 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400949 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500950 /*
951 * RFC 3530 14.2.34 CASE 3:
952 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -0700953 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400954 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 status = nfserr_clid_inuse;
956 } else {
NeilBrown1a69c172005-06-23 22:04:08 -0700957 unsigned int hash =
958 clientstr_hashval(unconf->cl_recdir);
959 conf = find_confirmed_client_by_str(unconf->cl_recdir,
960 hash);
961 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -0700962 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700963 expire_client(conf);
964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -0700966 conf = unconf;
J. Bruce Fields46f8a642007-11-22 13:54:18 -0500967 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700968 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400970 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
971 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -0700972 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500973 /*
974 * RFC 3530 14.2.34 CASE 4:
975 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -0700976 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -0700978 } else {
NeilBrown08e89872005-06-23 22:04:11 -0700979 /* check that we have hit one of the cases...*/
980 status = nfserr_clid_inuse;
981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 nfs4_unlock_state();
984 return status;
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/* OPEN Share state helper functions */
988static inline struct nfs4_file *
989alloc_init_file(struct inode *ino)
990{
991 struct nfs4_file *fp;
992 unsigned int hashval = file_hashval(ino);
993
NeilBrowne60d4392005-06-23 22:03:01 -0700994 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
995 if (fp) {
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800996 atomic_set(&fp->fi_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -0700998 INIT_LIST_HEAD(&fp->fi_stateids);
999 INIT_LIST_HEAD(&fp->fi_delegations);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001000 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001002 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 fp->fi_inode = igrab(ino);
1004 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07001005 fp->fi_had_conflict = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return fp;
1007 }
1008 return NULL;
1009}
1010
1011static void
Christoph Lametere18b8902006-12-06 20:33:20 -08001012nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07001013{
NeilBrowne60d4392005-06-23 22:03:01 -07001014 if (*slab == NULL)
1015 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001016 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001017 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07001018}
1019
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001020void
NeilBrowne60d4392005-06-23 22:03:01 -07001021nfsd4_free_slabs(void)
1022{
1023 nfsd4_free_slab(&stateowner_slab);
1024 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07001025 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001026 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029static int
1030nfsd4_init_slabs(void)
1031{
1032 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09001033 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001034 if (stateowner_slab == NULL)
1035 goto out_nomem;
1036 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09001037 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001038 if (file_slab == NULL)
1039 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07001040 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09001041 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07001042 if (stateid_slab == NULL)
1043 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07001044 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09001045 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001046 if (deleg_slab == NULL)
1047 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07001049out_nomem:
1050 nfsd4_free_slabs();
1051 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1052 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
1055void
1056nfs4_free_stateowner(struct kref *kref)
1057{
1058 struct nfs4_stateowner *sop =
1059 container_of(kref, struct nfs4_stateowner, so_ref);
1060 kfree(sop->so_owner.data);
1061 kmem_cache_free(stateowner_slab, sop);
1062}
1063
1064static inline struct nfs4_stateowner *
1065alloc_stateowner(struct xdr_netobj *owner)
1066{
1067 struct nfs4_stateowner *sop;
1068
1069 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1070 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1071 memcpy(sop->so_owner.data, owner->data, owner->len);
1072 sop->so_owner.len = owner->len;
1073 kref_init(&sop->so_ref);
1074 return sop;
1075 }
1076 kmem_cache_free(stateowner_slab, sop);
1077 }
1078 return NULL;
1079}
1080
1081static struct nfs4_stateowner *
1082alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1083 struct nfs4_stateowner *sop;
1084 struct nfs4_replay *rp;
1085 unsigned int idhashval;
1086
1087 if (!(sop = alloc_stateowner(&open->op_owner)))
1088 return NULL;
1089 idhashval = ownerid_hashval(current_ownerid);
1090 INIT_LIST_HEAD(&sop->so_idhash);
1091 INIT_LIST_HEAD(&sop->so_strhash);
1092 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07001093 INIT_LIST_HEAD(&sop->so_stateids);
1094 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 INIT_LIST_HEAD(&sop->so_close_lru);
1096 sop->so_time = 0;
1097 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1098 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001099 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 sop->so_is_open_owner = 1;
1101 sop->so_id = current_ownerid++;
1102 sop->so_client = clp;
1103 sop->so_seqid = open->op_seqid;
1104 sop->so_confirmed = 0;
1105 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08001106 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 rp->rp_buflen = 0;
1108 rp->rp_buf = rp->rp_ibuf;
1109 return sop;
1110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112static inline void
1113init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1114 struct nfs4_stateowner *sop = open->op_stateowner;
1115 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1116
1117 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07001118 INIT_LIST_HEAD(&stp->st_perstateowner);
1119 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 INIT_LIST_HEAD(&stp->st_perfile);
1121 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001122 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07001123 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07001125 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 stp->st_file = fp;
1127 stp->st_stateid.si_boot = boot_time;
1128 stp->st_stateid.si_stateownerid = sop->so_id;
1129 stp->st_stateid.si_fileid = fp->fi_id;
1130 stp->st_stateid.si_generation = 0;
1131 stp->st_access_bmap = 0;
1132 stp->st_deny_bmap = 0;
1133 __set_bit(open->op_share_access, &stp->st_access_bmap);
1134 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07001135 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
1138static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139move_to_close_lru(struct nfs4_stateowner *sop)
1140{
1141 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1142
NeilBrown358dd552006-04-10 22:55:42 -07001143 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 sop->so_time = get_seconds();
1145}
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001148same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
1149 clientid_t *clid)
1150{
1151 return (sop->so_owner.len == owner->len) &&
1152 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
1153 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
1156static struct nfs4_stateowner *
1157find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1158{
1159 struct nfs4_stateowner *so = NULL;
1160
1161 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001162 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 return so;
1164 }
1165 return NULL;
1166}
1167
1168/* search file_hashtbl[] for file */
1169static struct nfs4_file *
1170find_file(struct inode *ino)
1171{
1172 unsigned int hashval = file_hashval(ino);
1173 struct nfs4_file *fp;
1174
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001175 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07001177 if (fp->fi_inode == ino) {
1178 get_nfs4_file(fp);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001179 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07001181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001183 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return NULL;
1185}
1186
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001187static inline int access_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001188{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001189 if (x < NFS4_SHARE_ACCESS_READ)
1190 return 0;
1191 if (x > NFS4_SHARE_ACCESS_BOTH)
1192 return 0;
1193 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001194}
1195
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001196static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001197{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001198 /* Note: unlike access bits, deny bits may be zero. */
1199 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001200}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04001202/*
1203 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1204 * st_{access,deny}_bmap field of the stateid, in order to track not
1205 * only what share bits are currently in force, but also what
1206 * combinations of share bits previous opens have used. This allows us
1207 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1208 * return an error if the client attempt to downgrade to a combination
1209 * of share bits not explicable by closing some of its previous opens.
1210 *
1211 * XXX: This enforcement is actually incomplete, since we don't keep
1212 * track of access/deny bit combinations; so, e.g., we allow:
1213 *
1214 * OPEN allow read, deny write
1215 * OPEN allow both, deny none
1216 * DOWNGRADE allow read, deny none
1217 *
1218 * which we should reject.
1219 */
NeilBrownfd39ca92005-06-23 22:04:03 -07001220static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221set_access(unsigned int *access, unsigned long bmap) {
1222 int i;
1223
1224 *access = 0;
1225 for (i = 1; i < 4; i++) {
1226 if (test_bit(i, &bmap))
1227 *access |= i;
1228 }
1229}
1230
NeilBrownfd39ca92005-06-23 22:04:03 -07001231static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232set_deny(unsigned int *deny, unsigned long bmap) {
1233 int i;
1234
1235 *deny = 0;
1236 for (i = 0; i < 4; i++) {
1237 if (test_bit(i, &bmap))
1238 *deny |= i ;
1239 }
1240}
1241
1242static int
1243test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
1244 unsigned int access, deny;
1245
1246 set_access(&access, stp->st_access_bmap);
1247 set_deny(&deny, stp->st_deny_bmap);
1248 if ((access & open->op_share_deny) || (deny & open->op_share_access))
1249 return 0;
1250 return 1;
1251}
1252
1253/*
1254 * Called to check deny when READ with all zero stateid or
1255 * WRITE with all zero or all one stateid
1256 */
Al Virob37ad282006-10-19 23:28:59 -07001257static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
1259{
1260 struct inode *ino = current_fh->fh_dentry->d_inode;
1261 struct nfs4_file *fp;
1262 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07001263 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 dprintk("NFSD: nfs4_share_conflict\n");
1266
1267 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07001268 if (!fp)
1269 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07001270 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07001272 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
1273 if (test_bit(deny_type, &stp->st_deny_bmap) ||
1274 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
1275 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
NeilBrown13cd2182005-06-23 22:03:10 -07001277 ret = nfs_ok;
1278out:
1279 put_nfs4_file(fp);
1280 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
1283static inline void
1284nfs4_file_downgrade(struct file *filp, unsigned int share_access)
1285{
1286 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
Dave Hansenaceaf782008-02-15 14:37:31 -08001287 drop_file_write_access(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
1289 }
1290}
1291
1292/*
1293 * Recall a delegation
1294 */
1295static int
1296do_recall(void *__dp)
1297{
1298 struct nfs4_delegation *dp = __dp;
1299
Meelap Shah47f99402007-07-17 04:04:40 -07001300 dp->dl_file->fi_had_conflict = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 nfsd4_cb_recall(dp);
1302 return 0;
1303}
1304
1305/*
1306 * Spawn a thread to perform a recall on the delegation represented
1307 * by the lease (file_lock)
1308 *
1309 * Called from break_lease() with lock_kernel() held.
1310 * Note: we assume break_lease will only call this *once* for any given
1311 * lease.
1312 */
1313static
1314void nfsd_break_deleg_cb(struct file_lock *fl)
1315{
1316 struct nfs4_delegation *dp= (struct nfs4_delegation *)fl->fl_owner;
1317 struct task_struct *t;
1318
1319 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
1320 if (!dp)
1321 return;
1322
1323 /* We're assuming the state code never drops its reference
1324 * without first removing the lease. Since we're in this lease
1325 * callback (and since the lease code is serialized by the kernel
1326 * lock) we know the server hasn't removed the lease yet, we know
1327 * it's safe to take a reference: */
1328 atomic_inc(&dp->dl_count);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04001329 atomic_inc(&dp->dl_client->cl_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 spin_lock(&recall_lock);
1332 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
1333 spin_unlock(&recall_lock);
1334
1335 /* only place dl_time is set. protected by lock_kernel*/
1336 dp->dl_time = get_seconds();
1337
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04001338 /*
1339 * We don't want the locks code to timeout the lease for us;
1340 * we'll remove it ourself if the delegation isn't returned
1341 * in time.
1342 */
1343 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall");
1346 if (IS_ERR(t)) {
1347 struct nfs4_client *clp = dp->dl_client;
1348
1349 printk(KERN_INFO "NFSD: Callback thread failed for "
1350 "for client (clientid %08x/%08x)\n",
1351 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04001352 put_nfs4_client(dp->dl_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 nfs4_put_delegation(dp);
1354 }
1355}
1356
1357/*
1358 * The file_lock is being reapd.
1359 *
1360 * Called by locks_free_lock() with lock_kernel() held.
1361 */
1362static
1363void nfsd_release_deleg_cb(struct file_lock *fl)
1364{
1365 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
1366
1367 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
1368
1369 if (!(fl->fl_flags & FL_LEASE) || !dp)
1370 return;
1371 dp->dl_flock = NULL;
1372}
1373
1374/*
1375 * Set the delegation file_lock back pointer.
1376 *
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001377 * Called from setlease() with lock_kernel() held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 */
1379static
1380void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
1381{
1382 struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
1383
1384 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
1385 if (!dp)
1386 return;
1387 dp->dl_flock = new;
1388}
1389
1390/*
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001391 * Called from setlease() with lock_kernel() held
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 */
1393static
1394int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
1395{
1396 struct nfs4_delegation *onlistd =
1397 (struct nfs4_delegation *)onlist->fl_owner;
1398 struct nfs4_delegation *tryd =
1399 (struct nfs4_delegation *)try->fl_owner;
1400
1401 if (onlist->fl_lmops != try->fl_lmops)
1402 return 0;
1403
1404 return onlistd->dl_client == tryd->dl_client;
1405}
1406
1407
1408static
1409int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
1410{
1411 if (arg & F_UNLCK)
1412 return lease_modify(onlist, arg);
1413 else
1414 return -EAGAIN;
1415}
1416
NeilBrownfd39ca92005-06-23 22:04:03 -07001417static struct lock_manager_operations nfsd_lease_mng_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 .fl_break = nfsd_break_deleg_cb,
1419 .fl_release_private = nfsd_release_deleg_cb,
1420 .fl_copy_lock = nfsd_copy_lock_deleg_cb,
1421 .fl_mylease = nfsd_same_client_deleg_cb,
1422 .fl_change = nfsd_change_deleg_cb,
1423};
1424
1425
Al Virob37ad282006-10-19 23:28:59 -07001426__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427nfsd4_process_open1(struct nfsd4_open *open)
1428{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 clientid_t *clientid = &open->op_clientid;
1430 struct nfs4_client *clp = NULL;
1431 unsigned int strhashval;
1432 struct nfs4_stateowner *sop = NULL;
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001435 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 if (STALE_CLIENTID(&open->op_clientid))
1438 return nfserr_stale_clientid;
1439
1440 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
1441 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001442 open->op_stateowner = sop;
1443 if (!sop) {
1444 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 clp = find_confirmed_client(clientid);
1446 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001447 return nfserr_expired;
1448 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001450 if (!sop->so_confirmed) {
1451 /* Replace unconfirmed owners without checking for replay. */
1452 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001453 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001454 open->op_stateowner = NULL;
1455 goto renew;
1456 }
1457 if (open->op_seqid == sop->so_seqid - 1) {
1458 if (sop->so_replay.rp_buflen)
Al Viroa90b0612006-10-19 23:29:03 -07001459 return nfserr_replay_me;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001460 /* The original OPEN failed so spectacularly
1461 * that we don't even have replay data saved!
1462 * Therefore, we have no choice but to continue
1463 * processing this OPEN; presumably, we'll
1464 * fail again for the same reason.
1465 */
1466 dprintk("nfsd4_process_open1: replay with no replay cache\n");
1467 goto renew;
1468 }
1469 if (open->op_seqid != sop->so_seqid)
1470 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001472 if (open->op_stateowner == NULL) {
1473 sop = alloc_init_open_stateowner(strhashval, clp, open);
1474 if (sop == NULL)
1475 return nfserr_resource;
1476 open->op_stateowner = sop;
1477 }
1478 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001480 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
1482
Al Virob37ad282006-10-19 23:28:59 -07001483static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07001484nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
1485{
1486 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
1487 return nfserr_openmode;
1488 else
1489 return nfs_ok;
1490}
1491
NeilBrown52f4fb42005-06-23 22:02:49 -07001492static struct nfs4_delegation *
1493find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
1494{
1495 struct nfs4_delegation *dp;
1496
NeilBrownea1da632005-06-23 22:04:17 -07001497 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) {
NeilBrown52f4fb42005-06-23 22:02:49 -07001498 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
1499 return dp;
1500 }
1501 return NULL;
1502}
1503
Al Virob37ad282006-10-19 23:28:59 -07001504static __be32
NeilBrown567d9822005-06-23 22:02:53 -07001505nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
1506 struct nfs4_delegation **dp)
1507{
1508 int flags;
Al Virob37ad282006-10-19 23:28:59 -07001509 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07001510
1511 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
1512 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07001513 goto out;
NeilBrown567d9822005-06-23 22:02:53 -07001514 flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
1515 RD_STATE : WR_STATE;
1516 status = nfs4_check_delegmode(*dp, flags);
1517 if (status)
1518 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001519out:
1520 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
1521 return nfs_ok;
1522 if (status)
1523 return status;
1524 open->op_stateowner->so_confirmed = 1;
1525 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07001526}
1527
Al Virob37ad282006-10-19 23:28:59 -07001528static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
1530{
1531 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07001532 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 struct nfs4_stateowner *sop = open->op_stateowner;
1534
NeilBrown8beefa22005-06-23 22:03:08 -07001535 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 /* ignore lock owners */
1537 if (local->st_stateowner->so_is_open_owner == 0)
1538 continue;
1539 /* remember if we have seen this open owner */
1540 if (local->st_stateowner == sop)
1541 *stpp = local;
1542 /* check for conflicting share reservations */
1543 if (!test_share(local, open))
1544 goto out;
1545 }
1546 status = 0;
1547out:
1548 return status;
1549}
1550
NeilBrown5ac049a2005-06-23 22:03:03 -07001551static inline struct nfs4_stateid *
1552nfs4_alloc_stateid(void)
1553{
1554 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
1555}
1556
Al Virob37ad282006-10-19 23:28:59 -07001557static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
NeilBrown567d9822005-06-23 22:02:53 -07001559 struct nfs4_delegation *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 struct svc_fh *cur_fh, int flags)
1561{
1562 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
NeilBrown5ac049a2005-06-23 22:03:03 -07001564 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 if (stp == NULL)
1566 return nfserr_resource;
1567
NeilBrown567d9822005-06-23 22:02:53 -07001568 if (dp) {
1569 get_file(dp->dl_vfs_file);
1570 stp->st_vfs_file = dp->dl_vfs_file;
1571 } else {
Al Virob37ad282006-10-19 23:28:59 -07001572 __be32 status;
NeilBrown567d9822005-06-23 22:02:53 -07001573 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
1574 &stp->st_vfs_file);
1575 if (status) {
1576 if (status == nfserr_dropit)
1577 status = nfserr_jukebox;
NeilBrown5ac049a2005-06-23 22:03:03 -07001578 kmem_cache_free(stateid_slab, stp);
NeilBrown567d9822005-06-23 22:02:53 -07001579 return status;
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 *stpp = stp;
1583 return 0;
1584}
1585
Al Virob37ad282006-10-19 23:28:59 -07001586static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
1588 struct nfsd4_open *open)
1589{
1590 struct iattr iattr = {
1591 .ia_valid = ATTR_SIZE,
1592 .ia_size = 0,
1593 };
1594 if (!open->op_truncate)
1595 return 0;
1596 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08001597 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
1599}
1600
Al Virob37ad282006-10-19 23:28:59 -07001601static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
1603{
1604 struct file *filp = stp->st_vfs_file;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001605 struct inode *inode = filp->f_path.dentry->d_inode;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001606 unsigned int share_access, new_writer;
Al Virob37ad282006-10-19 23:28:59 -07001607 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 set_access(&share_access, stp->st_access_bmap);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001610 new_writer = (~share_access) & open->op_share_access
1611 & NFS4_SHARE_ACCESS_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001613 if (new_writer) {
Al Virob37ad282006-10-19 23:28:59 -07001614 int err = get_write_access(inode);
1615 if (err)
1616 return nfserrno(err);
Benny Halevye518f052008-07-04 15:38:41 +03001617 err = mnt_want_write(cur_fh->fh_export->ex_path.mnt);
1618 if (err)
1619 return nfserrno(err);
1620 file_take_write(filp);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 status = nfsd4_truncate(rqstp, cur_fh, open);
1623 if (status) {
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001624 if (new_writer)
1625 put_write_access(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 return status;
1627 }
1628 /* remember the open */
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001629 filp->f_mode |= open->op_share_access;
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04001630 __set_bit(open->op_share_access, &stp->st_access_bmap);
1631 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 return nfs_ok;
1634}
1635
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637static void
NeilBrown37515172005-07-07 17:59:16 -07001638nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
NeilBrown37515172005-07-07 17:59:16 -07001640 open->op_stateowner->so_confirmed = 1;
1641 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644/*
1645 * Attempt to hand out a delegation.
1646 */
1647static void
1648nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
1649{
1650 struct nfs4_delegation *dp;
1651 struct nfs4_stateowner *sop = stp->st_stateowner;
1652 struct nfs4_callback *cb = &sop->so_client->cl_callback;
1653 struct file_lock fl, *flp = &fl;
1654 int status, flag = 0;
1655
1656 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07001657 open->op_recall = 0;
1658 switch (open->op_claim_type) {
1659 case NFS4_OPEN_CLAIM_PREVIOUS:
1660 if (!atomic_read(&cb->cb_set))
1661 open->op_recall = 1;
1662 flag = open->op_delegate_type;
1663 if (flag == NFS4_OPEN_DELEGATE_NONE)
1664 goto out;
1665 break;
1666 case NFS4_OPEN_CLAIM_NULL:
1667 /* Let's not give out any delegations till everyone's
1668 * had the chance to reclaim theirs.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001669 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07001670 goto out;
1671 if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
1672 goto out;
1673 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1674 flag = NFS4_OPEN_DELEGATE_WRITE;
1675 else
1676 flag = NFS4_OPEN_DELEGATE_READ;
1677 break;
1678 default:
1679 goto out;
1680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
1683 if (dp == NULL) {
1684 flag = NFS4_OPEN_DELEGATE_NONE;
1685 goto out;
1686 }
1687 locks_init_lock(&fl);
1688 fl.fl_lmops = &nfsd_lease_mng_ops;
1689 fl.fl_flags = FL_LEASE;
Felix Blyakher9167f502008-02-26 10:54:36 -08001690 fl.fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 fl.fl_end = OFFSET_MAX;
1692 fl.fl_owner = (fl_owner_t)dp;
1693 fl.fl_file = stp->st_vfs_file;
1694 fl.fl_pid = current->tgid;
1695
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001696 /* vfs_setlease checks to see if delegation should be handed out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 * the lock_manager callbacks fl_mylease and fl_change are used
1698 */
Felix Blyakher9167f502008-02-26 10:54:36 -08001699 if ((status = vfs_setlease(stp->st_vfs_file, fl.fl_type, &flp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
NeilBrownc9071322005-04-16 15:26:38 -07001701 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 flag = NFS4_OPEN_DELEGATE_NONE;
1703 goto out;
1704 }
1705
1706 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
1707
1708 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1709 dp->dl_stateid.si_boot,
1710 dp->dl_stateid.si_stateownerid,
1711 dp->dl_stateid.si_fileid,
1712 dp->dl_stateid.si_generation);
1713out:
NeilBrown7b190fe2005-06-23 22:03:23 -07001714 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
1715 && flag == NFS4_OPEN_DELEGATE_NONE
1716 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04001717 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 open->op_delegate_type = flag;
1719}
1720
1721/*
1722 * called with nfs4_lock_state() held.
1723 */
Al Virob37ad282006-10-19 23:28:59 -07001724__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
1726{
1727 struct nfs4_file *fp = NULL;
1728 struct inode *ino = current_fh->fh_dentry->d_inode;
1729 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07001730 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07001731 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 status = nfserr_inval;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001734 if (!access_valid(open->op_share_access)
1735 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 goto out;
1737 /*
1738 * Lookup file; if found, lookup stateid and check open request,
1739 * and check for delegations in the process of being recalled.
1740 * If not found, create the nfs4_file struct
1741 */
1742 fp = find_file(ino);
1743 if (fp) {
1744 if ((status = nfs4_check_open(fp, open, &stp)))
1745 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001746 status = nfs4_check_deleg(fp, open, &dp);
1747 if (status)
1748 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07001750 status = nfserr_bad_stateid;
1751 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
1752 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 status = nfserr_resource;
1754 fp = alloc_init_file(ino);
1755 if (fp == NULL)
1756 goto out;
1757 }
1758
1759 /*
1760 * OPEN the file, or upgrade an existing OPEN.
1761 * If truncate fails, the OPEN fails.
1762 */
1763 if (stp) {
1764 /* Stateid was found, this is an OPEN upgrade */
1765 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
1766 if (status)
1767 goto out;
NeilBrown444c2c02005-07-07 17:59:22 -07001768 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 } else {
1770 /* Stateid was not found, this is a new OPEN */
1771 int flags = 0;
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -07001772 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001773 flags |= NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001775 flags |= NFSD_MAY_WRITE;
NeilBrown567d9822005-06-23 22:02:53 -07001776 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
1777 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 goto out;
1779 init_stateid(stp, fp, open);
1780 status = nfsd4_truncate(rqstp, current_fh, open);
1781 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05001782 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 goto out;
1784 }
1785 }
1786 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
1787
1788 /*
1789 * Attempt to hand out a delegation. No error return, because the
1790 * OPEN succeeds even if we fail.
1791 */
1792 nfs4_open_delegation(current_fh, open, stp);
1793
1794 status = nfs_ok;
1795
1796 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1797 stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid,
1798 stp->st_stateid.si_fileid, stp->st_stateid.si_generation);
1799out:
NeilBrown13cd2182005-06-23 22:03:10 -07001800 if (fp)
1801 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07001802 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1803 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 /*
1805 * To finish the open response, we just need to set the rflags.
1806 */
1807 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
1808 if (!open->op_stateowner->so_confirmed)
1809 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
1810
1811 return status;
1812}
1813
Al Virob37ad282006-10-19 23:28:59 -07001814__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001815nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1816 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
1818 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07001819 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 nfs4_lock_state();
1822 dprintk("process_renew(%08x/%08x): starting\n",
1823 clid->cl_boot, clid->cl_id);
1824 status = nfserr_stale_clientid;
1825 if (STALE_CLIENTID(clid))
1826 goto out;
1827 clp = find_confirmed_client(clid);
1828 status = nfserr_expired;
1829 if (clp == NULL) {
1830 /* We assume the client took too long to RENEW. */
1831 dprintk("nfsd4_renew: clientid not found!\n");
1832 goto out;
1833 }
1834 renew_client(clp);
1835 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07001836 if (!list_empty(&clp->cl_delegations)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 && !atomic_read(&clp->cl_callback.cb_set))
1838 goto out;
1839 status = nfs_ok;
1840out:
1841 nfs4_unlock_state();
1842 return status;
1843}
1844
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001845struct lock_manager nfsd4_manager = {
1846};
1847
NeilBrowna76b4312005-06-23 22:04:01 -07001848static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001849nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07001850{
1851 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07001852 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001853 locks_end_grace(&nfsd4_manager);
NeilBrowna76b4312005-06-23 22:04:01 -07001854}
1855
NeilBrownfd39ca92005-06-23 22:04:03 -07001856static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857nfs4_laundromat(void)
1858{
1859 struct nfs4_client *clp;
1860 struct nfs4_stateowner *sop;
1861 struct nfs4_delegation *dp;
1862 struct list_head *pos, *next, reaplist;
1863 time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
1864 time_t t, clientid_val = NFSD_LEASE_TIME;
1865 time_t u, test_val = NFSD_LEASE_TIME;
1866
1867 nfs4_lock_state();
1868
1869 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001870 if (locks_in_grace())
1871 nfsd4_end_grace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 list_for_each_safe(pos, next, &client_lru) {
1873 clp = list_entry(pos, struct nfs4_client, cl_lru);
1874 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
1875 t = clp->cl_time - cutoff;
1876 if (clientid_val > t)
1877 clientid_val = t;
1878 break;
1879 }
1880 dprintk("NFSD: purging unused client (clientid %08x)\n",
1881 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07001882 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 expire_client(clp);
1884 }
1885 INIT_LIST_HEAD(&reaplist);
1886 spin_lock(&recall_lock);
1887 list_for_each_safe(pos, next, &del_recall_lru) {
1888 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1889 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
1890 u = dp->dl_time - cutoff;
1891 if (test_val > u)
1892 test_val = u;
1893 break;
1894 }
1895 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1896 dp, dp->dl_flock);
1897 list_move(&dp->dl_recall_lru, &reaplist);
1898 }
1899 spin_unlock(&recall_lock);
1900 list_for_each_safe(pos, next, &reaplist) {
1901 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1902 list_del_init(&dp->dl_recall_lru);
1903 unhash_delegation(dp);
1904 }
1905 test_val = NFSD_LEASE_TIME;
1906 list_for_each_safe(pos, next, &close_lru) {
1907 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
1908 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
1909 u = sop->so_time - cutoff;
1910 if (test_val > u)
1911 test_val = u;
1912 break;
1913 }
1914 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1915 sop->so_id);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001916 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
1918 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
1919 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
1920 nfs4_unlock_state();
1921 return clientid_val;
1922}
1923
Harvey Harrisona254b242008-02-20 12:49:00 -08001924static struct workqueue_struct *laundry_wq;
1925static void laundromat_main(struct work_struct *);
1926static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
1927
1928static void
David Howellsc4028952006-11-22 14:57:56 +00001929laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
1931 time_t t;
1932
1933 t = nfs4_laundromat();
1934 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07001935 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
NeilBrownfd39ca92005-06-23 22:04:03 -07001938static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07001939search_close_lru(u32 st_id, int flags)
1940{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 struct nfs4_stateowner *local = NULL;
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (flags & CLOSE_STATE) {
1944 list_for_each_entry(local, &close_lru, so_close_lru) {
1945 if (local->so_id == st_id)
1946 return local;
1947 }
1948 }
1949 return NULL;
1950}
1951
1952static inline int
1953nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
1954{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001955 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
1957
1958static int
1959STALE_STATEID(stateid_t *stateid)
1960{
1961 if (stateid->si_boot == boot_time)
1962 return 0;
Neil Brown849823c2005-09-13 01:25:36 -07001963 dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
1965 stateid->si_generation);
1966 return 1;
1967}
1968
1969static inline int
1970access_permit_read(unsigned long access_bmap)
1971{
1972 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
1973 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
1974 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
1975}
1976
1977static inline int
1978access_permit_write(unsigned long access_bmap)
1979{
1980 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
1981 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
1982}
1983
1984static
Al Virob37ad282006-10-19 23:28:59 -07001985__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
Al Virob37ad282006-10-19 23:28:59 -07001987 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
1990 goto out;
1991 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
1992 goto out;
1993 status = nfs_ok;
1994out:
1995 return status;
1996}
1997
Al Virob37ad282006-10-19 23:28:59 -07001998static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2000{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002001 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002003 else if (locks_in_grace()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 /* Answer in remaining cases depends on existance of
2005 * conflicting state; so we must wait out the grace period. */
2006 return nfserr_grace;
2007 } else if (flags & WR_STATE)
2008 return nfs4_share_conflict(current_fh,
2009 NFS4_SHARE_DENY_WRITE);
2010 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2011 return nfs4_share_conflict(current_fh,
2012 NFS4_SHARE_DENY_READ);
2013}
2014
2015/*
2016 * Allow READ/WRITE during grace period on recovered state only for files
2017 * that are not able to provide mandatory locking.
2018 */
2019static inline int
J. Bruce Fields18f82732009-02-21 15:23:01 -08002020grace_disallows_io(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002022 return locks_in_grace() && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023}
2024
J. Bruce Fields0836f582008-01-26 19:08:12 -05002025static int check_stateid_generation(stateid_t *in, stateid_t *ref)
2026{
2027 /* If the client sends us a stateid from the future, it's buggy: */
2028 if (in->si_generation > ref->si_generation)
2029 return nfserr_bad_stateid;
2030 /*
2031 * The following, however, can happen. For example, if the
2032 * client sends an open and some IO at the same time, the open
2033 * may bump si_generation while the IO is still in flight.
2034 * Thanks to hard links and renames, the client never knows what
2035 * file an open will affect. So it could avoid that situation
2036 * only by serializing all opens and IO from the same open
2037 * owner. To recover from the old_stateid error, the client
2038 * will just have to retry the IO:
2039 */
2040 if (in->si_generation < ref->si_generation)
2041 return nfserr_old_stateid;
2042 return nfs_ok;
2043}
2044
J. Bruce Fields3e633072009-02-21 13:17:19 -08002045static int is_delegation_stateid(stateid_t *stateid)
2046{
2047 return stateid->si_fileid == 0;
2048}
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050/*
2051* Checks for stateid operations
2052*/
Al Virob37ad282006-10-19 23:28:59 -07002053__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054nfs4_preprocess_stateid_op(struct svc_fh *current_fh, stateid_t *stateid, int flags, struct file **filpp)
2055{
2056 struct nfs4_stateid *stp = NULL;
2057 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07002059 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (filpp)
2062 *filpp = NULL;
2063
J. Bruce Fields18f82732009-02-21 15:23:01 -08002064 if (grace_disallows_io(ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return nfserr_grace;
2066
2067 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2068 return check_special_stateids(current_fh, stateid, flags);
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 status = nfserr_stale_stateid;
2071 if (STALE_STATEID(stateid))
2072 goto out;
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 status = nfserr_bad_stateid;
J. Bruce Fields3e633072009-02-21 13:17:19 -08002075 if (is_delegation_stateid(stateid)) {
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002076 dp = find_delegation_stateid(ino, stateid);
J. Bruce Fields819a8f52009-02-21 12:13:24 -08002077 if (!dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 goto out;
J. Bruce Fieldsfd03b092009-02-21 11:27:30 -08002079 status = check_stateid_generation(stateid, &dp->dl_stateid);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002080 if (status)
2081 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002082 status = nfs4_check_delegmode(dp, flags);
2083 if (status)
2084 goto out;
2085 renew_client(dp->dl_client);
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002086 if (filpp)
2087 *filpp = dp->dl_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002089 stp = find_stateid(stateid, flags);
J. Bruce Fields819a8f52009-02-21 12:13:24 -08002090 if (!stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 goto out;
J. Bruce Fields6150ef02009-02-21 13:36:16 -08002092 if (nfs4_check_fh(current_fh, stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 goto out;
2094 if (!stp->st_stateowner->so_confirmed)
2095 goto out;
J. Bruce Fieldsfd03b092009-02-21 11:27:30 -08002096 status = check_stateid_generation(stateid, &stp->st_stateid);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002097 if (status)
2098 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002099 status = nfs4_check_openmode(stp, flags);
2100 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 goto out;
2102 renew_client(stp->st_stateowner->so_client);
2103 if (filpp)
2104 *filpp = stp->st_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106 status = nfs_ok;
2107out:
2108 return status;
2109}
2110
NeilBrown4c4cd222005-07-07 17:59:27 -07002111static inline int
2112setlkflg (int type)
2113{
2114 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
2115 RD_STATE : WR_STATE;
2116}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118/*
2119 * Checks for sequence id mutating operations.
2120 */
Al Virob37ad282006-10-19 23:28:59 -07002121static __be32
NeilBrown4c4cd222005-07-07 17:59:27 -07002122nfs4_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 -07002123{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 struct nfs4_stateid *stp;
2125 struct nfs4_stateowner *sop;
J. Bruce Fields0836f582008-01-26 19:08:12 -05002126 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2129 "stateid = (%08x/%08x/%08x/%08x)\n", seqid,
2130 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2131 stateid->si_generation);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 *stpp = NULL;
2134 *sopp = NULL;
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002137 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002138 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07002142 return nfserr_stale_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 /*
2144 * We return BAD_STATEID if filehandle doesn't match stateid,
2145 * the confirmed flag is incorrecly set, or the generation
2146 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 */
NeilBrownf8816512005-07-07 17:59:25 -07002148 stp = find_stateid(stateid, flags);
2149 if (stp == NULL) {
2150 /*
2151 * Also, we should make sure this isn't just the result of
2152 * a replayed close:
2153 */
2154 sop = search_close_lru(stateid->si_stateownerid, flags);
2155 if (sop == NULL)
2156 return nfserr_bad_stateid;
2157 *sopp = sop;
2158 goto check_replay;
2159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
J. Bruce Fields39325bd2007-11-26 17:06:39 -05002161 *stpp = stp;
2162 *sopp = sop = stp->st_stateowner;
2163
NeilBrown4c4cd222005-07-07 17:59:27 -07002164 if (lock) {
NeilBrown4c4cd222005-07-07 17:59:27 -07002165 clientid_t *lockclid = &lock->v.new.clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 struct nfs4_client *clp = sop->so_client;
NeilBrown4c4cd222005-07-07 17:59:27 -07002167 int lkflg = 0;
Al Virob37ad282006-10-19 23:28:59 -07002168 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
NeilBrown4c4cd222005-07-07 17:59:27 -07002170 lkflg = setlkflg(lock->lk_type);
2171
2172 if (lock->lk_is_new) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002173 if (!sop->so_is_open_owner)
2174 return nfserr_bad_stateid;
2175 if (!same_clid(&clp->cl_clientid, lockclid))
NeilBrown4c4cd222005-07-07 17:59:27 -07002176 return nfserr_bad_stateid;
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002177 /* stp is the open stateid */
2178 status = nfs4_check_openmode(stp, lkflg);
2179 if (status)
2180 return status;
2181 } else {
2182 /* stp is the lock stateid */
2183 status = nfs4_check_openmode(stp->st_openstp, lkflg);
2184 if (status)
2185 return status;
NeilBrown4c4cd222005-07-07 17:59:27 -07002186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
2188
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002189 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002190 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002191 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 /*
2195 * We now validate the seqid and stateid generation numbers.
2196 * For the moment, we ignore the possibility of
2197 * generation number wraparound.
2198 */
NeilBrownbd9aac52005-07-07 17:59:19 -07002199 if (seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 goto check_replay;
2201
NeilBrown3a4f98b2005-07-07 17:59:26 -07002202 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002203 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07002204 " unconfirmed stateowner!\n");
2205 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07002207 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002208 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07002209 " confirmed yet!\n");
2210 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
J. Bruce Fields0836f582008-01-26 19:08:12 -05002212 status = check_stateid_generation(stateid, &stp->st_stateid);
2213 if (status)
2214 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07002215 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002216 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07002219 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07002220 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 /* indicate replay to calling function */
Al Viroa90b0612006-10-19 23:29:03 -07002222 return nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002224 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
NeilBrown3a4f98b2005-07-07 17:59:26 -07002225 sop->so_seqid, seqid);
2226 *sopp = NULL;
2227 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
Al Virob37ad282006-10-19 23:28:59 -07002230__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002231nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002232 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233{
Al Virob37ad282006-10-19 23:28:59 -07002234 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 struct nfs4_stateowner *sop;
2236 struct nfs4_stateid *stp;
2237
2238 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002239 (int)cstate->current_fh.fh_dentry->d_name.len,
2240 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002242 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07002243 if (status)
2244 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246 nfs4_lock_state();
2247
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002248 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2249 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002250 CONFIRM | OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 &oc->oc_stateowner, &stp, NULL)))
2252 goto out;
2253
2254 sop = oc->oc_stateowner;
2255 sop->so_confirmed = 1;
2256 update_stateid(&stp->st_stateid);
2257 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
2258 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
2259 "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid,
2260 stp->st_stateid.si_boot,
2261 stp->st_stateid.si_stateownerid,
2262 stp->st_stateid.si_fileid,
2263 stp->st_stateid.si_generation);
NeilBrownc7b9a452005-06-23 22:04:30 -07002264
2265 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266out:
Neil Brownf2327d92005-09-13 01:25:37 -07002267 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 nfs4_get_stateowner(oc->oc_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002269 cstate->replay_owner = oc->oc_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 nfs4_unlock_state();
2272 return status;
2273}
2274
2275
2276/*
2277 * unset all bits in union bitmap (bmap) that
2278 * do not exist in share (from successful OPEN_DOWNGRADE)
2279 */
2280static void
2281reset_union_bmap_access(unsigned long access, unsigned long *bmap)
2282{
2283 int i;
2284 for (i = 1; i < 4; i++) {
2285 if ((i & access) != i)
2286 __clear_bit(i, bmap);
2287 }
2288}
2289
2290static void
2291reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
2292{
2293 int i;
2294 for (i = 0; i < 4; i++) {
2295 if ((i & deny) != i)
2296 __clear_bit(i, bmap);
2297 }
2298}
2299
Al Virob37ad282006-10-19 23:28:59 -07002300__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002301nfsd4_open_downgrade(struct svc_rqst *rqstp,
2302 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002303 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Al Virob37ad282006-10-19 23:28:59 -07002305 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 struct nfs4_stateid *stp;
2307 unsigned int share_access;
2308
2309 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002310 (int)cstate->current_fh.fh_dentry->d_name.len,
2311 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002313 if (!access_valid(od->od_share_access)
2314 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 return nfserr_inval;
2316
2317 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002318 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2319 od->od_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 &od->od_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002321 OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 &od->od_stateowner, &stp, NULL)))
2323 goto out;
2324
2325 status = nfserr_inval;
2326 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
2327 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2328 stp->st_access_bmap, od->od_share_access);
2329 goto out;
2330 }
2331 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
2332 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2333 stp->st_deny_bmap, od->od_share_deny);
2334 goto out;
2335 }
2336 set_access(&share_access, stp->st_access_bmap);
2337 nfs4_file_downgrade(stp->st_vfs_file,
2338 share_access & ~od->od_share_access);
2339
2340 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
2341 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
2342
2343 update_stateid(&stp->st_stateid);
2344 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
2345 status = nfs_ok;
2346out:
Neil Brownf2327d92005-09-13 01:25:37 -07002347 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 nfs4_get_stateowner(od->od_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002349 cstate->replay_owner = od->od_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 nfs4_unlock_state();
2352 return status;
2353}
2354
2355/*
2356 * nfs4_unlock_state() called after encode
2357 */
Al Virob37ad282006-10-19 23:28:59 -07002358__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002359nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002360 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Al Virob37ad282006-10-19 23:28:59 -07002362 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 struct nfs4_stateid *stp;
2364
2365 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002366 (int)cstate->current_fh.fh_dentry->d_name.len,
2367 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 nfs4_lock_state();
2370 /* check close_lru for replay */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002371 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2372 close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 &close->cl_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002374 OPEN_STATE | CLOSE_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 &close->cl_stateowner, &stp, NULL)))
2376 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 status = nfs_ok;
2378 update_stateid(&stp->st_stateid);
2379 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
2380
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002381 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05002382 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002383
2384 /* place unused nfs4_stateowners on so_close_lru list to be
2385 * released by the laundromat service after the lease period
2386 * to enable us to handle CLOSE replay
2387 */
2388 if (list_empty(&close->cl_stateowner->so_stateids))
2389 move_to_close_lru(close->cl_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390out:
Neil Brownf2327d92005-09-13 01:25:37 -07002391 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 nfs4_get_stateowner(close->cl_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002393 cstate->replay_owner = close->cl_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 nfs4_unlock_state();
2396 return status;
2397}
2398
Al Virob37ad282006-10-19 23:28:59 -07002399__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002400nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2401 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002403 struct nfs4_delegation *dp;
2404 stateid_t *stateid = &dr->dr_stateid;
2405 struct inode *inode;
Al Virob37ad282006-10-19 23:28:59 -07002406 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002408 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002409 return status;
2410 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 nfs4_lock_state();
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002413 status = nfserr_bad_stateid;
2414 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2415 goto out;
2416 status = nfserr_stale_stateid;
2417 if (STALE_STATEID(stateid))
2418 goto out;
J. Bruce Fields7e0f7cf2009-02-21 13:32:28 -08002419 status = nfserr_bad_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002420 if (!is_delegation_stateid(stateid))
2421 goto out;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002422 dp = find_delegation_stateid(inode, stateid);
2423 if (!dp)
2424 goto out;
2425 status = check_stateid_generation(stateid, &dp->dl_stateid);
2426 if (status)
2427 goto out;
2428 renew_client(dp->dl_client);
2429
2430 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002432 nfs4_unlock_state();
2433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 return status;
2435}
2436
2437
2438/*
2439 * Lock owner state (byte-range locks)
2440 */
2441#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
2442#define LOCK_HASH_BITS 8
2443#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
2444#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
2445
Benny Halevy87df4de2008-12-15 19:42:03 +02002446static inline u64
2447end_offset(u64 start, u64 len)
2448{
2449 u64 end;
2450
2451 end = start + len;
2452 return end >= start ? end: NFS4_MAX_UINT64;
2453}
2454
2455/* last octet in a range */
2456static inline u64
2457last_byte_offset(u64 start, u64 len)
2458{
2459 u64 end;
2460
2461 BUG_ON(!len);
2462 end = start + len;
2463 return end > start ? end - 1: NFS4_MAX_UINT64;
2464}
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466#define lockownerid_hashval(id) \
2467 ((id) & LOCK_HASH_MASK)
2468
2469static inline unsigned int
2470lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
2471 struct xdr_netobj *ownername)
2472{
2473 return (file_hashval(inode) + cl_id
2474 + opaque_hashval(ownername->data, ownername->len))
2475 & LOCK_HASH_MASK;
2476}
2477
2478static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
2479static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
2480static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
2481
NeilBrownfd39ca92005-06-23 22:04:03 -07002482static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483find_stateid(stateid_t *stid, int flags)
2484{
Krishna Kumar9346eff2008-10-20 11:44:28 +05302485 struct nfs4_stateid *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 u32 st_id = stid->si_stateownerid;
2487 u32 f_id = stid->si_fileid;
2488 unsigned int hashval;
2489
2490 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
Krishna Kumar9346eff2008-10-20 11:44:28 +05302491 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 hashval = stateid_hashval(st_id, f_id);
2493 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
2494 if ((local->st_stateid.si_stateownerid == st_id) &&
2495 (local->st_stateid.si_fileid == f_id))
2496 return local;
2497 }
2498 }
Krishna Kumar9346eff2008-10-20 11:44:28 +05302499
2500 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 hashval = stateid_hashval(st_id, f_id);
2502 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
2503 if ((local->st_stateid.si_stateownerid == st_id) &&
2504 (local->st_stateid.si_fileid == f_id))
2505 return local;
2506 }
Neil Brown849823c2005-09-13 01:25:36 -07002507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 return NULL;
2509}
2510
2511static struct nfs4_delegation *
2512find_delegation_stateid(struct inode *ino, stateid_t *stid)
2513{
NeilBrown13cd2182005-06-23 22:03:10 -07002514 struct nfs4_file *fp;
2515 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
2517 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2518 stid->si_boot, stid->si_stateownerid,
2519 stid->si_fileid, stid->si_generation);
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002522 if (!fp)
2523 return NULL;
2524 dl = find_delegation_file(fp, stid);
2525 put_nfs4_file(fp);
2526 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
2529/*
2530 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2531 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2532 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
2533 * locking, this prevents us from being completely protocol-compliant. The
2534 * real solution to this problem is to start using unsigned file offsets in
2535 * the VFS, but this is a very deep change!
2536 */
2537static inline void
2538nfs4_transform_lock_offset(struct file_lock *lock)
2539{
2540 if (lock->fl_start < 0)
2541 lock->fl_start = OFFSET_MAX;
2542 if (lock->fl_end < 0)
2543 lock->fl_end = OFFSET_MAX;
2544}
2545
NeilBrownd5b90262006-04-10 22:55:22 -07002546/* Hack!: For now, we're defining this just so we can use a pointer to it
2547 * as a unique cookie to identify our (NFSv4's) posix locks. */
Adrian Bunke465a772006-04-10 22:55:23 -07002548static struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07002549};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
2551static inline void
2552nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
2553{
NeilBrownd5b90262006-04-10 22:55:22 -07002554 struct nfs4_stateowner *sop;
2555 unsigned int hval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
NeilBrownd5b90262006-04-10 22:55:22 -07002557 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
2558 sop = (struct nfs4_stateowner *) fl->fl_owner;
2559 hval = lockownerid_hashval(sop->so_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 kref_get(&sop->so_ref);
2561 deny->ld_sop = sop;
2562 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07002563 } else {
2564 deny->ld_sop = NULL;
2565 deny->ld_clientid.cl_boot = 0;
2566 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 }
2568 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02002569 deny->ld_length = NFS4_MAX_UINT64;
2570 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 deny->ld_length = fl->fl_end - fl->fl_start + 1;
2572 deny->ld_type = NFS4_READ_LT;
2573 if (fl->fl_type != F_RDLCK)
2574 deny->ld_type = NFS4_WRITE_LT;
2575}
2576
2577static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578find_lockstateowner_str(struct inode *inode, clientid_t *clid,
2579 struct xdr_netobj *owner)
2580{
2581 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
2582 struct nfs4_stateowner *op;
2583
2584 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002585 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 return op;
2587 }
2588 return NULL;
2589}
2590
2591/*
2592 * Alloc a lock owner structure.
2593 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
2594 * occured.
2595 *
2596 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 */
2598
2599static struct nfs4_stateowner *
2600alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
2601 struct nfs4_stateowner *sop;
2602 struct nfs4_replay *rp;
2603 unsigned int idhashval;
2604
2605 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
2606 return NULL;
2607 idhashval = lockownerid_hashval(current_ownerid);
2608 INIT_LIST_HEAD(&sop->so_idhash);
2609 INIT_LIST_HEAD(&sop->so_strhash);
2610 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07002611 INIT_LIST_HEAD(&sop->so_stateids);
2612 INIT_LIST_HEAD(&sop->so_perstateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
2614 sop->so_time = 0;
2615 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
2616 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002617 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 sop->so_is_open_owner = 0;
2619 sop->so_id = current_ownerid++;
2620 sop->so_client = clp;
Neil Brownb59e3c02005-09-13 01:25:38 -07002621 /* It is the openowner seqid that will be incremented in encode in the
2622 * case of new lockowners; so increment the lock seqid manually: */
2623 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 sop->so_confirmed = 1;
2625 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08002626 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 rp->rp_buflen = 0;
2628 rp->rp_buf = rp->rp_ibuf;
2629 return sop;
2630}
2631
NeilBrownfd39ca92005-06-23 22:04:03 -07002632static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
2634{
2635 struct nfs4_stateid *stp;
2636 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2637
NeilBrown5ac049a2005-06-23 22:03:03 -07002638 stp = nfs4_alloc_stateid();
2639 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 goto out;
2641 INIT_LIST_HEAD(&stp->st_hash);
2642 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07002643 INIT_LIST_HEAD(&stp->st_perstateowner);
2644 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07002646 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07002647 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07002649 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 stp->st_file = fp;
2651 stp->st_stateid.si_boot = boot_time;
2652 stp->st_stateid.si_stateownerid = sop->so_id;
2653 stp->st_stateid.si_fileid = fp->fi_id;
2654 stp->st_stateid.si_generation = 0;
2655 stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
2656 stp->st_access_bmap = open_stp->st_access_bmap;
2657 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07002658 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660out:
2661 return stp;
2662}
2663
NeilBrownfd39ca92005-06-23 22:04:03 -07002664static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665check_lock_length(u64 offset, u64 length)
2666{
Benny Halevy87df4de2008-12-15 19:42:03 +02002667 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 LOFF_OVERFLOW(offset, length)));
2669}
2670
2671/*
2672 * LOCK operation
2673 */
Al Virob37ad282006-10-19 23:28:59 -07002674__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002675nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002676 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
NeilBrown3e9e3db2005-06-23 22:04:20 -07002678 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07002679 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 struct nfs4_stateid *lock_stp;
2681 struct file *filp;
2682 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05002683 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07002684 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 unsigned int strhashval;
Marc Eshel150b3932007-01-18 16:15:35 -05002686 unsigned int cmd;
Al Virob8dd7b92006-10-19 23:29:01 -07002687 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
2689 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2690 (long long) lock->lk_offset,
2691 (long long) lock->lk_length);
2692
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 if (check_lock_length(lock->lk_offset, lock->lk_length))
2694 return nfserr_inval;
2695
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002696 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002697 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08002698 dprintk("NFSD: nfsd4_lock: permission denied!\n");
2699 return status;
2700 }
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 nfs4_lock_state();
2703
2704 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07002705 /*
2706 * Client indicates that this is a new lockowner.
2707 * Use open owner and open stateid to create lock owner and
2708 * lock stateid.
2709 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 struct nfs4_stateid *open_stp = NULL;
2711 struct nfs4_file *fp;
2712
2713 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002714 if (STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 /* validate and update open stateid and open seqid */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002718 status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 lock->lk_new_open_seqid,
2720 &lock->lk_new_open_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002721 OPEN_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002722 &lock->lk_replay_owner, &open_stp,
Neil Brownb59e3c02005-09-13 01:25:38 -07002723 lock);
NeilBrown37515172005-07-07 17:59:16 -07002724 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002726 open_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 /* create lockowner and lock stateid */
2728 fp = open_stp->st_file;
2729 strhashval = lock_ownerstr_hashval(fp->fi_inode,
2730 open_sop->so_client->cl_clientid.cl_id,
2731 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07002732 /* XXX: Do we need to check for duplicate stateowners on
2733 * the same file, or should they just be allowed (and
2734 * create new stateids)? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 status = nfserr_resource;
Neil Brownb59e3c02005-09-13 01:25:38 -07002736 lock_sop = alloc_init_lock_stateowner(strhashval,
2737 open_sop->so_client, open_stp, lock);
2738 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07002740 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08002741 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 } else {
2744 /* lock (lock owner + lock stateid) already exists */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002745 status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 lock->lk_old_lock_seqid,
2747 &lock->lk_old_lock_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002748 LOCK_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002749 &lock->lk_replay_owner, &lock_stp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 if (status)
2751 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002752 lock_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08002754 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 filp = lock_stp->st_vfs_file;
2756
NeilBrown0dd395d2005-07-07 17:59:15 -07002757 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002758 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07002759 goto out;
2760 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002761 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07002762 goto out;
2763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 locks_init_lock(&file_lock);
2765 switch (lock->lk_type) {
2766 case NFS4_READ_LT:
2767 case NFS4_READW_LT:
2768 file_lock.fl_type = F_RDLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05002769 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 break;
2771 case NFS4_WRITE_LT:
2772 case NFS4_WRITEW_LT:
2773 file_lock.fl_type = F_WRLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05002774 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 break;
2776 default:
2777 status = nfserr_inval;
2778 goto out;
2779 }
Neil Brownb59e3c02005-09-13 01:25:38 -07002780 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 file_lock.fl_pid = current->tgid;
2782 file_lock.fl_file = filp;
2783 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002784 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02002787 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 nfs4_transform_lock_offset(&file_lock);
2789
2790 /*
2791 * Try to lock the file in the VFS.
2792 * Note: locks.c uses the BKL to protect the inode's lock list.
2793 */
2794
Marc Eshelfd85b812006-11-28 16:26:41 -05002795 err = vfs_lock_file(filp, cmd, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07002796 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 case 0: /* success! */
2798 update_stateid(&lock_stp->st_stateid);
2799 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
2800 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07002801 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002802 break;
2803 case (EAGAIN): /* conflock holds conflicting lock */
2804 status = nfserr_denied;
2805 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2806 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
2807 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 case (EDEADLK):
2809 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002810 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05002812 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002813 status = nfserr_resource;
2814 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08002817 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002818 release_lockowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08002819 if (lock->lk_replay_owner) {
2820 nfs4_get_stateowner(lock->lk_replay_owner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002821 cstate->replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07002822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 nfs4_unlock_state();
2824 return status;
2825}
2826
2827/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08002828 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
2829 * so we do a temporary open here just to get an open file to pass to
2830 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
2831 * inode operation.)
2832 */
2833static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
2834{
2835 struct file *file;
2836 int err;
2837
2838 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
2839 if (err)
2840 return err;
2841 err = vfs_test_lock(file, lock);
2842 nfsd_close(file);
2843 return err;
2844}
2845
2846/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 * LOCKT operation
2848 */
Al Virob37ad282006-10-19 23:28:59 -07002849__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002850nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2851 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
2853 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 struct file_lock file_lock;
Marc Eshelfd85b812006-11-28 16:26:41 -05002855 int error;
Al Virob37ad282006-10-19 23:28:59 -07002856 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002858 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 return nfserr_grace;
2860
2861 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
2862 return nfserr_inval;
2863
2864 lockt->lt_stateowner = NULL;
2865 nfs4_lock_state();
2866
2867 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002868 if (STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002871 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) {
Neil Brown849823c2005-09-13 01:25:36 -07002872 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 if (status == nfserr_symlink)
2874 status = nfserr_inval;
2875 goto out;
2876 }
2877
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002878 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 locks_init_lock(&file_lock);
2880 switch (lockt->lt_type) {
2881 case NFS4_READ_LT:
2882 case NFS4_READW_LT:
2883 file_lock.fl_type = F_RDLCK;
2884 break;
2885 case NFS4_WRITE_LT:
2886 case NFS4_WRITEW_LT:
2887 file_lock.fl_type = F_WRLCK;
2888 break;
2889 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002890 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 status = nfserr_inval;
2892 goto out;
2893 }
2894
2895 lockt->lt_stateowner = find_lockstateowner_str(inode,
2896 &lockt->lt_clientid, &lockt->lt_owner);
2897 if (lockt->lt_stateowner)
2898 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
2899 file_lock.fl_pid = current->tgid;
2900 file_lock.fl_flags = FL_POSIX;
2901
2902 file_lock.fl_start = lockt->lt_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02002903 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905 nfs4_transform_lock_offset(&file_lock);
2906
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08002908 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05002909 if (error) {
2910 status = nfserrno(error);
2911 goto out;
2912 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002913 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002915 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 }
2917out:
2918 nfs4_unlock_state();
2919 return status;
2920}
2921
Al Virob37ad282006-10-19 23:28:59 -07002922__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002923nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002924 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
2926 struct nfs4_stateid *stp;
2927 struct file *filp = NULL;
2928 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07002929 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002930 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
2932 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2933 (long long) locku->lu_offset,
2934 (long long) locku->lu_length);
2935
2936 if (check_lock_length(locku->lu_offset, locku->lu_length))
2937 return nfserr_inval;
2938
2939 nfs4_lock_state();
2940
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002941 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 locku->lu_seqid,
2943 &locku->lu_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002944 LOCK_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 &locku->lu_stateowner, &stp, NULL)))
2946 goto out;
2947
2948 filp = stp->st_vfs_file;
2949 BUG_ON(!filp);
2950 locks_init_lock(&file_lock);
2951 file_lock.fl_type = F_UNLCK;
2952 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
2953 file_lock.fl_pid = current->tgid;
2954 file_lock.fl_file = filp;
2955 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002956 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 file_lock.fl_start = locku->lu_offset;
2958
Benny Halevy87df4de2008-12-15 19:42:03 +02002959 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 nfs4_transform_lock_offset(&file_lock);
2961
2962 /*
2963 * Try to unlock the file in the VFS.
2964 */
Marc Eshelfd85b812006-11-28 16:26:41 -05002965 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07002966 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05002967 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 goto out_nfserr;
2969 }
2970 /*
2971 * OK, unlock succeeded; the only thing left to do is update the stateid.
2972 */
2973 update_stateid(&stp->st_stateid);
2974 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
2975
2976out:
Neil Brownf2327d92005-09-13 01:25:37 -07002977 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 nfs4_get_stateowner(locku->lu_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002979 cstate->replay_owner = locku->lu_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 nfs4_unlock_state();
2982 return status;
2983
2984out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002985 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 goto out;
2987}
2988
2989/*
2990 * returns
2991 * 1: locks held by lockowner
2992 * 0: no locks held by lockowner
2993 */
2994static int
2995check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
2996{
2997 struct file_lock **flpp;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08002998 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 int status = 0;
3000
3001 lock_kernel();
3002 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003003 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 status = 1;
3005 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 }
3008out:
3009 unlock_kernel();
3010 return status;
3011}
3012
Al Virob37ad282006-10-19 23:28:59 -07003013__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003014nfsd4_release_lockowner(struct svc_rqst *rqstp,
3015 struct nfsd4_compound_state *cstate,
3016 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
3018 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003019 struct nfs4_stateowner *sop;
3020 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003022 struct list_head matches;
3023 int i;
Al Virob37ad282006-10-19 23:28:59 -07003024 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
3026 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3027 clid->cl_boot, clid->cl_id);
3028
3029 /* XXX check for lease expiration */
3030
3031 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07003032 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 nfs4_lock_state();
3036
NeilBrown3e9e3db2005-06-23 22:04:20 -07003037 status = nfserr_locks_held;
3038 /* XXX: we're doing a linear search through all the lockowners.
3039 * Yipes! For now we'll just hope clients aren't really using
3040 * release_lockowner much, but eventually we have to fix these
3041 * data structures. */
3042 INIT_LIST_HEAD(&matches);
3043 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3044 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003045 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07003046 continue;
3047 list_for_each_entry(stp, &sop->so_stateids,
3048 st_perstateowner) {
3049 if (check_for_locks(stp->st_vfs_file, sop))
3050 goto out;
3051 /* Note: so_perclient unused for lockowners,
3052 * so it's OK to fool with here. */
3053 list_add(&sop->so_perclient, &matches);
3054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07003056 }
3057 /* Clients probably won't expect us to return with some (but not all)
3058 * of the lockowner state released; so don't release any until all
3059 * have been checked. */
3060 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07003061 while (!list_empty(&matches)) {
3062 sop = list_entry(matches.next, struct nfs4_stateowner,
3063 so_perclient);
3064 /* unhash_stateowner deletes so_perclient only
3065 * for openowners. */
3066 list_del(&sop->so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003067 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 }
3069out:
3070 nfs4_unlock_state();
3071 return status;
3072}
3073
3074static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07003075alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076{
NeilBrowna55370a2005-06-23 22:03:52 -07003077 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078}
3079
NeilBrownc7b9a452005-06-23 22:04:30 -07003080int
3081nfs4_has_reclaimed_state(const char *name)
3082{
3083 unsigned int strhashval = clientstr_hashval(name);
3084 struct nfs4_client *clp;
3085
3086 clp = find_confirmed_client_by_str(name, strhashval);
3087 return clp ? 1 : 0;
3088}
3089
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090/*
3091 * failure => all reset bets are off, nfserr_no_grace...
3092 */
NeilBrown190e4fb2005-06-23 22:04:25 -07003093int
3094nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095{
3096 unsigned int strhashval;
3097 struct nfs4_client_reclaim *crp = NULL;
3098
NeilBrowna55370a2005-06-23 22:03:52 -07003099 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
3100 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 if (!crp)
3102 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07003103 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 INIT_LIST_HEAD(&crp->cr_strhash);
3105 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07003106 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 reclaim_str_hashtbl_size++;
3108 return 1;
3109}
3110
3111static void
3112nfs4_release_reclaim(void)
3113{
3114 struct nfs4_client_reclaim *crp = NULL;
3115 int i;
3116
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3118 while (!list_empty(&reclaim_str_hashtbl[i])) {
3119 crp = list_entry(reclaim_str_hashtbl[i].next,
3120 struct nfs4_client_reclaim, cr_strhash);
3121 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 kfree(crp);
3123 reclaim_str_hashtbl_size--;
3124 }
3125 }
3126 BUG_ON(reclaim_str_hashtbl_size);
3127}
3128
3129/*
3130 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07003131static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132nfs4_find_reclaim_client(clientid_t *clid)
3133{
3134 unsigned int strhashval;
3135 struct nfs4_client *clp;
3136 struct nfs4_client_reclaim *crp = NULL;
3137
3138
3139 /* find clientid in conf_id_hashtbl */
3140 clp = find_confirmed_client(clid);
3141 if (clp == NULL)
3142 return NULL;
3143
NeilBrowna55370a2005-06-23 22:03:52 -07003144 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3145 clp->cl_name.len, clp->cl_name.data,
3146 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
3148 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07003149 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07003151 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 return crp;
3153 }
3154 }
3155 return NULL;
3156}
3157
3158/*
3159* Called from OPEN. Look for clientid in reclaim list.
3160*/
Al Virob37ad282006-10-19 23:28:59 -07003161__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162nfs4_check_open_reclaim(clientid_t *clid)
3163{
NeilBrowndfc83562005-06-23 22:03:16 -07003164 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165}
3166
NeilBrownac4d8ff22005-06-23 22:03:30 -07003167/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003169int
NeilBrownac4d8ff22005-06-23 22:03:30 -07003170nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003172 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003174 status = nfsd4_init_slabs();
3175 if (status)
3176 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3178 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
3179 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
3180 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
3181 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
3182 }
3183 for (i = 0; i < FILE_HASH_SIZE; i++) {
3184 INIT_LIST_HEAD(&file_hashtbl[i]);
3185 }
3186 for (i = 0; i < OWNER_HASH_SIZE; i++) {
3187 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
3188 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
3189 }
3190 for (i = 0; i < STATEID_HASH_SIZE; i++) {
3191 INIT_LIST_HEAD(&stateid_hashtbl[i]);
3192 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
3193 }
3194 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3195 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
3196 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
3197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 INIT_LIST_HEAD(&close_lru);
3200 INIT_LIST_HEAD(&client_lru);
3201 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07003202 for (i = 0; i < CLIENT_HASH_SIZE; i++)
3203 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
3204 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003205 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003206}
3207
NeilBrown190e4fb2005-06-23 22:04:25 -07003208static void
3209nfsd4_load_reboot_recovery_data(void)
3210{
3211 int status;
3212
NeilBrown0964a3d2005-06-23 22:04:32 -07003213 nfs4_lock_state();
3214 nfsd4_init_recdir(user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -07003215 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07003216 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07003217 if (status)
3218 printk("NFSD: Failure reading reboot recovery data\n");
3219}
3220
Marc Eshel9a8db972007-07-17 04:04:35 -07003221unsigned long
3222get_nfs4_grace_period(void)
3223{
3224 return max(user_lease_time, lease_time) * HZ;
3225}
3226
Meelap Shahc2f1a552007-07-17 04:04:39 -07003227/*
3228 * Since the lifetime of a delegation isn't limited to that of an open, a
3229 * client may quite reasonably hang on to a delegation as long as it has
3230 * the inode cached. This becomes an obvious problem the first time a
3231 * client's inode cache approaches the size of the server's total memory.
3232 *
3233 * For now we avoid this problem by imposing a hard limit on the number
3234 * of delegations, which varies according to the server's memory size.
3235 */
3236static void
3237set_max_delegations(void)
3238{
3239 /*
3240 * Allow at most 4 delegations per megabyte of RAM. Quick
3241 * estimates suggest that in the worst case (where every delegation
3242 * is for a different inode), a delegation could take about 1.5K,
3243 * giving a worst case usage of about 6% of memory.
3244 */
3245 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
3246}
3247
NeilBrownac4d8ff22005-06-23 22:03:30 -07003248/* initialization to perform when the nfsd service is started: */
3249
3250static void
3251__nfs4_state_start(void)
3252{
Marc Eshel9a8db972007-07-17 04:04:35 -07003253 unsigned long grace_time;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003254
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003256 grace_time = get_nfs4_grace_period();
NeilBrownd99a05a2005-06-23 22:03:21 -07003257 lease_time = user_lease_time;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003258 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07003259 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
3260 grace_time/HZ);
NeilBrown58da2822005-06-23 22:03:19 -07003261 laundry_wq = create_singlethread_workqueue("nfsd4");
Marc Eshel9a8db972007-07-17 04:04:35 -07003262 queue_delayed_work(laundry_wq, &laundromat_work, grace_time);
Meelap Shahc2f1a552007-07-17 04:04:39 -07003263 set_max_delegations();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264}
3265
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003266void
NeilBrown76a35502005-06-23 22:03:26 -07003267nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 if (nfs4_init)
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003270 return;
NeilBrown190e4fb2005-06-23 22:04:25 -07003271 nfsd4_load_reboot_recovery_data();
NeilBrown76a35502005-06-23 22:03:26 -07003272 __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 nfs4_init = 1;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003274 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275}
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277time_t
3278nfs4_lease_time(void)
3279{
3280 return lease_time;
3281}
3282
3283static void
3284__nfs4_state_shutdown(void)
3285{
3286 int i;
3287 struct nfs4_client *clp = NULL;
3288 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 struct list_head *pos, *next, reaplist;
3290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3292 while (!list_empty(&conf_id_hashtbl[i])) {
3293 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
3294 expire_client(clp);
3295 }
3296 while (!list_empty(&unconf_str_hashtbl[i])) {
3297 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
3298 expire_client(clp);
3299 }
3300 }
3301 INIT_LIST_HEAD(&reaplist);
3302 spin_lock(&recall_lock);
3303 list_for_each_safe(pos, next, &del_recall_lru) {
3304 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3305 list_move(&dp->dl_recall_lru, &reaplist);
3306 }
3307 spin_unlock(&recall_lock);
3308 list_for_each_safe(pos, next, &reaplist) {
3309 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3310 list_del_init(&dp->dl_recall_lru);
3311 unhash_delegation(dp);
3312 }
3313
NeilBrown190e4fb2005-06-23 22:04:25 -07003314 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 nfs4_init = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316}
3317
3318void
3319nfs4_state_shutdown(void)
3320{
NeilBrown5e8d5c22006-04-10 22:55:37 -07003321 cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work);
3322 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06003323 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 nfs4_lock_state();
3325 nfs4_release_reclaim();
3326 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 nfs4_unlock_state();
3328}
3329
Jeff Layton3dd98a32008-06-10 08:40:36 -04003330/*
3331 * user_recovery_dirname is protected by the nfsd_mutex since it's only
3332 * accessed when nfsd is starting.
3333 */
NeilBrown0964a3d2005-06-23 22:04:32 -07003334static void
3335nfs4_set_recdir(char *recdir)
3336{
NeilBrown0964a3d2005-06-23 22:04:32 -07003337 strcpy(user_recovery_dirname, recdir);
NeilBrown0964a3d2005-06-23 22:04:32 -07003338}
3339
3340/*
3341 * Change the NFSv4 recovery directory to recdir.
3342 */
3343int
3344nfs4_reset_recoverydir(char *recdir)
3345{
3346 int status;
Al Viroa63bb992008-08-02 01:03:36 -04003347 struct path path;
NeilBrown0964a3d2005-06-23 22:04:32 -07003348
Al Viroa63bb992008-08-02 01:03:36 -04003349 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
NeilBrown0964a3d2005-06-23 22:04:32 -07003350 if (status)
3351 return status;
3352 status = -ENOTDIR;
Al Viroa63bb992008-08-02 01:03:36 -04003353 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
NeilBrown0964a3d2005-06-23 22:04:32 -07003354 nfs4_set_recdir(recdir);
3355 status = 0;
3356 }
Al Viroa63bb992008-08-02 01:03:36 -04003357 path_put(&path);
NeilBrown0964a3d2005-06-23 22:04:32 -07003358 return status;
3359}
3360
Jeff Layton3dd98a32008-06-10 08:40:36 -04003361char *
3362nfs4_recoverydir(void)
3363{
3364 return user_recovery_dirname;
3365}
3366
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367/*
3368 * Called when leasetime is changed.
3369 *
NeilBrownd99a05a2005-06-23 22:03:21 -07003370 * The only way the protocol gives us to handle on-the-fly lease changes is to
3371 * simulate a reboot. Instead of doing that, we just wait till the next time
3372 * we start to register any changes in lease time. If the administrator
3373 * really wants to change the lease time *now*, they can go ahead and bring
3374 * nfsd down and then back up again after changing the lease time.
Jeff Layton3dd98a32008-06-10 08:40:36 -04003375 *
3376 * user_lease_time is protected by nfsd_mutex since it's only really accessed
3377 * when nfsd is starting
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 */
3379void
3380nfs4_reset_lease(time_t leasetime)
3381{
NeilBrownd99a05a2005-06-23 22:03:21 -07003382 user_lease_time = leasetime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383}