blob: 54651aa4579016c6e20e7de34e1118a6bb488504 [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 Fields599e0a22007-07-26 17:04:54 -0400794 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)
Chuck Lever27459f02007-02-12 00:53:34 -0800795 || conf->cl_addr != sin->sin_addr.s_addr) {
Harvey Harrisonbe859402008-10-31 00:56:28 -0700796 dprintk("NFSD: setclientid: string in use by clientat %pI4\n",
797 &conf->cl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 goto out;
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500801 /*
802 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
803 * has a description of SETCLIENTID request processing consisting
804 * of 5 bullet points, labeled as CASE0 - CASE4 below.
805 */
NeilBrown28ce6052005-06-23 22:03:56 -0700806 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 status = nfserr_resource;
808 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500809 /*
810 * RFC 3530 14.2.33 CASE 4:
811 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 */
813 if (unconf)
814 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700815 new = create_client(clname, dname);
816 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400819 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500821 * RFC 3530 14.2.33 CASE 1:
822 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 */
NeilBrown31f4a6c2005-06-23 22:04:06 -0700824 if (unconf) {
825 /* Note this is removing unconfirmed {*x***},
826 * which is stronger than RFC recommended {vxc**}.
827 * This has the advantage that there is at most
828 * one {*x***} in either list at any time.
829 */
830 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
NeilBrowna55370a2005-06-23 22:03:52 -0700832 new = create_client(clname, dname);
833 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 } else if (!unconf) {
837 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500838 * RFC 3530 14.2.33 CASE 2:
839 * probable client reboot; state will be removed if
840 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 */
NeilBrowna55370a2005-06-23 22:03:52 -0700842 new = create_client(clname, dname);
843 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 gen_clid(new);
J. Bruce Fields49ba8782007-11-19 19:09:50 -0500846 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500847 /*
848 * RFC 3530 14.2.33 CASE 3:
849 * probable client reboot; state will be removed if
850 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 */
852 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700853 new = create_client(clname, dname);
854 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -0400858 copy_verf(new, &clverifier);
859 new->cl_addr = sin->sin_addr.s_addr;
Olga Kornievskaia61054b12008-12-23 16:19:00 -0500860 new->cl_flavor = rqstp->rq_flavor;
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500861 princ = svc_gss_principal(rqstp);
862 if (princ) {
863 new->cl_principal = kstrdup(princ, GFP_KERNEL);
864 if (new->cl_principal == NULL) {
865 free_client(new);
866 goto out;
867 }
868 }
J. Bruce Fieldsc175b832007-08-09 18:34:32 -0400869 copy_cred(&new->cl_cred, &rqstp->rq_cred);
870 gen_confirm(new);
871 gen_callback(new, setclid);
872 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
874 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
875 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
876 status = nfs_ok;
877out:
878 nfs4_unlock_state();
879 return status;
880}
881
882
883/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500884 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
885 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
886 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 */
Al Virob37ad282006-10-19 23:28:59 -0700888__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800889nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
890 struct nfsd4_compound_state *cstate,
891 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Chuck Lever27459f02007-02-12 00:53:34 -0800893 struct sockaddr_in *sin = svc_addr_in(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -0700894 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
896 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -0700897 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 if (STALE_CLIENTID(clid))
900 return nfserr_stale_clientid;
901 /*
902 * XXX The Duplicate Request Cache (DRC) has been checked (??)
903 * We get here on a DRC miss.
904 */
905
906 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -0700907
908 conf = find_confirmed_client(clid);
909 unconf = find_unconfirmed_client(clid);
910
911 status = nfserr_clid_inuse;
Chuck Lever27459f02007-02-12 00:53:34 -0800912 if (conf && conf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -0700913 goto out;
Chuck Lever27459f02007-02-12 00:53:34 -0800914 if (unconf && unconf->cl_addr != sin->sin_addr.s_addr)
NeilBrown21ab45a2005-06-23 22:04:14 -0700915 goto out;
916
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500917 /*
918 * section 14.2.34 of RFC 3530 has a description of
919 * SETCLIENTID_CONFIRM request processing consisting
920 * of 4 bullet points, labeled as CASE1 - CASE4 below.
921 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -0500922 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500923 /*
924 * RFC 3530 14.2.34 CASE 1:
925 * callback update
926 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400927 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 status = nfserr_clid_inuse;
929 else {
NeilBrown1a69c172005-06-23 22:04:08 -0700930 /* XXX: We just turn off callbacks until we can handle
931 * change request correctly. */
NeilBrowncb36d632005-06-23 22:04:23 -0700932 atomic_set(&conf->cl_callback.cb_set, 0);
NeilBrown21ab45a2005-06-23 22:04:14 -0700933 gen_confirm(conf);
NeilBrown46309022005-07-07 17:59:10 -0700934 nfsd4_remove_clid_dir(unconf);
NeilBrown1a69c172005-06-23 22:04:08 -0700935 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -0700937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -0500939 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500940 /*
941 * RFC 3530 14.2.34 CASE 2:
942 * probable retransmitted request; play it safe and
943 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -0700944 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400945 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -0700947 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -0700949 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400950 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500951 /*
952 * RFC 3530 14.2.34 CASE 3:
953 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -0700954 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400955 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 status = nfserr_clid_inuse;
957 } else {
NeilBrown1a69c172005-06-23 22:04:08 -0700958 unsigned int hash =
959 clientstr_hashval(unconf->cl_recdir);
960 conf = find_confirmed_client_by_str(unconf->cl_recdir,
961 hash);
962 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -0700963 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700964 expire_client(conf);
965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -0700967 conf = unconf;
J. Bruce Fields46f8a642007-11-22 13:54:18 -0500968 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700969 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -0400971 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
972 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -0700973 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -0500974 /*
975 * RFC 3530 14.2.34 CASE 4:
976 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -0700977 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -0700979 } else {
NeilBrown08e89872005-06-23 22:04:11 -0700980 /* check that we have hit one of the cases...*/
981 status = nfserr_clid_inuse;
982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 nfs4_unlock_state();
985 return status;
986}
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988/* OPEN Share state helper functions */
989static inline struct nfs4_file *
990alloc_init_file(struct inode *ino)
991{
992 struct nfs4_file *fp;
993 unsigned int hashval = file_hashval(ino);
994
NeilBrowne60d4392005-06-23 22:03:01 -0700995 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
996 if (fp) {
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800997 atomic_set(&fp->fi_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -0700999 INIT_LIST_HEAD(&fp->fi_stateids);
1000 INIT_LIST_HEAD(&fp->fi_delegations);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001001 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001003 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 fp->fi_inode = igrab(ino);
1005 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07001006 fp->fi_had_conflict = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return fp;
1008 }
1009 return NULL;
1010}
1011
1012static void
Christoph Lametere18b8902006-12-06 20:33:20 -08001013nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07001014{
NeilBrowne60d4392005-06-23 22:03:01 -07001015 if (*slab == NULL)
1016 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001017 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001018 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07001019}
1020
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001021void
NeilBrowne60d4392005-06-23 22:03:01 -07001022nfsd4_free_slabs(void)
1023{
1024 nfsd4_free_slab(&stateowner_slab);
1025 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07001026 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001027 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001028}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030static int
1031nfsd4_init_slabs(void)
1032{
1033 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09001034 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001035 if (stateowner_slab == NULL)
1036 goto out_nomem;
1037 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09001038 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001039 if (file_slab == NULL)
1040 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07001041 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09001042 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07001043 if (stateid_slab == NULL)
1044 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07001045 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09001046 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001047 if (deleg_slab == NULL)
1048 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07001050out_nomem:
1051 nfsd4_free_slabs();
1052 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1053 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
1056void
1057nfs4_free_stateowner(struct kref *kref)
1058{
1059 struct nfs4_stateowner *sop =
1060 container_of(kref, struct nfs4_stateowner, so_ref);
1061 kfree(sop->so_owner.data);
1062 kmem_cache_free(stateowner_slab, sop);
1063}
1064
1065static inline struct nfs4_stateowner *
1066alloc_stateowner(struct xdr_netobj *owner)
1067{
1068 struct nfs4_stateowner *sop;
1069
1070 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1071 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1072 memcpy(sop->so_owner.data, owner->data, owner->len);
1073 sop->so_owner.len = owner->len;
1074 kref_init(&sop->so_ref);
1075 return sop;
1076 }
1077 kmem_cache_free(stateowner_slab, sop);
1078 }
1079 return NULL;
1080}
1081
1082static struct nfs4_stateowner *
1083alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1084 struct nfs4_stateowner *sop;
1085 struct nfs4_replay *rp;
1086 unsigned int idhashval;
1087
1088 if (!(sop = alloc_stateowner(&open->op_owner)))
1089 return NULL;
1090 idhashval = ownerid_hashval(current_ownerid);
1091 INIT_LIST_HEAD(&sop->so_idhash);
1092 INIT_LIST_HEAD(&sop->so_strhash);
1093 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07001094 INIT_LIST_HEAD(&sop->so_stateids);
1095 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 INIT_LIST_HEAD(&sop->so_close_lru);
1097 sop->so_time = 0;
1098 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1099 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001100 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 sop->so_is_open_owner = 1;
1102 sop->so_id = current_ownerid++;
1103 sop->so_client = clp;
1104 sop->so_seqid = open->op_seqid;
1105 sop->so_confirmed = 0;
1106 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08001107 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 rp->rp_buflen = 0;
1109 rp->rp_buf = rp->rp_ibuf;
1110 return sop;
1111}
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113static inline void
1114init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1115 struct nfs4_stateowner *sop = open->op_stateowner;
1116 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1117
1118 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07001119 INIT_LIST_HEAD(&stp->st_perstateowner);
1120 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 INIT_LIST_HEAD(&stp->st_perfile);
1122 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001123 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07001124 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07001126 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 stp->st_file = fp;
1128 stp->st_stateid.si_boot = boot_time;
1129 stp->st_stateid.si_stateownerid = sop->so_id;
1130 stp->st_stateid.si_fileid = fp->fi_id;
1131 stp->st_stateid.si_generation = 0;
1132 stp->st_access_bmap = 0;
1133 stp->st_deny_bmap = 0;
1134 __set_bit(open->op_share_access, &stp->st_access_bmap);
1135 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07001136 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
1138
1139static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140move_to_close_lru(struct nfs4_stateowner *sop)
1141{
1142 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1143
NeilBrown358dd552006-04-10 22:55:42 -07001144 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 sop->so_time = get_seconds();
1146}
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001149same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
1150 clientid_t *clid)
1151{
1152 return (sop->so_owner.len == owner->len) &&
1153 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
1154 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157static struct nfs4_stateowner *
1158find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1159{
1160 struct nfs4_stateowner *so = NULL;
1161
1162 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001163 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return so;
1165 }
1166 return NULL;
1167}
1168
1169/* search file_hashtbl[] for file */
1170static struct nfs4_file *
1171find_file(struct inode *ino)
1172{
1173 unsigned int hashval = file_hashval(ino);
1174 struct nfs4_file *fp;
1175
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001176 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07001178 if (fp->fi_inode == ino) {
1179 get_nfs4_file(fp);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001180 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07001182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
J. Bruce Fields8b671b82009-02-22 14:51:34 -08001184 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return NULL;
1186}
1187
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001188static inline int access_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001189{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001190 if (x < NFS4_SHARE_ACCESS_READ)
1191 return 0;
1192 if (x > NFS4_SHARE_ACCESS_BOTH)
1193 return 0;
1194 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001195}
1196
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001197static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001198{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05001199 /* Note: unlike access bits, deny bits may be zero. */
1200 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001201}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04001203/*
1204 * We store the NONE, READ, WRITE, and BOTH bits separately in the
1205 * st_{access,deny}_bmap field of the stateid, in order to track not
1206 * only what share bits are currently in force, but also what
1207 * combinations of share bits previous opens have used. This allows us
1208 * to enforce the recommendation of rfc 3530 14.2.19 that the server
1209 * return an error if the client attempt to downgrade to a combination
1210 * of share bits not explicable by closing some of its previous opens.
1211 *
1212 * XXX: This enforcement is actually incomplete, since we don't keep
1213 * track of access/deny bit combinations; so, e.g., we allow:
1214 *
1215 * OPEN allow read, deny write
1216 * OPEN allow both, deny none
1217 * DOWNGRADE allow read, deny none
1218 *
1219 * which we should reject.
1220 */
NeilBrownfd39ca92005-06-23 22:04:03 -07001221static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222set_access(unsigned int *access, unsigned long bmap) {
1223 int i;
1224
1225 *access = 0;
1226 for (i = 1; i < 4; i++) {
1227 if (test_bit(i, &bmap))
1228 *access |= i;
1229 }
1230}
1231
NeilBrownfd39ca92005-06-23 22:04:03 -07001232static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233set_deny(unsigned int *deny, unsigned long bmap) {
1234 int i;
1235
1236 *deny = 0;
1237 for (i = 0; i < 4; i++) {
1238 if (test_bit(i, &bmap))
1239 *deny |= i ;
1240 }
1241}
1242
1243static int
1244test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
1245 unsigned int access, deny;
1246
1247 set_access(&access, stp->st_access_bmap);
1248 set_deny(&deny, stp->st_deny_bmap);
1249 if ((access & open->op_share_deny) || (deny & open->op_share_access))
1250 return 0;
1251 return 1;
1252}
1253
1254/*
1255 * Called to check deny when READ with all zero stateid or
1256 * WRITE with all zero or all one stateid
1257 */
Al Virob37ad282006-10-19 23:28:59 -07001258static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
1260{
1261 struct inode *ino = current_fh->fh_dentry->d_inode;
1262 struct nfs4_file *fp;
1263 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07001264 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 dprintk("NFSD: nfs4_share_conflict\n");
1267
1268 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07001269 if (!fp)
1270 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07001271 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07001273 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
1274 if (test_bit(deny_type, &stp->st_deny_bmap) ||
1275 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
1276 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
NeilBrown13cd2182005-06-23 22:03:10 -07001278 ret = nfs_ok;
1279out:
1280 put_nfs4_file(fp);
1281 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
1284static inline void
1285nfs4_file_downgrade(struct file *filp, unsigned int share_access)
1286{
1287 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
Dave Hansenaceaf782008-02-15 14:37:31 -08001288 drop_file_write_access(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
1290 }
1291}
1292
1293/*
1294 * Recall a delegation
1295 */
1296static int
1297do_recall(void *__dp)
1298{
1299 struct nfs4_delegation *dp = __dp;
1300
Meelap Shah47f99402007-07-17 04:04:40 -07001301 dp->dl_file->fi_had_conflict = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 nfsd4_cb_recall(dp);
1303 return 0;
1304}
1305
1306/*
1307 * Spawn a thread to perform a recall on the delegation represented
1308 * by the lease (file_lock)
1309 *
1310 * Called from break_lease() with lock_kernel() held.
1311 * Note: we assume break_lease will only call this *once* for any given
1312 * lease.
1313 */
1314static
1315void nfsd_break_deleg_cb(struct file_lock *fl)
1316{
1317 struct nfs4_delegation *dp= (struct nfs4_delegation *)fl->fl_owner;
1318 struct task_struct *t;
1319
1320 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
1321 if (!dp)
1322 return;
1323
1324 /* We're assuming the state code never drops its reference
1325 * without first removing the lease. Since we're in this lease
1326 * callback (and since the lease code is serialized by the kernel
1327 * lock) we know the server hasn't removed the lease yet, we know
1328 * it's safe to take a reference: */
1329 atomic_inc(&dp->dl_count);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04001330 atomic_inc(&dp->dl_client->cl_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 spin_lock(&recall_lock);
1333 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
1334 spin_unlock(&recall_lock);
1335
1336 /* only place dl_time is set. protected by lock_kernel*/
1337 dp->dl_time = get_seconds();
1338
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04001339 /*
1340 * We don't want the locks code to timeout the lease for us;
1341 * we'll remove it ourself if the delegation isn't returned
1342 * in time.
1343 */
1344 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall");
1347 if (IS_ERR(t)) {
1348 struct nfs4_client *clp = dp->dl_client;
1349
1350 printk(KERN_INFO "NFSD: Callback thread failed for "
1351 "for client (clientid %08x/%08x)\n",
1352 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
J. Bruce Fieldscfdcad42007-09-12 20:35:15 -04001353 put_nfs4_client(dp->dl_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 nfs4_put_delegation(dp);
1355 }
1356}
1357
1358/*
1359 * The file_lock is being reapd.
1360 *
1361 * Called by locks_free_lock() with lock_kernel() held.
1362 */
1363static
1364void nfsd_release_deleg_cb(struct file_lock *fl)
1365{
1366 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
1367
1368 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
1369
1370 if (!(fl->fl_flags & FL_LEASE) || !dp)
1371 return;
1372 dp->dl_flock = NULL;
1373}
1374
1375/*
1376 * Set the delegation file_lock back pointer.
1377 *
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001378 * Called from setlease() with lock_kernel() held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 */
1380static
1381void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
1382{
1383 struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
1384
1385 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
1386 if (!dp)
1387 return;
1388 dp->dl_flock = new;
1389}
1390
1391/*
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001392 * Called from setlease() with lock_kernel() held
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 */
1394static
1395int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
1396{
1397 struct nfs4_delegation *onlistd =
1398 (struct nfs4_delegation *)onlist->fl_owner;
1399 struct nfs4_delegation *tryd =
1400 (struct nfs4_delegation *)try->fl_owner;
1401
1402 if (onlist->fl_lmops != try->fl_lmops)
1403 return 0;
1404
1405 return onlistd->dl_client == tryd->dl_client;
1406}
1407
1408
1409static
1410int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
1411{
1412 if (arg & F_UNLCK)
1413 return lease_modify(onlist, arg);
1414 else
1415 return -EAGAIN;
1416}
1417
NeilBrownfd39ca92005-06-23 22:04:03 -07001418static struct lock_manager_operations nfsd_lease_mng_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 .fl_break = nfsd_break_deleg_cb,
1420 .fl_release_private = nfsd_release_deleg_cb,
1421 .fl_copy_lock = nfsd_copy_lock_deleg_cb,
1422 .fl_mylease = nfsd_same_client_deleg_cb,
1423 .fl_change = nfsd_change_deleg_cb,
1424};
1425
1426
Al Virob37ad282006-10-19 23:28:59 -07001427__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428nfsd4_process_open1(struct nfsd4_open *open)
1429{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 clientid_t *clientid = &open->op_clientid;
1431 struct nfs4_client *clp = NULL;
1432 unsigned int strhashval;
1433 struct nfs4_stateowner *sop = NULL;
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001436 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 if (STALE_CLIENTID(&open->op_clientid))
1439 return nfserr_stale_clientid;
1440
1441 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
1442 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001443 open->op_stateowner = sop;
1444 if (!sop) {
1445 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 clp = find_confirmed_client(clientid);
1447 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001448 return nfserr_expired;
1449 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001451 if (!sop->so_confirmed) {
1452 /* Replace unconfirmed owners without checking for replay. */
1453 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001454 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001455 open->op_stateowner = NULL;
1456 goto renew;
1457 }
1458 if (open->op_seqid == sop->so_seqid - 1) {
1459 if (sop->so_replay.rp_buflen)
Al Viroa90b0612006-10-19 23:29:03 -07001460 return nfserr_replay_me;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001461 /* The original OPEN failed so spectacularly
1462 * that we don't even have replay data saved!
1463 * Therefore, we have no choice but to continue
1464 * processing this OPEN; presumably, we'll
1465 * fail again for the same reason.
1466 */
1467 dprintk("nfsd4_process_open1: replay with no replay cache\n");
1468 goto renew;
1469 }
1470 if (open->op_seqid != sop->so_seqid)
1471 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001473 if (open->op_stateowner == NULL) {
1474 sop = alloc_init_open_stateowner(strhashval, clp, open);
1475 if (sop == NULL)
1476 return nfserr_resource;
1477 open->op_stateowner = sop;
1478 }
1479 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001481 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Al Virob37ad282006-10-19 23:28:59 -07001484static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07001485nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
1486{
1487 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
1488 return nfserr_openmode;
1489 else
1490 return nfs_ok;
1491}
1492
NeilBrown52f4fb42005-06-23 22:02:49 -07001493static struct nfs4_delegation *
1494find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
1495{
1496 struct nfs4_delegation *dp;
1497
NeilBrownea1da632005-06-23 22:04:17 -07001498 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) {
NeilBrown52f4fb42005-06-23 22:02:49 -07001499 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
1500 return dp;
1501 }
1502 return NULL;
1503}
1504
Al Virob37ad282006-10-19 23:28:59 -07001505static __be32
NeilBrown567d9822005-06-23 22:02:53 -07001506nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
1507 struct nfs4_delegation **dp)
1508{
1509 int flags;
Al Virob37ad282006-10-19 23:28:59 -07001510 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07001511
1512 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
1513 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07001514 goto out;
NeilBrown567d9822005-06-23 22:02:53 -07001515 flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
1516 RD_STATE : WR_STATE;
1517 status = nfs4_check_delegmode(*dp, flags);
1518 if (status)
1519 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001520out:
1521 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
1522 return nfs_ok;
1523 if (status)
1524 return status;
1525 open->op_stateowner->so_confirmed = 1;
1526 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07001527}
1528
Al Virob37ad282006-10-19 23:28:59 -07001529static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
1531{
1532 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07001533 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 struct nfs4_stateowner *sop = open->op_stateowner;
1535
NeilBrown8beefa22005-06-23 22:03:08 -07001536 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 /* ignore lock owners */
1538 if (local->st_stateowner->so_is_open_owner == 0)
1539 continue;
1540 /* remember if we have seen this open owner */
1541 if (local->st_stateowner == sop)
1542 *stpp = local;
1543 /* check for conflicting share reservations */
1544 if (!test_share(local, open))
1545 goto out;
1546 }
1547 status = 0;
1548out:
1549 return status;
1550}
1551
NeilBrown5ac049a2005-06-23 22:03:03 -07001552static inline struct nfs4_stateid *
1553nfs4_alloc_stateid(void)
1554{
1555 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
1556}
1557
Al Virob37ad282006-10-19 23:28:59 -07001558static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
NeilBrown567d9822005-06-23 22:02:53 -07001560 struct nfs4_delegation *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 struct svc_fh *cur_fh, int flags)
1562{
1563 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
NeilBrown5ac049a2005-06-23 22:03:03 -07001565 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (stp == NULL)
1567 return nfserr_resource;
1568
NeilBrown567d9822005-06-23 22:02:53 -07001569 if (dp) {
1570 get_file(dp->dl_vfs_file);
1571 stp->st_vfs_file = dp->dl_vfs_file;
1572 } else {
Al Virob37ad282006-10-19 23:28:59 -07001573 __be32 status;
NeilBrown567d9822005-06-23 22:02:53 -07001574 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
1575 &stp->st_vfs_file);
1576 if (status) {
1577 if (status == nfserr_dropit)
1578 status = nfserr_jukebox;
NeilBrown5ac049a2005-06-23 22:03:03 -07001579 kmem_cache_free(stateid_slab, stp);
NeilBrown567d9822005-06-23 22:02:53 -07001580 return status;
1581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 *stpp = stp;
1584 return 0;
1585}
1586
Al Virob37ad282006-10-19 23:28:59 -07001587static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
1589 struct nfsd4_open *open)
1590{
1591 struct iattr iattr = {
1592 .ia_valid = ATTR_SIZE,
1593 .ia_size = 0,
1594 };
1595 if (!open->op_truncate)
1596 return 0;
1597 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08001598 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
1600}
1601
Al Virob37ad282006-10-19 23:28:59 -07001602static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
1604{
1605 struct file *filp = stp->st_vfs_file;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001606 struct inode *inode = filp->f_path.dentry->d_inode;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001607 unsigned int share_access, new_writer;
Al Virob37ad282006-10-19 23:28:59 -07001608 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 set_access(&share_access, stp->st_access_bmap);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001611 new_writer = (~share_access) & open->op_share_access
1612 & NFS4_SHARE_ACCESS_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001614 if (new_writer) {
Al Virob37ad282006-10-19 23:28:59 -07001615 int err = get_write_access(inode);
1616 if (err)
1617 return nfserrno(err);
Benny Halevye518f052008-07-04 15:38:41 +03001618 err = mnt_want_write(cur_fh->fh_export->ex_path.mnt);
1619 if (err)
1620 return nfserrno(err);
1621 file_take_write(filp);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 status = nfsd4_truncate(rqstp, cur_fh, open);
1624 if (status) {
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001625 if (new_writer)
1626 put_write_access(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return status;
1628 }
1629 /* remember the open */
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001630 filp->f_mode |= open->op_share_access;
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04001631 __set_bit(open->op_share_access, &stp->st_access_bmap);
1632 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 return nfs_ok;
1635}
1636
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638static void
NeilBrown37515172005-07-07 17:59:16 -07001639nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
NeilBrown37515172005-07-07 17:59:16 -07001641 open->op_stateowner->so_confirmed = 1;
1642 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
1645/*
1646 * Attempt to hand out a delegation.
1647 */
1648static void
1649nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
1650{
1651 struct nfs4_delegation *dp;
1652 struct nfs4_stateowner *sop = stp->st_stateowner;
1653 struct nfs4_callback *cb = &sop->so_client->cl_callback;
1654 struct file_lock fl, *flp = &fl;
1655 int status, flag = 0;
1656
1657 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07001658 open->op_recall = 0;
1659 switch (open->op_claim_type) {
1660 case NFS4_OPEN_CLAIM_PREVIOUS:
1661 if (!atomic_read(&cb->cb_set))
1662 open->op_recall = 1;
1663 flag = open->op_delegate_type;
1664 if (flag == NFS4_OPEN_DELEGATE_NONE)
1665 goto out;
1666 break;
1667 case NFS4_OPEN_CLAIM_NULL:
1668 /* Let's not give out any delegations till everyone's
1669 * had the chance to reclaim theirs.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001670 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07001671 goto out;
1672 if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
1673 goto out;
1674 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1675 flag = NFS4_OPEN_DELEGATE_WRITE;
1676 else
1677 flag = NFS4_OPEN_DELEGATE_READ;
1678 break;
1679 default:
1680 goto out;
1681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
1684 if (dp == NULL) {
1685 flag = NFS4_OPEN_DELEGATE_NONE;
1686 goto out;
1687 }
1688 locks_init_lock(&fl);
1689 fl.fl_lmops = &nfsd_lease_mng_ops;
1690 fl.fl_flags = FL_LEASE;
Felix Blyakher9167f502008-02-26 10:54:36 -08001691 fl.fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 fl.fl_end = OFFSET_MAX;
1693 fl.fl_owner = (fl_owner_t)dp;
1694 fl.fl_file = stp->st_vfs_file;
1695 fl.fl_pid = current->tgid;
1696
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001697 /* vfs_setlease checks to see if delegation should be handed out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 * the lock_manager callbacks fl_mylease and fl_change are used
1699 */
Felix Blyakher9167f502008-02-26 10:54:36 -08001700 if ((status = vfs_setlease(stp->st_vfs_file, fl.fl_type, &flp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
NeilBrownc9071322005-04-16 15:26:38 -07001702 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 flag = NFS4_OPEN_DELEGATE_NONE;
1704 goto out;
1705 }
1706
1707 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
1708
1709 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1710 dp->dl_stateid.si_boot,
1711 dp->dl_stateid.si_stateownerid,
1712 dp->dl_stateid.si_fileid,
1713 dp->dl_stateid.si_generation);
1714out:
NeilBrown7b190fe2005-06-23 22:03:23 -07001715 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
1716 && flag == NFS4_OPEN_DELEGATE_NONE
1717 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04001718 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 open->op_delegate_type = flag;
1720}
1721
1722/*
1723 * called with nfs4_lock_state() held.
1724 */
Al Virob37ad282006-10-19 23:28:59 -07001725__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
1727{
1728 struct nfs4_file *fp = NULL;
1729 struct inode *ino = current_fh->fh_dentry->d_inode;
1730 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07001731 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07001732 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 status = nfserr_inval;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07001735 if (!access_valid(open->op_share_access)
1736 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 goto out;
1738 /*
1739 * Lookup file; if found, lookup stateid and check open request,
1740 * and check for delegations in the process of being recalled.
1741 * If not found, create the nfs4_file struct
1742 */
1743 fp = find_file(ino);
1744 if (fp) {
1745 if ((status = nfs4_check_open(fp, open, &stp)))
1746 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001747 status = nfs4_check_deleg(fp, open, &dp);
1748 if (status)
1749 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07001751 status = nfserr_bad_stateid;
1752 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
1753 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 status = nfserr_resource;
1755 fp = alloc_init_file(ino);
1756 if (fp == NULL)
1757 goto out;
1758 }
1759
1760 /*
1761 * OPEN the file, or upgrade an existing OPEN.
1762 * If truncate fails, the OPEN fails.
1763 */
1764 if (stp) {
1765 /* Stateid was found, this is an OPEN upgrade */
1766 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
1767 if (status)
1768 goto out;
NeilBrown444c2c02005-07-07 17:59:22 -07001769 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 } else {
1771 /* Stateid was not found, this is a new OPEN */
1772 int flags = 0;
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -07001773 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001774 flags |= NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001776 flags |= NFSD_MAY_WRITE;
NeilBrown567d9822005-06-23 22:02:53 -07001777 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
1778 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 goto out;
1780 init_stateid(stp, fp, open);
1781 status = nfsd4_truncate(rqstp, current_fh, open);
1782 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05001783 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 goto out;
1785 }
1786 }
1787 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
1788
1789 /*
1790 * Attempt to hand out a delegation. No error return, because the
1791 * OPEN succeeds even if we fail.
1792 */
1793 nfs4_open_delegation(current_fh, open, stp);
1794
1795 status = nfs_ok;
1796
1797 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1798 stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid,
1799 stp->st_stateid.si_fileid, stp->st_stateid.si_generation);
1800out:
NeilBrown13cd2182005-06-23 22:03:10 -07001801 if (fp)
1802 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07001803 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1804 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 /*
1806 * To finish the open response, we just need to set the rflags.
1807 */
1808 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
1809 if (!open->op_stateowner->so_confirmed)
1810 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
1811
1812 return status;
1813}
1814
Al Virob37ad282006-10-19 23:28:59 -07001815__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001816nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1817 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
1819 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07001820 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 nfs4_lock_state();
1823 dprintk("process_renew(%08x/%08x): starting\n",
1824 clid->cl_boot, clid->cl_id);
1825 status = nfserr_stale_clientid;
1826 if (STALE_CLIENTID(clid))
1827 goto out;
1828 clp = find_confirmed_client(clid);
1829 status = nfserr_expired;
1830 if (clp == NULL) {
1831 /* We assume the client took too long to RENEW. */
1832 dprintk("nfsd4_renew: clientid not found!\n");
1833 goto out;
1834 }
1835 renew_client(clp);
1836 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07001837 if (!list_empty(&clp->cl_delegations)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 && !atomic_read(&clp->cl_callback.cb_set))
1839 goto out;
1840 status = nfs_ok;
1841out:
1842 nfs4_unlock_state();
1843 return status;
1844}
1845
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001846struct lock_manager nfsd4_manager = {
1847};
1848
NeilBrowna76b4312005-06-23 22:04:01 -07001849static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001850nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07001851{
1852 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07001853 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001854 locks_end_grace(&nfsd4_manager);
NeilBrowna76b4312005-06-23 22:04:01 -07001855}
1856
NeilBrownfd39ca92005-06-23 22:04:03 -07001857static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858nfs4_laundromat(void)
1859{
1860 struct nfs4_client *clp;
1861 struct nfs4_stateowner *sop;
1862 struct nfs4_delegation *dp;
1863 struct list_head *pos, *next, reaplist;
1864 time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
1865 time_t t, clientid_val = NFSD_LEASE_TIME;
1866 time_t u, test_val = NFSD_LEASE_TIME;
1867
1868 nfs4_lock_state();
1869
1870 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001871 if (locks_in_grace())
1872 nfsd4_end_grace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 list_for_each_safe(pos, next, &client_lru) {
1874 clp = list_entry(pos, struct nfs4_client, cl_lru);
1875 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
1876 t = clp->cl_time - cutoff;
1877 if (clientid_val > t)
1878 clientid_val = t;
1879 break;
1880 }
1881 dprintk("NFSD: purging unused client (clientid %08x)\n",
1882 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07001883 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 expire_client(clp);
1885 }
1886 INIT_LIST_HEAD(&reaplist);
1887 spin_lock(&recall_lock);
1888 list_for_each_safe(pos, next, &del_recall_lru) {
1889 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1890 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
1891 u = dp->dl_time - cutoff;
1892 if (test_val > u)
1893 test_val = u;
1894 break;
1895 }
1896 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1897 dp, dp->dl_flock);
1898 list_move(&dp->dl_recall_lru, &reaplist);
1899 }
1900 spin_unlock(&recall_lock);
1901 list_for_each_safe(pos, next, &reaplist) {
1902 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1903 list_del_init(&dp->dl_recall_lru);
1904 unhash_delegation(dp);
1905 }
1906 test_val = NFSD_LEASE_TIME;
1907 list_for_each_safe(pos, next, &close_lru) {
1908 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
1909 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
1910 u = sop->so_time - cutoff;
1911 if (test_val > u)
1912 test_val = u;
1913 break;
1914 }
1915 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1916 sop->so_id);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05001917 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
1920 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
1921 nfs4_unlock_state();
1922 return clientid_val;
1923}
1924
Harvey Harrisona254b242008-02-20 12:49:00 -08001925static struct workqueue_struct *laundry_wq;
1926static void laundromat_main(struct work_struct *);
1927static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
1928
1929static void
David Howellsc4028952006-11-22 14:57:56 +00001930laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
1932 time_t t;
1933
1934 t = nfs4_laundromat();
1935 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07001936 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937}
1938
NeilBrownfd39ca92005-06-23 22:04:03 -07001939static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07001940search_close_lru(u32 st_id, int flags)
1941{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 struct nfs4_stateowner *local = NULL;
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (flags & CLOSE_STATE) {
1945 list_for_each_entry(local, &close_lru, so_close_lru) {
1946 if (local->so_id == st_id)
1947 return local;
1948 }
1949 }
1950 return NULL;
1951}
1952
1953static inline int
1954nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
1955{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001956 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
1959static int
1960STALE_STATEID(stateid_t *stateid)
1961{
1962 if (stateid->si_boot == boot_time)
1963 return 0;
Neil Brown849823c2005-09-13 01:25:36 -07001964 dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
1966 stateid->si_generation);
1967 return 1;
1968}
1969
1970static inline int
1971access_permit_read(unsigned long access_bmap)
1972{
1973 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
1974 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
1975 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
1976}
1977
1978static inline int
1979access_permit_write(unsigned long access_bmap)
1980{
1981 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
1982 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
1983}
1984
1985static
Al Virob37ad282006-10-19 23:28:59 -07001986__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
Al Virob37ad282006-10-19 23:28:59 -07001988 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
1991 goto out;
1992 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
1993 goto out;
1994 status = nfs_ok;
1995out:
1996 return status;
1997}
1998
Al Virob37ad282006-10-19 23:28:59 -07001999static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2001{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002002 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002004 else if (locks_in_grace()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 /* Answer in remaining cases depends on existance of
2006 * conflicting state; so we must wait out the grace period. */
2007 return nfserr_grace;
2008 } else if (flags & WR_STATE)
2009 return nfs4_share_conflict(current_fh,
2010 NFS4_SHARE_DENY_WRITE);
2011 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2012 return nfs4_share_conflict(current_fh,
2013 NFS4_SHARE_DENY_READ);
2014}
2015
2016/*
2017 * Allow READ/WRITE during grace period on recovered state only for files
2018 * that are not able to provide mandatory locking.
2019 */
2020static inline int
J. Bruce Fields18f82732009-02-21 15:23:01 -08002021grace_disallows_io(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002023 return locks_in_grace() && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
J. Bruce Fields0836f582008-01-26 19:08:12 -05002026static int check_stateid_generation(stateid_t *in, stateid_t *ref)
2027{
2028 /* If the client sends us a stateid from the future, it's buggy: */
2029 if (in->si_generation > ref->si_generation)
2030 return nfserr_bad_stateid;
2031 /*
2032 * The following, however, can happen. For example, if the
2033 * client sends an open and some IO at the same time, the open
2034 * may bump si_generation while the IO is still in flight.
2035 * Thanks to hard links and renames, the client never knows what
2036 * file an open will affect. So it could avoid that situation
2037 * only by serializing all opens and IO from the same open
2038 * owner. To recover from the old_stateid error, the client
2039 * will just have to retry the IO:
2040 */
2041 if (in->si_generation < ref->si_generation)
2042 return nfserr_old_stateid;
2043 return nfs_ok;
2044}
2045
J. Bruce Fields3e633072009-02-21 13:17:19 -08002046static int is_delegation_stateid(stateid_t *stateid)
2047{
2048 return stateid->si_fileid == 0;
2049}
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051/*
2052* Checks for stateid operations
2053*/
Al Virob37ad282006-10-19 23:28:59 -07002054__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055nfs4_preprocess_stateid_op(struct svc_fh *current_fh, stateid_t *stateid, int flags, struct file **filpp)
2056{
2057 struct nfs4_stateid *stp = NULL;
2058 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07002060 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 if (filpp)
2063 *filpp = NULL;
2064
J. Bruce Fields18f82732009-02-21 15:23:01 -08002065 if (grace_disallows_io(ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 return nfserr_grace;
2067
2068 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2069 return check_special_stateids(current_fh, stateid, flags);
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 status = nfserr_stale_stateid;
2072 if (STALE_STATEID(stateid))
2073 goto out;
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 status = nfserr_bad_stateid;
J. Bruce Fields3e633072009-02-21 13:17:19 -08002076 if (is_delegation_stateid(stateid)) {
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002077 dp = find_delegation_stateid(ino, stateid);
J. Bruce Fields819a8f52009-02-21 12:13:24 -08002078 if (!dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 goto out;
J. Bruce Fieldsfd03b092009-02-21 11:27:30 -08002080 status = check_stateid_generation(stateid, &dp->dl_stateid);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002081 if (status)
2082 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002083 status = nfs4_check_delegmode(dp, flags);
2084 if (status)
2085 goto out;
2086 renew_client(dp->dl_client);
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08002087 if (filpp)
2088 *filpp = dp->dl_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002090 stp = find_stateid(stateid, flags);
J. Bruce Fields819a8f52009-02-21 12:13:24 -08002091 if (!stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 goto out;
J. Bruce Fields6150ef02009-02-21 13:36:16 -08002093 if (nfs4_check_fh(current_fh, stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 goto out;
2095 if (!stp->st_stateowner->so_confirmed)
2096 goto out;
J. Bruce Fieldsfd03b092009-02-21 11:27:30 -08002097 status = check_stateid_generation(stateid, &stp->st_stateid);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08002098 if (status)
2099 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08002100 status = nfs4_check_openmode(stp, flags);
2101 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 goto out;
2103 renew_client(stp->st_stateowner->so_client);
2104 if (filpp)
2105 *filpp = stp->st_vfs_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107 status = nfs_ok;
2108out:
2109 return status;
2110}
2111
NeilBrown4c4cd222005-07-07 17:59:27 -07002112static inline int
2113setlkflg (int type)
2114{
2115 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
2116 RD_STATE : WR_STATE;
2117}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119/*
2120 * Checks for sequence id mutating operations.
2121 */
Al Virob37ad282006-10-19 23:28:59 -07002122static __be32
NeilBrown4c4cd222005-07-07 17:59:27 -07002123nfs4_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 -07002124{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 struct nfs4_stateid *stp;
2126 struct nfs4_stateowner *sop;
J. Bruce Fields0836f582008-01-26 19:08:12 -05002127 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2130 "stateid = (%08x/%08x/%08x/%08x)\n", seqid,
2131 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2132 stateid->si_generation);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 *stpp = NULL;
2135 *sopp = NULL;
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002138 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002139 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07002143 return nfserr_stale_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 /*
2145 * We return BAD_STATEID if filehandle doesn't match stateid,
2146 * the confirmed flag is incorrecly set, or the generation
2147 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 */
NeilBrownf8816512005-07-07 17:59:25 -07002149 stp = find_stateid(stateid, flags);
2150 if (stp == NULL) {
2151 /*
2152 * Also, we should make sure this isn't just the result of
2153 * a replayed close:
2154 */
2155 sop = search_close_lru(stateid->si_stateownerid, flags);
2156 if (sop == NULL)
2157 return nfserr_bad_stateid;
2158 *sopp = sop;
2159 goto check_replay;
2160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
J. Bruce Fields39325bd2007-11-26 17:06:39 -05002162 *stpp = stp;
2163 *sopp = sop = stp->st_stateowner;
2164
NeilBrown4c4cd222005-07-07 17:59:27 -07002165 if (lock) {
NeilBrown4c4cd222005-07-07 17:59:27 -07002166 clientid_t *lockclid = &lock->v.new.clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 struct nfs4_client *clp = sop->so_client;
NeilBrown4c4cd222005-07-07 17:59:27 -07002168 int lkflg = 0;
Al Virob37ad282006-10-19 23:28:59 -07002169 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
NeilBrown4c4cd222005-07-07 17:59:27 -07002171 lkflg = setlkflg(lock->lk_type);
2172
2173 if (lock->lk_is_new) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002174 if (!sop->so_is_open_owner)
2175 return nfserr_bad_stateid;
2176 if (!same_clid(&clp->cl_clientid, lockclid))
NeilBrown4c4cd222005-07-07 17:59:27 -07002177 return nfserr_bad_stateid;
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002178 /* stp is the open stateid */
2179 status = nfs4_check_openmode(stp, lkflg);
2180 if (status)
2181 return status;
2182 } else {
2183 /* stp is the lock stateid */
2184 status = nfs4_check_openmode(stp->st_openstp, lkflg);
2185 if (status)
2186 return status;
NeilBrown4c4cd222005-07-07 17:59:27 -07002187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
2189
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002190 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002191 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002192 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 }
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 /*
2196 * We now validate the seqid and stateid generation numbers.
2197 * For the moment, we ignore the possibility of
2198 * generation number wraparound.
2199 */
NeilBrownbd9aac52005-07-07 17:59:19 -07002200 if (seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 goto check_replay;
2202
NeilBrown3a4f98b2005-07-07 17:59:26 -07002203 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002204 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07002205 " unconfirmed stateowner!\n");
2206 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07002208 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002209 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07002210 " confirmed yet!\n");
2211 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
J. Bruce Fields0836f582008-01-26 19:08:12 -05002213 status = check_stateid_generation(stateid, &stp->st_stateid);
2214 if (status)
2215 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07002216 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002217 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07002220 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07002221 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 /* indicate replay to calling function */
Al Viroa90b0612006-10-19 23:29:03 -07002223 return nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002225 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
NeilBrown3a4f98b2005-07-07 17:59:26 -07002226 sop->so_seqid, seqid);
2227 *sopp = NULL;
2228 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
Al Virob37ad282006-10-19 23:28:59 -07002231__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002232nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002233 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
Al Virob37ad282006-10-19 23:28:59 -07002235 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 struct nfs4_stateowner *sop;
2237 struct nfs4_stateid *stp;
2238
2239 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002240 (int)cstate->current_fh.fh_dentry->d_name.len,
2241 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002243 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07002244 if (status)
2245 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 nfs4_lock_state();
2248
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002249 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2250 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002251 CONFIRM | OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 &oc->oc_stateowner, &stp, NULL)))
2253 goto out;
2254
2255 sop = oc->oc_stateowner;
2256 sop->so_confirmed = 1;
2257 update_stateid(&stp->st_stateid);
2258 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
2259 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
2260 "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid,
2261 stp->st_stateid.si_boot,
2262 stp->st_stateid.si_stateownerid,
2263 stp->st_stateid.si_fileid,
2264 stp->st_stateid.si_generation);
NeilBrownc7b9a452005-06-23 22:04:30 -07002265
2266 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267out:
Neil Brownf2327d92005-09-13 01:25:37 -07002268 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 nfs4_get_stateowner(oc->oc_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002270 cstate->replay_owner = oc->oc_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 nfs4_unlock_state();
2273 return status;
2274}
2275
2276
2277/*
2278 * unset all bits in union bitmap (bmap) that
2279 * do not exist in share (from successful OPEN_DOWNGRADE)
2280 */
2281static void
2282reset_union_bmap_access(unsigned long access, unsigned long *bmap)
2283{
2284 int i;
2285 for (i = 1; i < 4; i++) {
2286 if ((i & access) != i)
2287 __clear_bit(i, bmap);
2288 }
2289}
2290
2291static void
2292reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
2293{
2294 int i;
2295 for (i = 0; i < 4; i++) {
2296 if ((i & deny) != i)
2297 __clear_bit(i, bmap);
2298 }
2299}
2300
Al Virob37ad282006-10-19 23:28:59 -07002301__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002302nfsd4_open_downgrade(struct svc_rqst *rqstp,
2303 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002304 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305{
Al Virob37ad282006-10-19 23:28:59 -07002306 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 struct nfs4_stateid *stp;
2308 unsigned int share_access;
2309
2310 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002311 (int)cstate->current_fh.fh_dentry->d_name.len,
2312 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002314 if (!access_valid(od->od_share_access)
2315 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 return nfserr_inval;
2317
2318 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002319 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2320 od->od_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 &od->od_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002322 OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 &od->od_stateowner, &stp, NULL)))
2324 goto out;
2325
2326 status = nfserr_inval;
2327 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
2328 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2329 stp->st_access_bmap, od->od_share_access);
2330 goto out;
2331 }
2332 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
2333 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2334 stp->st_deny_bmap, od->od_share_deny);
2335 goto out;
2336 }
2337 set_access(&share_access, stp->st_access_bmap);
2338 nfs4_file_downgrade(stp->st_vfs_file,
2339 share_access & ~od->od_share_access);
2340
2341 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
2342 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
2343
2344 update_stateid(&stp->st_stateid);
2345 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
2346 status = nfs_ok;
2347out:
Neil Brownf2327d92005-09-13 01:25:37 -07002348 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 nfs4_get_stateowner(od->od_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002350 cstate->replay_owner = od->od_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 nfs4_unlock_state();
2353 return status;
2354}
2355
2356/*
2357 * nfs4_unlock_state() called after encode
2358 */
Al Virob37ad282006-10-19 23:28:59 -07002359__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002360nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002361 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Al Virob37ad282006-10-19 23:28:59 -07002363 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 struct nfs4_stateid *stp;
2365
2366 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002367 (int)cstate->current_fh.fh_dentry->d_name.len,
2368 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370 nfs4_lock_state();
2371 /* check close_lru for replay */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002372 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
2373 close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 &close->cl_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002375 OPEN_STATE | CLOSE_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 &close->cl_stateowner, &stp, NULL)))
2377 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 status = nfs_ok;
2379 update_stateid(&stp->st_stateid);
2380 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
2381
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002382 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05002383 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002384
2385 /* place unused nfs4_stateowners on so_close_lru list to be
2386 * released by the laundromat service after the lease period
2387 * to enable us to handle CLOSE replay
2388 */
2389 if (list_empty(&close->cl_stateowner->so_stateids))
2390 move_to_close_lru(close->cl_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391out:
Neil Brownf2327d92005-09-13 01:25:37 -07002392 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 nfs4_get_stateowner(close->cl_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002394 cstate->replay_owner = close->cl_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 nfs4_unlock_state();
2397 return status;
2398}
2399
Al Virob37ad282006-10-19 23:28:59 -07002400__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002401nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2402 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002404 struct nfs4_delegation *dp;
2405 stateid_t *stateid = &dr->dr_stateid;
2406 struct inode *inode;
Al Virob37ad282006-10-19 23:28:59 -07002407 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002409 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002410 return status;
2411 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
2413 nfs4_lock_state();
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002414 status = nfserr_bad_stateid;
2415 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2416 goto out;
2417 status = nfserr_stale_stateid;
2418 if (STALE_STATEID(stateid))
2419 goto out;
J. Bruce Fields7e0f7cf2009-02-21 13:32:28 -08002420 status = nfserr_bad_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002421 if (!is_delegation_stateid(stateid))
2422 goto out;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002423 dp = find_delegation_stateid(inode, stateid);
2424 if (!dp)
2425 goto out;
2426 status = check_stateid_generation(stateid, &dp->dl_stateid);
2427 if (status)
2428 goto out;
2429 renew_client(dp->dl_client);
2430
2431 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08002433 nfs4_unlock_state();
2434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 return status;
2436}
2437
2438
2439/*
2440 * Lock owner state (byte-range locks)
2441 */
2442#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
2443#define LOCK_HASH_BITS 8
2444#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
2445#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
2446
Benny Halevy87df4de2008-12-15 19:42:03 +02002447static inline u64
2448end_offset(u64 start, u64 len)
2449{
2450 u64 end;
2451
2452 end = start + len;
2453 return end >= start ? end: NFS4_MAX_UINT64;
2454}
2455
2456/* last octet in a range */
2457static inline u64
2458last_byte_offset(u64 start, u64 len)
2459{
2460 u64 end;
2461
2462 BUG_ON(!len);
2463 end = start + len;
2464 return end > start ? end - 1: NFS4_MAX_UINT64;
2465}
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467#define lockownerid_hashval(id) \
2468 ((id) & LOCK_HASH_MASK)
2469
2470static inline unsigned int
2471lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
2472 struct xdr_netobj *ownername)
2473{
2474 return (file_hashval(inode) + cl_id
2475 + opaque_hashval(ownername->data, ownername->len))
2476 & LOCK_HASH_MASK;
2477}
2478
2479static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
2480static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
2481static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
2482
NeilBrownfd39ca92005-06-23 22:04:03 -07002483static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484find_stateid(stateid_t *stid, int flags)
2485{
Krishna Kumar9346eff2008-10-20 11:44:28 +05302486 struct nfs4_stateid *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 u32 st_id = stid->si_stateownerid;
2488 u32 f_id = stid->si_fileid;
2489 unsigned int hashval;
2490
2491 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
Krishna Kumar9346eff2008-10-20 11:44:28 +05302492 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 hashval = stateid_hashval(st_id, f_id);
2494 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
2495 if ((local->st_stateid.si_stateownerid == st_id) &&
2496 (local->st_stateid.si_fileid == f_id))
2497 return local;
2498 }
2499 }
Krishna Kumar9346eff2008-10-20 11:44:28 +05302500
2501 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 hashval = stateid_hashval(st_id, f_id);
2503 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
2504 if ((local->st_stateid.si_stateownerid == st_id) &&
2505 (local->st_stateid.si_fileid == f_id))
2506 return local;
2507 }
Neil Brown849823c2005-09-13 01:25:36 -07002508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return NULL;
2510}
2511
2512static struct nfs4_delegation *
2513find_delegation_stateid(struct inode *ino, stateid_t *stid)
2514{
NeilBrown13cd2182005-06-23 22:03:10 -07002515 struct nfs4_file *fp;
2516 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2519 stid->si_boot, stid->si_stateownerid,
2520 stid->si_fileid, stid->si_generation);
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002523 if (!fp)
2524 return NULL;
2525 dl = find_delegation_file(fp, stid);
2526 put_nfs4_file(fp);
2527 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
2529
2530/*
2531 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2532 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2533 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
2534 * locking, this prevents us from being completely protocol-compliant. The
2535 * real solution to this problem is to start using unsigned file offsets in
2536 * the VFS, but this is a very deep change!
2537 */
2538static inline void
2539nfs4_transform_lock_offset(struct file_lock *lock)
2540{
2541 if (lock->fl_start < 0)
2542 lock->fl_start = OFFSET_MAX;
2543 if (lock->fl_end < 0)
2544 lock->fl_end = OFFSET_MAX;
2545}
2546
NeilBrownd5b90262006-04-10 22:55:22 -07002547/* Hack!: For now, we're defining this just so we can use a pointer to it
2548 * as a unique cookie to identify our (NFSv4's) posix locks. */
Adrian Bunke465a772006-04-10 22:55:23 -07002549static struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07002550};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552static inline void
2553nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
2554{
NeilBrownd5b90262006-04-10 22:55:22 -07002555 struct nfs4_stateowner *sop;
2556 unsigned int hval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
NeilBrownd5b90262006-04-10 22:55:22 -07002558 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
2559 sop = (struct nfs4_stateowner *) fl->fl_owner;
2560 hval = lockownerid_hashval(sop->so_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 kref_get(&sop->so_ref);
2562 deny->ld_sop = sop;
2563 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07002564 } else {
2565 deny->ld_sop = NULL;
2566 deny->ld_clientid.cl_boot = 0;
2567 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 }
2569 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02002570 deny->ld_length = NFS4_MAX_UINT64;
2571 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 deny->ld_length = fl->fl_end - fl->fl_start + 1;
2573 deny->ld_type = NFS4_READ_LT;
2574 if (fl->fl_type != F_RDLCK)
2575 deny->ld_type = NFS4_WRITE_LT;
2576}
2577
2578static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579find_lockstateowner_str(struct inode *inode, clientid_t *clid,
2580 struct xdr_netobj *owner)
2581{
2582 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
2583 struct nfs4_stateowner *op;
2584
2585 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002586 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return op;
2588 }
2589 return NULL;
2590}
2591
2592/*
2593 * Alloc a lock owner structure.
2594 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
2595 * occured.
2596 *
2597 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 */
2599
2600static struct nfs4_stateowner *
2601alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
2602 struct nfs4_stateowner *sop;
2603 struct nfs4_replay *rp;
2604 unsigned int idhashval;
2605
2606 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
2607 return NULL;
2608 idhashval = lockownerid_hashval(current_ownerid);
2609 INIT_LIST_HEAD(&sop->so_idhash);
2610 INIT_LIST_HEAD(&sop->so_strhash);
2611 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07002612 INIT_LIST_HEAD(&sop->so_stateids);
2613 INIT_LIST_HEAD(&sop->so_perstateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
2615 sop->so_time = 0;
2616 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
2617 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002618 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 sop->so_is_open_owner = 0;
2620 sop->so_id = current_ownerid++;
2621 sop->so_client = clp;
Neil Brownb59e3c02005-09-13 01:25:38 -07002622 /* It is the openowner seqid that will be incremented in encode in the
2623 * case of new lockowners; so increment the lock seqid manually: */
2624 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 sop->so_confirmed = 1;
2626 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08002627 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 rp->rp_buflen = 0;
2629 rp->rp_buf = rp->rp_ibuf;
2630 return sop;
2631}
2632
NeilBrownfd39ca92005-06-23 22:04:03 -07002633static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
2635{
2636 struct nfs4_stateid *stp;
2637 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2638
NeilBrown5ac049a2005-06-23 22:03:03 -07002639 stp = nfs4_alloc_stateid();
2640 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 goto out;
2642 INIT_LIST_HEAD(&stp->st_hash);
2643 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07002644 INIT_LIST_HEAD(&stp->st_perstateowner);
2645 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07002647 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07002648 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07002650 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 stp->st_file = fp;
2652 stp->st_stateid.si_boot = boot_time;
2653 stp->st_stateid.si_stateownerid = sop->so_id;
2654 stp->st_stateid.si_fileid = fp->fi_id;
2655 stp->st_stateid.si_generation = 0;
2656 stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
2657 stp->st_access_bmap = open_stp->st_access_bmap;
2658 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07002659 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661out:
2662 return stp;
2663}
2664
NeilBrownfd39ca92005-06-23 22:04:03 -07002665static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666check_lock_length(u64 offset, u64 length)
2667{
Benny Halevy87df4de2008-12-15 19:42:03 +02002668 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 LOFF_OVERFLOW(offset, length)));
2670}
2671
2672/*
2673 * LOCK operation
2674 */
Al Virob37ad282006-10-19 23:28:59 -07002675__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002676nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002677 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
NeilBrown3e9e3db2005-06-23 22:04:20 -07002679 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07002680 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 struct nfs4_stateid *lock_stp;
2682 struct file *filp;
2683 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05002684 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07002685 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 unsigned int strhashval;
Marc Eshel150b3932007-01-18 16:15:35 -05002687 unsigned int cmd;
Al Virob8dd7b92006-10-19 23:29:01 -07002688 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2691 (long long) lock->lk_offset,
2692 (long long) lock->lk_length);
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 if (check_lock_length(lock->lk_offset, lock->lk_length))
2695 return nfserr_inval;
2696
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002697 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002698 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08002699 dprintk("NFSD: nfsd4_lock: permission denied!\n");
2700 return status;
2701 }
2702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 nfs4_lock_state();
2704
2705 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07002706 /*
2707 * Client indicates that this is a new lockowner.
2708 * Use open owner and open stateid to create lock owner and
2709 * lock stateid.
2710 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 struct nfs4_stateid *open_stp = NULL;
2712 struct nfs4_file *fp;
2713
2714 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002715 if (STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 /* validate and update open stateid and open seqid */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002719 status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 lock->lk_new_open_seqid,
2721 &lock->lk_new_open_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002722 OPEN_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002723 &lock->lk_replay_owner, &open_stp,
Neil Brownb59e3c02005-09-13 01:25:38 -07002724 lock);
NeilBrown37515172005-07-07 17:59:16 -07002725 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002727 open_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 /* create lockowner and lock stateid */
2729 fp = open_stp->st_file;
2730 strhashval = lock_ownerstr_hashval(fp->fi_inode,
2731 open_sop->so_client->cl_clientid.cl_id,
2732 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07002733 /* XXX: Do we need to check for duplicate stateowners on
2734 * the same file, or should they just be allowed (and
2735 * create new stateids)? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 status = nfserr_resource;
Neil Brownb59e3c02005-09-13 01:25:38 -07002737 lock_sop = alloc_init_lock_stateowner(strhashval,
2738 open_sop->so_client, open_stp, lock);
2739 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07002741 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08002742 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 } else {
2745 /* lock (lock owner + lock stateid) already exists */
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002746 status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 lock->lk_old_lock_seqid,
2748 &lock->lk_old_lock_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002749 LOCK_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002750 &lock->lk_replay_owner, &lock_stp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 if (status)
2752 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002753 lock_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08002755 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 filp = lock_stp->st_vfs_file;
2757
NeilBrown0dd395d2005-07-07 17:59:15 -07002758 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002759 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07002760 goto out;
2761 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002762 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07002763 goto out;
2764
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 locks_init_lock(&file_lock);
2766 switch (lock->lk_type) {
2767 case NFS4_READ_LT:
2768 case NFS4_READW_LT:
2769 file_lock.fl_type = F_RDLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05002770 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 break;
2772 case NFS4_WRITE_LT:
2773 case NFS4_WRITEW_LT:
2774 file_lock.fl_type = F_WRLCK;
Marc Eshel150b3932007-01-18 16:15:35 -05002775 cmd = F_SETLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 break;
2777 default:
2778 status = nfserr_inval;
2779 goto out;
2780 }
Neil Brownb59e3c02005-09-13 01:25:38 -07002781 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 file_lock.fl_pid = current->tgid;
2783 file_lock.fl_file = filp;
2784 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002785 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
2787 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02002788 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 nfs4_transform_lock_offset(&file_lock);
2790
2791 /*
2792 * Try to lock the file in the VFS.
2793 * Note: locks.c uses the BKL to protect the inode's lock list.
2794 */
2795
Marc Eshelfd85b812006-11-28 16:26:41 -05002796 err = vfs_lock_file(filp, cmd, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07002797 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 case 0: /* success! */
2799 update_stateid(&lock_stp->st_stateid);
2800 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
2801 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07002802 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002803 break;
2804 case (EAGAIN): /* conflock holds conflicting lock */
2805 status = nfserr_denied;
2806 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2807 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
2808 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 case (EDEADLK):
2810 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002811 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05002813 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002814 status = nfserr_resource;
2815 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08002818 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002819 release_lockowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08002820 if (lock->lk_replay_owner) {
2821 nfs4_get_stateowner(lock->lk_replay_owner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002822 cstate->replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07002823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 nfs4_unlock_state();
2825 return status;
2826}
2827
2828/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08002829 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
2830 * so we do a temporary open here just to get an open file to pass to
2831 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
2832 * inode operation.)
2833 */
2834static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
2835{
2836 struct file *file;
2837 int err;
2838
2839 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
2840 if (err)
2841 return err;
2842 err = vfs_test_lock(file, lock);
2843 nfsd_close(file);
2844 return err;
2845}
2846
2847/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 * LOCKT operation
2849 */
Al Virob37ad282006-10-19 23:28:59 -07002850__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002851nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2852 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853{
2854 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 struct file_lock file_lock;
Marc Eshelfd85b812006-11-28 16:26:41 -05002856 int error;
Al Virob37ad282006-10-19 23:28:59 -07002857 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002859 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 return nfserr_grace;
2861
2862 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
2863 return nfserr_inval;
2864
2865 lockt->lt_stateowner = NULL;
2866 nfs4_lock_state();
2867
2868 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002869 if (STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002872 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) {
Neil Brown849823c2005-09-13 01:25:36 -07002873 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 if (status == nfserr_symlink)
2875 status = nfserr_inval;
2876 goto out;
2877 }
2878
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002879 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 locks_init_lock(&file_lock);
2881 switch (lockt->lt_type) {
2882 case NFS4_READ_LT:
2883 case NFS4_READW_LT:
2884 file_lock.fl_type = F_RDLCK;
2885 break;
2886 case NFS4_WRITE_LT:
2887 case NFS4_WRITEW_LT:
2888 file_lock.fl_type = F_WRLCK;
2889 break;
2890 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002891 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 status = nfserr_inval;
2893 goto out;
2894 }
2895
2896 lockt->lt_stateowner = find_lockstateowner_str(inode,
2897 &lockt->lt_clientid, &lockt->lt_owner);
2898 if (lockt->lt_stateowner)
2899 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
2900 file_lock.fl_pid = current->tgid;
2901 file_lock.fl_flags = FL_POSIX;
2902
2903 file_lock.fl_start = lockt->lt_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02002904 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906 nfs4_transform_lock_offset(&file_lock);
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08002909 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05002910 if (error) {
2911 status = nfserrno(error);
2912 goto out;
2913 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002914 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002916 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 }
2918out:
2919 nfs4_unlock_state();
2920 return status;
2921}
2922
Al Virob37ad282006-10-19 23:28:59 -07002923__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002924nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002925 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926{
2927 struct nfs4_stateid *stp;
2928 struct file *filp = NULL;
2929 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07002930 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002931 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
2933 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2934 (long long) locku->lu_offset,
2935 (long long) locku->lu_length);
2936
2937 if (check_lock_length(locku->lu_offset, locku->lu_length))
2938 return nfserr_inval;
2939
2940 nfs4_lock_state();
2941
J.Bruce Fieldsca364312006-12-13 00:35:27 -08002942 if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 locku->lu_seqid,
2944 &locku->lu_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05002945 LOCK_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 &locku->lu_stateowner, &stp, NULL)))
2947 goto out;
2948
2949 filp = stp->st_vfs_file;
2950 BUG_ON(!filp);
2951 locks_init_lock(&file_lock);
2952 file_lock.fl_type = F_UNLCK;
2953 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
2954 file_lock.fl_pid = current->tgid;
2955 file_lock.fl_file = filp;
2956 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002957 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 file_lock.fl_start = locku->lu_offset;
2959
Benny Halevy87df4de2008-12-15 19:42:03 +02002960 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 nfs4_transform_lock_offset(&file_lock);
2962
2963 /*
2964 * Try to unlock the file in the VFS.
2965 */
Marc Eshelfd85b812006-11-28 16:26:41 -05002966 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07002967 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05002968 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 goto out_nfserr;
2970 }
2971 /*
2972 * OK, unlock succeeded; the only thing left to do is update the stateid.
2973 */
2974 update_stateid(&stp->st_stateid);
2975 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
2976
2977out:
Neil Brownf2327d92005-09-13 01:25:37 -07002978 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 nfs4_get_stateowner(locku->lu_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002980 cstate->replay_owner = locku->lu_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07002981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 nfs4_unlock_state();
2983 return status;
2984
2985out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002986 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 goto out;
2988}
2989
2990/*
2991 * returns
2992 * 1: locks held by lockowner
2993 * 0: no locks held by lockowner
2994 */
2995static int
2996check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
2997{
2998 struct file_lock **flpp;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08002999 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 int status = 0;
3001
3002 lock_kernel();
3003 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003004 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 status = 1;
3006 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08003007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 }
3009out:
3010 unlock_kernel();
3011 return status;
3012}
3013
Al Virob37ad282006-10-19 23:28:59 -07003014__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003015nfsd4_release_lockowner(struct svc_rqst *rqstp,
3016 struct nfsd4_compound_state *cstate,
3017 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
3019 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003020 struct nfs4_stateowner *sop;
3021 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07003023 struct list_head matches;
3024 int i;
Al Virob37ad282006-10-19 23:28:59 -07003025 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
3027 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
3028 clid->cl_boot, clid->cl_id);
3029
3030 /* XXX check for lease expiration */
3031
3032 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07003033 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
3036 nfs4_lock_state();
3037
NeilBrown3e9e3db2005-06-23 22:04:20 -07003038 status = nfserr_locks_held;
3039 /* XXX: we're doing a linear search through all the lockowners.
3040 * Yipes! For now we'll just hope clients aren't really using
3041 * release_lockowner much, but eventually we have to fix these
3042 * data structures. */
3043 INIT_LIST_HEAD(&matches);
3044 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3045 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003046 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07003047 continue;
3048 list_for_each_entry(stp, &sop->so_stateids,
3049 st_perstateowner) {
3050 if (check_for_locks(stp->st_vfs_file, sop))
3051 goto out;
3052 /* Note: so_perclient unused for lockowners,
3053 * so it's OK to fool with here. */
3054 list_add(&sop->so_perclient, &matches);
3055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07003057 }
3058 /* Clients probably won't expect us to return with some (but not all)
3059 * of the lockowner state released; so don't release any until all
3060 * have been checked. */
3061 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07003062 while (!list_empty(&matches)) {
3063 sop = list_entry(matches.next, struct nfs4_stateowner,
3064 so_perclient);
3065 /* unhash_stateowner deletes so_perclient only
3066 * for openowners. */
3067 list_del(&sop->so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003068 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 }
3070out:
3071 nfs4_unlock_state();
3072 return status;
3073}
3074
3075static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07003076alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077{
NeilBrowna55370a2005-06-23 22:03:52 -07003078 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079}
3080
NeilBrownc7b9a452005-06-23 22:04:30 -07003081int
3082nfs4_has_reclaimed_state(const char *name)
3083{
3084 unsigned int strhashval = clientstr_hashval(name);
3085 struct nfs4_client *clp;
3086
3087 clp = find_confirmed_client_by_str(name, strhashval);
3088 return clp ? 1 : 0;
3089}
3090
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091/*
3092 * failure => all reset bets are off, nfserr_no_grace...
3093 */
NeilBrown190e4fb2005-06-23 22:04:25 -07003094int
3095nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
3097 unsigned int strhashval;
3098 struct nfs4_client_reclaim *crp = NULL;
3099
NeilBrowna55370a2005-06-23 22:03:52 -07003100 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
3101 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 if (!crp)
3103 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07003104 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 INIT_LIST_HEAD(&crp->cr_strhash);
3106 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07003107 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 reclaim_str_hashtbl_size++;
3109 return 1;
3110}
3111
3112static void
3113nfs4_release_reclaim(void)
3114{
3115 struct nfs4_client_reclaim *crp = NULL;
3116 int i;
3117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3119 while (!list_empty(&reclaim_str_hashtbl[i])) {
3120 crp = list_entry(reclaim_str_hashtbl[i].next,
3121 struct nfs4_client_reclaim, cr_strhash);
3122 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 kfree(crp);
3124 reclaim_str_hashtbl_size--;
3125 }
3126 }
3127 BUG_ON(reclaim_str_hashtbl_size);
3128}
3129
3130/*
3131 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07003132static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133nfs4_find_reclaim_client(clientid_t *clid)
3134{
3135 unsigned int strhashval;
3136 struct nfs4_client *clp;
3137 struct nfs4_client_reclaim *crp = NULL;
3138
3139
3140 /* find clientid in conf_id_hashtbl */
3141 clp = find_confirmed_client(clid);
3142 if (clp == NULL)
3143 return NULL;
3144
NeilBrowna55370a2005-06-23 22:03:52 -07003145 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3146 clp->cl_name.len, clp->cl_name.data,
3147 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
3149 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07003150 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07003152 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 return crp;
3154 }
3155 }
3156 return NULL;
3157}
3158
3159/*
3160* Called from OPEN. Look for clientid in reclaim list.
3161*/
Al Virob37ad282006-10-19 23:28:59 -07003162__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163nfs4_check_open_reclaim(clientid_t *clid)
3164{
NeilBrowndfc83562005-06-23 22:03:16 -07003165 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166}
3167
NeilBrownac4d8ff22005-06-23 22:03:30 -07003168/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003170int
NeilBrownac4d8ff22005-06-23 22:03:30 -07003171nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003173 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003175 status = nfsd4_init_slabs();
3176 if (status)
3177 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3179 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
3180 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
3181 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
3182 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
3183 }
3184 for (i = 0; i < FILE_HASH_SIZE; i++) {
3185 INIT_LIST_HEAD(&file_hashtbl[i]);
3186 }
3187 for (i = 0; i < OWNER_HASH_SIZE; i++) {
3188 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
3189 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
3190 }
3191 for (i = 0; i < STATEID_HASH_SIZE; i++) {
3192 INIT_LIST_HEAD(&stateid_hashtbl[i]);
3193 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
3194 }
3195 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3196 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
3197 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
3198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 INIT_LIST_HEAD(&close_lru);
3201 INIT_LIST_HEAD(&client_lru);
3202 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07003203 for (i = 0; i < CLIENT_HASH_SIZE; i++)
3204 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
3205 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003206 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003207}
3208
NeilBrown190e4fb2005-06-23 22:04:25 -07003209static void
3210nfsd4_load_reboot_recovery_data(void)
3211{
3212 int status;
3213
NeilBrown0964a3d2005-06-23 22:04:32 -07003214 nfs4_lock_state();
3215 nfsd4_init_recdir(user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -07003216 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07003217 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07003218 if (status)
3219 printk("NFSD: Failure reading reboot recovery data\n");
3220}
3221
Marc Eshel9a8db972007-07-17 04:04:35 -07003222unsigned long
3223get_nfs4_grace_period(void)
3224{
3225 return max(user_lease_time, lease_time) * HZ;
3226}
3227
Meelap Shahc2f1a552007-07-17 04:04:39 -07003228/*
3229 * Since the lifetime of a delegation isn't limited to that of an open, a
3230 * client may quite reasonably hang on to a delegation as long as it has
3231 * the inode cached. This becomes an obvious problem the first time a
3232 * client's inode cache approaches the size of the server's total memory.
3233 *
3234 * For now we avoid this problem by imposing a hard limit on the number
3235 * of delegations, which varies according to the server's memory size.
3236 */
3237static void
3238set_max_delegations(void)
3239{
3240 /*
3241 * Allow at most 4 delegations per megabyte of RAM. Quick
3242 * estimates suggest that in the worst case (where every delegation
3243 * is for a different inode), a delegation could take about 1.5K,
3244 * giving a worst case usage of about 6% of memory.
3245 */
3246 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
3247}
3248
NeilBrownac4d8ff22005-06-23 22:03:30 -07003249/* initialization to perform when the nfsd service is started: */
3250
3251static void
3252__nfs4_state_start(void)
3253{
Marc Eshel9a8db972007-07-17 04:04:35 -07003254 unsigned long grace_time;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003255
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003257 grace_time = get_nfs4_grace_period();
NeilBrownd99a05a2005-06-23 22:03:21 -07003258 lease_time = user_lease_time;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003259 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07003260 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
3261 grace_time/HZ);
NeilBrown58da2822005-06-23 22:03:19 -07003262 laundry_wq = create_singlethread_workqueue("nfsd4");
Marc Eshel9a8db972007-07-17 04:04:35 -07003263 queue_delayed_work(laundry_wq, &laundromat_work, grace_time);
Meelap Shahc2f1a552007-07-17 04:04:39 -07003264 set_max_delegations();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265}
3266
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003267void
NeilBrown76a35502005-06-23 22:03:26 -07003268nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 if (nfs4_init)
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003271 return;
NeilBrown190e4fb2005-06-23 22:04:25 -07003272 nfsd4_load_reboot_recovery_data();
NeilBrown76a35502005-06-23 22:03:26 -07003273 __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 nfs4_init = 1;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04003275 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276}
3277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278time_t
3279nfs4_lease_time(void)
3280{
3281 return lease_time;
3282}
3283
3284static void
3285__nfs4_state_shutdown(void)
3286{
3287 int i;
3288 struct nfs4_client *clp = NULL;
3289 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 struct list_head *pos, *next, reaplist;
3291
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3293 while (!list_empty(&conf_id_hashtbl[i])) {
3294 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
3295 expire_client(clp);
3296 }
3297 while (!list_empty(&unconf_str_hashtbl[i])) {
3298 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
3299 expire_client(clp);
3300 }
3301 }
3302 INIT_LIST_HEAD(&reaplist);
3303 spin_lock(&recall_lock);
3304 list_for_each_safe(pos, next, &del_recall_lru) {
3305 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3306 list_move(&dp->dl_recall_lru, &reaplist);
3307 }
3308 spin_unlock(&recall_lock);
3309 list_for_each_safe(pos, next, &reaplist) {
3310 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3311 list_del_init(&dp->dl_recall_lru);
3312 unhash_delegation(dp);
3313 }
3314
NeilBrown190e4fb2005-06-23 22:04:25 -07003315 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 nfs4_init = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317}
3318
3319void
3320nfs4_state_shutdown(void)
3321{
NeilBrown5e8d5c22006-04-10 22:55:37 -07003322 cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work);
3323 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06003324 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 nfs4_lock_state();
3326 nfs4_release_reclaim();
3327 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 nfs4_unlock_state();
3329}
3330
Jeff Layton3dd98a32008-06-10 08:40:36 -04003331/*
3332 * user_recovery_dirname is protected by the nfsd_mutex since it's only
3333 * accessed when nfsd is starting.
3334 */
NeilBrown0964a3d2005-06-23 22:04:32 -07003335static void
3336nfs4_set_recdir(char *recdir)
3337{
NeilBrown0964a3d2005-06-23 22:04:32 -07003338 strcpy(user_recovery_dirname, recdir);
NeilBrown0964a3d2005-06-23 22:04:32 -07003339}
3340
3341/*
3342 * Change the NFSv4 recovery directory to recdir.
3343 */
3344int
3345nfs4_reset_recoverydir(char *recdir)
3346{
3347 int status;
Al Viroa63bb992008-08-02 01:03:36 -04003348 struct path path;
NeilBrown0964a3d2005-06-23 22:04:32 -07003349
Al Viroa63bb992008-08-02 01:03:36 -04003350 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
NeilBrown0964a3d2005-06-23 22:04:32 -07003351 if (status)
3352 return status;
3353 status = -ENOTDIR;
Al Viroa63bb992008-08-02 01:03:36 -04003354 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
NeilBrown0964a3d2005-06-23 22:04:32 -07003355 nfs4_set_recdir(recdir);
3356 status = 0;
3357 }
Al Viroa63bb992008-08-02 01:03:36 -04003358 path_put(&path);
NeilBrown0964a3d2005-06-23 22:04:32 -07003359 return status;
3360}
3361
Jeff Layton3dd98a32008-06-10 08:40:36 -04003362char *
3363nfs4_recoverydir(void)
3364{
3365 return user_recovery_dirname;
3366}
3367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368/*
3369 * Called when leasetime is changed.
3370 *
NeilBrownd99a05a2005-06-23 22:03:21 -07003371 * The only way the protocol gives us to handle on-the-fly lease changes is to
3372 * simulate a reboot. Instead of doing that, we just wait till the next time
3373 * we start to register any changes in lease time. If the administrator
3374 * really wants to change the lease time *now*, they can go ahead and bring
3375 * nfsd down and then back up again after changing the lease time.
Jeff Layton3dd98a32008-06-10 08:40:36 -04003376 *
3377 * user_lease_time is protected by nfsd_mutex since it's only really accessed
3378 * when nfsd is starting
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 */
3380void
3381nfs4_reset_lease(time_t leasetime)
3382{
NeilBrownd99a05a2005-06-23 22:03:21 -07003383 user_lease_time = leasetime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384}