blob: 21497321a525fb8ec846d5e3da117a2179a4cad4 [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>
44#include <linux/mount.h>
45#include <linux/workqueue.h>
46#include <linux/smp_lock.h>
47#include <linux/kthread.h>
48#include <linux/nfs4.h>
49#include <linux/nfsd/state.h>
50#include <linux/nfsd/xdr4.h>
NeilBrown0964a3d2005-06-23 22:04:32 -070051#include <linux/namei.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080052#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#define NFSDDBG_FACILITY NFSDDBG_PROC
55
56/* Globals */
57static time_t lease_time = 90; /* default lease time */
NeilBrownd99a05a2005-06-23 22:03:21 -070058static time_t user_lease_time = 90;
NeilBrownfd39ca92005-06-23 22:04:03 -070059static time_t boot_time;
NeilBrowna76b4312005-06-23 22:04:01 -070060static int in_grace = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static u32 current_clientid = 1;
62static u32 current_ownerid = 1;
63static u32 current_fileid = 1;
64static u32 current_delegid = 1;
65static u32 nfs4_init;
NeilBrownfd39ca92005-06-23 22:04:03 -070066static stateid_t zerostateid; /* bits all 0 */
67static stateid_t onestateid; /* bits all 1 */
68
69#define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
70#define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* forward declarations */
NeilBrownfd39ca92005-06-23 22:04:03 -070073static struct nfs4_stateid * find_stateid(stateid_t *stid, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
75static void release_stateid_lockowners(struct nfs4_stateid *open_stp);
NeilBrown0964a3d2005-06-23 22:04:32 -070076static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
77static void nfs4_set_recdir(char *recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* Locking:
80 *
Ingo Molnar353ab6e2006-03-26 01:37:12 -080081 * client_mutex:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * protects clientid_hashtbl[], clientstr_hashtbl[],
83 * unconfstr_hashtbl[], uncofid_hashtbl[].
84 */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080085static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
NeilBrownfd39ca92005-06-23 22:04:03 -070087static kmem_cache_t *stateowner_slab = NULL;
88static kmem_cache_t *file_slab = NULL;
89static kmem_cache_t *stateid_slab = NULL;
90static kmem_cache_t *deleg_slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092void
93nfs4_lock_state(void)
94{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080095 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98void
99nfs4_unlock_state(void)
100{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800101 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104static inline u32
105opaque_hashval(const void *ptr, int nbytes)
106{
107 unsigned char *cptr = (unsigned char *) ptr;
108
109 u32 x = 0;
110 while (nbytes--) {
111 x *= 37;
112 x += *cptr++;
113 }
114 return x;
115}
116
117/* forward declarations */
118static void release_stateowner(struct nfs4_stateowner *sop);
119static void release_stateid(struct nfs4_stateid *stp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/*
122 * Delegation state
123 */
124
125/* recall_lock protects the del_recall_lru */
Ingo Molnar34af9462006-06-27 02:53:55 -0700126static DEFINE_SPINLOCK(recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static struct list_head del_recall_lru;
128
NeilBrown13cd2182005-06-23 22:03:10 -0700129static void
130free_nfs4_file(struct kref *kref)
131{
132 struct nfs4_file *fp = container_of(kref, struct nfs4_file, fi_ref);
133 list_del(&fp->fi_hash);
134 iput(fp->fi_inode);
135 kmem_cache_free(file_slab, fp);
136}
137
138static inline void
139put_nfs4_file(struct nfs4_file *fi)
140{
141 kref_put(&fi->fi_ref, free_nfs4_file);
142}
143
144static inline void
145get_nfs4_file(struct nfs4_file *fi)
146{
147 kref_get(&fi->fi_ref);
148}
149
NeilBrownef0f3392006-04-10 22:55:41 -0700150static int num_delegations;
151
152/*
153 * Open owner state (share locks)
154 */
155
156/* hash tables for nfs4_stateowner */
157#define OWNER_HASH_BITS 8
158#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
159#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
160
161#define ownerid_hashval(id) \
162 ((id) & OWNER_HASH_MASK)
163#define ownerstr_hashval(clientid, ownername) \
164 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
165
166static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE];
167static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
168
169/* hash table for nfs4_file */
170#define FILE_HASH_BITS 8
171#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
172#define FILE_HASH_MASK (FILE_HASH_SIZE - 1)
173/* hash table for (open)nfs4_stateid */
174#define STATEID_HASH_BITS 10
175#define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
176#define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
177
178#define file_hashval(x) \
179 hash_ptr(x, FILE_HASH_BITS)
180#define stateid_hashval(owner_id, file_id) \
181 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
182
183static struct list_head file_hashtbl[FILE_HASH_SIZE];
184static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static struct nfs4_delegation *
187alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
188{
189 struct nfs4_delegation *dp;
190 struct nfs4_file *fp = stp->st_file;
191 struct nfs4_callback *cb = &stp->st_stateowner->so_client->cl_callback;
192
193 dprintk("NFSD alloc_init_deleg\n");
NeilBrownef0f3392006-04-10 22:55:41 -0700194 if (num_delegations > STATEID_HASH_SIZE * 4)
195 return NULL;
NeilBrown5b2d21c2005-06-23 22:03:04 -0700196 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
197 if (dp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return dp;
NeilBrownef0f3392006-04-10 22:55:41 -0700199 num_delegations++;
NeilBrownea1da632005-06-23 22:04:17 -0700200 INIT_LIST_HEAD(&dp->dl_perfile);
201 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 INIT_LIST_HEAD(&dp->dl_recall_lru);
203 dp->dl_client = clp;
NeilBrown13cd2182005-06-23 22:03:10 -0700204 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 dp->dl_file = fp;
206 dp->dl_flock = NULL;
207 get_file(stp->st_vfs_file);
208 dp->dl_vfs_file = stp->st_vfs_file;
209 dp->dl_type = type;
210 dp->dl_recall.cbr_dp = NULL;
211 dp->dl_recall.cbr_ident = cb->cb_ident;
212 dp->dl_recall.cbr_trunc = 0;
213 dp->dl_stateid.si_boot = boot_time;
214 dp->dl_stateid.si_stateownerid = current_delegid++;
215 dp->dl_stateid.si_fileid = 0;
216 dp->dl_stateid.si_generation = 0;
217 dp->dl_fhlen = current_fh->fh_handle.fh_size;
218 memcpy(dp->dl_fhval, &current_fh->fh_handle.fh_base,
219 current_fh->fh_handle.fh_size);
220 dp->dl_time = 0;
221 atomic_set(&dp->dl_count, 1);
NeilBrownea1da632005-06-23 22:04:17 -0700222 list_add(&dp->dl_perfile, &fp->fi_delegations);
223 list_add(&dp->dl_perclnt, &clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return dp;
225}
226
227void
228nfs4_put_delegation(struct nfs4_delegation *dp)
229{
230 if (atomic_dec_and_test(&dp->dl_count)) {
231 dprintk("NFSD: freeing dp %p\n",dp);
NeilBrown13cd2182005-06-23 22:03:10 -0700232 put_nfs4_file(dp->dl_file);
NeilBrown5b2d21c2005-06-23 22:03:04 -0700233 kmem_cache_free(deleg_slab, dp);
NeilBrownef0f3392006-04-10 22:55:41 -0700234 num_delegations--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236}
237
238/* Remove the associated file_lock first, then remove the delegation.
239 * lease_modify() is called to remove the FS_LEASE file_lock from
240 * the i_flock list, eventually calling nfsd's lock_manager
241 * fl_release_callback.
242 */
243static void
244nfs4_close_delegation(struct nfs4_delegation *dp)
245{
246 struct file *filp = dp->dl_vfs_file;
247
248 dprintk("NFSD: close_delegation dp %p\n",dp);
249 dp->dl_vfs_file = NULL;
250 /* The following nfsd_close may not actually close the file,
251 * but we want to remove the lease in any case. */
NeilBrownc9071322005-04-16 15:26:38 -0700252 if (dp->dl_flock)
253 setlease(filp, F_UNLCK, &dp->dl_flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 nfsd_close(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257/* Called under the state lock. */
258static void
259unhash_delegation(struct nfs4_delegation *dp)
260{
NeilBrownea1da632005-06-23 22:04:17 -0700261 list_del_init(&dp->dl_perfile);
262 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 spin_lock(&recall_lock);
264 list_del_init(&dp->dl_recall_lru);
265 spin_unlock(&recall_lock);
266 nfs4_close_delegation(dp);
267 nfs4_put_delegation(dp);
268}
269
270/*
271 * SETCLIENTID state
272 */
273
274/* Hash tables for nfs4_clientid state */
275#define CLIENT_HASH_BITS 4
276#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
277#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
278
279#define clientid_hashval(id) \
280 ((id) & CLIENT_HASH_MASK)
NeilBrowna55370a2005-06-23 22:03:52 -0700281#define clientstr_hashval(name) \
282 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/*
284 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
285 * used in reboot/reset lease grace period processing
286 *
287 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
288 * setclientid_confirmed info.
289 *
290 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
291 * setclientid info.
292 *
293 * client_lru holds client queue ordered by nfs4_client.cl_time
294 * for lease renewal.
295 *
296 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
297 * for last close replay.
298 */
299static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
300static int reclaim_str_hashtbl_size = 0;
301static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
302static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
303static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
304static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
305static struct list_head client_lru;
306static struct list_head close_lru;
307
308static inline void
309renew_client(struct nfs4_client *clp)
310{
311 /*
312 * Move client to the end to the LRU list.
313 */
314 dprintk("renewing client (clientid %08x/%08x)\n",
315 clp->cl_clientid.cl_boot,
316 clp->cl_clientid.cl_id);
317 list_move_tail(&clp->cl_lru, &client_lru);
318 clp->cl_time = get_seconds();
319}
320
321/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
322static int
323STALE_CLIENTID(clientid_t *clid)
324{
325 if (clid->cl_boot == boot_time)
326 return 0;
327 dprintk("NFSD stale clientid (%08x/%08x)\n",
328 clid->cl_boot, clid->cl_id);
329 return 1;
330}
331
332/*
333 * XXX Should we use a slab cache ?
334 * This type of memory management is somewhat inefficient, but we use it
335 * anyway since SETCLIENTID is not a common operation.
336 */
337static inline struct nfs4_client *
338alloc_client(struct xdr_netobj name)
339{
340 struct nfs4_client *clp;
341
342 if ((clp = kmalloc(sizeof(struct nfs4_client), GFP_KERNEL))!= NULL) {
343 memset(clp, 0, sizeof(*clp));
344 if ((clp->cl_name.data = kmalloc(name.len, GFP_KERNEL)) != NULL) {
345 memcpy(clp->cl_name.data, name.data, name.len);
346 clp->cl_name.len = name.len;
347 }
348 else {
349 kfree(clp);
350 clp = NULL;
351 }
352 }
353 return clp;
354}
355
356static inline void
357free_client(struct nfs4_client *clp)
358{
359 if (clp->cl_cred.cr_group_info)
360 put_group_info(clp->cl_cred.cr_group_info);
361 kfree(clp->cl_name.data);
362 kfree(clp);
363}
364
365void
366put_nfs4_client(struct nfs4_client *clp)
367{
368 if (atomic_dec_and_test(&clp->cl_count))
369 free_client(clp);
370}
371
372static void
NeilBrown4e2fd492006-04-10 22:55:39 -0700373shutdown_callback_client(struct nfs4_client *clp)
374{
375 struct rpc_clnt *clnt = clp->cl_callback.cb_client;
376
377 /* shutdown rpc client, ending any outstanding recall rpcs */
378 if (clnt) {
379 clp->cl_callback.cb_client = NULL;
380 rpc_shutdown_client(clnt);
381 rpciod_down();
382 }
383}
384
385static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386expire_client(struct nfs4_client *clp)
387{
388 struct nfs4_stateowner *sop;
389 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct list_head reaplist;
391
392 dprintk("NFSD: expire_client cl_count %d\n",
393 atomic_read(&clp->cl_count));
394
NeilBrown4e2fd492006-04-10 22:55:39 -0700395 shutdown_callback_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 INIT_LIST_HEAD(&reaplist);
398 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700399 while (!list_empty(&clp->cl_delegations)) {
400 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 dprintk("NFSD: expire client. dp %p, fp %p\n", dp,
402 dp->dl_flock);
NeilBrownea1da632005-06-23 22:04:17 -0700403 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 list_move(&dp->dl_recall_lru, &reaplist);
405 }
406 spin_unlock(&recall_lock);
407 while (!list_empty(&reaplist)) {
408 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
409 list_del_init(&dp->dl_recall_lru);
410 unhash_delegation(dp);
411 }
412 list_del(&clp->cl_idhash);
413 list_del(&clp->cl_strhash);
414 list_del(&clp->cl_lru);
NeilBrownea1da632005-06-23 22:04:17 -0700415 while (!list_empty(&clp->cl_openowners)) {
416 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 release_stateowner(sop);
418 }
419 put_nfs4_client(clp);
420}
421
422static struct nfs4_client *
NeilBrowna55370a2005-06-23 22:03:52 -0700423create_client(struct xdr_netobj name, char *recdir) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 struct nfs4_client *clp;
425
426 if (!(clp = alloc_client(name)))
427 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700428 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 atomic_set(&clp->cl_count, 1);
430 atomic_set(&clp->cl_callback.cb_set, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 INIT_LIST_HEAD(&clp->cl_idhash);
432 INIT_LIST_HEAD(&clp->cl_strhash);
NeilBrownea1da632005-06-23 22:04:17 -0700433 INIT_LIST_HEAD(&clp->cl_openowners);
434 INIT_LIST_HEAD(&clp->cl_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 INIT_LIST_HEAD(&clp->cl_lru);
436out:
437 return clp;
438}
439
440static void
441copy_verf(struct nfs4_client *target, nfs4_verifier *source) {
442 memcpy(target->cl_verifier.data, source->data, sizeof(target->cl_verifier.data));
443}
444
445static void
446copy_clid(struct nfs4_client *target, struct nfs4_client *source) {
447 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
448 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
449}
450
451static void
452copy_cred(struct svc_cred *target, struct svc_cred *source) {
453
454 target->cr_uid = source->cr_uid;
455 target->cr_gid = source->cr_gid;
456 target->cr_group_info = source->cr_group_info;
457 get_group_info(target->cr_group_info);
458}
459
NeilBrowna55370a2005-06-23 22:03:52 -0700460static inline int
461same_name(const char *n1, const char *n2) {
462 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465static int
466cmp_verf(nfs4_verifier *v1, nfs4_verifier *v2) {
467 return(!memcmp(v1->data,v2->data,sizeof(v1->data)));
468}
469
470static int
471cmp_clid(clientid_t * cl1, clientid_t * cl2) {
472 return((cl1->cl_boot == cl2->cl_boot) &&
473 (cl1->cl_id == cl2->cl_id));
474}
475
476/* XXX what about NGROUP */
477static int
478cmp_creds(struct svc_cred *cr1, struct svc_cred *cr2){
479 return(cr1->cr_uid == cr2->cr_uid);
480
481}
482
483static void
484gen_clid(struct nfs4_client *clp) {
485 clp->cl_clientid.cl_boot = boot_time;
486 clp->cl_clientid.cl_id = current_clientid++;
487}
488
489static void
490gen_confirm(struct nfs4_client *clp) {
491 struct timespec tv;
492 u32 * p;
493
494 tv = CURRENT_TIME;
495 p = (u32 *)clp->cl_confirm.data;
496 *p++ = tv.tv_sec;
497 *p++ = tv.tv_nsec;
498}
499
500static int
501check_name(struct xdr_netobj name) {
502
503 if (name.len == 0)
504 return 0;
505 if (name.len > NFS4_OPAQUE_LIMIT) {
506 printk("NFSD: check_name: name too long(%d)!\n", name.len);
507 return 0;
508 }
509 return 1;
510}
511
NeilBrownfd39ca92005-06-23 22:04:03 -0700512static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
514{
515 unsigned int idhashval;
516
517 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
518 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
519 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
520 list_add_tail(&clp->cl_lru, &client_lru);
521 clp->cl_time = get_seconds();
522}
523
NeilBrownfd39ca92005-06-23 22:04:03 -0700524static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525move_to_confirmed(struct nfs4_client *clp)
526{
527 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
528 unsigned int strhashval;
529
530 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
531 list_del_init(&clp->cl_strhash);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700532 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -0700533 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
535 renew_client(clp);
536}
537
538static struct nfs4_client *
539find_confirmed_client(clientid_t *clid)
540{
541 struct nfs4_client *clp;
542 unsigned int idhashval = clientid_hashval(clid->cl_id);
543
544 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
545 if (cmp_clid(&clp->cl_clientid, clid))
546 return clp;
547 }
548 return NULL;
549}
550
551static struct nfs4_client *
552find_unconfirmed_client(clientid_t *clid)
553{
554 struct nfs4_client *clp;
555 unsigned int idhashval = clientid_hashval(clid->cl_id);
556
557 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
558 if (cmp_clid(&clp->cl_clientid, clid))
559 return clp;
560 }
561 return NULL;
562}
563
NeilBrown28ce6052005-06-23 22:03:56 -0700564static struct nfs4_client *
565find_confirmed_client_by_str(const char *dname, unsigned int hashval)
566{
567 struct nfs4_client *clp;
568
569 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
570 if (same_name(clp->cl_recdir, dname))
571 return clp;
572 }
573 return NULL;
574}
575
576static struct nfs4_client *
577find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
578{
579 struct nfs4_client *clp;
580
581 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
582 if (same_name(clp->cl_recdir, dname))
583 return clp;
584 }
585 return NULL;
586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588/* a helper function for parse_callback */
589static int
590parse_octet(unsigned int *lenp, char **addrp)
591{
592 unsigned int len = *lenp;
593 char *p = *addrp;
594 int n = -1;
595 char c;
596
597 for (;;) {
598 if (!len)
599 break;
600 len--;
601 c = *p++;
602 if (c == '.')
603 break;
604 if ((c < '0') || (c > '9')) {
605 n = -1;
606 break;
607 }
608 if (n < 0)
609 n = 0;
610 n = (n * 10) + (c - '0');
611 if (n > 255) {
612 n = -1;
613 break;
614 }
615 }
616 *lenp = len;
617 *addrp = p;
618 return n;
619}
620
621/* parse and set the setclientid ipv4 callback address */
NeilBrownfd39ca92005-06-23 22:04:03 -0700622static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp)
624{
625 int temp = 0;
626 u32 cbaddr = 0;
627 u16 cbport = 0;
628 u32 addrlen = addr_len;
629 char *addr = addr_val;
630 int i, shift;
631
632 /* ipaddress */
633 shift = 24;
634 for(i = 4; i > 0 ; i--) {
635 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
636 return 0;
637 }
638 cbaddr |= (temp << shift);
639 if (shift > 0)
640 shift -= 8;
641 }
642 *cbaddrp = cbaddr;
643
644 /* port */
645 shift = 8;
646 for(i = 2; i > 0 ; i--) {
647 if ((temp = parse_octet(&addrlen, &addr)) < 0) {
648 return 0;
649 }
650 cbport |= (temp << shift);
651 if (shift > 0)
652 shift -= 8;
653 }
654 *cbportp = cbport;
655 return 1;
656}
657
NeilBrownfd39ca92005-06-23 22:04:03 -0700658static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se)
660{
661 struct nfs4_callback *cb = &clp->cl_callback;
662
663 /* Currently, we only support tcp for the callback channel */
664 if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3))
665 goto out_err;
666
667 if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val,
668 &cb->cb_addr, &cb->cb_port)))
669 goto out_err;
670 cb->cb_prog = se->se_callback_prog;
671 cb->cb_ident = se->se_callback_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return;
673out_err:
Neil Brown849823c2005-09-13 01:25:36 -0700674 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 "will not receive delegations\n",
676 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return;
679}
680
681/*
682 * RFC 3010 has a complex implmentation description of processing a
683 * SETCLIENTID request consisting of 5 bullets, labeled as
684 * CASE0 - CASE4 below.
685 *
686 * NOTES:
687 * callback information will be processed in a future patch
688 *
689 * an unconfirmed record is added when:
690 * NORMAL (part of CASE 4): there is no confirmed nor unconfirmed record.
691 * CASE 1: confirmed record found with matching name, principal,
692 * verifier, and clientid.
693 * CASE 2: confirmed record found with matching name, principal,
694 * and there is no unconfirmed record with matching
695 * name and principal
696 *
697 * an unconfirmed record is replaced when:
698 * CASE 3: confirmed record found with matching name, principal,
699 * and an unconfirmed record is found with matching
700 * name, principal, and with clientid and
701 * confirm that does not match the confirmed record.
702 * CASE 4: there is no confirmed record with matching name and
703 * principal. there is an unconfirmed record with
704 * matching name, principal.
705 *
706 * an unconfirmed record is deleted when:
707 * CASE 1: an unconfirmed record that matches input name, verifier,
708 * and confirmed clientid.
709 * CASE 4: any unconfirmed records with matching name and principal
710 * that exist after an unconfirmed record has been replaced
711 * as described above.
712 *
713 */
714int
715nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_setclientid *setclid)
716{
717 u32 ip_addr = rqstp->rq_addr.sin_addr.s_addr;
718 struct xdr_netobj clname = {
719 .len = setclid->se_namelen,
720 .data = setclid->se_name,
721 };
722 nfs4_verifier clverifier = setclid->se_verf;
723 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -0700724 struct nfs4_client *conf, *unconf, *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 int status;
NeilBrowna55370a2005-06-23 22:03:52 -0700726 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -0700729 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
NeilBrowna55370a2005-06-23 22:03:52 -0700731 status = nfs4_make_rec_clidname(dname, &clname);
732 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -0700733 return status;
NeilBrowna55370a2005-06-23 22:03:52 -0700734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /*
736 * XXX The Duplicate Request Cache (DRC) has been checked (??)
737 * We get here on a DRC miss.
738 */
739
NeilBrowna55370a2005-06-23 22:03:52 -0700740 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 nfs4_lock_state();
NeilBrown28ce6052005-06-23 22:03:56 -0700743 conf = find_confirmed_client_by_str(dname, strhashval);
744 if (conf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 /*
746 * CASE 0:
747 * clname match, confirmed, different principal
748 * or different ip_address
749 */
750 status = nfserr_clid_inuse;
NeilBrown28ce6052005-06-23 22:03:56 -0700751 if (!cmp_creds(&conf->cl_cred, &rqstp->rq_cred)
752 || conf->cl_addr != ip_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 printk("NFSD: setclientid: string in use by client"
754 "(clientid %08x/%08x)\n",
NeilBrown28ce6052005-06-23 22:03:56 -0700755 conf->cl_clientid.cl_boot, conf->cl_clientid.cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 goto out;
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
NeilBrown28ce6052005-06-23 22:03:56 -0700759 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 status = nfserr_resource;
761 if (!conf) {
762 /*
763 * CASE 4:
764 * placed first, because it is the normal case.
765 */
766 if (unconf)
767 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700768 new = create_client(clname, dname);
769 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 goto out;
771 copy_verf(new, &clverifier);
772 new->cl_addr = ip_addr;
773 copy_cred(&new->cl_cred,&rqstp->rq_cred);
774 gen_clid(new);
775 gen_confirm(new);
776 gen_callback(new, setclid);
777 add_to_unconfirmed(new, strhashval);
778 } else if (cmp_verf(&conf->cl_verifier, &clverifier)) {
779 /*
780 * CASE 1:
781 * cl_name match, confirmed, principal match
782 * verifier match: probable callback update
783 *
784 * remove any unconfirmed nfs4_client with
785 * matching cl_name, cl_verifier, and cl_clientid
786 *
787 * create and insert an unconfirmed nfs4_client with same
788 * cl_name, cl_verifier, and cl_clientid as existing
789 * nfs4_client, but with the new callback info and a
790 * new cl_confirm
791 */
NeilBrown31f4a6c2005-06-23 22:04:06 -0700792 if (unconf) {
793 /* Note this is removing unconfirmed {*x***},
794 * which is stronger than RFC recommended {vxc**}.
795 * This has the advantage that there is at most
796 * one {*x***} in either list at any time.
797 */
798 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
NeilBrowna55370a2005-06-23 22:03:52 -0700800 new = create_client(clname, dname);
801 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto out;
803 copy_verf(new,&conf->cl_verifier);
804 new->cl_addr = ip_addr;
805 copy_cred(&new->cl_cred,&rqstp->rq_cred);
806 copy_clid(new, conf);
807 gen_confirm(new);
808 gen_callback(new, setclid);
809 add_to_unconfirmed(new,strhashval);
810 } else if (!unconf) {
811 /*
812 * CASE 2:
813 * clname match, confirmed, principal match
814 * verfier does not match
815 * no unconfirmed. create a new unconfirmed nfs4_client
816 * using input clverifier, clname, and callback info
817 * and generate a new cl_clientid and cl_confirm.
818 */
NeilBrowna55370a2005-06-23 22:03:52 -0700819 new = create_client(clname, dname);
820 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 goto out;
822 copy_verf(new,&clverifier);
823 new->cl_addr = ip_addr;
824 copy_cred(&new->cl_cred,&rqstp->rq_cred);
825 gen_clid(new);
826 gen_confirm(new);
827 gen_callback(new, setclid);
828 add_to_unconfirmed(new, strhashval);
829 } else if (!cmp_verf(&conf->cl_confirm, &unconf->cl_confirm)) {
830 /*
831 * CASE3:
832 * confirmed found (name, principal match)
833 * confirmed verifier does not match input clverifier
834 *
835 * unconfirmed found (name match)
836 * confirmed->cl_confirm != unconfirmed->cl_confirm
837 *
838 * remove unconfirmed.
839 *
840 * create an unconfirmed nfs4_client
841 * with same cl_name as existing confirmed nfs4_client,
842 * but with new callback info, new cl_clientid,
843 * new cl_verifier and a new cl_confirm
844 */
845 expire_client(unconf);
NeilBrowna55370a2005-06-23 22:03:52 -0700846 new = create_client(clname, dname);
847 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 goto out;
849 copy_verf(new,&clverifier);
850 new->cl_addr = ip_addr;
851 copy_cred(&new->cl_cred,&rqstp->rq_cred);
852 gen_clid(new);
853 gen_confirm(new);
854 gen_callback(new, setclid);
855 add_to_unconfirmed(new, strhashval);
856 } else {
857 /* No cases hit !!! */
858 status = nfserr_inval;
859 goto out;
860
861 }
862 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
863 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
864 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
865 status = nfs_ok;
866out:
867 nfs4_unlock_state();
868 return status;
869}
870
871
872/*
873 * RFC 3010 has a complex implmentation description of processing a
874 * SETCLIENTID_CONFIRM request consisting of 4 bullets describing
875 * processing on a DRC miss, labeled as CASE1 - CASE4 below.
876 *
877 * NOTE: callback information will be processed here in a future patch
878 */
879int
880nfsd4_setclientid_confirm(struct svc_rqst *rqstp, struct nfsd4_setclientid_confirm *setclientid_confirm)
881{
882 u32 ip_addr = rqstp->rq_addr.sin_addr.s_addr;
NeilBrown21ab45a2005-06-23 22:04:14 -0700883 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
885 clientid_t * clid = &setclientid_confirm->sc_clientid;
886 int status;
887
888 if (STALE_CLIENTID(clid))
889 return nfserr_stale_clientid;
890 /*
891 * XXX The Duplicate Request Cache (DRC) has been checked (??)
892 * We get here on a DRC miss.
893 */
894
895 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -0700896
897 conf = find_confirmed_client(clid);
898 unconf = find_unconfirmed_client(clid);
899
900 status = nfserr_clid_inuse;
901 if (conf && conf->cl_addr != ip_addr)
902 goto out;
903 if (unconf && unconf->cl_addr != ip_addr)
904 goto out;
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if ((conf && unconf) &&
907 (cmp_verf(&unconf->cl_confirm, &confirm)) &&
908 (cmp_verf(&conf->cl_verifier, &unconf->cl_verifier)) &&
NeilBrowna55370a2005-06-23 22:03:52 -0700909 (same_name(conf->cl_recdir,unconf->cl_recdir)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 (!cmp_verf(&conf->cl_confirm, &unconf->cl_confirm))) {
NeilBrown7c79f732005-06-23 22:04:13 -0700911 /* CASE 1:
912 * unconf record that matches input clientid and input confirm.
913 * conf record that matches input clientid.
914 * conf and unconf records match names, verifiers
915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (!cmp_creds(&conf->cl_cred, &unconf->cl_cred))
917 status = nfserr_clid_inuse;
918 else {
NeilBrown1a69c172005-06-23 22:04:08 -0700919 /* XXX: We just turn off callbacks until we can handle
920 * change request correctly. */
NeilBrowncb36d632005-06-23 22:04:23 -0700921 atomic_set(&conf->cl_callback.cb_set, 0);
NeilBrown21ab45a2005-06-23 22:04:14 -0700922 gen_confirm(conf);
NeilBrown46309022005-07-07 17:59:10 -0700923 nfsd4_remove_clid_dir(unconf);
NeilBrown1a69c172005-06-23 22:04:08 -0700924 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -0700926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
NeilBrown7c79f732005-06-23 22:04:13 -0700928 } else if ((conf && !unconf) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 ((conf && unconf) &&
930 (!cmp_verf(&conf->cl_verifier, &unconf->cl_verifier) ||
NeilBrowna55370a2005-06-23 22:03:52 -0700931 !same_name(conf->cl_recdir, unconf->cl_recdir)))) {
NeilBrown7c79f732005-06-23 22:04:13 -0700932 /* CASE 2:
933 * conf record that matches input clientid.
934 * if unconf record matches input clientid, then
935 * unconf->cl_name or unconf->cl_verifier don't match the
936 * conf record.
937 */
NeilBrown21ab45a2005-06-23 22:04:14 -0700938 if (!cmp_creds(&conf->cl_cred,&rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -0700940 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -0700942 } else if (!conf && unconf
943 && cmp_verf(&unconf->cl_confirm, &confirm)) {
944 /* CASE 3:
945 * conf record not found.
946 * unconf record found.
947 * unconf->cl_confirm matches input confirm
948 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (!cmp_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
950 status = nfserr_clid_inuse;
951 } else {
NeilBrown1a69c172005-06-23 22:04:08 -0700952 unsigned int hash =
953 clientstr_hashval(unconf->cl_recdir);
954 conf = find_confirmed_client_by_str(unconf->cl_recdir,
955 hash);
956 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -0700957 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -0700958 expire_client(conf);
959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -0700961 conf = unconf;
NeilBrown1a69c172005-06-23 22:04:08 -0700962 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
NeilBrown7c79f732005-06-23 22:04:13 -0700964 } else if ((!conf || (conf && !cmp_verf(&conf->cl_confirm, &confirm)))
965 && (!unconf || (unconf && !cmp_verf(&unconf->cl_confirm,
966 &confirm)))) {
967 /* CASE 4:
968 * conf record not found, or if conf, conf->cl_confirm does not
969 * match input confirm.
970 * unconf record not found, or if unconf, unconf->cl_confirm
971 * does not match input confirm.
972 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -0700974 } else {
NeilBrown08e89872005-06-23 22:04:11 -0700975 /* check that we have hit one of the cases...*/
976 status = nfserr_clid_inuse;
977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978out:
979 if (!status)
NeilBrown21ab45a2005-06-23 22:04:14 -0700980 nfsd4_probe_callback(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 nfs4_unlock_state();
982 return status;
983}
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/* OPEN Share state helper functions */
986static inline struct nfs4_file *
987alloc_init_file(struct inode *ino)
988{
989 struct nfs4_file *fp;
990 unsigned int hashval = file_hashval(ino);
991
NeilBrowne60d4392005-06-23 22:03:01 -0700992 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
993 if (fp) {
NeilBrown13cd2182005-06-23 22:03:10 -0700994 kref_init(&fp->fi_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -0700996 INIT_LIST_HEAD(&fp->fi_stateids);
997 INIT_LIST_HEAD(&fp->fi_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
999 fp->fi_inode = igrab(ino);
1000 fp->fi_id = current_fileid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return fp;
1002 }
1003 return NULL;
1004}
1005
1006static void
NeilBrowne60d4392005-06-23 22:03:01 -07001007nfsd4_free_slab(kmem_cache_t **slab)
1008{
1009 int status;
1010
1011 if (*slab == NULL)
1012 return;
1013 status = kmem_cache_destroy(*slab);
1014 *slab = NULL;
1015 WARN_ON(status);
1016}
1017
1018static void
1019nfsd4_free_slabs(void)
1020{
1021 nfsd4_free_slab(&stateowner_slab);
1022 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07001023 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07001024 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07001025}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027static int
1028nfsd4_init_slabs(void)
1029{
1030 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
1031 sizeof(struct nfs4_stateowner), 0, 0, NULL, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07001032 if (stateowner_slab == NULL)
1033 goto out_nomem;
1034 file_slab = kmem_cache_create("nfsd4_files",
1035 sizeof(struct nfs4_file), 0, 0, NULL, NULL);
1036 if (file_slab == NULL)
1037 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07001038 stateid_slab = kmem_cache_create("nfsd4_stateids",
1039 sizeof(struct nfs4_stateid), 0, 0, NULL, NULL);
1040 if (stateid_slab == NULL)
1041 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07001042 deleg_slab = kmem_cache_create("nfsd4_delegations",
1043 sizeof(struct nfs4_delegation), 0, 0, NULL, NULL);
1044 if (deleg_slab == NULL)
1045 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07001047out_nomem:
1048 nfsd4_free_slabs();
1049 dprintk("nfsd4: out of memory while initializing nfsv4\n");
1050 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
1053void
1054nfs4_free_stateowner(struct kref *kref)
1055{
1056 struct nfs4_stateowner *sop =
1057 container_of(kref, struct nfs4_stateowner, so_ref);
1058 kfree(sop->so_owner.data);
1059 kmem_cache_free(stateowner_slab, sop);
1060}
1061
1062static inline struct nfs4_stateowner *
1063alloc_stateowner(struct xdr_netobj *owner)
1064{
1065 struct nfs4_stateowner *sop;
1066
1067 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
1068 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
1069 memcpy(sop->so_owner.data, owner->data, owner->len);
1070 sop->so_owner.len = owner->len;
1071 kref_init(&sop->so_ref);
1072 return sop;
1073 }
1074 kmem_cache_free(stateowner_slab, sop);
1075 }
1076 return NULL;
1077}
1078
1079static struct nfs4_stateowner *
1080alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
1081 struct nfs4_stateowner *sop;
1082 struct nfs4_replay *rp;
1083 unsigned int idhashval;
1084
1085 if (!(sop = alloc_stateowner(&open->op_owner)))
1086 return NULL;
1087 idhashval = ownerid_hashval(current_ownerid);
1088 INIT_LIST_HEAD(&sop->so_idhash);
1089 INIT_LIST_HEAD(&sop->so_strhash);
1090 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07001091 INIT_LIST_HEAD(&sop->so_stateids);
1092 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 INIT_LIST_HEAD(&sop->so_close_lru);
1094 sop->so_time = 0;
1095 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
1096 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001097 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 sop->so_is_open_owner = 1;
1099 sop->so_id = current_ownerid++;
1100 sop->so_client = clp;
1101 sop->so_seqid = open->op_seqid;
1102 sop->so_confirmed = 0;
1103 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08001104 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 rp->rp_buflen = 0;
1106 rp->rp_buf = rp->rp_ibuf;
1107 return sop;
1108}
1109
1110static void
1111release_stateid_lockowners(struct nfs4_stateid *open_stp)
1112{
1113 struct nfs4_stateowner *lock_sop;
1114
NeilBrownea1da632005-06-23 22:04:17 -07001115 while (!list_empty(&open_stp->st_lockowners)) {
1116 lock_sop = list_entry(open_stp->st_lockowners.next,
1117 struct nfs4_stateowner, so_perstateid);
1118 /* list_del(&open_stp->st_lockowners); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 BUG_ON(lock_sop->so_is_open_owner);
1120 release_stateowner(lock_sop);
1121 }
1122}
1123
1124static void
1125unhash_stateowner(struct nfs4_stateowner *sop)
1126{
1127 struct nfs4_stateid *stp;
1128
1129 list_del(&sop->so_idhash);
1130 list_del(&sop->so_strhash);
NeilBrown6fa305d2005-06-23 22:03:06 -07001131 if (sop->so_is_open_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 list_del(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07001133 list_del(&sop->so_perstateid);
1134 while (!list_empty(&sop->so_stateids)) {
1135 stp = list_entry(sop->so_stateids.next,
1136 struct nfs4_stateid, st_perstateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (sop->so_is_open_owner)
1138 release_stateid(stp, OPEN_STATE);
1139 else
1140 release_stateid(stp, LOCK_STATE);
1141 }
1142}
1143
1144static void
1145release_stateowner(struct nfs4_stateowner *sop)
1146{
1147 unhash_stateowner(sop);
1148 list_del(&sop->so_close_lru);
1149 nfs4_put_stateowner(sop);
1150}
1151
1152static inline void
1153init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
1154 struct nfs4_stateowner *sop = open->op_stateowner;
1155 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
1156
1157 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07001158 INIT_LIST_HEAD(&stp->st_perstateowner);
1159 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 INIT_LIST_HEAD(&stp->st_perfile);
1161 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07001162 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07001163 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07001165 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 stp->st_file = fp;
1167 stp->st_stateid.si_boot = boot_time;
1168 stp->st_stateid.si_stateownerid = sop->so_id;
1169 stp->st_stateid.si_fileid = fp->fi_id;
1170 stp->st_stateid.si_generation = 0;
1171 stp->st_access_bmap = 0;
1172 stp->st_deny_bmap = 0;
1173 __set_bit(open->op_share_access, &stp->st_access_bmap);
1174 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07001175 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
1178static void
1179release_stateid(struct nfs4_stateid *stp, int flags)
1180{
1181 struct file *filp = stp->st_vfs_file;
1182
1183 list_del(&stp->st_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 list_del(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07001185 list_del(&stp->st_perstateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (flags & OPEN_STATE) {
1187 release_stateid_lockowners(stp);
1188 stp->st_vfs_file = NULL;
1189 nfsd_close(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 } else if (flags & LOCK_STATE)
1191 locks_remove_posix(filp, (fl_owner_t) stp->st_stateowner);
NeilBrown13cd2182005-06-23 22:03:10 -07001192 put_nfs4_file(stp->st_file);
NeilBrown5ac049a2005-06-23 22:03:03 -07001193 kmem_cache_free(stateid_slab, stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194}
1195
NeilBrownfd39ca92005-06-23 22:04:03 -07001196static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197move_to_close_lru(struct nfs4_stateowner *sop)
1198{
1199 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
1200
NeilBrown358dd552006-04-10 22:55:42 -07001201 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 sop->so_time = get_seconds();
1203}
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205static int
1206cmp_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner, clientid_t *clid) {
1207 return ((sop->so_owner.len == owner->len) &&
1208 !memcmp(sop->so_owner.data, owner->data, owner->len) &&
1209 (sop->so_client->cl_clientid.cl_id == clid->cl_id));
1210}
1211
1212static struct nfs4_stateowner *
1213find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
1214{
1215 struct nfs4_stateowner *so = NULL;
1216
1217 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
1218 if (cmp_owner_str(so, &open->op_owner, &open->op_clientid))
1219 return so;
1220 }
1221 return NULL;
1222}
1223
1224/* search file_hashtbl[] for file */
1225static struct nfs4_file *
1226find_file(struct inode *ino)
1227{
1228 unsigned int hashval = file_hashval(ino);
1229 struct nfs4_file *fp;
1230
1231 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07001232 if (fp->fi_inode == ino) {
1233 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07001235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237 return NULL;
1238}
1239
1240#define TEST_ACCESS(x) ((x > 0 || x < 4)?1:0)
1241#define TEST_DENY(x) ((x >= 0 || x < 5)?1:0)
1242
NeilBrownfd39ca92005-06-23 22:04:03 -07001243static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244set_access(unsigned int *access, unsigned long bmap) {
1245 int i;
1246
1247 *access = 0;
1248 for (i = 1; i < 4; i++) {
1249 if (test_bit(i, &bmap))
1250 *access |= i;
1251 }
1252}
1253
NeilBrownfd39ca92005-06-23 22:04:03 -07001254static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255set_deny(unsigned int *deny, unsigned long bmap) {
1256 int i;
1257
1258 *deny = 0;
1259 for (i = 0; i < 4; i++) {
1260 if (test_bit(i, &bmap))
1261 *deny |= i ;
1262 }
1263}
1264
1265static int
1266test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
1267 unsigned int access, deny;
1268
1269 set_access(&access, stp->st_access_bmap);
1270 set_deny(&deny, stp->st_deny_bmap);
1271 if ((access & open->op_share_deny) || (deny & open->op_share_access))
1272 return 0;
1273 return 1;
1274}
1275
1276/*
1277 * Called to check deny when READ with all zero stateid or
1278 * WRITE with all zero or all one stateid
1279 */
NeilBrownfd39ca92005-06-23 22:04:03 -07001280static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
1282{
1283 struct inode *ino = current_fh->fh_dentry->d_inode;
1284 struct nfs4_file *fp;
1285 struct nfs4_stateid *stp;
NeilBrown13cd2182005-06-23 22:03:10 -07001286 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 dprintk("NFSD: nfs4_share_conflict\n");
1289
1290 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07001291 if (!fp)
1292 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07001293 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07001295 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
1296 if (test_bit(deny_type, &stp->st_deny_bmap) ||
1297 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
1298 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
NeilBrown13cd2182005-06-23 22:03:10 -07001300 ret = nfs_ok;
1301out:
1302 put_nfs4_file(fp);
1303 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
1306static inline void
1307nfs4_file_downgrade(struct file *filp, unsigned int share_access)
1308{
1309 if (share_access & NFS4_SHARE_ACCESS_WRITE) {
1310 put_write_access(filp->f_dentry->d_inode);
1311 filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE;
1312 }
1313}
1314
1315/*
1316 * Recall a delegation
1317 */
1318static int
1319do_recall(void *__dp)
1320{
1321 struct nfs4_delegation *dp = __dp;
1322
1323 daemonize("nfsv4-recall");
1324
1325 nfsd4_cb_recall(dp);
1326 return 0;
1327}
1328
1329/*
1330 * Spawn a thread to perform a recall on the delegation represented
1331 * by the lease (file_lock)
1332 *
1333 * Called from break_lease() with lock_kernel() held.
1334 * Note: we assume break_lease will only call this *once* for any given
1335 * lease.
1336 */
1337static
1338void nfsd_break_deleg_cb(struct file_lock *fl)
1339{
1340 struct nfs4_delegation *dp= (struct nfs4_delegation *)fl->fl_owner;
1341 struct task_struct *t;
1342
1343 dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl);
1344 if (!dp)
1345 return;
1346
1347 /* We're assuming the state code never drops its reference
1348 * without first removing the lease. Since we're in this lease
1349 * callback (and since the lease code is serialized by the kernel
1350 * lock) we know the server hasn't removed the lease yet, we know
1351 * it's safe to take a reference: */
1352 atomic_inc(&dp->dl_count);
1353
1354 spin_lock(&recall_lock);
1355 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
1356 spin_unlock(&recall_lock);
1357
1358 /* only place dl_time is set. protected by lock_kernel*/
1359 dp->dl_time = get_seconds();
1360
1361 /* XXX need to merge NFSD_LEASE_TIME with fs/locks.c:lease_break_time */
1362 fl->fl_break_time = jiffies + NFSD_LEASE_TIME * HZ;
1363
1364 t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall");
1365 if (IS_ERR(t)) {
1366 struct nfs4_client *clp = dp->dl_client;
1367
1368 printk(KERN_INFO "NFSD: Callback thread failed for "
1369 "for client (clientid %08x/%08x)\n",
1370 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1371 nfs4_put_delegation(dp);
1372 }
1373}
1374
1375/*
1376 * The file_lock is being reapd.
1377 *
1378 * Called by locks_free_lock() with lock_kernel() held.
1379 */
1380static
1381void nfsd_release_deleg_cb(struct file_lock *fl)
1382{
1383 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
1384
1385 dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count));
1386
1387 if (!(fl->fl_flags & FL_LEASE) || !dp)
1388 return;
1389 dp->dl_flock = NULL;
1390}
1391
1392/*
1393 * Set the delegation file_lock back pointer.
1394 *
1395 * Called from __setlease() with lock_kernel() held.
1396 */
1397static
1398void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl)
1399{
1400 struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner;
1401
1402 dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp);
1403 if (!dp)
1404 return;
1405 dp->dl_flock = new;
1406}
1407
1408/*
1409 * Called from __setlease() with lock_kernel() held
1410 */
1411static
1412int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
1413{
1414 struct nfs4_delegation *onlistd =
1415 (struct nfs4_delegation *)onlist->fl_owner;
1416 struct nfs4_delegation *tryd =
1417 (struct nfs4_delegation *)try->fl_owner;
1418
1419 if (onlist->fl_lmops != try->fl_lmops)
1420 return 0;
1421
1422 return onlistd->dl_client == tryd->dl_client;
1423}
1424
1425
1426static
1427int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
1428{
1429 if (arg & F_UNLCK)
1430 return lease_modify(onlist, arg);
1431 else
1432 return -EAGAIN;
1433}
1434
NeilBrownfd39ca92005-06-23 22:04:03 -07001435static struct lock_manager_operations nfsd_lease_mng_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 .fl_break = nfsd_break_deleg_cb,
1437 .fl_release_private = nfsd_release_deleg_cb,
1438 .fl_copy_lock = nfsd_copy_lock_deleg_cb,
1439 .fl_mylease = nfsd_same_client_deleg_cb,
1440 .fl_change = nfsd_change_deleg_cb,
1441};
1442
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444int
1445nfsd4_process_open1(struct nfsd4_open *open)
1446{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 clientid_t *clientid = &open->op_clientid;
1448 struct nfs4_client *clp = NULL;
1449 unsigned int strhashval;
1450 struct nfs4_stateowner *sop = NULL;
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001453 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 if (STALE_CLIENTID(&open->op_clientid))
1456 return nfserr_stale_clientid;
1457
1458 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
1459 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001460 open->op_stateowner = sop;
1461 if (!sop) {
1462 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 clp = find_confirmed_client(clientid);
1464 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001465 return nfserr_expired;
1466 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001468 if (!sop->so_confirmed) {
1469 /* Replace unconfirmed owners without checking for replay. */
1470 clp = sop->so_client;
1471 release_stateowner(sop);
1472 open->op_stateowner = NULL;
1473 goto renew;
1474 }
1475 if (open->op_seqid == sop->so_seqid - 1) {
1476 if (sop->so_replay.rp_buflen)
1477 return NFSERR_REPLAY_ME;
1478 /* The original OPEN failed so spectacularly
1479 * that we don't even have replay data saved!
1480 * Therefore, we have no choice but to continue
1481 * processing this OPEN; presumably, we'll
1482 * fail again for the same reason.
1483 */
1484 dprintk("nfsd4_process_open1: replay with no replay cache\n");
1485 goto renew;
1486 }
1487 if (open->op_seqid != sop->so_seqid)
1488 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001490 if (open->op_stateowner == NULL) {
1491 sop = alloc_init_open_stateowner(strhashval, clp, open);
1492 if (sop == NULL)
1493 return nfserr_resource;
1494 open->op_stateowner = sop;
1495 }
1496 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08001498 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
NeilBrown4a6e43e2005-06-23 22:02:50 -07001501static inline int
1502nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
1503{
1504 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
1505 return nfserr_openmode;
1506 else
1507 return nfs_ok;
1508}
1509
NeilBrown52f4fb42005-06-23 22:02:49 -07001510static struct nfs4_delegation *
1511find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
1512{
1513 struct nfs4_delegation *dp;
1514
NeilBrownea1da632005-06-23 22:04:17 -07001515 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) {
NeilBrown52f4fb42005-06-23 22:02:49 -07001516 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid)
1517 return dp;
1518 }
1519 return NULL;
1520}
1521
NeilBrownc44c5ee2005-06-23 22:02:54 -07001522static int
NeilBrown567d9822005-06-23 22:02:53 -07001523nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
1524 struct nfs4_delegation **dp)
1525{
1526 int flags;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001527 int status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07001528
1529 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
1530 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07001531 goto out;
NeilBrown567d9822005-06-23 22:02:53 -07001532 flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ?
1533 RD_STATE : WR_STATE;
1534 status = nfs4_check_delegmode(*dp, flags);
1535 if (status)
1536 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001537out:
1538 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
1539 return nfs_ok;
1540 if (status)
1541 return status;
1542 open->op_stateowner->so_confirmed = 1;
1543 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07001544}
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546static int
1547nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
1548{
1549 struct nfs4_stateid *local;
1550 int status = nfserr_share_denied;
1551 struct nfs4_stateowner *sop = open->op_stateowner;
1552
NeilBrown8beefa22005-06-23 22:03:08 -07001553 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /* ignore lock owners */
1555 if (local->st_stateowner->so_is_open_owner == 0)
1556 continue;
1557 /* remember if we have seen this open owner */
1558 if (local->st_stateowner == sop)
1559 *stpp = local;
1560 /* check for conflicting share reservations */
1561 if (!test_share(local, open))
1562 goto out;
1563 }
1564 status = 0;
1565out:
1566 return status;
1567}
1568
NeilBrown5ac049a2005-06-23 22:03:03 -07001569static inline struct nfs4_stateid *
1570nfs4_alloc_stateid(void)
1571{
1572 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
1573}
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575static int
1576nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
NeilBrown567d9822005-06-23 22:02:53 -07001577 struct nfs4_delegation *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 struct svc_fh *cur_fh, int flags)
1579{
1580 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
NeilBrown5ac049a2005-06-23 22:03:03 -07001582 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (stp == NULL)
1584 return nfserr_resource;
1585
NeilBrown567d9822005-06-23 22:02:53 -07001586 if (dp) {
1587 get_file(dp->dl_vfs_file);
1588 stp->st_vfs_file = dp->dl_vfs_file;
1589 } else {
1590 int status;
1591 status = nfsd_open(rqstp, cur_fh, S_IFREG, flags,
1592 &stp->st_vfs_file);
1593 if (status) {
1594 if (status == nfserr_dropit)
1595 status = nfserr_jukebox;
NeilBrown5ac049a2005-06-23 22:03:03 -07001596 kmem_cache_free(stateid_slab, stp);
NeilBrown567d9822005-06-23 22:02:53 -07001597 return status;
1598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 *stpp = stp;
1601 return 0;
1602}
1603
1604static inline int
1605nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
1606 struct nfsd4_open *open)
1607{
1608 struct iattr iattr = {
1609 .ia_valid = ATTR_SIZE,
1610 .ia_size = 0,
1611 };
1612 if (!open->op_truncate)
1613 return 0;
1614 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08001615 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
1617}
1618
1619static int
1620nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
1621{
1622 struct file *filp = stp->st_vfs_file;
1623 struct inode *inode = filp->f_dentry->d_inode;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001624 unsigned int share_access, new_writer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 int status;
1626
1627 set_access(&share_access, stp->st_access_bmap);
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001628 new_writer = (~share_access) & open->op_share_access
1629 & NFS4_SHARE_ACCESS_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001631 if (new_writer) {
1632 status = get_write_access(inode);
1633 if (status)
1634 return nfserrno(status);
1635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 status = nfsd4_truncate(rqstp, cur_fh, open);
1637 if (status) {
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001638 if (new_writer)
1639 put_write_access(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return status;
1641 }
1642 /* remember the open */
J. Bruce Fields6c26d082006-01-18 17:43:38 -08001643 filp->f_mode |= open->op_share_access;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 set_bit(open->op_share_access, &stp->st_access_bmap);
1645 set_bit(open->op_share_deny, &stp->st_deny_bmap);
1646
1647 return nfs_ok;
1648}
1649
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651static void
NeilBrown37515172005-07-07 17:59:16 -07001652nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
NeilBrown37515172005-07-07 17:59:16 -07001654 open->op_stateowner->so_confirmed = 1;
1655 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}
1657
1658/*
1659 * Attempt to hand out a delegation.
1660 */
1661static void
1662nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
1663{
1664 struct nfs4_delegation *dp;
1665 struct nfs4_stateowner *sop = stp->st_stateowner;
1666 struct nfs4_callback *cb = &sop->so_client->cl_callback;
1667 struct file_lock fl, *flp = &fl;
1668 int status, flag = 0;
1669
1670 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07001671 open->op_recall = 0;
1672 switch (open->op_claim_type) {
1673 case NFS4_OPEN_CLAIM_PREVIOUS:
1674 if (!atomic_read(&cb->cb_set))
1675 open->op_recall = 1;
1676 flag = open->op_delegate_type;
1677 if (flag == NFS4_OPEN_DELEGATE_NONE)
1678 goto out;
1679 break;
1680 case NFS4_OPEN_CLAIM_NULL:
1681 /* Let's not give out any delegations till everyone's
1682 * had the chance to reclaim theirs.... */
1683 if (nfs4_in_grace())
1684 goto out;
1685 if (!atomic_read(&cb->cb_set) || !sop->so_confirmed)
1686 goto out;
1687 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1688 flag = NFS4_OPEN_DELEGATE_WRITE;
1689 else
1690 flag = NFS4_OPEN_DELEGATE_READ;
1691 break;
1692 default:
1693 goto out;
1694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
1697 if (dp == NULL) {
1698 flag = NFS4_OPEN_DELEGATE_NONE;
1699 goto out;
1700 }
1701 locks_init_lock(&fl);
1702 fl.fl_lmops = &nfsd_lease_mng_ops;
1703 fl.fl_flags = FL_LEASE;
1704 fl.fl_end = OFFSET_MAX;
1705 fl.fl_owner = (fl_owner_t)dp;
1706 fl.fl_file = stp->st_vfs_file;
1707 fl.fl_pid = current->tgid;
1708
1709 /* setlease checks to see if delegation should be handed out.
1710 * the lock_manager callbacks fl_mylease and fl_change are used
1711 */
1712 if ((status = setlease(stp->st_vfs_file,
1713 flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK, &flp))) {
1714 dprintk("NFSD: setlease failed [%d], no delegation\n", status);
NeilBrownc9071322005-04-16 15:26:38 -07001715 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 flag = NFS4_OPEN_DELEGATE_NONE;
1717 goto out;
1718 }
1719
1720 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
1721
1722 dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n",
1723 dp->dl_stateid.si_boot,
1724 dp->dl_stateid.si_stateownerid,
1725 dp->dl_stateid.si_fileid,
1726 dp->dl_stateid.si_generation);
1727out:
NeilBrown7b190fe2005-06-23 22:03:23 -07001728 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
1729 && flag == NFS4_OPEN_DELEGATE_NONE
1730 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
1731 printk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 open->op_delegate_type = flag;
1733}
1734
1735/*
1736 * called with nfs4_lock_state() held.
1737 */
1738int
1739nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
1740{
1741 struct nfs4_file *fp = NULL;
1742 struct inode *ino = current_fh->fh_dentry->d_inode;
1743 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07001744 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 int status;
1746
1747 status = nfserr_inval;
1748 if (!TEST_ACCESS(open->op_share_access) || !TEST_DENY(open->op_share_deny))
1749 goto out;
1750 /*
1751 * Lookup file; if found, lookup stateid and check open request,
1752 * and check for delegations in the process of being recalled.
1753 * If not found, create the nfs4_file struct
1754 */
1755 fp = find_file(ino);
1756 if (fp) {
1757 if ((status = nfs4_check_open(fp, open, &stp)))
1758 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07001759 status = nfs4_check_deleg(fp, open, &dp);
1760 if (status)
1761 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07001763 status = nfserr_bad_stateid;
1764 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
1765 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 status = nfserr_resource;
1767 fp = alloc_init_file(ino);
1768 if (fp == NULL)
1769 goto out;
1770 }
1771
1772 /*
1773 * OPEN the file, or upgrade an existing OPEN.
1774 * If truncate fails, the OPEN fails.
1775 */
1776 if (stp) {
1777 /* Stateid was found, this is an OPEN upgrade */
1778 status = nfs4_upgrade_open(rqstp, current_fh, stp, open);
1779 if (status)
1780 goto out;
NeilBrown444c2c02005-07-07 17:59:22 -07001781 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 } else {
1783 /* Stateid was not found, this is a new OPEN */
1784 int flags = 0;
1785 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1786 flags = MAY_WRITE;
1787 else
1788 flags = MAY_READ;
NeilBrown567d9822005-06-23 22:02:53 -07001789 status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags);
1790 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 goto out;
1792 init_stateid(stp, fp, open);
1793 status = nfsd4_truncate(rqstp, current_fh, open);
1794 if (status) {
1795 release_stateid(stp, OPEN_STATE);
1796 goto out;
1797 }
1798 }
1799 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
1800
1801 /*
1802 * Attempt to hand out a delegation. No error return, because the
1803 * OPEN succeeds even if we fail.
1804 */
1805 nfs4_open_delegation(current_fh, open, stp);
1806
1807 status = nfs_ok;
1808
1809 dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n",
1810 stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid,
1811 stp->st_stateid.si_fileid, stp->st_stateid.si_generation);
1812out:
NeilBrown13cd2182005-06-23 22:03:10 -07001813 if (fp)
1814 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07001815 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
1816 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 /*
1818 * To finish the open response, we just need to set the rflags.
1819 */
1820 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
1821 if (!open->op_stateowner->so_confirmed)
1822 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
1823
1824 return status;
1825}
1826
NeilBrown58da2822005-06-23 22:03:19 -07001827static struct workqueue_struct *laundry_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828static struct work_struct laundromat_work;
1829static void laundromat_main(void *);
1830static DECLARE_WORK(laundromat_work, laundromat_main, NULL);
1831
1832int
1833nfsd4_renew(clientid_t *clid)
1834{
1835 struct nfs4_client *clp;
1836 int status;
1837
1838 nfs4_lock_state();
1839 dprintk("process_renew(%08x/%08x): starting\n",
1840 clid->cl_boot, clid->cl_id);
1841 status = nfserr_stale_clientid;
1842 if (STALE_CLIENTID(clid))
1843 goto out;
1844 clp = find_confirmed_client(clid);
1845 status = nfserr_expired;
1846 if (clp == NULL) {
1847 /* We assume the client took too long to RENEW. */
1848 dprintk("nfsd4_renew: clientid not found!\n");
1849 goto out;
1850 }
1851 renew_client(clp);
1852 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07001853 if (!list_empty(&clp->cl_delegations)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 && !atomic_read(&clp->cl_callback.cb_set))
1855 goto out;
1856 status = nfs_ok;
1857out:
1858 nfs4_unlock_state();
1859 return status;
1860}
1861
NeilBrowna76b4312005-06-23 22:04:01 -07001862static void
1863end_grace(void)
1864{
1865 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07001866 nfsd4_recdir_purge_old();
NeilBrowna76b4312005-06-23 22:04:01 -07001867 in_grace = 0;
1868}
1869
NeilBrownfd39ca92005-06-23 22:04:03 -07001870static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871nfs4_laundromat(void)
1872{
1873 struct nfs4_client *clp;
1874 struct nfs4_stateowner *sop;
1875 struct nfs4_delegation *dp;
1876 struct list_head *pos, *next, reaplist;
1877 time_t cutoff = get_seconds() - NFSD_LEASE_TIME;
1878 time_t t, clientid_val = NFSD_LEASE_TIME;
1879 time_t u, test_val = NFSD_LEASE_TIME;
1880
1881 nfs4_lock_state();
1882
1883 dprintk("NFSD: laundromat service - starting\n");
NeilBrowna76b4312005-06-23 22:04:01 -07001884 if (in_grace)
1885 end_grace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 list_for_each_safe(pos, next, &client_lru) {
1887 clp = list_entry(pos, struct nfs4_client, cl_lru);
1888 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
1889 t = clp->cl_time - cutoff;
1890 if (clientid_val > t)
1891 clientid_val = t;
1892 break;
1893 }
1894 dprintk("NFSD: purging unused client (clientid %08x)\n",
1895 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07001896 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 expire_client(clp);
1898 }
1899 INIT_LIST_HEAD(&reaplist);
1900 spin_lock(&recall_lock);
1901 list_for_each_safe(pos, next, &del_recall_lru) {
1902 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1903 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
1904 u = dp->dl_time - cutoff;
1905 if (test_val > u)
1906 test_val = u;
1907 break;
1908 }
1909 dprintk("NFSD: purging unused delegation dp %p, fp %p\n",
1910 dp, dp->dl_flock);
1911 list_move(&dp->dl_recall_lru, &reaplist);
1912 }
1913 spin_unlock(&recall_lock);
1914 list_for_each_safe(pos, next, &reaplist) {
1915 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
1916 list_del_init(&dp->dl_recall_lru);
1917 unhash_delegation(dp);
1918 }
1919 test_val = NFSD_LEASE_TIME;
1920 list_for_each_safe(pos, next, &close_lru) {
1921 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
1922 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
1923 u = sop->so_time - cutoff;
1924 if (test_val > u)
1925 test_val = u;
1926 break;
1927 }
1928 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
1929 sop->so_id);
NeilBrown358dd552006-04-10 22:55:42 -07001930 release_stateowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
1932 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
1933 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
1934 nfs4_unlock_state();
1935 return clientid_val;
1936}
1937
1938void
1939laundromat_main(void *not_used)
1940{
1941 time_t t;
1942
1943 t = nfs4_laundromat();
1944 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07001945 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
NeilBrownfd39ca92005-06-23 22:04:03 -07001948static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07001949search_close_lru(u32 st_id, int flags)
1950{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 struct nfs4_stateowner *local = NULL;
1952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 if (flags & CLOSE_STATE) {
1954 list_for_each_entry(local, &close_lru, so_close_lru) {
1955 if (local->so_id == st_id)
1956 return local;
1957 }
1958 }
1959 return NULL;
1960}
1961
1962static inline int
1963nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
1964{
1965 return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_dentry->d_inode;
1966}
1967
1968static int
1969STALE_STATEID(stateid_t *stateid)
1970{
1971 if (stateid->si_boot == boot_time)
1972 return 0;
Neil Brown849823c2005-09-13 01:25:36 -07001973 dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
1975 stateid->si_generation);
1976 return 1;
1977}
1978
1979static inline int
1980access_permit_read(unsigned long access_bmap)
1981{
1982 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
1983 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
1984 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
1985}
1986
1987static inline int
1988access_permit_write(unsigned long access_bmap)
1989{
1990 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
1991 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
1992}
1993
1994static
1995int nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
1996{
1997 int status = nfserr_openmode;
1998
1999 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
2000 goto out;
2001 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
2002 goto out;
2003 status = nfs_ok;
2004out:
2005 return status;
2006}
2007
2008static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
2010{
2011 /* Trying to call delegreturn with a special stateid? Yuch: */
2012 if (!(flags & (RD_STATE | WR_STATE)))
2013 return nfserr_bad_stateid;
2014 else if (ONE_STATEID(stateid) && (flags & RD_STATE))
2015 return nfs_ok;
2016 else if (nfs4_in_grace()) {
2017 /* Answer in remaining cases depends on existance of
2018 * conflicting state; so we must wait out the grace period. */
2019 return nfserr_grace;
2020 } else if (flags & WR_STATE)
2021 return nfs4_share_conflict(current_fh,
2022 NFS4_SHARE_DENY_WRITE);
2023 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
2024 return nfs4_share_conflict(current_fh,
2025 NFS4_SHARE_DENY_READ);
2026}
2027
2028/*
2029 * Allow READ/WRITE during grace period on recovered state only for files
2030 * that are not able to provide mandatory locking.
2031 */
2032static inline int
2033io_during_grace_disallowed(struct inode *inode, int flags)
2034{
2035 return nfs4_in_grace() && (flags & (RD_STATE | WR_STATE))
2036 && MANDATORY_LOCK(inode);
2037}
2038
2039/*
2040* Checks for stateid operations
2041*/
2042int
2043nfs4_preprocess_stateid_op(struct svc_fh *current_fh, stateid_t *stateid, int flags, struct file **filpp)
2044{
2045 struct nfs4_stateid *stp = NULL;
2046 struct nfs4_delegation *dp = NULL;
2047 stateid_t *stidp;
2048 struct inode *ino = current_fh->fh_dentry->d_inode;
2049 int status;
2050
2051 dprintk("NFSD: preprocess_stateid_op: stateid = (%08x/%08x/%08x/%08x)\n",
2052 stateid->si_boot, stateid->si_stateownerid,
2053 stateid->si_fileid, stateid->si_generation);
2054 if (filpp)
2055 *filpp = NULL;
2056
2057 if (io_during_grace_disallowed(ino, flags))
2058 return nfserr_grace;
2059
2060 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
2061 return check_special_stateids(current_fh, stateid, flags);
2062
2063 /* STALE STATEID */
2064 status = nfserr_stale_stateid;
2065 if (STALE_STATEID(stateid))
2066 goto out;
2067
2068 /* BAD STATEID */
2069 status = nfserr_bad_stateid;
2070 if (!stateid->si_fileid) { /* delegation stateid */
2071 if(!(dp = find_delegation_stateid(ino, stateid))) {
2072 dprintk("NFSD: delegation stateid not found\n");
2073 if (nfs4_in_grace())
2074 status = nfserr_grace;
2075 goto out;
2076 }
2077 stidp = &dp->dl_stateid;
2078 } else { /* open or lock stateid */
2079 if (!(stp = find_stateid(stateid, flags))) {
2080 dprintk("NFSD: open or lock stateid not found\n");
2081 if (nfs4_in_grace())
2082 status = nfserr_grace;
2083 goto out;
2084 }
2085 if ((flags & CHECK_FH) && nfs4_check_fh(current_fh, stp))
2086 goto out;
2087 if (!stp->st_stateowner->so_confirmed)
2088 goto out;
2089 stidp = &stp->st_stateid;
2090 }
2091 if (stateid->si_generation > stidp->si_generation)
2092 goto out;
2093
2094 /* OLD STATEID */
2095 status = nfserr_old_stateid;
2096 if (stateid->si_generation < stidp->si_generation)
2097 goto out;
2098 if (stp) {
2099 if ((status = nfs4_check_openmode(stp,flags)))
2100 goto out;
2101 renew_client(stp->st_stateowner->so_client);
2102 if (filpp)
2103 *filpp = stp->st_vfs_file;
2104 } else if (dp) {
2105 if ((status = nfs4_check_delegmode(dp, flags)))
2106 goto out;
2107 renew_client(dp->dl_client);
2108 if (flags & DELEG_RET)
2109 unhash_delegation(dp);
2110 if (filpp)
2111 *filpp = dp->dl_vfs_file;
2112 }
2113 status = nfs_ok;
2114out:
2115 return status;
2116}
2117
NeilBrown4c4cd222005-07-07 17:59:27 -07002118static inline int
2119setlkflg (int type)
2120{
2121 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
2122 RD_STATE : WR_STATE;
2123}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125/*
2126 * Checks for sequence id mutating operations.
2127 */
NeilBrownfd39ca92005-06-23 22:04:03 -07002128static int
NeilBrown4c4cd222005-07-07 17:59:27 -07002129nfs4_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 -07002130{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 struct nfs4_stateid *stp;
2132 struct nfs4_stateowner *sop;
2133
2134 dprintk("NFSD: preprocess_seqid_op: seqid=%d "
2135 "stateid = (%08x/%08x/%08x/%08x)\n", seqid,
2136 stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid,
2137 stateid->si_generation);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 *stpp = NULL;
2140 *sopp = NULL;
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
2143 printk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002144 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07002148 return nfserr_stale_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 /*
2150 * We return BAD_STATEID if filehandle doesn't match stateid,
2151 * the confirmed flag is incorrecly set, or the generation
2152 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 */
NeilBrownf8816512005-07-07 17:59:25 -07002154 stp = find_stateid(stateid, flags);
2155 if (stp == NULL) {
2156 /*
2157 * Also, we should make sure this isn't just the result of
2158 * a replayed close:
2159 */
2160 sop = search_close_lru(stateid->si_stateownerid, flags);
2161 if (sop == NULL)
2162 return nfserr_bad_stateid;
2163 *sopp = sop;
2164 goto check_replay;
2165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
NeilBrown4c4cd222005-07-07 17:59:27 -07002167 if (lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 struct nfs4_stateowner *sop = stp->st_stateowner;
NeilBrown4c4cd222005-07-07 17:59:27 -07002169 clientid_t *lockclid = &lock->v.new.clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 struct nfs4_client *clp = sop->so_client;
NeilBrown4c4cd222005-07-07 17:59:27 -07002171 int lkflg = 0;
2172 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
NeilBrown4c4cd222005-07-07 17:59:27 -07002174 lkflg = setlkflg(lock->lk_type);
2175
2176 if (lock->lk_is_new) {
2177 if (!sop->so_is_open_owner)
2178 return nfserr_bad_stateid;
2179 if (!cmp_clid(&clp->cl_clientid, lockclid))
2180 return nfserr_bad_stateid;
2181 /* stp is the open stateid */
2182 status = nfs4_check_openmode(stp, lkflg);
2183 if (status)
2184 return status;
2185 } else {
2186 /* stp is the lock stateid */
2187 status = nfs4_check_openmode(stp->st_openstp, lkflg);
2188 if (status)
2189 return status;
2190 }
2191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
2193
2194 if ((flags & CHECK_FH) && nfs4_check_fh(current_fh, stp)) {
2195 printk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002196 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
2198
2199 *stpp = stp;
2200 *sopp = sop = stp->st_stateowner;
2201
2202 /*
2203 * We now validate the seqid and stateid generation numbers.
2204 * For the moment, we ignore the possibility of
2205 * generation number wraparound.
2206 */
NeilBrownbd9aac52005-07-07 17:59:19 -07002207 if (seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 goto check_replay;
2209
NeilBrown3a4f98b2005-07-07 17:59:26 -07002210 if (sop->so_confirmed && flags & CONFIRM) {
2211 printk("NFSD: preprocess_seqid_op: expected"
2212 " unconfirmed stateowner!\n");
2213 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07002215 if (!sop->so_confirmed && !(flags & CONFIRM)) {
2216 printk("NFSD: preprocess_seqid_op: stateowner not"
2217 " confirmed yet!\n");
2218 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 }
2220 if (stateid->si_generation > stp->st_stateid.si_generation) {
2221 printk("NFSD: preprocess_seqid_op: future stateid?!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002222 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (stateid->si_generation < stp->st_stateid.si_generation) {
2226 printk("NFSD: preprocess_seqid_op: old stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07002227 return nfserr_old_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
NeilBrown52fd0042005-07-07 17:59:24 -07002229 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07002230 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07002233 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07002234 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 /* indicate replay to calling function */
NeilBrown3a4f98b2005-07-07 17:59:26 -07002236 return NFSERR_REPLAY_ME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07002238 printk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
2239 sop->so_seqid, seqid);
2240 *sopp = NULL;
2241 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
2244int
Neil Brownf2327d92005-09-13 01:25:37 -07002245nfsd4_open_confirm(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open_confirm *oc, struct nfs4_stateowner **replay_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246{
2247 int status;
2248 struct nfs4_stateowner *sop;
2249 struct nfs4_stateid *stp;
2250
2251 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
2252 (int)current_fh->fh_dentry->d_name.len,
2253 current_fh->fh_dentry->d_name.name);
2254
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07002255 status = fh_verify(rqstp, current_fh, S_IFREG, 0);
2256 if (status)
2257 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 nfs4_lock_state();
2260
2261 if ((status = nfs4_preprocess_seqid_op(current_fh, oc->oc_seqid,
2262 &oc->oc_req_stateid,
2263 CHECK_FH | CONFIRM | OPEN_STATE,
2264 &oc->oc_stateowner, &stp, NULL)))
2265 goto out;
2266
2267 sop = oc->oc_stateowner;
2268 sop->so_confirmed = 1;
2269 update_stateid(&stp->st_stateid);
2270 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
2271 dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d "
2272 "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid,
2273 stp->st_stateid.si_boot,
2274 stp->st_stateid.si_stateownerid,
2275 stp->st_stateid.si_fileid,
2276 stp->st_stateid.si_generation);
NeilBrownc7b9a452005-06-23 22:04:30 -07002277
2278 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279out:
Neil Brownf2327d92005-09-13 01:25:37 -07002280 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 nfs4_get_stateowner(oc->oc_stateowner);
Neil Brownf2327d92005-09-13 01:25:37 -07002282 *replay_owner = oc->oc_stateowner;
2283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 nfs4_unlock_state();
2285 return status;
2286}
2287
2288
2289/*
2290 * unset all bits in union bitmap (bmap) that
2291 * do not exist in share (from successful OPEN_DOWNGRADE)
2292 */
2293static void
2294reset_union_bmap_access(unsigned long access, unsigned long *bmap)
2295{
2296 int i;
2297 for (i = 1; i < 4; i++) {
2298 if ((i & access) != i)
2299 __clear_bit(i, bmap);
2300 }
2301}
2302
2303static void
2304reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
2305{
2306 int i;
2307 for (i = 0; i < 4; i++) {
2308 if ((i & deny) != i)
2309 __clear_bit(i, bmap);
2310 }
2311}
2312
2313int
Neil Brownf2327d92005-09-13 01:25:37 -07002314nfsd4_open_downgrade(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open_downgrade *od, struct nfs4_stateowner **replay_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315{
2316 int status;
2317 struct nfs4_stateid *stp;
2318 unsigned int share_access;
2319
2320 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
2321 (int)current_fh->fh_dentry->d_name.len,
2322 current_fh->fh_dentry->d_name.name);
2323
2324 if (!TEST_ACCESS(od->od_share_access) || !TEST_DENY(od->od_share_deny))
2325 return nfserr_inval;
2326
2327 nfs4_lock_state();
2328 if ((status = nfs4_preprocess_seqid_op(current_fh, od->od_seqid,
2329 &od->od_stateid,
2330 CHECK_FH | OPEN_STATE,
2331 &od->od_stateowner, &stp, NULL)))
2332 goto out;
2333
2334 status = nfserr_inval;
2335 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
2336 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
2337 stp->st_access_bmap, od->od_share_access);
2338 goto out;
2339 }
2340 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
2341 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
2342 stp->st_deny_bmap, od->od_share_deny);
2343 goto out;
2344 }
2345 set_access(&share_access, stp->st_access_bmap);
2346 nfs4_file_downgrade(stp->st_vfs_file,
2347 share_access & ~od->od_share_access);
2348
2349 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
2350 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
2351
2352 update_stateid(&stp->st_stateid);
2353 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
2354 status = nfs_ok;
2355out:
Neil Brownf2327d92005-09-13 01:25:37 -07002356 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 nfs4_get_stateowner(od->od_stateowner);
Neil Brownf2327d92005-09-13 01:25:37 -07002358 *replay_owner = od->od_stateowner;
2359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 nfs4_unlock_state();
2361 return status;
2362}
2363
2364/*
2365 * nfs4_unlock_state() called after encode
2366 */
2367int
Neil Brownf2327d92005-09-13 01:25:37 -07002368nfsd4_close(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_close *close, struct nfs4_stateowner **replay_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
2370 int status;
2371 struct nfs4_stateid *stp;
2372
2373 dprintk("NFSD: nfsd4_close on file %.*s\n",
2374 (int)current_fh->fh_dentry->d_name.len,
2375 current_fh->fh_dentry->d_name.name);
2376
2377 nfs4_lock_state();
2378 /* check close_lru for replay */
2379 if ((status = nfs4_preprocess_seqid_op(current_fh, close->cl_seqid,
2380 &close->cl_stateid,
2381 CHECK_FH | OPEN_STATE | CLOSE_STATE,
2382 &close->cl_stateowner, &stp, NULL)))
2383 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 status = nfs_ok;
2385 update_stateid(&stp->st_stateid);
2386 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
2387
J. Bruce Fields04ef5952006-01-18 17:43:21 -08002388 /* release_stateid() calls nfsd_close() if needed */
2389 release_stateid(stp, OPEN_STATE);
2390
2391 /* place unused nfs4_stateowners on so_close_lru list to be
2392 * released by the laundromat service after the lease period
2393 * to enable us to handle CLOSE replay
2394 */
2395 if (list_empty(&close->cl_stateowner->so_stateids))
2396 move_to_close_lru(close->cl_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397out:
Neil Brownf2327d92005-09-13 01:25:37 -07002398 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 nfs4_get_stateowner(close->cl_stateowner);
Neil Brownf2327d92005-09-13 01:25:37 -07002400 *replay_owner = close->cl_stateowner;
2401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 nfs4_unlock_state();
2403 return status;
2404}
2405
2406int
2407nfsd4_delegreturn(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_delegreturn *dr)
2408{
2409 int status;
2410
2411 if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0)))
2412 goto out;
2413
2414 nfs4_lock_state();
2415 status = nfs4_preprocess_stateid_op(current_fh, &dr->dr_stateid, DELEG_RET, NULL);
2416 nfs4_unlock_state();
2417out:
2418 return status;
2419}
2420
2421
2422/*
2423 * Lock owner state (byte-range locks)
2424 */
2425#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
2426#define LOCK_HASH_BITS 8
2427#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
2428#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
2429
2430#define lockownerid_hashval(id) \
2431 ((id) & LOCK_HASH_MASK)
2432
2433static inline unsigned int
2434lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
2435 struct xdr_netobj *ownername)
2436{
2437 return (file_hashval(inode) + cl_id
2438 + opaque_hashval(ownername->data, ownername->len))
2439 & LOCK_HASH_MASK;
2440}
2441
2442static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
2443static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
2444static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
2445
NeilBrownfd39ca92005-06-23 22:04:03 -07002446static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447find_stateid(stateid_t *stid, int flags)
2448{
2449 struct nfs4_stateid *local = NULL;
2450 u32 st_id = stid->si_stateownerid;
2451 u32 f_id = stid->si_fileid;
2452 unsigned int hashval;
2453
2454 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
2455 if ((flags & LOCK_STATE) || (flags & RD_STATE) || (flags & WR_STATE)) {
2456 hashval = stateid_hashval(st_id, f_id);
2457 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
2458 if ((local->st_stateid.si_stateownerid == st_id) &&
2459 (local->st_stateid.si_fileid == f_id))
2460 return local;
2461 }
2462 }
2463 if ((flags & OPEN_STATE) || (flags & RD_STATE) || (flags & WR_STATE)) {
2464 hashval = stateid_hashval(st_id, f_id);
2465 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
2466 if ((local->st_stateid.si_stateownerid == st_id) &&
2467 (local->st_stateid.si_fileid == f_id))
2468 return local;
2469 }
Neil Brown849823c2005-09-13 01:25:36 -07002470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 return NULL;
2472}
2473
2474static struct nfs4_delegation *
2475find_delegation_stateid(struct inode *ino, stateid_t *stid)
2476{
NeilBrown13cd2182005-06-23 22:03:10 -07002477 struct nfs4_file *fp;
2478 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480 dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n",
2481 stid->si_boot, stid->si_stateownerid,
2482 stid->si_fileid, stid->si_generation);
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002485 if (!fp)
2486 return NULL;
2487 dl = find_delegation_file(fp, stid);
2488 put_nfs4_file(fp);
2489 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490}
2491
2492/*
2493 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
2494 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
2495 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
2496 * locking, this prevents us from being completely protocol-compliant. The
2497 * real solution to this problem is to start using unsigned file offsets in
2498 * the VFS, but this is a very deep change!
2499 */
2500static inline void
2501nfs4_transform_lock_offset(struct file_lock *lock)
2502{
2503 if (lock->fl_start < 0)
2504 lock->fl_start = OFFSET_MAX;
2505 if (lock->fl_end < 0)
2506 lock->fl_end = OFFSET_MAX;
2507}
2508
NeilBrownd5b90262006-04-10 22:55:22 -07002509/* Hack!: For now, we're defining this just so we can use a pointer to it
2510 * as a unique cookie to identify our (NFSv4's) posix locks. */
Adrian Bunke465a772006-04-10 22:55:23 -07002511static struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07002512};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
2514static inline void
2515nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
2516{
NeilBrownd5b90262006-04-10 22:55:22 -07002517 struct nfs4_stateowner *sop;
2518 unsigned int hval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
NeilBrownd5b90262006-04-10 22:55:22 -07002520 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
2521 sop = (struct nfs4_stateowner *) fl->fl_owner;
2522 hval = lockownerid_hashval(sop->so_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 kref_get(&sop->so_ref);
2524 deny->ld_sop = sop;
2525 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07002526 } else {
2527 deny->ld_sop = NULL;
2528 deny->ld_clientid.cl_boot = 0;
2529 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 }
2531 deny->ld_start = fl->fl_start;
2532 deny->ld_length = ~(u64)0;
2533 if (fl->fl_end != ~(u64)0)
2534 deny->ld_length = fl->fl_end - fl->fl_start + 1;
2535 deny->ld_type = NFS4_READ_LT;
2536 if (fl->fl_type != F_RDLCK)
2537 deny->ld_type = NFS4_WRITE_LT;
2538}
2539
2540static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541find_lockstateowner_str(struct inode *inode, clientid_t *clid,
2542 struct xdr_netobj *owner)
2543{
2544 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
2545 struct nfs4_stateowner *op;
2546
2547 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
2548 if (cmp_owner_str(op, owner, clid))
2549 return op;
2550 }
2551 return NULL;
2552}
2553
2554/*
2555 * Alloc a lock owner structure.
2556 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
2557 * occured.
2558 *
2559 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 */
2561
2562static struct nfs4_stateowner *
2563alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
2564 struct nfs4_stateowner *sop;
2565 struct nfs4_replay *rp;
2566 unsigned int idhashval;
2567
2568 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
2569 return NULL;
2570 idhashval = lockownerid_hashval(current_ownerid);
2571 INIT_LIST_HEAD(&sop->so_idhash);
2572 INIT_LIST_HEAD(&sop->so_strhash);
2573 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07002574 INIT_LIST_HEAD(&sop->so_stateids);
2575 INIT_LIST_HEAD(&sop->so_perstateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
2577 sop->so_time = 0;
2578 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
2579 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002580 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 sop->so_is_open_owner = 0;
2582 sop->so_id = current_ownerid++;
2583 sop->so_client = clp;
Neil Brownb59e3c02005-09-13 01:25:38 -07002584 /* It is the openowner seqid that will be incremented in encode in the
2585 * case of new lockowners; so increment the lock seqid manually: */
2586 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 sop->so_confirmed = 1;
2588 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08002589 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 rp->rp_buflen = 0;
2591 rp->rp_buf = rp->rp_ibuf;
2592 return sop;
2593}
2594
NeilBrownfd39ca92005-06-23 22:04:03 -07002595static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
2597{
2598 struct nfs4_stateid *stp;
2599 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2600
NeilBrown5ac049a2005-06-23 22:03:03 -07002601 stp = nfs4_alloc_stateid();
2602 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 goto out;
2604 INIT_LIST_HEAD(&stp->st_hash);
2605 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07002606 INIT_LIST_HEAD(&stp->st_perstateowner);
2607 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07002609 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07002610 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07002612 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 stp->st_file = fp;
2614 stp->st_stateid.si_boot = boot_time;
2615 stp->st_stateid.si_stateownerid = sop->so_id;
2616 stp->st_stateid.si_fileid = fp->fi_id;
2617 stp->st_stateid.si_generation = 0;
2618 stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */
2619 stp->st_access_bmap = open_stp->st_access_bmap;
2620 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07002621 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623out:
2624 return stp;
2625}
2626
NeilBrownfd39ca92005-06-23 22:04:03 -07002627static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628check_lock_length(u64 offset, u64 length)
2629{
2630 return ((length == 0) || ((length != ~(u64)0) &&
2631 LOFF_OVERFLOW(offset, length)));
2632}
2633
2634/*
2635 * LOCK operation
2636 */
2637int
Neil Brownf2327d92005-09-13 01:25:37 -07002638nfsd4_lock(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_lock *lock, struct nfs4_stateowner **replay_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
NeilBrown3e9e3db2005-06-23 22:04:20 -07002640 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07002641 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 struct nfs4_stateid *lock_stp;
2643 struct file *filp;
2644 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05002645 struct file_lock conflock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 int status = 0;
2647 unsigned int strhashval;
2648
2649 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
2650 (long long) lock->lk_offset,
2651 (long long) lock->lk_length);
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 if (check_lock_length(lock->lk_offset, lock->lk_length))
2654 return nfserr_inval;
2655
Andy Adamsona6f6ef22006-01-18 17:43:17 -08002656 if ((status = fh_verify(rqstp, current_fh, S_IFREG, MAY_LOCK))) {
2657 dprintk("NFSD: nfsd4_lock: permission denied!\n");
2658 return status;
2659 }
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 nfs4_lock_state();
2662
2663 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07002664 /*
2665 * Client indicates that this is a new lockowner.
2666 * Use open owner and open stateid to create lock owner and
2667 * lock stateid.
2668 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 struct nfs4_stateid *open_stp = NULL;
2670 struct nfs4_file *fp;
2671
2672 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002673 if (STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /* validate and update open stateid and open seqid */
2677 status = nfs4_preprocess_seqid_op(current_fh,
2678 lock->lk_new_open_seqid,
2679 &lock->lk_new_open_stateid,
2680 CHECK_FH | OPEN_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002681 &lock->lk_replay_owner, &open_stp,
Neil Brownb59e3c02005-09-13 01:25:38 -07002682 lock);
NeilBrown37515172005-07-07 17:59:16 -07002683 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002685 open_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 /* create lockowner and lock stateid */
2687 fp = open_stp->st_file;
2688 strhashval = lock_ownerstr_hashval(fp->fi_inode,
2689 open_sop->so_client->cl_clientid.cl_id,
2690 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07002691 /* XXX: Do we need to check for duplicate stateowners on
2692 * the same file, or should they just be allowed (and
2693 * create new stateids)? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 status = nfserr_resource;
Neil Brownb59e3c02005-09-13 01:25:38 -07002695 lock_sop = alloc_init_lock_stateowner(strhashval,
2696 open_sop->so_client, open_stp, lock);
2697 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07002699 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08002700 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 } else {
2703 /* lock (lock owner + lock stateid) already exists */
2704 status = nfs4_preprocess_seqid_op(current_fh,
2705 lock->lk_old_lock_seqid,
2706 &lock->lk_old_lock_stateid,
2707 CHECK_FH | LOCK_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08002708 &lock->lk_replay_owner, &lock_stp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 if (status)
2710 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08002711 lock_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08002713 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 filp = lock_stp->st_vfs_file;
2715
NeilBrown0dd395d2005-07-07 17:59:15 -07002716 status = nfserr_grace;
2717 if (nfs4_in_grace() && !lock->lk_reclaim)
2718 goto out;
2719 status = nfserr_no_grace;
2720 if (!nfs4_in_grace() && lock->lk_reclaim)
2721 goto out;
2722
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 locks_init_lock(&file_lock);
2724 switch (lock->lk_type) {
2725 case NFS4_READ_LT:
2726 case NFS4_READW_LT:
2727 file_lock.fl_type = F_RDLCK;
2728 break;
2729 case NFS4_WRITE_LT:
2730 case NFS4_WRITEW_LT:
2731 file_lock.fl_type = F_WRLCK;
2732 break;
2733 default:
2734 status = nfserr_inval;
2735 goto out;
2736 }
Neil Brownb59e3c02005-09-13 01:25:38 -07002737 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 file_lock.fl_pid = current->tgid;
2739 file_lock.fl_file = filp;
2740 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002741 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 file_lock.fl_start = lock->lk_offset;
2744 if ((lock->lk_length == ~(u64)0) ||
2745 LOFF_OVERFLOW(lock->lk_offset, lock->lk_length))
2746 file_lock.fl_end = ~(u64)0;
2747 else
2748 file_lock.fl_end = lock->lk_offset + lock->lk_length - 1;
2749 nfs4_transform_lock_offset(&file_lock);
2750
2751 /*
2752 * Try to lock the file in the VFS.
2753 * Note: locks.c uses the BKL to protect the inode's lock list.
2754 */
2755
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002756 /* XXX?: Just to divert the locks_release_private at the start of
2757 * locks_copy_lock: */
2758 conflock.fl_ops = NULL;
2759 conflock.fl_lmops = NULL;
2760 status = posix_lock_file_conf(filp, &file_lock, &conflock);
2761 dprintk("NFSD: nfsd4_lock: posix_lock_file_conf status %d\n",status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 switch (-status) {
2763 case 0: /* success! */
2764 update_stateid(&lock_stp->st_stateid);
2765 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
2766 sizeof(stateid_t));
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002767 break;
2768 case (EAGAIN): /* conflock holds conflicting lock */
2769 status = nfserr_denied;
2770 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
2771 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
2772 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 case (EDEADLK):
2774 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002775 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 default:
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08002777 dprintk("NFSD: nfsd4_lock: posix_lock_file_conf() failed! status %d\n",status);
2778 status = nfserr_resource;
2779 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08002782 if (status && lock->lk_is_new && lock_sop)
2783 release_stateowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08002784 if (lock->lk_replay_owner) {
2785 nfs4_get_stateowner(lock->lk_replay_owner);
2786 *replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07002787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 nfs4_unlock_state();
2789 return status;
2790}
2791
2792/*
2793 * LOCKT operation
2794 */
2795int
2796nfsd4_lockt(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_lockt *lockt)
2797{
2798 struct inode *inode;
2799 struct file file;
2800 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05002801 struct file_lock conflock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 int status;
2803
2804 if (nfs4_in_grace())
2805 return nfserr_grace;
2806
2807 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
2808 return nfserr_inval;
2809
2810 lockt->lt_stateowner = NULL;
2811 nfs4_lock_state();
2812
2813 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002814 if (STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
2817 if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0))) {
Neil Brown849823c2005-09-13 01:25:36 -07002818 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 if (status == nfserr_symlink)
2820 status = nfserr_inval;
2821 goto out;
2822 }
2823
2824 inode = current_fh->fh_dentry->d_inode;
2825 locks_init_lock(&file_lock);
2826 switch (lockt->lt_type) {
2827 case NFS4_READ_LT:
2828 case NFS4_READW_LT:
2829 file_lock.fl_type = F_RDLCK;
2830 break;
2831 case NFS4_WRITE_LT:
2832 case NFS4_WRITEW_LT:
2833 file_lock.fl_type = F_WRLCK;
2834 break;
2835 default:
2836 printk("NFSD: nfs4_lockt: bad lock type!\n");
2837 status = nfserr_inval;
2838 goto out;
2839 }
2840
2841 lockt->lt_stateowner = find_lockstateowner_str(inode,
2842 &lockt->lt_clientid, &lockt->lt_owner);
2843 if (lockt->lt_stateowner)
2844 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
2845 file_lock.fl_pid = current->tgid;
2846 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002847 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 file_lock.fl_start = lockt->lt_offset;
2850 if ((lockt->lt_length == ~(u64)0) || LOFF_OVERFLOW(lockt->lt_offset, lockt->lt_length))
2851 file_lock.fl_end = ~(u64)0;
2852 else
2853 file_lock.fl_end = lockt->lt_offset + lockt->lt_length - 1;
2854
2855 nfs4_transform_lock_offset(&file_lock);
2856
2857 /* posix_test_lock uses the struct file _only_ to resolve the inode.
2858 * since LOCKT doesn't require an OPEN, and therefore a struct
2859 * file may not exist, pass posix_test_lock a struct file with
2860 * only the dentry:inode set.
2861 */
2862 memset(&file, 0, sizeof (struct file));
2863 file.f_dentry = current_fh->fh_dentry;
2864
2865 status = nfs_ok;
Andy Adamson8dc7c312006-03-20 13:44:26 -05002866 if (posix_test_lock(&file, &file_lock, &conflock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 status = nfserr_denied;
Andy Adamson8dc7c312006-03-20 13:44:26 -05002868 nfs4_set_lock_denied(&conflock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 }
2870out:
2871 nfs4_unlock_state();
2872 return status;
2873}
2874
2875int
Neil Brownf2327d92005-09-13 01:25:37 -07002876nfsd4_locku(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_locku *locku, struct nfs4_stateowner **replay_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
2878 struct nfs4_stateid *stp;
2879 struct file *filp = NULL;
2880 struct file_lock file_lock;
2881 int status;
2882
2883 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
2884 (long long) locku->lu_offset,
2885 (long long) locku->lu_length);
2886
2887 if (check_lock_length(locku->lu_offset, locku->lu_length))
2888 return nfserr_inval;
2889
2890 nfs4_lock_state();
2891
2892 if ((status = nfs4_preprocess_seqid_op(current_fh,
2893 locku->lu_seqid,
2894 &locku->lu_stateid,
2895 CHECK_FH | LOCK_STATE,
2896 &locku->lu_stateowner, &stp, NULL)))
2897 goto out;
2898
2899 filp = stp->st_vfs_file;
2900 BUG_ON(!filp);
2901 locks_init_lock(&file_lock);
2902 file_lock.fl_type = F_UNLCK;
2903 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
2904 file_lock.fl_pid = current->tgid;
2905 file_lock.fl_file = filp;
2906 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07002907 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 file_lock.fl_start = locku->lu_offset;
2909
2910 if ((locku->lu_length == ~(u64)0) || LOFF_OVERFLOW(locku->lu_offset, locku->lu_length))
2911 file_lock.fl_end = ~(u64)0;
2912 else
2913 file_lock.fl_end = locku->lu_offset + locku->lu_length - 1;
2914 nfs4_transform_lock_offset(&file_lock);
2915
2916 /*
2917 * Try to unlock the file in the VFS.
2918 */
2919 status = posix_lock_file(filp, &file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 if (status) {
Neil Brown849823c2005-09-13 01:25:36 -07002921 dprintk("NFSD: nfs4_locku: posix_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 goto out_nfserr;
2923 }
2924 /*
2925 * OK, unlock succeeded; the only thing left to do is update the stateid.
2926 */
2927 update_stateid(&stp->st_stateid);
2928 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
2929
2930out:
Neil Brownf2327d92005-09-13 01:25:37 -07002931 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 nfs4_get_stateowner(locku->lu_stateowner);
Neil Brownf2327d92005-09-13 01:25:37 -07002933 *replay_owner = locku->lu_stateowner;
2934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 nfs4_unlock_state();
2936 return status;
2937
2938out_nfserr:
2939 status = nfserrno(status);
2940 goto out;
2941}
2942
2943/*
2944 * returns
2945 * 1: locks held by lockowner
2946 * 0: no locks held by lockowner
2947 */
2948static int
2949check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
2950{
2951 struct file_lock **flpp;
2952 struct inode *inode = filp->f_dentry->d_inode;
2953 int status = 0;
2954
2955 lock_kernel();
2956 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08002957 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 status = 1;
2959 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08002960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 }
2962out:
2963 unlock_kernel();
2964 return status;
2965}
2966
2967int
2968nfsd4_release_lockowner(struct svc_rqst *rqstp, struct nfsd4_release_lockowner *rlockowner)
2969{
2970 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07002971 struct nfs4_stateowner *sop;
2972 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07002974 struct list_head matches;
2975 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 int status;
2977
2978 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
2979 clid->cl_boot, clid->cl_id);
2980
2981 /* XXX check for lease expiration */
2982
2983 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07002984 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
2987 nfs4_lock_state();
2988
NeilBrown3e9e3db2005-06-23 22:04:20 -07002989 status = nfserr_locks_held;
2990 /* XXX: we're doing a linear search through all the lockowners.
2991 * Yipes! For now we'll just hope clients aren't really using
2992 * release_lockowner much, but eventually we have to fix these
2993 * data structures. */
2994 INIT_LIST_HEAD(&matches);
2995 for (i = 0; i < LOCK_HASH_SIZE; i++) {
2996 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
2997 if (!cmp_owner_str(sop, owner, clid))
2998 continue;
2999 list_for_each_entry(stp, &sop->so_stateids,
3000 st_perstateowner) {
3001 if (check_for_locks(stp->st_vfs_file, sop))
3002 goto out;
3003 /* Note: so_perclient unused for lockowners,
3004 * so it's OK to fool with here. */
3005 list_add(&sop->so_perclient, &matches);
3006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07003008 }
3009 /* Clients probably won't expect us to return with some (but not all)
3010 * of the lockowner state released; so don't release any until all
3011 * have been checked. */
3012 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07003013 while (!list_empty(&matches)) {
3014 sop = list_entry(matches.next, struct nfs4_stateowner,
3015 so_perclient);
3016 /* unhash_stateowner deletes so_perclient only
3017 * for openowners. */
3018 list_del(&sop->so_perclient);
NeilBrown3e9e3db2005-06-23 22:04:20 -07003019 release_stateowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 }
3021out:
3022 nfs4_unlock_state();
3023 return status;
3024}
3025
3026static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07003027alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
NeilBrowna55370a2005-06-23 22:03:52 -07003029 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030}
3031
NeilBrownc7b9a452005-06-23 22:04:30 -07003032int
3033nfs4_has_reclaimed_state(const char *name)
3034{
3035 unsigned int strhashval = clientstr_hashval(name);
3036 struct nfs4_client *clp;
3037
3038 clp = find_confirmed_client_by_str(name, strhashval);
3039 return clp ? 1 : 0;
3040}
3041
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042/*
3043 * failure => all reset bets are off, nfserr_no_grace...
3044 */
NeilBrown190e4fb2005-06-23 22:04:25 -07003045int
3046nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047{
3048 unsigned int strhashval;
3049 struct nfs4_client_reclaim *crp = NULL;
3050
NeilBrowna55370a2005-06-23 22:03:52 -07003051 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
3052 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 if (!crp)
3054 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07003055 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 INIT_LIST_HEAD(&crp->cr_strhash);
3057 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07003058 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 reclaim_str_hashtbl_size++;
3060 return 1;
3061}
3062
3063static void
3064nfs4_release_reclaim(void)
3065{
3066 struct nfs4_client_reclaim *crp = NULL;
3067 int i;
3068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3070 while (!list_empty(&reclaim_str_hashtbl[i])) {
3071 crp = list_entry(reclaim_str_hashtbl[i].next,
3072 struct nfs4_client_reclaim, cr_strhash);
3073 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 kfree(crp);
3075 reclaim_str_hashtbl_size--;
3076 }
3077 }
3078 BUG_ON(reclaim_str_hashtbl_size);
3079}
3080
3081/*
3082 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07003083static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084nfs4_find_reclaim_client(clientid_t *clid)
3085{
3086 unsigned int strhashval;
3087 struct nfs4_client *clp;
3088 struct nfs4_client_reclaim *crp = NULL;
3089
3090
3091 /* find clientid in conf_id_hashtbl */
3092 clp = find_confirmed_client(clid);
3093 if (clp == NULL)
3094 return NULL;
3095
NeilBrowna55370a2005-06-23 22:03:52 -07003096 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
3097 clp->cl_name.len, clp->cl_name.data,
3098 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
3100 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07003101 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07003103 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 return crp;
3105 }
3106 }
3107 return NULL;
3108}
3109
3110/*
3111* Called from OPEN. Look for clientid in reclaim list.
3112*/
3113int
3114nfs4_check_open_reclaim(clientid_t *clid)
3115{
NeilBrowndfc83562005-06-23 22:03:16 -07003116 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117}
3118
NeilBrownac4d8ff22005-06-23 22:03:30 -07003119/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
NeilBrownac4d8ff22005-06-23 22:03:30 -07003121void
3122nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123{
3124 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3127 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
3128 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
3129 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
3130 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
3131 }
3132 for (i = 0; i < FILE_HASH_SIZE; i++) {
3133 INIT_LIST_HEAD(&file_hashtbl[i]);
3134 }
3135 for (i = 0; i < OWNER_HASH_SIZE; i++) {
3136 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
3137 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
3138 }
3139 for (i = 0; i < STATEID_HASH_SIZE; i++) {
3140 INIT_LIST_HEAD(&stateid_hashtbl[i]);
3141 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
3142 }
3143 for (i = 0; i < LOCK_HASH_SIZE; i++) {
3144 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
3145 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
3146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 INIT_LIST_HEAD(&close_lru);
3149 INIT_LIST_HEAD(&client_lru);
3150 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07003151 for (i = 0; i < CLIENT_HASH_SIZE; i++)
3152 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
3153 reclaim_str_hashtbl_size = 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07003154}
3155
NeilBrown190e4fb2005-06-23 22:04:25 -07003156static void
3157nfsd4_load_reboot_recovery_data(void)
3158{
3159 int status;
3160
NeilBrown0964a3d2005-06-23 22:04:32 -07003161 nfs4_lock_state();
3162 nfsd4_init_recdir(user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -07003163 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07003164 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07003165 if (status)
3166 printk("NFSD: Failure reading reboot recovery data\n");
3167}
3168
NeilBrownac4d8ff22005-06-23 22:03:30 -07003169/* initialization to perform when the nfsd service is started: */
3170
3171static void
3172__nfs4_state_start(void)
3173{
3174 time_t grace_time;
3175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 boot_time = get_seconds();
NeilBrownd99a05a2005-06-23 22:03:21 -07003177 grace_time = max(user_lease_time, lease_time);
3178 lease_time = user_lease_time;
NeilBrowna76b4312005-06-23 22:04:01 -07003179 in_grace = 1;
NeilBrownd99a05a2005-06-23 22:03:21 -07003180 printk("NFSD: starting %ld-second grace period\n", grace_time);
NeilBrown58da2822005-06-23 22:03:19 -07003181 laundry_wq = create_singlethread_workqueue("nfsd4");
NeilBrowna76b4312005-06-23 22:04:01 -07003182 queue_delayed_work(laundry_wq, &laundromat_work, grace_time*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183}
3184
3185int
NeilBrown76a35502005-06-23 22:03:26 -07003186nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187{
3188 int status;
3189
3190 if (nfs4_init)
3191 return 0;
3192 status = nfsd4_init_slabs();
3193 if (status)
3194 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -07003195 nfsd4_load_reboot_recovery_data();
NeilBrown76a35502005-06-23 22:03:26 -07003196 __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 nfs4_init = 1;
3198 return 0;
3199}
3200
3201int
3202nfs4_in_grace(void)
3203{
NeilBrowna76b4312005-06-23 22:04:01 -07003204 return in_grace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205}
3206
3207time_t
3208nfs4_lease_time(void)
3209{
3210 return lease_time;
3211}
3212
3213static void
3214__nfs4_state_shutdown(void)
3215{
3216 int i;
3217 struct nfs4_client *clp = NULL;
3218 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 struct list_head *pos, *next, reaplist;
3220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
3222 while (!list_empty(&conf_id_hashtbl[i])) {
3223 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
3224 expire_client(clp);
3225 }
3226 while (!list_empty(&unconf_str_hashtbl[i])) {
3227 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
3228 expire_client(clp);
3229 }
3230 }
3231 INIT_LIST_HEAD(&reaplist);
3232 spin_lock(&recall_lock);
3233 list_for_each_safe(pos, next, &del_recall_lru) {
3234 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3235 list_move(&dp->dl_recall_lru, &reaplist);
3236 }
3237 spin_unlock(&recall_lock);
3238 list_for_each_safe(pos, next, &reaplist) {
3239 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3240 list_del_init(&dp->dl_recall_lru);
3241 unhash_delegation(dp);
3242 }
3243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 cancel_delayed_work(&laundromat_work);
NeilBrown190e4fb2005-06-23 22:04:25 -07003245 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 nfs4_init = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247}
3248
3249void
3250nfs4_state_shutdown(void)
3251{
NeilBrown5e8d5c22006-04-10 22:55:37 -07003252 cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work);
3253 destroy_workqueue(laundry_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 nfs4_lock_state();
3255 nfs4_release_reclaim();
3256 __nfs4_state_shutdown();
3257 nfsd4_free_slabs();
3258 nfs4_unlock_state();
3259}
3260
NeilBrown0964a3d2005-06-23 22:04:32 -07003261static void
3262nfs4_set_recdir(char *recdir)
3263{
3264 nfs4_lock_state();
3265 strcpy(user_recovery_dirname, recdir);
3266 nfs4_unlock_state();
3267}
3268
3269/*
3270 * Change the NFSv4 recovery directory to recdir.
3271 */
3272int
3273nfs4_reset_recoverydir(char *recdir)
3274{
3275 int status;
3276 struct nameidata nd;
3277
3278 status = path_lookup(recdir, LOOKUP_FOLLOW, &nd);
3279 if (status)
3280 return status;
3281 status = -ENOTDIR;
3282 if (S_ISDIR(nd.dentry->d_inode->i_mode)) {
3283 nfs4_set_recdir(recdir);
3284 status = 0;
3285 }
3286 path_release(&nd);
3287 return status;
3288}
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290/*
3291 * Called when leasetime is changed.
3292 *
NeilBrownd99a05a2005-06-23 22:03:21 -07003293 * The only way the protocol gives us to handle on-the-fly lease changes is to
3294 * simulate a reboot. Instead of doing that, we just wait till the next time
3295 * we start to register any changes in lease time. If the administrator
3296 * really wants to change the lease time *now*, they can go ahead and bring
3297 * nfsd down and then back up again after changing the lease time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 */
3299void
3300nfs4_reset_lease(time_t leasetime)
3301{
NeilBrownd99a05a2005-06-23 22:03:21 -07003302 lock_kernel();
3303 user_lease_time = leasetime;
3304 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}