blob: 55c36e267b7df6ab32a9d565f8da9acde3dddaf1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002* Copyright (c) 2001 The Regents of the University of Michigan.
3* All rights reserved.
4*
5* Kendrick Smith <kmsmith@umich.edu>
6* Andy Adamson <kandros@umich.edu>
7*
8* Redistribution and use in source and binary forms, with or without
9* modification, are permitted provided that the following conditions
10* are met:
11*
12* 1. Redistributions of source code must retain the above copyright
13* notice, this list of conditions and the following disclaimer.
14* 2. Redistributions in binary form must reproduce the above copyright
15* notice, this list of conditions and the following disclaimer in the
16* documentation and/or other materials provided with the distribution.
17* 3. Neither the name of the University nor the names of its
18* contributors may be used to endorse or promote products derived
19* from this software without specific prior written permission.
20*
21* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32*
33*/
34
Dave Hansenaceaf782008-02-15 14:37:31 -080035#include <linux/file.h>
Arnd Bergmannb89f4322010-09-18 15:09:31 +020036#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
NeilBrown0964a3d2005-06-23 22:04:32 -070038#include <linux/namei.h>
Meelap Shahc2f1a552007-07-17 04:04:39 -070039#include <linux/swap.h>
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -050040#include <linux/sunrpc/svcauth_gss.h>
Jeff Layton363168b2009-08-14 12:57:56 -040041#include <linux/sunrpc/clnt.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020042#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050043#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define NFSDDBG_FACILITY NFSDDBG_PROC
46
47/* Globals */
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -050048time_t nfsd4_lease = 90; /* default lease time */
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050049time_t nfsd4_grace = 90;
NeilBrownfd39ca92005-06-23 22:04:03 -070050static time_t boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static u32 current_ownerid = 1;
52static u32 current_fileid = 1;
53static u32 current_delegid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070054static stateid_t zerostateid; /* bits all 0 */
55static stateid_t onestateid; /* bits all 1 */
Andy Adamsonec6b5d72009-04-03 08:28:28 +030056static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070057
58#define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
59#define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* forward declarations */
NeilBrownfd39ca92005-06-23 22:04:03 -070062static struct nfs4_stateid * find_stateid(stateid_t *stid, int flags);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -040063static struct nfs4_stateid * search_for_stateid(stateid_t *stid);
64static struct nfs4_delegation * search_for_delegation(stateid_t *stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
NeilBrown0964a3d2005-06-23 22:04:32 -070066static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
67static void nfs4_set_recdir(char *recdir);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -040068static int check_for_locks(struct nfs4_file *filp, struct nfs4_stateowner *lowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
J. Bruce Fields8b671b82009-02-22 14:51:34 -080070/* Locking: */
71
72/* Currently used for almost all code touching nfsv4 state: */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080073static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
J. Bruce Fields8b671b82009-02-22 14:51:34 -080075/*
76 * Currently used for the del_recall_lru and file hash table. In an
77 * effort to decrease the scope of the client_mutex, this spinlock may
78 * eventually cover more:
79 */
80static DEFINE_SPINLOCK(recall_lock);
81
Christoph Lametere18b8902006-12-06 20:33:20 -080082static struct kmem_cache *stateowner_slab = NULL;
83static struct kmem_cache *file_slab = NULL;
84static struct kmem_cache *stateid_slab = NULL;
85static struct kmem_cache *deleg_slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087void
88nfs4_lock_state(void)
89{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080090 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93void
94nfs4_unlock_state(void)
95{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080096 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99static inline u32
100opaque_hashval(const void *ptr, int nbytes)
101{
102 unsigned char *cptr = (unsigned char *) ptr;
103
104 u32 x = 0;
105 while (nbytes--) {
106 x *= 37;
107 x += *cptr++;
108 }
109 return x;
110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static struct list_head del_recall_lru;
113
NeilBrown13cd2182005-06-23 22:03:10 -0700114static inline void
115put_nfs4_file(struct nfs4_file *fi)
116{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800117 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
118 list_del(&fi->fi_hash);
119 spin_unlock(&recall_lock);
120 iput(fi->fi_inode);
121 kmem_cache_free(file_slab, fi);
122 }
NeilBrown13cd2182005-06-23 22:03:10 -0700123}
124
125static inline void
126get_nfs4_file(struct nfs4_file *fi)
127{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800128 atomic_inc(&fi->fi_ref);
NeilBrown13cd2182005-06-23 22:03:10 -0700129}
130
NeilBrownef0f3392006-04-10 22:55:41 -0700131static int num_delegations;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700132unsigned int max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700133
134/*
135 * Open owner state (share locks)
136 */
137
138/* hash tables for nfs4_stateowner */
139#define OWNER_HASH_BITS 8
140#define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS)
141#define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1)
142
143#define ownerid_hashval(id) \
144 ((id) & OWNER_HASH_MASK)
145#define ownerstr_hashval(clientid, ownername) \
146 (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK)
147
148static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE];
149static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE];
150
151/* hash table for nfs4_file */
152#define FILE_HASH_BITS 8
153#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800154
NeilBrownef0f3392006-04-10 22:55:41 -0700155/* hash table for (open)nfs4_stateid */
156#define STATEID_HASH_BITS 10
157#define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
158#define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
159
160#define file_hashval(x) \
161 hash_ptr(x, FILE_HASH_BITS)
162#define stateid_hashval(owner_id, file_id) \
163 (((owner_id) + (file_id)) & STATEID_HASH_MASK)
164
165static struct list_head file_hashtbl[FILE_HASH_SIZE];
166static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
167
J. Bruce Fields998db522010-08-07 09:21:41 -0400168static void __nfs4_file_get_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400169{
170 BUG_ON(!(fp->fi_fds[oflag] || fp->fi_fds[O_RDWR]));
171 atomic_inc(&fp->fi_access[oflag]);
172}
173
J. Bruce Fields998db522010-08-07 09:21:41 -0400174static void nfs4_file_get_access(struct nfs4_file *fp, int oflag)
175{
176 if (oflag == O_RDWR) {
177 __nfs4_file_get_access(fp, O_RDONLY);
178 __nfs4_file_get_access(fp, O_WRONLY);
179 } else
180 __nfs4_file_get_access(fp, oflag);
181}
182
183static void nfs4_file_put_fd(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400184{
185 if (fp->fi_fds[oflag]) {
186 fput(fp->fi_fds[oflag]);
187 fp->fi_fds[oflag] = NULL;
188 }
189}
190
J. Bruce Fields998db522010-08-07 09:21:41 -0400191static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400192{
193 if (atomic_dec_and_test(&fp->fi_access[oflag])) {
194 nfs4_file_put_fd(fp, O_RDWR);
195 nfs4_file_put_fd(fp, oflag);
196 }
197}
198
J. Bruce Fields998db522010-08-07 09:21:41 -0400199static void nfs4_file_put_access(struct nfs4_file *fp, int oflag)
200{
201 if (oflag == O_RDWR) {
202 __nfs4_file_put_access(fp, O_RDONLY);
203 __nfs4_file_put_access(fp, O_WRONLY);
204 } else
205 __nfs4_file_put_access(fp, oflag);
206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static struct nfs4_delegation *
209alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
210{
211 struct nfs4_delegation *dp;
212 struct nfs4_file *fp = stp->st_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 dprintk("NFSD alloc_init_deleg\n");
J. Bruce Fieldsc3e48082010-07-28 10:08:57 -0400215 /*
216 * Major work on the lease subsystem (for example, to support
217 * calbacks on stat) will be required before we can support
218 * write delegations properly.
219 */
220 if (type != NFS4_OPEN_DELEGATE_READ)
221 return NULL;
Meelap Shah47f99402007-07-17 04:04:40 -0700222 if (fp->fi_had_conflict)
223 return NULL;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700224 if (num_delegations > max_delegations)
NeilBrownef0f3392006-04-10 22:55:41 -0700225 return NULL;
NeilBrown5b2d21c2005-06-23 22:03:04 -0700226 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
227 if (dp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return dp;
NeilBrownef0f3392006-04-10 22:55:41 -0700229 num_delegations++;
NeilBrownea1da632005-06-23 22:04:17 -0700230 INIT_LIST_HEAD(&dp->dl_perfile);
231 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 INIT_LIST_HEAD(&dp->dl_recall_lru);
233 dp->dl_client = clp;
NeilBrown13cd2182005-06-23 22:03:10 -0700234 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 dp->dl_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 dp->dl_type = type;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -0400237 dp->dl_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 dp->dl_stateid.si_stateownerid = current_delegid++;
239 dp->dl_stateid.si_fileid = 0;
240 dp->dl_stateid.si_generation = 0;
J. Bruce Fields6c02eaa2009-02-02 17:30:51 -0500241 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 dp->dl_time = 0;
243 atomic_set(&dp->dl_count, 1);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -0500244 INIT_WORK(&dp->dl_recall.cb_work, nfsd4_do_callback_rpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return dp;
246}
247
248void
249nfs4_put_delegation(struct nfs4_delegation *dp)
250{
251 if (atomic_dec_and_test(&dp->dl_count)) {
252 dprintk("NFSD: freeing dp %p\n",dp);
NeilBrown13cd2182005-06-23 22:03:10 -0700253 put_nfs4_file(dp->dl_file);
NeilBrown5b2d21c2005-06-23 22:03:04 -0700254 kmem_cache_free(deleg_slab, dp);
NeilBrownef0f3392006-04-10 22:55:41 -0700255 num_delegations--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257}
258
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500259static void nfs4_put_deleg_lease(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500261 if (atomic_dec_and_test(&fp->fi_delegees)) {
262 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
263 fp->fi_lease = NULL;
J. Bruce Fields4ee63622011-04-15 18:08:26 -0400264 fput(fp->fi_deleg_file);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500265 fp->fi_deleg_file = NULL;
266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269/* Called under the state lock. */
270static void
271unhash_delegation(struct nfs4_delegation *dp)
272{
NeilBrownea1da632005-06-23 22:04:17 -0700273 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 spin_lock(&recall_lock);
J. Bruce Fields5d926e82011-02-07 16:53:46 -0500275 list_del_init(&dp->dl_perfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 list_del_init(&dp->dl_recall_lru);
277 spin_unlock(&recall_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500278 nfs4_put_deleg_lease(dp->dl_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 nfs4_put_delegation(dp);
280}
281
282/*
283 * SETCLIENTID state
284 */
285
Benny Halevy36acb662010-05-12 00:13:04 +0300286/* client_lock protects the client lru list and session hash table */
Benny Halevy9089f1b2010-05-12 00:12:26 +0300287static DEFINE_SPINLOCK(client_lock);
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289/* Hash tables for nfs4_clientid state */
290#define CLIENT_HASH_BITS 4
291#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
292#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
293
294#define clientid_hashval(id) \
295 ((id) & CLIENT_HASH_MASK)
NeilBrowna55370a2005-06-23 22:03:52 -0700296#define clientstr_hashval(name) \
297 (opaque_hashval((name), 8) & CLIENT_HASH_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/*
299 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
300 * used in reboot/reset lease grace period processing
301 *
302 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
303 * setclientid_confirmed info.
304 *
305 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
306 * setclientid info.
307 *
308 * client_lru holds client queue ordered by nfs4_client.cl_time
309 * for lease renewal.
310 *
311 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
312 * for last close replay.
313 */
314static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
315static int reclaim_str_hashtbl_size = 0;
316static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
317static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
318static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
319static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
320static struct list_head client_lru;
321static struct list_head close_lru;
322
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400323/*
324 * We store the NONE, READ, WRITE, and BOTH bits separately in the
325 * st_{access,deny}_bmap field of the stateid, in order to track not
326 * only what share bits are currently in force, but also what
327 * combinations of share bits previous opens have used. This allows us
328 * to enforce the recommendation of rfc 3530 14.2.19 that the server
329 * return an error if the client attempt to downgrade to a combination
330 * of share bits not explicable by closing some of its previous opens.
331 *
332 * XXX: This enforcement is actually incomplete, since we don't keep
333 * track of access/deny bit combinations; so, e.g., we allow:
334 *
335 * OPEN allow read, deny write
336 * OPEN allow both, deny none
337 * DOWNGRADE allow read, deny none
338 *
339 * which we should reject.
340 */
341static void
342set_access(unsigned int *access, unsigned long bmap) {
343 int i;
344
345 *access = 0;
346 for (i = 1; i < 4; i++) {
347 if (test_bit(i, &bmap))
348 *access |= i;
349 }
350}
351
352static void
353set_deny(unsigned int *deny, unsigned long bmap) {
354 int i;
355
356 *deny = 0;
357 for (i = 0; i < 4; i++) {
358 if (test_bit(i, &bmap))
359 *deny |= i ;
360 }
361}
362
363static int
364test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
365 unsigned int access, deny;
366
367 set_access(&access, stp->st_access_bmap);
368 set_deny(&deny, stp->st_deny_bmap);
369 if ((access & open->op_share_deny) || (deny & open->op_share_access))
370 return 0;
371 return 1;
372}
373
374static int nfs4_access_to_omode(u32 access)
375{
J. Bruce Fields8f34a432010-09-02 15:23:16 -0400376 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400377 case NFS4_SHARE_ACCESS_READ:
378 return O_RDONLY;
379 case NFS4_SHARE_ACCESS_WRITE:
380 return O_WRONLY;
381 case NFS4_SHARE_ACCESS_BOTH:
382 return O_RDWR;
383 }
384 BUG();
385}
386
387static int nfs4_access_bmap_to_omode(struct nfs4_stateid *stp)
388{
389 unsigned int access;
390
391 set_access(&access, stp->st_access_bmap);
392 return nfs4_access_to_omode(access);
393}
394
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500395static void unhash_generic_stateid(struct nfs4_stateid *stp)
396{
397 list_del(&stp->st_hash);
398 list_del(&stp->st_perfile);
399 list_del(&stp->st_perstateowner);
400}
401
402static void free_generic_stateid(struct nfs4_stateid *stp)
403{
J. Bruce Fields23fcf2e2011-03-28 15:15:09 +0800404 int oflag;
J. Bruce Fields0997b172011-03-02 18:01:35 -0500405
J. Bruce Fields23fcf2e2011-03-28 15:15:09 +0800406 if (stp->st_access_bmap) {
407 oflag = nfs4_access_bmap_to_omode(stp);
408 nfs4_file_put_access(stp->st_file, oflag);
J. Bruce Fields23fcf2e2011-03-28 15:15:09 +0800409 }
OGAWA Hirofumia96e5b92011-04-18 11:48:55 -0400410 put_nfs4_file(stp->st_file);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500411 kmem_cache_free(stateid_slab, stp);
412}
413
414static void release_lock_stateid(struct nfs4_stateid *stp)
415{
416 struct file *file;
417
418 unhash_generic_stateid(stp);
419 file = find_any_file(stp->st_file);
420 if (file)
421 locks_remove_posix(file, (fl_owner_t)stp->st_stateowner);
422 free_generic_stateid(stp);
423}
424
425static void unhash_lockowner(struct nfs4_stateowner *sop)
426{
427 struct nfs4_stateid *stp;
428
429 list_del(&sop->so_idhash);
430 list_del(&sop->so_strhash);
431 list_del(&sop->so_perstateid);
432 while (!list_empty(&sop->so_stateids)) {
433 stp = list_first_entry(&sop->so_stateids,
434 struct nfs4_stateid, st_perstateowner);
435 release_lock_stateid(stp);
436 }
437}
438
439static void release_lockowner(struct nfs4_stateowner *sop)
440{
441 unhash_lockowner(sop);
442 nfs4_put_stateowner(sop);
443}
444
445static void
446release_stateid_lockowners(struct nfs4_stateid *open_stp)
447{
448 struct nfs4_stateowner *lock_sop;
449
450 while (!list_empty(&open_stp->st_lockowners)) {
451 lock_sop = list_entry(open_stp->st_lockowners.next,
452 struct nfs4_stateowner, so_perstateid);
453 /* list_del(&open_stp->st_lockowners); */
454 BUG_ON(lock_sop->so_is_open_owner);
455 release_lockowner(lock_sop);
456 }
457}
458
J. Bruce Fields22839632009-01-11 14:27:17 -0500459static void release_open_stateid(struct nfs4_stateid *stp)
460{
461 unhash_generic_stateid(stp);
462 release_stateid_lockowners(stp);
J. Bruce Fields22839632009-01-11 14:27:17 -0500463 free_generic_stateid(stp);
464}
465
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500466static void unhash_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500467{
468 struct nfs4_stateid *stp;
469
470 list_del(&sop->so_idhash);
471 list_del(&sop->so_strhash);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500472 list_del(&sop->so_perclient);
473 list_del(&sop->so_perstateid); /* XXX: necessary? */
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500474 while (!list_empty(&sop->so_stateids)) {
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500475 stp = list_first_entry(&sop->so_stateids,
476 struct nfs4_stateid, st_perstateowner);
477 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500478 }
479}
480
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500481static void release_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500482{
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500483 unhash_openowner(sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500484 list_del(&sop->so_close_lru);
485 nfs4_put_stateowner(sop);
486}
487
Marc Eshel5282fd72009-04-03 08:27:52 +0300488#define SESSION_HASH_SIZE 512
489static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
490
491static inline int
492hash_sessionid(struct nfs4_sessionid *sessionid)
493{
494 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
495
496 return sid->sequence % SESSION_HASH_SIZE;
497}
498
499static inline void
500dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
501{
502 u32 *ptr = (u32 *)(&sessionid->data[0]);
503 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
504}
505
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300506static void
507gen_sessionid(struct nfsd4_session *ses)
508{
509 struct nfs4_client *clp = ses->se_client;
510 struct nfsd4_sessionid *sid;
511
512 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
513 sid->clientid = clp->cl_clientid;
514 sid->sequence = current_sessionid++;
515 sid->reserved = 0;
516}
517
518/*
Andy Adamsona6496372009-08-28 08:45:01 -0400519 * The protocol defines ca_maxresponssize_cached to include the size of
520 * the rpc header, but all we need to cache is the data starting after
521 * the end of the initial SEQUENCE operation--the rest we regenerate
522 * each time. Therefore we can advertise a ca_maxresponssize_cached
523 * value that is the number of bytes in our cache plus a few additional
524 * bytes. In order to stay on the safe side, and not promise more than
525 * we can cache, those additional bytes must be the minimum possible: 24
526 * bytes of rpc header (xid through accept state, with AUTH_NULL
527 * verifier), 12 for the compound header (with zero-length tag), and 44
528 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300529 */
Andy Adamsona6496372009-08-28 08:45:01 -0400530#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
531
Andy Adamson557ce262009-08-28 08:45:04 -0400532static void
533free_session_slots(struct nfsd4_session *ses)
534{
535 int i;
536
537 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
538 kfree(ses->se_slots[i]);
539}
540
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -0400541/*
542 * We don't actually need to cache the rpc and session headers, so we
543 * can allocate a little less for each slot:
544 */
545static inline int slot_bytes(struct nfsd4_channel_attrs *ca)
546{
547 return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
548}
549
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400550static int nfsd4_sanitize_slot_size(u32 size)
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300551{
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400552 size -= NFSD_MIN_HDR_SEQ_SZ; /* We don't cache the rpc header */
553 size = min_t(u32, size, NFSD_SLOT_CACHE_SIZE);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300554
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400555 return size;
556}
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300557
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400558/*
559 * XXX: If we run out of reserved DRC memory we could (up to a point)
560 * re-negotiate active sessions and reduce their slot usage to make
561 * rooom for new connections. For now we just fail the create session.
562 */
563static int nfsd4_get_drc_mem(int slotsize, u32 num)
564{
565 int avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300566
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400567 num = min_t(u32, num, NFSD_MAX_SLOTS_PER_SESSION);
Andy Adamson557ce262009-08-28 08:45:04 -0400568
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400569 spin_lock(&nfsd_drc_lock);
570 avail = min_t(int, NFSD_MAX_MEM_PER_SESSION,
571 nfsd_drc_max_mem - nfsd_drc_mem_used);
572 num = min_t(int, num, avail / slotsize);
573 nfsd_drc_mem_used += num * slotsize;
574 spin_unlock(&nfsd_drc_lock);
575
576 return num;
577}
578
579static void nfsd4_put_drc_mem(int slotsize, int num)
580{
581 spin_lock(&nfsd_drc_lock);
582 nfsd_drc_mem_used -= slotsize * num;
583 spin_unlock(&nfsd_drc_lock);
584}
585
586static struct nfsd4_session *alloc_session(int slotsize, int numslots)
587{
588 struct nfsd4_session *new;
589 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300590
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -0400591 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400592 + sizeof(struct nfsd4_session) > PAGE_SIZE);
593 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -0400594
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400595 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300596 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400597 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -0400598 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400599 for (i = 0; i < numslots; i++) {
600 mem = sizeof(struct nfsd4_slot) + slotsize;
601 new->se_slots[i] = kzalloc(mem, GFP_KERNEL);
602 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -0400603 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -0400604 }
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400605 return new;
606out_free:
607 while (i--)
608 kfree(new->se_slots[i]);
609 kfree(new);
610 return NULL;
611}
612
613static void init_forechannel_attrs(struct nfsd4_channel_attrs *new, struct nfsd4_channel_attrs *req, int numslots, int slotsize)
614{
615 u32 maxrpc = nfsd_serv->sv_max_mesg;
616
617 new->maxreqs = numslots;
Mi Jinlongd2b21742011-03-10 17:43:37 +0800618 new->maxresp_cached = min_t(u32, req->maxresp_cached,
619 slotsize + NFSD_MIN_HDR_SEQ_SZ);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400620 new->maxreq_sz = min_t(u32, req->maxreq_sz, maxrpc);
621 new->maxresp_sz = min_t(u32, req->maxresp_sz, maxrpc);
622 new->maxops = min_t(u32, req->maxops, NFSD_MAX_OPS_PER_COMPOUND);
623}
624
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400625static void free_conn(struct nfsd4_conn *c)
626{
627 svc_xprt_put(c->cn_xprt);
628 kfree(c);
629}
630
631static void nfsd4_conn_lost(struct svc_xpt_user *u)
632{
633 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
634 struct nfs4_client *clp = c->cn_session->se_client;
635
636 spin_lock(&clp->cl_lock);
637 if (!list_empty(&c->cn_persession)) {
638 list_del(&c->cn_persession);
639 free_conn(c);
640 }
641 spin_unlock(&clp->cl_lock);
J. Bruce Fieldseea49802010-11-18 08:34:12 -0500642 nfsd4_probe_callback(clp);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400643}
644
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -0400645static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400646{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400647 struct nfsd4_conn *conn;
648
649 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
650 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400651 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400652 svc_xprt_get(rqstp->rq_xprt);
653 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -0400654 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400655 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
656 return conn;
657}
658
J. Bruce Fields328ead22010-09-29 16:11:06 -0400659static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
660{
661 conn->cn_session = ses;
662 list_add(&conn->cn_persession, &ses->se_conns);
663}
664
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400665static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
666{
667 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400668
669 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -0400670 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400671 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400672}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400673
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400674static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400675{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400676 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400677 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400678}
679
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400680static __be32 nfsd4_new_conn(struct svc_rqst *rqstp, struct nfsd4_session *ses, u32 dir)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400681{
682 struct nfsd4_conn *conn;
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400683 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400684
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400685 conn = alloc_conn(rqstp, dir);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400686 if (!conn)
687 return nfserr_jukebox;
688 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400689 ret = nfsd4_register_conn(conn);
690 if (ret)
691 /* oops; xprt is already down: */
692 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400693 return nfs_ok;
694}
695
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400696static __be32 nfsd4_new_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_session *ses)
697{
698 u32 dir = NFS4_CDFC4_FORE;
699
700 if (ses->se_flags & SESSION4_BACK_CHAN)
701 dir |= NFS4_CDFC4_BACK;
702
703 return nfsd4_new_conn(rqstp, ses, dir);
704}
705
706/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400707static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400708{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400709 struct nfs4_client *clp = s->se_client;
710 struct nfsd4_conn *c;
711
712 spin_lock(&clp->cl_lock);
713 while (!list_empty(&s->se_conns)) {
714 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
715 list_del_init(&c->cn_persession);
716 spin_unlock(&clp->cl_lock);
717
718 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
719 free_conn(c);
720
721 spin_lock(&clp->cl_lock);
722 }
723 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400724}
725
726void free_session(struct kref *kref)
727{
728 struct nfsd4_session *ses;
729 int mem;
730
731 ses = container_of(kref, struct nfsd4_session, se_ref);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400732 nfsd4_del_conns(ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400733 spin_lock(&nfsd_drc_lock);
734 mem = ses->se_fchannel.maxreqs * slot_bytes(&ses->se_fchannel);
735 nfsd_drc_mem_used -= mem;
736 spin_unlock(&nfsd_drc_lock);
737 free_session_slots(ses);
738 kfree(ses);
739}
740
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400741static struct nfsd4_session *alloc_init_session(struct svc_rqst *rqstp, struct nfs4_client *clp, struct nfsd4_create_session *cses)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400742{
743 struct nfsd4_session *new;
744 struct nfsd4_channel_attrs *fchan = &cses->fore_channel;
745 int numslots, slotsize;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400746 int status;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400747 int idx;
748
749 /*
750 * Note decreasing slot size below client's request may
751 * make it difficult for client to function correctly, whereas
752 * decreasing the number of slots will (just?) affect
753 * performance. When short on memory we therefore prefer to
754 * decrease number of slots instead of their size.
755 */
756 slotsize = nfsd4_sanitize_slot_size(fchan->maxresp_cached);
757 numslots = nfsd4_get_drc_mem(slotsize, fchan->maxreqs);
Mi Jinlongced6dfe2010-11-11 18:03:50 +0800758 if (numslots < 1)
759 return NULL;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400760
761 new = alloc_session(slotsize, numslots);
762 if (!new) {
763 nfsd4_put_drc_mem(slotsize, fchan->maxreqs);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400764 return NULL;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400765 }
766 init_forechannel_attrs(&new->se_fchannel, fchan, numslots, slotsize);
Andy Adamson557ce262009-08-28 08:45:04 -0400767
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300768 new->se_client = clp;
769 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300770
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400771 INIT_LIST_HEAD(&new->se_conns);
772
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400773 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300774 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -0400775 new->se_cb_prog = cses->callback_prog;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300776 kref_init(&new->se_ref);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400777 idx = hash_sessionid(&new->se_sessionid);
Benny Halevy9089f1b2010-05-12 00:12:26 +0300778 spin_lock(&client_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300779 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400780 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300781 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400782 spin_unlock(&clp->cl_lock);
Benny Halevy9089f1b2010-05-12 00:12:26 +0300783 spin_unlock(&client_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300784
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400785 status = nfsd4_new_conn_from_crses(rqstp, new);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400786 /* whoops: benny points out, status is ignored! (err, or bogus) */
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400787 if (status) {
788 free_session(&new->se_ref);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400789 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400790 }
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400791 if (cses->flags & SESSION4_BACK_CHAN) {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400792 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400793 /*
794 * This is a little silly; with sessions there's no real
795 * use for the callback address. Use the peer address
796 * as a reasonable default for now, but consider fixing
797 * the rpc client not to require an address in the
798 * future:
799 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400800 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
801 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400802 }
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400803 nfsd4_probe_callback(clp);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400804 return new;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300805}
806
Benny Halevy9089f1b2010-05-12 00:12:26 +0300807/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +0300808static struct nfsd4_session *
809find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
810{
811 struct nfsd4_session *elem;
812 int idx;
813
814 dump_sessionid(__func__, sessionid);
815 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +0300816 /* Search in the appropriate list */
817 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +0300818 if (!memcmp(elem->se_sessionid.data, sessionid->data,
819 NFS4_MAX_SESSIONID_LEN)) {
820 return elem;
821 }
822 }
823
824 dprintk("%s: session not found\n", __func__);
825 return NULL;
826}
827
Benny Halevy9089f1b2010-05-12 00:12:26 +0300828/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +0300829static void
Marc Eshel5282fd72009-04-03 08:27:52 +0300830unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +0300831{
832 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400833 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +0300834 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400835 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +0300836}
837
Benny Halevy36acb662010-05-12 00:13:04 +0300838/* must be called under the client_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839static inline void
Benny Halevy36acb662010-05-12 00:13:04 +0300840renew_client_locked(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Benny Halevy07cd4902010-05-12 00:13:41 +0300842 if (is_client_expired(clp)) {
843 dprintk("%s: client (clientid %08x/%08x) already expired\n",
844 __func__,
845 clp->cl_clientid.cl_boot,
846 clp->cl_clientid.cl_id);
847 return;
848 }
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /*
851 * Move client to the end to the LRU list.
852 */
853 dprintk("renewing client (clientid %08x/%08x)\n",
854 clp->cl_clientid.cl_boot,
855 clp->cl_clientid.cl_id);
856 list_move_tail(&clp->cl_lru, &client_lru);
857 clp->cl_time = get_seconds();
858}
859
Benny Halevy36acb662010-05-12 00:13:04 +0300860static inline void
861renew_client(struct nfs4_client *clp)
862{
863 spin_lock(&client_lock);
864 renew_client_locked(clp);
865 spin_unlock(&client_lock);
866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
869static int
870STALE_CLIENTID(clientid_t *clid)
871{
872 if (clid->cl_boot == boot_time)
873 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +0300874 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
875 clid->cl_boot, clid->cl_id, boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return 1;
877}
878
879/*
880 * XXX Should we use a slab cache ?
881 * This type of memory management is somewhat inefficient, but we use it
882 * anyway since SETCLIENTID is not a common operation.
883 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500884static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 struct nfs4_client *clp;
887
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500888 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
889 if (clp == NULL)
890 return NULL;
891 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
892 if (clp->cl_name.data == NULL) {
893 kfree(clp);
894 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500896 memcpy(clp->cl_name.data, name.data, name.len);
897 clp->cl_name.len = name.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return clp;
899}
900
901static inline void
902free_client(struct nfs4_client *clp)
903{
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400904 while (!list_empty(&clp->cl_sessions)) {
905 struct nfsd4_session *ses;
906 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
907 se_perclnt);
908 list_del(&ses->se_perclnt);
909 nfsd4_put_session(ses);
910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (clp->cl_cred.cr_group_info)
912 put_group_info(clp->cl_cred.cr_group_info);
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500913 kfree(clp->cl_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 kfree(clp->cl_name.data);
915 kfree(clp);
916}
917
Benny Halevyd7682982010-05-12 00:13:54 +0300918void
919release_session_client(struct nfsd4_session *session)
920{
921 struct nfs4_client *clp = session->se_client;
922
923 if (!atomic_dec_and_lock(&clp->cl_refcount, &client_lock))
924 return;
925 if (is_client_expired(clp)) {
926 free_client(clp);
927 session->se_client = NULL;
928 } else
929 renew_client_locked(clp);
930 spin_unlock(&client_lock);
Benny Halevyd7682982010-05-12 00:13:54 +0300931}
932
Benny Halevy84d38ac2010-05-12 00:13:16 +0300933/* must be called under the client_lock */
934static inline void
935unhash_client_locked(struct nfs4_client *clp)
936{
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400937 struct nfsd4_session *ses;
938
Benny Halevy07cd4902010-05-12 00:13:41 +0300939 mark_client_expired(clp);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300940 list_del(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400941 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400942 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
943 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400944 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947static void
948expire_client(struct nfs4_client *clp)
949{
950 struct nfs4_stateowner *sop;
951 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 struct list_head reaplist;
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 INIT_LIST_HEAD(&reaplist);
955 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700956 while (!list_empty(&clp->cl_delegations)) {
957 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
NeilBrownea1da632005-06-23 22:04:17 -0700958 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 list_move(&dp->dl_recall_lru, &reaplist);
960 }
961 spin_unlock(&recall_lock);
962 while (!list_empty(&reaplist)) {
963 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
964 list_del_init(&dp->dl_recall_lru);
965 unhash_delegation(dp);
966 }
NeilBrownea1da632005-06-23 22:04:17 -0700967 while (!list_empty(&clp->cl_openowners)) {
968 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500969 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -0400971 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -0500972 if (clp->cl_cb_conn.cb_xprt)
973 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300974 list_del(&clp->cl_idhash);
975 list_del(&clp->cl_strhash);
976 spin_lock(&client_lock);
977 unhash_client_locked(clp);
Benny Halevy46583e22010-05-12 00:13:29 +0300978 if (atomic_read(&clp->cl_refcount) == 0)
979 free_client(clp);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300980 spin_unlock(&client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500983static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
984{
985 memcpy(target->cl_verifier.data, source->data,
986 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500989static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
990{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
992 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
993}
994
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500995static void copy_cred(struct svc_cred *target, struct svc_cred *source)
996{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 target->cr_uid = source->cr_uid;
998 target->cr_gid = source->cr_gid;
999 target->cr_group_info = source->cr_group_info;
1000 get_group_info(target->cr_group_info);
1001}
1002
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001003static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001004{
NeilBrowna55370a2005-06-23 22:03:52 -07001005 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
1008static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001009same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1010{
1011 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
1014static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001015same_clid(clientid_t *cl1, clientid_t *cl2)
1016{
1017 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
1020/* XXX what about NGROUP */
1021static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001022same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1023{
1024 return cr1->cr_uid == cr2->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
J. Bruce Fields5ec7b462007-11-21 21:58:56 -05001027static void gen_clid(struct nfs4_client *clp)
1028{
1029 static u32 current_clientid = 1;
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 clp->cl_clientid.cl_boot = boot_time;
1032 clp->cl_clientid.cl_id = current_clientid++;
1033}
1034
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001035static void gen_confirm(struct nfs4_client *clp)
1036{
1037 static u32 i;
1038 u32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 p = (u32 *)clp->cl_confirm.data;
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001041 *p++ = get_seconds();
1042 *p++ = i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001045static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir,
1046 struct svc_rqst *rqstp, nfs4_verifier *verf)
1047{
1048 struct nfs4_client *clp;
1049 struct sockaddr *sa = svc_addr(rqstp);
1050 char *princ;
1051
1052 clp = alloc_client(name);
1053 if (clp == NULL)
1054 return NULL;
1055
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001056 INIT_LIST_HEAD(&clp->cl_sessions);
1057
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001058 princ = svc_gss_principal(rqstp);
1059 if (princ) {
1060 clp->cl_principal = kstrdup(princ, GFP_KERNEL);
1061 if (clp->cl_principal == NULL) {
1062 free_client(clp);
1063 return NULL;
1064 }
1065 }
1066
1067 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Benny Halevy46583e22010-05-12 00:13:29 +03001068 atomic_set(&clp->cl_refcount, 0);
J. Bruce Fields77a35692010-04-30 18:51:44 -04001069 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001070 INIT_LIST_HEAD(&clp->cl_idhash);
1071 INIT_LIST_HEAD(&clp->cl_strhash);
1072 INIT_LIST_HEAD(&clp->cl_openowners);
1073 INIT_LIST_HEAD(&clp->cl_delegations);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001074 INIT_LIST_HEAD(&clp->cl_lru);
J. Bruce Fields5ce8ba22011-01-10 16:44:41 -05001075 INIT_LIST_HEAD(&clp->cl_callbacks);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001076 spin_lock_init(&clp->cl_lock);
J. Bruce Fieldscee277d2010-05-26 17:52:14 -04001077 INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_do_callback_rpc);
Benny Halevy07cd4902010-05-12 00:13:41 +03001078 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001079 clear_bit(0, &clp->cl_cb_slot_busy);
1080 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
1081 copy_verf(clp, verf);
1082 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
1083 clp->cl_flavor = rqstp->rq_flavor;
1084 copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1085 gen_confirm(clp);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001086 clp->cl_cb_session = NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001087 return clp;
1088}
1089
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001090static int check_name(struct xdr_netobj name)
1091{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (name.len == 0)
1093 return 0;
1094 if (name.len > NFS4_OPAQUE_LIMIT) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04001095 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return 0;
1097 }
1098 return 1;
1099}
1100
NeilBrownfd39ca92005-06-23 22:04:03 -07001101static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
1103{
1104 unsigned int idhashval;
1105
1106 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
1107 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1108 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
Benny Halevy36acb662010-05-12 00:13:04 +03001109 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
NeilBrownfd39ca92005-06-23 22:04:03 -07001112static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113move_to_confirmed(struct nfs4_client *clp)
1114{
1115 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1116 unsigned int strhashval;
1117
1118 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Akinobu Mitaf1166292006-06-26 00:24:46 -07001119 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07001120 strhashval = clientstr_hashval(clp->cl_recdir);
Benny Halevy328efba2010-05-12 00:12:51 +03001121 list_move(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 renew_client(clp);
1123}
1124
1125static struct nfs4_client *
1126find_confirmed_client(clientid_t *clid)
1127{
1128 struct nfs4_client *clp;
1129 unsigned int idhashval = clientid_hashval(clid->cl_id);
1130
1131 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001132 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return clp;
1134 }
1135 return NULL;
1136}
1137
1138static struct nfs4_client *
1139find_unconfirmed_client(clientid_t *clid)
1140{
1141 struct nfs4_client *clp;
1142 unsigned int idhashval = clientid_hashval(clid->cl_id);
1143
1144 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001145 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return clp;
1147 }
1148 return NULL;
1149}
1150
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001151static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001152{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001153 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001154}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001155
NeilBrown28ce6052005-06-23 22:03:56 -07001156static struct nfs4_client *
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001157find_confirmed_client_by_str(const char *dname, unsigned int hashval)
NeilBrown28ce6052005-06-23 22:03:56 -07001158{
1159 struct nfs4_client *clp;
1160
1161 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001162 if (same_name(clp->cl_recdir, dname))
NeilBrown28ce6052005-06-23 22:03:56 -07001163 return clp;
1164 }
1165 return NULL;
1166}
1167
1168static struct nfs4_client *
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001169find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
NeilBrown28ce6052005-06-23 22:03:56 -07001170{
1171 struct nfs4_client *clp;
1172
1173 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001174 if (same_name(clp->cl_recdir, dname))
NeilBrown28ce6052005-06-23 22:03:56 -07001175 return clp;
1176 }
1177 return NULL;
1178}
1179
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001180static void rpc_svcaddr2sockaddr(struct sockaddr *sa, unsigned short family, union svc_addr_u *svcaddr)
1181{
1182 switch (family) {
1183 case AF_INET:
1184 ((struct sockaddr_in *)sa)->sin_family = AF_INET;
1185 ((struct sockaddr_in *)sa)->sin_addr = svcaddr->addr;
1186 return;
1187 case AF_INET6:
1188 ((struct sockaddr_in6 *)sa)->sin6_family = AF_INET6;
1189 ((struct sockaddr_in6 *)sa)->sin6_addr = svcaddr->addr6;
1190 return;
1191 }
1192}
1193
NeilBrownfd39ca92005-06-23 22:04:03 -07001194static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001195gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
J. Bruce Fields07263f12010-05-31 19:09:40 -04001197 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001198 struct sockaddr *sa = svc_addr(rqstp);
1199 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04001200 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Jeff Layton7077ecb2009-08-14 12:57:58 -04001202 /* Currently, we only support tcp and tcp6 for the callback channel */
1203 if (se->se_callback_netid_len == 3 &&
1204 !memcmp(se->se_callback_netid_val, "tcp", 3))
1205 expected_family = AF_INET;
1206 else if (se->se_callback_netid_len == 4 &&
1207 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1208 expected_family = AF_INET6;
1209 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 goto out_err;
1211
J. Bruce Fields07263f12010-05-31 19:09:40 -04001212 conn->cb_addrlen = rpc_uaddr2sockaddr(se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001213 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04001214 (struct sockaddr *)&conn->cb_addr,
1215 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001216
J. Bruce Fields07263f12010-05-31 19:09:40 -04001217 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001219
J. Bruce Fields07263f12010-05-31 19:09:40 -04001220 if (conn->cb_addr.ss_family == AF_INET6)
1221 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04001222
J. Bruce Fields07263f12010-05-31 19:09:40 -04001223 conn->cb_prog = se->se_callback_prog;
1224 conn->cb_ident = se->se_callback_ident;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001225 rpc_svcaddr2sockaddr((struct sockaddr *)&conn->cb_saddr, expected_family, &rqstp->rq_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return;
1227out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04001228 conn->cb_addr.ss_family = AF_UNSPEC;
1229 conn->cb_addrlen = 0;
Neil Brown849823c2005-09-13 01:25:36 -07001230 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 "will not receive delegations\n",
1232 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return;
1235}
1236
Andy Adamson074fe892009-04-03 08:28:15 +03001237/*
Andy Adamson557ce262009-08-28 08:45:04 -04001238 * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03001239 */
1240void
1241nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1242{
Andy Adamson557ce262009-08-28 08:45:04 -04001243 struct nfsd4_slot *slot = resp->cstate.slot;
1244 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03001245
Andy Adamson557ce262009-08-28 08:45:04 -04001246 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001247
Andy Adamson557ce262009-08-28 08:45:04 -04001248 slot->sl_opcnt = resp->opcnt;
1249 slot->sl_status = resp->cstate.status;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001250
1251 if (nfsd4_not_cached(resp)) {
Andy Adamson557ce262009-08-28 08:45:04 -04001252 slot->sl_datalen = 0;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001253 return;
1254 }
Andy Adamson557ce262009-08-28 08:45:04 -04001255 slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap;
1256 base = (char *)resp->cstate.datap -
1257 (char *)resp->xbuf->head[0].iov_base;
1258 if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data,
1259 slot->sl_datalen))
1260 WARN("%s: sessions DRC could not cache compound\n", __func__);
1261 return;
Andy Adamson074fe892009-04-03 08:28:15 +03001262}
1263
1264/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04001265 * Encode the replay sequence operation from the slot values.
1266 * If cachethis is FALSE encode the uncached rep error on the next
1267 * operation which sets resp->p and increments resp->opcnt for
1268 * nfs4svc_encode_compoundres.
1269 *
Andy Adamson074fe892009-04-03 08:28:15 +03001270 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04001271static __be32
1272nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1273 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03001274{
Andy Adamsonabfabf82009-07-23 19:02:18 -04001275 struct nfsd4_op *op;
1276 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001277
Andy Adamsonabfabf82009-07-23 19:02:18 -04001278 dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__,
Andy Adamson557ce262009-08-28 08:45:04 -04001279 resp->opcnt, resp->cstate.slot->sl_cachethis);
Andy Adamsonabfabf82009-07-23 19:02:18 -04001280
1281 /* Encode the replayed sequence operation */
1282 op = &args->ops[resp->opcnt - 1];
1283 nfsd4_encode_operation(resp, op);
1284
1285 /* Return nfserr_retry_uncached_rep in next operation. */
Andy Adamson557ce262009-08-28 08:45:04 -04001286 if (args->opcnt > 1 && slot->sl_cachethis == 0) {
Andy Adamsonabfabf82009-07-23 19:02:18 -04001287 op = &args->ops[resp->opcnt++];
1288 op->status = nfserr_retry_uncached_rep;
1289 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03001290 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04001291 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03001292}
1293
1294/*
Andy Adamson557ce262009-08-28 08:45:04 -04001295 * The sequence operation is not cached because we can use the slot and
1296 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03001297 */
1298__be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03001299nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1300 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03001301{
Andy Adamson557ce262009-08-28 08:45:04 -04001302 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001303 __be32 status;
1304
Andy Adamson557ce262009-08-28 08:45:04 -04001305 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001306
Andy Adamsonabfabf82009-07-23 19:02:18 -04001307 /* Either returns 0 or nfserr_retry_uncached */
1308 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1309 if (status == nfserr_retry_uncached_rep)
1310 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03001311
Andy Adamson557ce262009-08-28 08:45:04 -04001312 /* The sequence operation has been encoded, cstate->datap set. */
1313 memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen);
Andy Adamson074fe892009-04-03 08:28:15 +03001314
Andy Adamson557ce262009-08-28 08:45:04 -04001315 resp->opcnt = slot->sl_opcnt;
1316 resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen);
1317 status = slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03001318
1319 return status;
1320}
1321
Andy Adamson0733d212009-04-03 08:28:01 +03001322/*
1323 * Set the exchange_id flags returned by the server.
1324 */
1325static void
1326nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1327{
1328 /* pNFS is not supported */
1329 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1330
1331 /* Referrals are supported, Migration is not. */
1332 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1333
1334 /* set the wire flags to return to client. */
1335 clid->flags = new->cl_exchange_flags;
1336}
1337
Al Virob37ad282006-10-19 23:28:59 -07001338__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03001339nfsd4_exchange_id(struct svc_rqst *rqstp,
1340 struct nfsd4_compound_state *cstate,
1341 struct nfsd4_exchange_id *exid)
1342{
Andy Adamson0733d212009-04-03 08:28:01 +03001343 struct nfs4_client *unconf, *conf, *new;
1344 int status;
1345 unsigned int strhashval;
1346 char dname[HEXDIR_LEN];
Jeff Layton363168b2009-08-14 12:57:56 -04001347 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03001348 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04001349 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamson0733d212009-04-03 08:28:01 +03001350
Jeff Layton363168b2009-08-14 12:57:56 -04001351 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03001352 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04001353 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03001354 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04001355 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03001356
1357 if (!check_name(exid->clname) || (exid->flags & ~EXCHGID4_FLAG_MASK_A))
1358 return nfserr_inval;
1359
1360 /* Currently only support SP4_NONE */
1361 switch (exid->spa_how) {
1362 case SP4_NONE:
1363 break;
1364 case SP4_SSV:
J. Bruce Fields044bc1d2010-11-12 14:36:06 -05001365 return nfserr_serverfault;
Andy Adamson0733d212009-04-03 08:28:01 +03001366 default:
1367 BUG(); /* checked by xdr code */
1368 case SP4_MACH_CRED:
1369 return nfserr_serverfault; /* no excuse :-/ */
1370 }
1371
1372 status = nfs4_make_rec_clidname(dname, &exid->clname);
1373
1374 if (status)
1375 goto error;
1376
1377 strhashval = clientstr_hashval(dname);
1378
1379 nfs4_lock_state();
1380 status = nfs_ok;
1381
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001382 conf = find_confirmed_client_by_str(dname, strhashval);
Andy Adamson0733d212009-04-03 08:28:01 +03001383 if (conf) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001384 if (!clp_used_exchangeid(conf)) {
1385 status = nfserr_clid_inuse; /* XXX: ? */
1386 goto out;
1387 }
Andy Adamson0733d212009-04-03 08:28:01 +03001388 if (!same_verf(&verf, &conf->cl_verifier)) {
1389 /* 18.35.4 case 8 */
1390 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1391 status = nfserr_not_same;
1392 goto out;
1393 }
1394 /* Client reboot: destroy old state */
1395 expire_client(conf);
1396 goto out_new;
1397 }
1398 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1399 /* 18.35.4 case 9 */
1400 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1401 status = nfserr_perm;
1402 goto out;
1403 }
1404 expire_client(conf);
1405 goto out_new;
1406 }
Andy Adamson0733d212009-04-03 08:28:01 +03001407 /*
1408 * Set bit when the owner id and verifier map to an already
1409 * confirmed client id (18.35.3).
1410 */
1411 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1412
1413 /*
1414 * Falling into 18.35.4 case 2, possible router replay.
1415 * Leave confirmed record intact and return same result.
1416 */
1417 copy_verf(conf, &verf);
1418 new = conf;
1419 goto out_copy;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03001420 }
1421
1422 /* 18.35.4 case 7 */
1423 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1424 status = nfserr_noent;
1425 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03001426 }
1427
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001428 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Andy Adamson0733d212009-04-03 08:28:01 +03001429 if (unconf) {
1430 /*
1431 * Possible retry or client restart. Per 18.35.4 case 4,
1432 * a new unconfirmed record should be generated regardless
1433 * of whether any properties have changed.
1434 */
1435 expire_client(unconf);
1436 }
1437
1438out_new:
1439 /* Normal case */
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001440 new = create_client(exid->clname, dname, rqstp, &verf);
Andy Adamson0733d212009-04-03 08:28:01 +03001441 if (new == NULL) {
J. Bruce Fields47310302010-06-22 16:17:12 -04001442 status = nfserr_jukebox;
Andy Adamson0733d212009-04-03 08:28:01 +03001443 goto out;
1444 }
1445
Andy Adamson0733d212009-04-03 08:28:01 +03001446 gen_clid(new);
Andy Adamson0733d212009-04-03 08:28:01 +03001447 add_to_unconfirmed(new, strhashval);
1448out_copy:
1449 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1450 exid->clientid.cl_id = new->cl_clientid.cl_id;
1451
Andy Adamson38eb76a2009-04-03 08:28:32 +03001452 exid->seqid = 1;
Andy Adamson0733d212009-04-03 08:28:01 +03001453 nfsd4_set_ex_flags(new, exid);
1454
1455 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001456 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03001457 status = nfs_ok;
1458
1459out:
1460 nfs4_unlock_state();
1461error:
1462 dprintk("nfsd4_exchange_id returns %d\n", ntohl(status));
1463 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001464}
1465
Benny Halevyb85d4c02009-04-03 08:28:08 +03001466static int
Andy Adamson88e588d2009-07-23 19:02:15 -04001467check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001468{
Andy Adamson88e588d2009-07-23 19:02:15 -04001469 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1470 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001471
1472 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04001473 if (slot_inuse) {
1474 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001475 return nfserr_jukebox;
1476 else
1477 return nfserr_seq_misordered;
1478 }
1479 /* Normal */
Andy Adamson88e588d2009-07-23 19:02:15 -04001480 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03001481 return nfs_ok;
1482 /* Replay */
Andy Adamson88e588d2009-07-23 19:02:15 -04001483 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001484 return nfserr_replay_cache;
1485 /* Wraparound */
Andy Adamson88e588d2009-07-23 19:02:15 -04001486 if (seqid == 1 && (slot_seqid + 1) == 0)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001487 return nfs_ok;
1488 /* Misordered replay or misordered new request */
1489 return nfserr_seq_misordered;
1490}
1491
Andy Adamson49557cc2009-07-23 19:02:16 -04001492/*
1493 * Cache the create session result into the create session single DRC
1494 * slot cache by saving the xdr structure. sl_seqid has been set.
1495 * Do this for solo or embedded create session operations.
1496 */
1497static void
1498nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
1499 struct nfsd4_clid_slot *slot, int nfserr)
1500{
1501 slot->sl_status = nfserr;
1502 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1503}
1504
1505static __be32
1506nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1507 struct nfsd4_clid_slot *slot)
1508{
1509 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1510 return slot->sl_status;
1511}
1512
Andy Adamson069b6ad2009-04-03 08:27:58 +03001513__be32
1514nfsd4_create_session(struct svc_rqst *rqstp,
1515 struct nfsd4_compound_state *cstate,
1516 struct nfsd4_create_session *cr_ses)
1517{
Jeff Layton363168b2009-08-14 12:57:56 -04001518 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001519 struct nfs4_client *conf, *unconf;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001520 struct nfsd4_session *new;
Andy Adamson49557cc2009-07-23 19:02:16 -04001521 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001522 bool confirm_me = false;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001523 int status = 0;
1524
Mi Jinlonga62573d2011-03-23 17:57:07 +08001525 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
1526 return nfserr_inval;
1527
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001528 nfs4_lock_state();
1529 unconf = find_unconfirmed_client(&cr_ses->clientid);
1530 conf = find_confirmed_client(&cr_ses->clientid);
1531
1532 if (conf) {
Andy Adamson49557cc2009-07-23 19:02:16 -04001533 cs_slot = &conf->cl_cs_slot;
1534 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001535 if (status == nfserr_replay_cache) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001536 dprintk("Got a create_session replay! seqid= %d\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001537 cs_slot->sl_seqid);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001538 /* Return the cached reply status */
Andy Adamson49557cc2009-07-23 19:02:16 -04001539 status = nfsd4_replay_create_session(cr_ses, cs_slot);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001540 goto out;
Andy Adamson49557cc2009-07-23 19:02:16 -04001541 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001542 status = nfserr_seq_misordered;
1543 dprintk("Sequence misordered!\n");
1544 dprintk("Expected seqid= %d but got seqid= %d\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001545 cs_slot->sl_seqid, cr_ses->seqid);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001546 goto out;
1547 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001548 } else if (unconf) {
1549 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04001550 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001551 status = nfserr_clid_inuse;
1552 goto out;
1553 }
1554
Andy Adamson49557cc2009-07-23 19:02:16 -04001555 cs_slot = &unconf->cl_cs_slot;
1556 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001557 if (status) {
1558 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001559 status = nfserr_seq_misordered;
J. Bruce Fieldscd5b8142010-10-02 17:03:35 -04001560 goto out;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001561 }
1562
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001563 confirm_me = true;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001564 conf = unconf;
1565 } else {
1566 status = nfserr_stale_clientid;
1567 goto out;
1568 }
1569
J. Bruce Fields408b79b2010-04-15 15:11:09 -04001570 /*
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04001571 * XXX: we should probably set this at creation time, and check
1572 * for consistent minorversion use throughout:
1573 */
1574 conf->cl_minorversion = 1;
1575 /*
J. Bruce Fields408b79b2010-04-15 15:11:09 -04001576 * We do not support RDMA or persistent sessions
1577 */
1578 cr_ses->flags &= ~SESSION4_PERSIST;
1579 cr_ses->flags &= ~SESSION4_RDMA;
1580
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001581 status = nfserr_jukebox;
1582 new = alloc_init_session(rqstp, conf, cr_ses);
1583 if (!new)
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001584 goto out;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001585 status = nfs_ok;
1586 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001587 NFS4_MAX_SESSIONID_LEN);
Mi Jinlong12050652010-11-11 18:03:40 +08001588 memcpy(&cr_ses->fore_channel, &new->se_fchannel,
1589 sizeof(struct nfsd4_channel_attrs));
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001590 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04001591 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001592
Andy Adamson49557cc2009-07-23 19:02:16 -04001593 /* cache solo and embedded create sessions under the state lock */
1594 nfsd4_cache_create_session(cr_ses, cs_slot, status);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001595 if (confirm_me)
1596 move_to_confirmed(conf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001597out:
1598 nfs4_unlock_state();
1599 dprintk("%s returns %d\n", __func__, ntohl(status));
1600 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001601}
1602
J. Bruce Fields57716352010-04-21 12:27:19 -04001603static bool nfsd4_last_compound_op(struct svc_rqst *rqstp)
1604{
1605 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1606 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1607
1608 return argp->opcnt == resp->opcnt;
1609}
1610
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001611static __be32 nfsd4_map_bcts_dir(u32 *dir)
1612{
1613 switch (*dir) {
1614 case NFS4_CDFC4_FORE:
1615 case NFS4_CDFC4_BACK:
1616 return nfs_ok;
1617 case NFS4_CDFC4_FORE_OR_BOTH:
1618 case NFS4_CDFC4_BACK_OR_BOTH:
1619 *dir = NFS4_CDFC4_BOTH;
1620 return nfs_ok;
1621 };
1622 return nfserr_inval;
1623}
1624
1625__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
1626 struct nfsd4_compound_state *cstate,
1627 struct nfsd4_bind_conn_to_session *bcts)
1628{
1629 __be32 status;
1630
1631 if (!nfsd4_last_compound_op(rqstp))
1632 return nfserr_not_only_op;
1633 spin_lock(&client_lock);
1634 cstate->session = find_in_sessionid_hashtbl(&bcts->sessionid);
1635 /* Sorta weird: we only need the refcnt'ing because new_conn acquires
1636 * client_lock iself: */
1637 if (cstate->session) {
1638 nfsd4_get_session(cstate->session);
1639 atomic_inc(&cstate->session->se_client->cl_refcount);
1640 }
1641 spin_unlock(&client_lock);
1642 if (!cstate->session)
1643 return nfserr_badsession;
1644
1645 status = nfsd4_map_bcts_dir(&bcts->dir);
Bryan Schumaker1db2b9d2011-04-27 15:47:15 -04001646 if (!status)
1647 nfsd4_new_conn(rqstp, cstate->session, bcts->dir);
1648 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001649}
1650
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04001651static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
1652{
1653 if (!session)
1654 return 0;
1655 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
1656}
1657
Andy Adamson069b6ad2009-04-03 08:27:58 +03001658__be32
1659nfsd4_destroy_session(struct svc_rqst *r,
1660 struct nfsd4_compound_state *cstate,
1661 struct nfsd4_destroy_session *sessionid)
1662{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001663 struct nfsd4_session *ses;
1664 u32 status = nfserr_badsession;
1665
1666 /* Notes:
1667 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1668 * - Should we return nfserr_back_chan_busy if waiting for
1669 * callbacks on to-be-destroyed session?
1670 * - Do we need to clear any callback info from previous session?
1671 */
1672
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04001673 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04001674 if (!nfsd4_last_compound_op(r))
1675 return nfserr_not_only_op;
1676 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03001677 dump_sessionid(__func__, &sessionid->sessionid);
Benny Halevy9089f1b2010-05-12 00:12:26 +03001678 spin_lock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001679 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1680 if (!ses) {
Benny Halevy9089f1b2010-05-12 00:12:26 +03001681 spin_unlock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001682 goto out;
1683 }
1684
1685 unhash_session(ses);
Benny Halevy9089f1b2010-05-12 00:12:26 +03001686 spin_unlock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001687
Benny Halevyab707e152010-05-12 00:14:06 +03001688 nfs4_lock_state();
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05001689 nfsd4_probe_callback_sync(ses->se_client);
Benny Halevyab707e152010-05-12 00:14:06 +03001690 nfs4_unlock_state();
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001691
1692 nfsd4_del_conns(ses);
1693
Benny Halevye10e0cf2009-04-03 08:28:38 +03001694 nfsd4_put_session(ses);
1695 status = nfs_ok;
1696out:
1697 dprintk("%s returns %d\n", __func__, ntohl(status));
1698 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001699}
1700
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001701static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04001702{
1703 struct nfsd4_conn *c;
1704
1705 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001706 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04001707 return c;
1708 }
1709 }
1710 return NULL;
1711}
1712
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001713static void nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04001714{
1715 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001716 struct nfsd4_conn *c;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001717 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04001718
1719 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001720 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001721 if (c) {
1722 spin_unlock(&clp->cl_lock);
1723 free_conn(new);
1724 return;
1725 }
1726 __nfsd4_hash_conn(new, ses);
1727 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001728 ret = nfsd4_register_conn(new);
1729 if (ret)
1730 /* oops; xprt is already down: */
1731 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001732 return;
1733}
1734
Mi Jinlong868b89c2011-04-27 09:09:58 +08001735static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
1736{
1737 struct nfsd4_compoundargs *args = rqstp->rq_argp;
1738
1739 return args->opcnt > session->se_fchannel.maxops;
1740}
1741
Andy Adamson069b6ad2009-04-03 08:27:58 +03001742__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03001743nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001744 struct nfsd4_compound_state *cstate,
1745 struct nfsd4_sequence *seq)
1746{
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001747 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001748 struct nfsd4_session *session;
1749 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001750 struct nfsd4_conn *conn;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001751 int status;
1752
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001753 if (resp->opcnt != 1)
1754 return nfserr_sequence_pos;
1755
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001756 /*
1757 * Will be either used or freed by nfsd4_sequence_check_conn
1758 * below.
1759 */
1760 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
1761 if (!conn)
1762 return nfserr_jukebox;
1763
Benny Halevy9089f1b2010-05-12 00:12:26 +03001764 spin_lock(&client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001765 status = nfserr_badsession;
1766 session = find_in_sessionid_hashtbl(&seq->sessionid);
1767 if (!session)
1768 goto out;
1769
Mi Jinlong868b89c2011-04-27 09:09:58 +08001770 status = nfserr_too_many_ops;
1771 if (nfsd4_session_too_many_ops(rqstp, session))
1772 goto out;
1773
Benny Halevyb85d4c02009-04-03 08:28:08 +03001774 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03001775 if (seq->slotid >= session->se_fchannel.maxreqs)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001776 goto out;
1777
Andy Adamson557ce262009-08-28 08:45:04 -04001778 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03001779 dprintk("%s: slotid %d\n", __func__, seq->slotid);
1780
Andy Adamsona8dfdae2009-08-28 08:45:02 -04001781 /* We do not negotiate the number of slots yet, so set the
1782 * maxslots to the session maxreqs which is used to encode
1783 * sr_highest_slotid and the sr_target_slot id to maxslots */
1784 seq->maxslots = session->se_fchannel.maxreqs;
1785
Andy Adamson88e588d2009-07-23 19:02:15 -04001786 status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001787 if (status == nfserr_replay_cache) {
1788 cstate->slot = slot;
1789 cstate->session = session;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001790 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04001791 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03001792 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03001793 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001794 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001795 }
1796 if (status)
1797 goto out;
1798
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001799 nfsd4_sequence_check_conn(conn, session);
1800 conn = NULL;
J. Bruce Fields328ead22010-09-29 16:11:06 -04001801
Benny Halevyb85d4c02009-04-03 08:28:08 +03001802 /* Success! bump slot seqid */
1803 slot->sl_inuse = true;
1804 slot->sl_seqid = seq->seqid;
Andy Adamson557ce262009-08-28 08:45:04 -04001805 slot->sl_cachethis = seq->cachethis;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001806
1807 cstate->slot = slot;
1808 cstate->session = session;
1809
Benny Halevyb85d4c02009-04-03 08:28:08 +03001810out:
J. Bruce Fields26c0c752010-04-24 15:35:43 -04001811 /* Hold a session reference until done processing the compound. */
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001812 if (cstate->session) {
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05001813 struct nfs4_client *clp = session->se_client;
1814
Benny Halevy36acb662010-05-12 00:13:04 +03001815 nfsd4_get_session(cstate->session);
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05001816 atomic_inc(&clp->cl_refcount);
1817 if (clp->cl_cb_state == NFSD4_CB_DOWN)
1818 seq->status_flags |= SEQ4_STATUS_CB_PATH_DOWN;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001819 }
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001820 kfree(conn);
Benny Halevy36acb662010-05-12 00:13:04 +03001821 spin_unlock(&client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001822 dprintk("%s: return %d\n", __func__, ntohl(status));
1823 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001824}
1825
1826__be32
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001827nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
1828{
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001829 int status = 0;
1830
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001831 if (rc->rca_one_fs) {
1832 if (!cstate->current_fh.fh_dentry)
1833 return nfserr_nofilehandle;
1834 /*
1835 * We don't take advantage of the rca_one_fs case.
1836 * That's OK, it's optional, we can safely ignore it.
1837 */
1838 return nfs_ok;
1839 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001840
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001841 nfs4_lock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001842 status = nfserr_complete_already;
1843 if (cstate->session->se_client->cl_firststate)
1844 goto out;
1845
1846 status = nfserr_stale_clientid;
1847 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001848 /*
1849 * The following error isn't really legal.
1850 * But we only get here if the client just explicitly
1851 * destroyed the client. Surely it no longer cares what
1852 * error it gets back on an operation for the dead
1853 * client.
1854 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001855 goto out;
1856
1857 status = nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001858 nfsd4_create_clid_dir(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001859out:
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001860 nfs4_unlock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001861 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001862}
1863
1864__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001865nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1866 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 struct xdr_netobj clname = {
1869 .len = setclid->se_namelen,
1870 .data = setclid->se_name,
1871 };
1872 nfs4_verifier clverifier = setclid->se_verf;
1873 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -07001874 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -07001875 __be32 status;
NeilBrowna55370a2005-06-23 22:03:52 -07001876 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -07001879 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
NeilBrowna55370a2005-06-23 22:03:52 -07001881 status = nfs4_make_rec_clidname(dname, &clname);
1882 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -07001883 return status;
NeilBrowna55370a2005-06-23 22:03:52 -07001884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /*
1886 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1887 * We get here on a DRC miss.
1888 */
1889
NeilBrowna55370a2005-06-23 22:03:52 -07001890 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 nfs4_lock_state();
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001893 conf = find_confirmed_client_by_str(dname, strhashval);
NeilBrown28ce6052005-06-23 22:03:56 -07001894 if (conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001895 /* RFC 3530 14.2.33 CASE 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001897 if (clp_used_exchangeid(conf))
1898 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04001899 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04001900 char addr_str[INET6_ADDRSTRLEN];
1901 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
1902 sizeof(addr_str));
1903 dprintk("NFSD: setclientid: string in use by client "
1904 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 goto out;
1906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001908 /*
1909 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
1910 * has a description of SETCLIENTID request processing consisting
1911 * of 5 bullet points, labeled as CASE0 - CASE4 below.
1912 */
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001913 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 status = nfserr_resource;
1915 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001916 /*
1917 * RFC 3530 14.2.33 CASE 4:
1918 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 */
1920 if (unconf)
1921 expire_client(unconf);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001922 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07001923 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001926 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001928 * RFC 3530 14.2.33 CASE 1:
1929 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 */
NeilBrown31f4a6c2005-06-23 22:04:06 -07001931 if (unconf) {
1932 /* Note this is removing unconfirmed {*x***},
1933 * which is stronger than RFC recommended {vxc**}.
1934 * This has the advantage that there is at most
1935 * one {*x***} in either list at any time.
1936 */
1937 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001939 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07001940 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 } else if (!unconf) {
1944 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001945 * RFC 3530 14.2.33 CASE 2:
1946 * probable client reboot; state will be removed if
1947 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 */
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001949 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07001950 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 gen_clid(new);
J. Bruce Fields49ba8782007-11-19 19:09:50 -05001953 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001954 /*
1955 * RFC 3530 14.2.33 CASE 3:
1956 * probable client reboot; state will be removed if
1957 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 */
1959 expire_client(unconf);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001960 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07001961 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04001965 /*
1966 * XXX: we should probably set this at creation time, and check
1967 * for consistent minorversion use throughout:
1968 */
1969 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001970 gen_callback(new, setclid, rqstp);
J. Bruce Fieldsc175b832007-08-09 18:34:32 -04001971 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
1973 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
1974 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
1975 status = nfs_ok;
1976out:
1977 nfs4_unlock_state();
1978 return status;
1979}
1980
1981
1982/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001983 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
1984 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
1985 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 */
Al Virob37ad282006-10-19 23:28:59 -07001987__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001988nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
1989 struct nfsd4_compound_state *cstate,
1990 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
Jeff Layton363168b2009-08-14 12:57:56 -04001992 struct sockaddr *sa = svc_addr(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -07001993 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
1995 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07001996 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 if (STALE_CLIENTID(clid))
1999 return nfserr_stale_clientid;
2000 /*
2001 * XXX The Duplicate Request Cache (DRC) has been checked (??)
2002 * We get here on a DRC miss.
2003 */
2004
2005 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -07002006
2007 conf = find_confirmed_client(clid);
2008 unconf = find_unconfirmed_client(clid);
2009
2010 status = nfserr_clid_inuse;
Jeff Layton363168b2009-08-14 12:57:56 -04002011 if (conf && !rpc_cmp_addr((struct sockaddr *) &conf->cl_addr, sa))
NeilBrown21ab45a2005-06-23 22:04:14 -07002012 goto out;
Jeff Layton363168b2009-08-14 12:57:56 -04002013 if (unconf && !rpc_cmp_addr((struct sockaddr *) &unconf->cl_addr, sa))
NeilBrown21ab45a2005-06-23 22:04:14 -07002014 goto out;
2015
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002016 /*
2017 * section 14.2.34 of RFC 3530 has a description of
2018 * SETCLIENTID_CONFIRM request processing consisting
2019 * of 4 bullet points, labeled as CASE1 - CASE4 below.
2020 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -05002021 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002022 /*
2023 * RFC 3530 14.2.34 CASE 1:
2024 * callback update
2025 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002026 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 status = nfserr_clid_inuse;
2028 else {
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -04002029 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2030 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002031 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -07002033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -05002035 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002036 /*
2037 * RFC 3530 14.2.34 CASE 2:
2038 * probable retransmitted request; play it safe and
2039 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -07002040 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002041 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -07002043 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -07002045 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002046 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002047 /*
2048 * RFC 3530 14.2.34 CASE 3:
2049 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -07002050 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002051 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 status = nfserr_clid_inuse;
2053 } else {
NeilBrown1a69c172005-06-23 22:04:08 -07002054 unsigned int hash =
2055 clientstr_hashval(unconf->cl_recdir);
2056 conf = find_confirmed_client_by_str(unconf->cl_recdir,
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002057 hash);
NeilBrown1a69c172005-06-23 22:04:08 -07002058 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -07002059 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002060 expire_client(conf);
2061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -07002063 conf = unconf;
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -04002064 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002065 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002067 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
2068 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -07002069 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002070 /*
2071 * RFC 3530 14.2.34 CASE 4:
2072 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -07002073 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -07002075 } else {
NeilBrown08e89872005-06-23 22:04:11 -07002076 /* check that we have hit one of the cases...*/
2077 status = nfserr_clid_inuse;
2078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 nfs4_unlock_state();
2081 return status;
2082}
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084/* OPEN Share state helper functions */
2085static inline struct nfs4_file *
2086alloc_init_file(struct inode *ino)
2087{
2088 struct nfs4_file *fp;
2089 unsigned int hashval = file_hashval(ino);
2090
NeilBrowne60d4392005-06-23 22:03:01 -07002091 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
2092 if (fp) {
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002093 atomic_set(&fp->fi_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -07002095 INIT_LIST_HEAD(&fp->fi_stateids);
2096 INIT_LIST_HEAD(&fp->fi_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 fp->fi_inode = igrab(ino);
2098 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07002099 fp->fi_had_conflict = false;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002100 fp->fi_lease = NULL;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002101 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2102 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Pavel Emelyanov47cee542010-05-17 20:00:37 +04002103 spin_lock(&recall_lock);
2104 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
2105 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 return fp;
2107 }
2108 return NULL;
2109}
2110
2111static void
Christoph Lametere18b8902006-12-06 20:33:20 -08002112nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07002113{
NeilBrowne60d4392005-06-23 22:03:01 -07002114 if (*slab == NULL)
2115 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07002116 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002117 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07002118}
2119
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04002120void
NeilBrowne60d4392005-06-23 22:03:01 -07002121nfsd4_free_slabs(void)
2122{
2123 nfsd4_free_slab(&stateowner_slab);
2124 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07002125 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002126 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002127}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129static int
2130nfsd4_init_slabs(void)
2131{
2132 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09002133 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002134 if (stateowner_slab == NULL)
2135 goto out_nomem;
2136 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09002137 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002138 if (file_slab == NULL)
2139 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07002140 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09002141 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07002142 if (stateid_slab == NULL)
2143 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07002144 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09002145 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002146 if (deleg_slab == NULL)
2147 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07002149out_nomem:
2150 nfsd4_free_slabs();
2151 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2152 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155void
2156nfs4_free_stateowner(struct kref *kref)
2157{
2158 struct nfs4_stateowner *sop =
2159 container_of(kref, struct nfs4_stateowner, so_ref);
2160 kfree(sop->so_owner.data);
2161 kmem_cache_free(stateowner_slab, sop);
2162}
2163
2164static inline struct nfs4_stateowner *
2165alloc_stateowner(struct xdr_netobj *owner)
2166{
2167 struct nfs4_stateowner *sop;
2168
2169 if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) {
2170 if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) {
2171 memcpy(sop->so_owner.data, owner->data, owner->len);
2172 sop->so_owner.len = owner->len;
2173 kref_init(&sop->so_ref);
2174 return sop;
2175 }
2176 kmem_cache_free(stateowner_slab, sop);
2177 }
2178 return NULL;
2179}
2180
2181static struct nfs4_stateowner *
2182alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
2183 struct nfs4_stateowner *sop;
2184 struct nfs4_replay *rp;
2185 unsigned int idhashval;
2186
2187 if (!(sop = alloc_stateowner(&open->op_owner)))
2188 return NULL;
2189 idhashval = ownerid_hashval(current_ownerid);
2190 INIT_LIST_HEAD(&sop->so_idhash);
2191 INIT_LIST_HEAD(&sop->so_strhash);
2192 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07002193 INIT_LIST_HEAD(&sop->so_stateids);
2194 INIT_LIST_HEAD(&sop->so_perstateid); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 INIT_LIST_HEAD(&sop->so_close_lru);
2196 sop->so_time = 0;
2197 list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]);
2198 list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002199 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 sop->so_is_open_owner = 1;
2201 sop->so_id = current_ownerid++;
2202 sop->so_client = clp;
2203 sop->so_seqid = open->op_seqid;
2204 sop->so_confirmed = 0;
2205 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08002206 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 rp->rp_buflen = 0;
2208 rp->rp_buf = rp->rp_ibuf;
2209 return sop;
2210}
2211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212static inline void
2213init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
2214 struct nfs4_stateowner *sop = open->op_stateowner;
2215 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2216
2217 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07002218 INIT_LIST_HEAD(&stp->st_perstateowner);
2219 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 INIT_LIST_HEAD(&stp->st_perfile);
2221 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002222 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07002223 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07002225 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 stp->st_file = fp;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04002227 stp->st_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 stp->st_stateid.si_stateownerid = sop->so_id;
2229 stp->st_stateid.si_fileid = fp->fi_id;
2230 stp->st_stateid.si_generation = 0;
2231 stp->st_access_bmap = 0;
2232 stp->st_deny_bmap = 0;
Andy Adamson84459a12009-04-03 08:28:56 +03002233 __set_bit(open->op_share_access & ~NFS4_SHARE_WANT_MASK,
2234 &stp->st_access_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07002236 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
2238
2239static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240move_to_close_lru(struct nfs4_stateowner *sop)
2241{
2242 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
2243
NeilBrown358dd552006-04-10 22:55:42 -07002244 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 sop->so_time = get_seconds();
2246}
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002249same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
2250 clientid_t *clid)
2251{
2252 return (sop->so_owner.len == owner->len) &&
2253 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
2254 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255}
2256
2257static struct nfs4_stateowner *
2258find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
2259{
2260 struct nfs4_stateowner *so = NULL;
2261
2262 list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002263 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 return so;
2265 }
2266 return NULL;
2267}
2268
2269/* search file_hashtbl[] for file */
2270static struct nfs4_file *
2271find_file(struct inode *ino)
2272{
2273 unsigned int hashval = file_hashval(ino);
2274 struct nfs4_file *fp;
2275
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002276 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07002278 if (fp->fi_inode == ino) {
2279 get_nfs4_file(fp);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002280 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07002282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002284 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 return NULL;
2286}
2287
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002288static inline int access_valid(u32 x, u32 minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002289{
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002290 if ((x & NFS4_SHARE_ACCESS_MASK) < NFS4_SHARE_ACCESS_READ)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002291 return 0;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002292 if ((x & NFS4_SHARE_ACCESS_MASK) > NFS4_SHARE_ACCESS_BOTH)
2293 return 0;
2294 x &= ~NFS4_SHARE_ACCESS_MASK;
2295 if (minorversion && x) {
2296 if ((x & NFS4_SHARE_WANT_MASK) > NFS4_SHARE_WANT_CANCEL)
2297 return 0;
2298 if ((x & NFS4_SHARE_WHEN_MASK) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED)
2299 return 0;
2300 x &= ~(NFS4_SHARE_WANT_MASK | NFS4_SHARE_WHEN_MASK);
2301 }
2302 if (x)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002303 return 0;
2304 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002305}
2306
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002307static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002308{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002309 /* Note: unlike access bits, deny bits may be zero. */
2310 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002311}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04002313/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 * Called to check deny when READ with all zero stateid or
2315 * WRITE with all zero or all one stateid
2316 */
Al Virob37ad282006-10-19 23:28:59 -07002317static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2319{
2320 struct inode *ino = current_fh->fh_dentry->d_inode;
2321 struct nfs4_file *fp;
2322 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07002323 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325 dprintk("NFSD: nfs4_share_conflict\n");
2326
2327 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002328 if (!fp)
2329 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07002330 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07002332 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
2333 if (test_bit(deny_type, &stp->st_deny_bmap) ||
2334 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
2335 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
NeilBrown13cd2182005-06-23 22:03:10 -07002337 ret = nfs_ok;
2338out:
2339 put_nfs4_file(fp);
2340 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341}
2342
2343static inline void
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002344nfs4_file_downgrade(struct nfs4_file *fp, unsigned int share_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345{
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002346 if (share_access & NFS4_SHARE_ACCESS_WRITE)
2347 nfs4_file_put_access(fp, O_WRONLY);
2348 if (share_access & NFS4_SHARE_ACCESS_READ)
2349 nfs4_file_put_access(fp, O_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002352static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 /* We're assuming the state code never drops its reference
2355 * without first removing the lease. Since we're in this lease
2356 * callback (and since the lease code is serialized by the kernel
2357 * lock) we know the server hasn't removed the lease yet, we know
2358 * it's safe to take a reference: */
2359 atomic_inc(&dp->dl_count);
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Arnd Bergmann460781b2010-11-17 16:26:56 +01002363 /* only place dl_time is set. protected by lock_flocks*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 dp->dl_time = get_seconds();
2365
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002366 nfsd4_cb_recall(dp);
2367}
2368
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002369/* Called from break_lease() with lock_flocks() held. */
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002370static void nfsd_break_deleg_cb(struct file_lock *fl)
2371{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002372 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
2373 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002374
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002375 BUG_ON(!fp);
2376 /* We assume break_lease is only called once per lease: */
2377 BUG_ON(fp->fi_had_conflict);
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04002378 /*
2379 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002380 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002381 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04002382 */
2383 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
J. Bruce Fields5d926e82011-02-07 16:53:46 -05002385 spin_lock(&recall_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002386 fp->fi_had_conflict = true;
2387 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2388 nfsd_break_one_deleg(dp);
J. Bruce Fields5d926e82011-02-07 16:53:46 -05002389 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390}
2391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392static
2393int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2394{
2395 if (arg & F_UNLCK)
2396 return lease_modify(onlist, arg);
2397 else
2398 return -EAGAIN;
2399}
2400
Alexey Dobriyan7b021962009-09-21 17:01:12 -07002401static const struct lock_manager_operations nfsd_lease_mng_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 .fl_break = nfsd_break_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 .fl_change = nfsd_change_deleg_cb,
2404};
2405
2406
Al Virob37ad282006-10-19 23:28:59 -07002407__be32
Andy Adamson66689582009-04-03 08:28:45 +03002408nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2409 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 clientid_t *clientid = &open->op_clientid;
2412 struct nfs4_client *clp = NULL;
2413 unsigned int strhashval;
2414 struct nfs4_stateowner *sop = NULL;
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002417 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 if (STALE_CLIENTID(&open->op_clientid))
2420 return nfserr_stale_clientid;
2421
2422 strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner);
2423 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002424 open->op_stateowner = sop;
2425 if (!sop) {
2426 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 clp = find_confirmed_client(clientid);
2428 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002429 return nfserr_expired;
2430 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 }
Andy Adamson66689582009-04-03 08:28:45 +03002432 /* When sessions are used, skip open sequenceid processing */
2433 if (nfsd4_has_session(cstate))
2434 goto renew;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002435 if (!sop->so_confirmed) {
2436 /* Replace unconfirmed owners without checking for replay. */
2437 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002438 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002439 open->op_stateowner = NULL;
2440 goto renew;
2441 }
2442 if (open->op_seqid == sop->so_seqid - 1) {
2443 if (sop->so_replay.rp_buflen)
Al Viroa90b0612006-10-19 23:29:03 -07002444 return nfserr_replay_me;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002445 /* The original OPEN failed so spectacularly
2446 * that we don't even have replay data saved!
2447 * Therefore, we have no choice but to continue
2448 * processing this OPEN; presumably, we'll
2449 * fail again for the same reason.
2450 */
2451 dprintk("nfsd4_process_open1: replay with no replay cache\n");
2452 goto renew;
2453 }
2454 if (open->op_seqid != sop->so_seqid)
2455 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002457 if (open->op_stateowner == NULL) {
2458 sop = alloc_init_open_stateowner(strhashval, clp, open);
2459 if (sop == NULL)
2460 return nfserr_resource;
2461 open->op_stateowner = sop;
2462 }
2463 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002465 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
Al Virob37ad282006-10-19 23:28:59 -07002468static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07002469nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2470{
2471 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2472 return nfserr_openmode;
2473 else
2474 return nfs_ok;
2475}
2476
NeilBrown52f4fb42005-06-23 22:02:49 -07002477static struct nfs4_delegation *
2478find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
2479{
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002480 struct nfs4_delegation *dp;
NeilBrown52f4fb42005-06-23 22:02:49 -07002481
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002482 spin_lock(&recall_lock);
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002483 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2484 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid) {
2485 spin_unlock(&recall_lock);
2486 return dp;
2487 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002488 spin_unlock(&recall_lock);
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002489 return NULL;
NeilBrown52f4fb42005-06-23 22:02:49 -07002490}
2491
Daniel Mackc47d8322011-05-16 16:38:14 +02002492static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04002493{
2494 share_access &= ~NFS4_SHARE_WANT_MASK;
2495
2496 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
2497}
2498
Al Virob37ad282006-10-19 23:28:59 -07002499static __be32
NeilBrown567d9822005-06-23 22:02:53 -07002500nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
2501 struct nfs4_delegation **dp)
2502{
2503 int flags;
Al Virob37ad282006-10-19 23:28:59 -07002504 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07002505
2506 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
2507 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07002508 goto out;
J. Bruce Fields24a01112010-05-18 20:01:35 -04002509 flags = share_access_to_flags(open->op_share_access);
NeilBrown567d9822005-06-23 22:02:53 -07002510 status = nfs4_check_delegmode(*dp, flags);
2511 if (status)
2512 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002513out:
2514 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
2515 return nfs_ok;
2516 if (status)
2517 return status;
2518 open->op_stateowner->so_confirmed = 1;
2519 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07002520}
2521
Al Virob37ad282006-10-19 23:28:59 -07002522static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
2524{
2525 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07002526 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 struct nfs4_stateowner *sop = open->op_stateowner;
2528
NeilBrown8beefa22005-06-23 22:03:08 -07002529 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 /* ignore lock owners */
2531 if (local->st_stateowner->so_is_open_owner == 0)
2532 continue;
2533 /* remember if we have seen this open owner */
2534 if (local->st_stateowner == sop)
2535 *stpp = local;
2536 /* check for conflicting share reservations */
2537 if (!test_share(local, open))
2538 goto out;
2539 }
2540 status = 0;
2541out:
2542 return status;
2543}
2544
NeilBrown5ac049a2005-06-23 22:03:03 -07002545static inline struct nfs4_stateid *
2546nfs4_alloc_stateid(void)
2547{
2548 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
2549}
2550
J. Bruce Fields21fb4012010-07-28 12:21:23 -04002551static inline int nfs4_access_to_access(u32 nfs4_access)
2552{
2553 int flags = 0;
2554
2555 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
2556 flags |= NFSD_MAY_READ;
2557 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
2558 flags |= NFSD_MAY_WRITE;
2559 return flags;
2560}
2561
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002562static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file
2563*fp, struct svc_fh *cur_fh, u32 nfs4_access)
2564{
2565 __be32 status;
2566 int oflag = nfs4_access_to_omode(nfs4_access);
2567 int access = nfs4_access_to_access(nfs4_access);
2568
2569 if (!fp->fi_fds[oflag]) {
2570 status = nfsd_open(rqstp, cur_fh, S_IFREG, access,
2571 &fp->fi_fds[oflag]);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002572 if (status)
2573 return status;
2574 }
2575 nfs4_file_get_access(fp, oflag);
2576
2577 return nfs_ok;
2578}
2579
Al Virob37ad282006-10-19 23:28:59 -07002580static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002582 struct nfs4_file *fp, struct svc_fh *cur_fh,
2583 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
2585 struct nfs4_stateid *stp;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002586 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
NeilBrown5ac049a2005-06-23 22:03:03 -07002588 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (stp == NULL)
2590 return nfserr_resource;
2591
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002592 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open->op_share_access);
2593 if (status) {
2594 kmem_cache_free(stateid_slab, stp);
2595 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 *stpp = stp;
2598 return 0;
2599}
2600
Al Virob37ad282006-10-19 23:28:59 -07002601static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2603 struct nfsd4_open *open)
2604{
2605 struct iattr iattr = {
2606 .ia_valid = ATTR_SIZE,
2607 .ia_size = 0,
2608 };
2609 if (!open->op_truncate)
2610 return 0;
2611 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08002612 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2614}
2615
Al Virob37ad282006-10-19 23:28:59 -07002616static __be32
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002617nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
J. Bruce Fields7d947842010-08-20 18:09:31 -04002619 u32 op_share_access = open->op_share_access & ~NFS4_SHARE_WANT_MASK;
2620 bool new_access;
Al Virob37ad282006-10-19 23:28:59 -07002621 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
J. Bruce Fields7d947842010-08-20 18:09:31 -04002623 new_access = !test_bit(op_share_access, &stp->st_access_bmap);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002624 if (new_access) {
J. Bruce Fields7d947842010-08-20 18:09:31 -04002625 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, op_share_access);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002626 if (status)
2627 return status;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 status = nfsd4_truncate(rqstp, cur_fh, open);
2630 if (status) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002631 if (new_access) {
2632 int oflag = nfs4_access_to_omode(new_access);
2633 nfs4_file_put_access(fp, oflag);
2634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 return status;
2636 }
2637 /* remember the open */
J. Bruce Fields24a01112010-05-18 20:01:35 -04002638 __set_bit(op_share_access, &stp->st_access_bmap);
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04002639 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
2641 return nfs_ok;
2642}
2643
2644
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645static void
NeilBrown37515172005-07-07 17:59:16 -07002646nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647{
NeilBrown37515172005-07-07 17:59:16 -07002648 open->op_stateowner->so_confirmed = 1;
2649 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650}
2651
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002652/* Should we give out recallable state?: */
2653static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
2654{
2655 if (clp->cl_cb_state == NFSD4_CB_UP)
2656 return true;
2657 /*
2658 * In the sessions case, since we don't have to establish a
2659 * separate connection for callbacks, we assume it's OK
2660 * until we hear otherwise:
2661 */
2662 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
2663}
2664
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002665static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag)
2666{
2667 struct file_lock *fl;
2668
2669 fl = locks_alloc_lock();
2670 if (!fl)
2671 return NULL;
2672 locks_init_lock(fl);
2673 fl->fl_lmops = &nfsd_lease_mng_ops;
2674 fl->fl_flags = FL_LEASE;
2675 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
2676 fl->fl_end = OFFSET_MAX;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002677 fl->fl_owner = (fl_owner_t)(dp->dl_file);
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002678 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002679 return fl;
2680}
2681
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002682static int nfs4_setlease(struct nfs4_delegation *dp, int flag)
2683{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002684 struct nfs4_file *fp = dp->dl_file;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002685 struct file_lock *fl;
2686 int status;
2687
2688 fl = nfs4_alloc_init_lease(dp, flag);
2689 if (!fl)
2690 return -ENOMEM;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002691 fl->fl_file = find_readable_file(fp);
2692 list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations);
2693 status = vfs_setlease(fl->fl_file, fl->fl_type, &fl);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002694 if (status) {
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002695 list_del_init(&dp->dl_perclnt);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002696 locks_free_lock(fl);
2697 return -ENOMEM;
2698 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002699 fp->fi_lease = fl;
2700 fp->fi_deleg_file = fl->fl_file;
2701 get_file(fp->fi_deleg_file);
2702 atomic_set(&fp->fi_delegees, 1);
2703 list_add(&dp->dl_perfile, &fp->fi_delegations);
2704 return 0;
2705}
2706
2707static int nfs4_set_delegation(struct nfs4_delegation *dp, int flag)
2708{
2709 struct nfs4_file *fp = dp->dl_file;
2710
2711 if (!fp->fi_lease)
2712 return nfs4_setlease(dp, flag);
2713 spin_lock(&recall_lock);
2714 if (fp->fi_had_conflict) {
2715 spin_unlock(&recall_lock);
2716 return -EAGAIN;
2717 }
2718 atomic_inc(&fp->fi_delegees);
2719 list_add(&dp->dl_perfile, &fp->fi_delegations);
2720 spin_unlock(&recall_lock);
2721 list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002722 return 0;
2723}
2724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725/*
2726 * Attempt to hand out a delegation.
2727 */
2728static void
2729nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
2730{
2731 struct nfs4_delegation *dp;
2732 struct nfs4_stateowner *sop = stp->st_stateowner;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002733 int cb_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 int status, flag = 0;
2735
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002736 cb_up = nfsd4_cb_channel_good(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07002738 open->op_recall = 0;
2739 switch (open->op_claim_type) {
2740 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002741 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07002742 open->op_recall = 1;
2743 flag = open->op_delegate_type;
2744 if (flag == NFS4_OPEN_DELEGATE_NONE)
2745 goto out;
2746 break;
2747 case NFS4_OPEN_CLAIM_NULL:
2748 /* Let's not give out any delegations till everyone's
2749 * had the chance to reclaim theirs.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002750 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07002751 goto out;
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002752 if (!cb_up || !sop->so_confirmed)
NeilBrown7b190fe2005-06-23 22:03:23 -07002753 goto out;
2754 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2755 flag = NFS4_OPEN_DELEGATE_WRITE;
2756 else
2757 flag = NFS4_OPEN_DELEGATE_READ;
2758 break;
2759 default:
2760 goto out;
2761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002764 if (dp == NULL)
2765 goto out_no_deleg;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002766 status = nfs4_set_delegation(dp, flag);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002767 if (status)
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002768 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
2770 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
2771
Benny Halevy8c10cbd2009-10-19 12:04:53 +02002772 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
2773 STATEID_VAL(&dp->dl_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774out:
NeilBrown7b190fe2005-06-23 22:03:23 -07002775 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
2776 && flag == NFS4_OPEN_DELEGATE_NONE
2777 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002778 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 open->op_delegate_type = flag;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002780 return;
2781out_free:
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002782 nfs4_put_delegation(dp);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002783out_no_deleg:
2784 flag = NFS4_OPEN_DELEGATE_NONE;
2785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786}
2787
2788/*
2789 * called with nfs4_lock_state() held.
2790 */
Al Virob37ad282006-10-19 23:28:59 -07002791__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2793{
Andy Adamson66689582009-04-03 08:28:45 +03002794 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 struct nfs4_file *fp = NULL;
2796 struct inode *ino = current_fh->fh_dentry->d_inode;
2797 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07002798 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07002799 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801 status = nfserr_inval;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002802 if (!access_valid(open->op_share_access, resp->cstate.minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002803 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 goto out;
2805 /*
2806 * Lookup file; if found, lookup stateid and check open request,
2807 * and check for delegations in the process of being recalled.
2808 * If not found, create the nfs4_file struct
2809 */
2810 fp = find_file(ino);
2811 if (fp) {
2812 if ((status = nfs4_check_open(fp, open, &stp)))
2813 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002814 status = nfs4_check_deleg(fp, open, &dp);
2815 if (status)
2816 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07002818 status = nfserr_bad_stateid;
2819 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2820 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 status = nfserr_resource;
2822 fp = alloc_init_file(ino);
2823 if (fp == NULL)
2824 goto out;
2825 }
2826
2827 /*
2828 * OPEN the file, or upgrade an existing OPEN.
2829 * If truncate fails, the OPEN fails.
2830 */
2831 if (stp) {
2832 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002833 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 if (status)
2835 goto out;
NeilBrown444c2c02005-07-07 17:59:22 -07002836 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 } else {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002838 status = nfs4_new_open(rqstp, &stp, fp, current_fh, open);
NeilBrown567d9822005-06-23 22:02:53 -07002839 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 goto out;
2841 init_stateid(stp, fp, open);
2842 status = nfsd4_truncate(rqstp, current_fh, open);
2843 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05002844 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 goto out;
2846 }
Andy Adamson66689582009-04-03 08:28:45 +03002847 if (nfsd4_has_session(&resp->cstate))
2848 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 }
2850 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
2851
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002852 if (nfsd4_has_session(&resp->cstate))
Andy Adamson66689582009-04-03 08:28:45 +03002853 open->op_stateowner->so_confirmed = 1;
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 /*
2856 * Attempt to hand out a delegation. No error return, because the
2857 * OPEN succeeds even if we fail.
2858 */
2859 nfs4_open_delegation(current_fh, open, stp);
2860
2861 status = nfs_ok;
2862
Benny Halevy8c10cbd2009-10-19 12:04:53 +02002863 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
2864 STATEID_VAL(&stp->st_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865out:
NeilBrown13cd2182005-06-23 22:03:10 -07002866 if (fp)
2867 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07002868 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
2869 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 /*
2871 * To finish the open response, we just need to set the rflags.
2872 */
2873 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Andy Adamson66689582009-04-03 08:28:45 +03002874 if (!open->op_stateowner->so_confirmed &&
2875 !nfsd4_has_session(&resp->cstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
2877
2878 return status;
2879}
2880
Al Virob37ad282006-10-19 23:28:59 -07002881__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002882nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2883 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884{
2885 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07002886 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888 nfs4_lock_state();
2889 dprintk("process_renew(%08x/%08x): starting\n",
2890 clid->cl_boot, clid->cl_id);
2891 status = nfserr_stale_clientid;
2892 if (STALE_CLIENTID(clid))
2893 goto out;
2894 clp = find_confirmed_client(clid);
2895 status = nfserr_expired;
2896 if (clp == NULL) {
2897 /* We assume the client took too long to RENEW. */
2898 dprintk("nfsd4_renew: clientid not found!\n");
2899 goto out;
2900 }
2901 renew_client(clp);
2902 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07002903 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04002904 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 goto out;
2906 status = nfs_ok;
2907out:
2908 nfs4_unlock_state();
2909 return status;
2910}
2911
Daniel Mackc47d8322011-05-16 16:38:14 +02002912static struct lock_manager nfsd4_manager = {
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002913};
2914
NeilBrowna76b4312005-06-23 22:04:01 -07002915static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002916nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07002917{
2918 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07002919 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002920 locks_end_grace(&nfsd4_manager);
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05002921 /*
2922 * Now that every NFSv4 client has had the chance to recover and
2923 * to see the (possibly new, possibly shorter) lease time, we
2924 * can safely set the next grace time to the current lease time:
2925 */
2926 nfsd4_grace = nfsd4_lease;
NeilBrowna76b4312005-06-23 22:04:01 -07002927}
2928
NeilBrownfd39ca92005-06-23 22:04:03 -07002929static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930nfs4_laundromat(void)
2931{
2932 struct nfs4_client *clp;
2933 struct nfs4_stateowner *sop;
2934 struct nfs4_delegation *dp;
2935 struct list_head *pos, *next, reaplist;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05002936 time_t cutoff = get_seconds() - nfsd4_lease;
2937 time_t t, clientid_val = nfsd4_lease;
2938 time_t u, test_val = nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
2940 nfs4_lock_state();
2941
2942 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002943 if (locks_in_grace())
2944 nfsd4_end_grace();
Benny Halevy36acb662010-05-12 00:13:04 +03002945 INIT_LIST_HEAD(&reaplist);
2946 spin_lock(&client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 list_for_each_safe(pos, next, &client_lru) {
2948 clp = list_entry(pos, struct nfs4_client, cl_lru);
2949 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
2950 t = clp->cl_time - cutoff;
2951 if (clientid_val > t)
2952 clientid_val = t;
2953 break;
2954 }
Benny Halevyd7682982010-05-12 00:13:54 +03002955 if (atomic_read(&clp->cl_refcount)) {
2956 dprintk("NFSD: client in use (clientid %08x)\n",
2957 clp->cl_clientid.cl_id);
2958 continue;
2959 }
2960 unhash_client_locked(clp);
2961 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03002962 }
2963 spin_unlock(&client_lock);
2964 list_for_each_safe(pos, next, &reaplist) {
2965 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 dprintk("NFSD: purging unused client (clientid %08x)\n",
2967 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07002968 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 expire_client(clp);
2970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 spin_lock(&recall_lock);
2972 list_for_each_safe(pos, next, &del_recall_lru) {
2973 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
2974 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
2975 u = dp->dl_time - cutoff;
2976 if (test_val > u)
2977 test_val = u;
2978 break;
2979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 list_move(&dp->dl_recall_lru, &reaplist);
2981 }
2982 spin_unlock(&recall_lock);
2983 list_for_each_safe(pos, next, &reaplist) {
2984 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
2985 list_del_init(&dp->dl_recall_lru);
2986 unhash_delegation(dp);
2987 }
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05002988 test_val = nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 list_for_each_safe(pos, next, &close_lru) {
2990 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
2991 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
2992 u = sop->so_time - cutoff;
2993 if (test_val > u)
2994 test_val = u;
2995 break;
2996 }
2997 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
2998 sop->so_id);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002999 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 }
3001 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
3002 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
3003 nfs4_unlock_state();
3004 return clientid_val;
3005}
3006
Harvey Harrisona254b242008-02-20 12:49:00 -08003007static struct workqueue_struct *laundry_wq;
3008static void laundromat_main(struct work_struct *);
3009static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
3010
3011static void
David Howellsc4028952006-11-22 14:57:56 +00003012laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013{
3014 time_t t;
3015
3016 t = nfs4_laundromat();
3017 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07003018 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019}
3020
NeilBrownfd39ca92005-06-23 22:04:03 -07003021static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07003022search_close_lru(u32 st_id, int flags)
3023{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 struct nfs4_stateowner *local = NULL;
3025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 if (flags & CLOSE_STATE) {
3027 list_for_each_entry(local, &close_lru, so_close_lru) {
3028 if (local->so_id == st_id)
3029 return local;
3030 }
3031 }
3032 return NULL;
3033}
3034
3035static inline int
3036nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
3037{
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003038 return fhp->fh_dentry->d_inode != stp->st_file->fi_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039}
3040
3041static int
3042STALE_STATEID(stateid_t *stateid)
3043{
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003044 if (stateid->si_boot == boot_time)
3045 return 0;
3046 dprintk("NFSD: stale stateid " STATEID_FMT "!\n",
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003047 STATEID_VAL(stateid));
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003048 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049}
3050
3051static inline int
3052access_permit_read(unsigned long access_bmap)
3053{
3054 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
3055 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
3056 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
3057}
3058
3059static inline int
3060access_permit_write(unsigned long access_bmap)
3061{
3062 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
3063 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
3064}
3065
3066static
Al Virob37ad282006-10-19 23:28:59 -07003067__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Al Virob37ad282006-10-19 23:28:59 -07003069 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
J. Bruce Fields02921912010-07-29 15:16:59 -04003071 /* For lock stateid's, we test the parent open, not the lock: */
3072 if (stp->st_openstp)
3073 stp = stp->st_openstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
3075 goto out;
3076 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
3077 goto out;
3078 status = nfs_ok;
3079out:
3080 return status;
3081}
3082
Al Virob37ad282006-10-19 23:28:59 -07003083static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
3085{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003086 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003088 else if (locks_in_grace()) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003089 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 * conflicting state; so we must wait out the grace period. */
3091 return nfserr_grace;
3092 } else if (flags & WR_STATE)
3093 return nfs4_share_conflict(current_fh,
3094 NFS4_SHARE_DENY_WRITE);
3095 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
3096 return nfs4_share_conflict(current_fh,
3097 NFS4_SHARE_DENY_READ);
3098}
3099
3100/*
3101 * Allow READ/WRITE during grace period on recovered state only for files
3102 * that are not able to provide mandatory locking.
3103 */
3104static inline int
J. Bruce Fields18f82732009-02-21 15:23:01 -08003105grace_disallows_io(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003107 return locks_in_grace() && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108}
3109
Andy Adamson66689582009-04-03 08:28:45 +03003110static int check_stateid_generation(stateid_t *in, stateid_t *ref, int flags)
J. Bruce Fields0836f582008-01-26 19:08:12 -05003111{
Andy Adamson66689582009-04-03 08:28:45 +03003112 /*
3113 * When sessions are used the stateid generation number is ignored
3114 * when it is zero.
3115 */
3116 if ((flags & HAS_SESSION) && in->si_generation == 0)
3117 goto out;
3118
J. Bruce Fields0836f582008-01-26 19:08:12 -05003119 /* If the client sends us a stateid from the future, it's buggy: */
3120 if (in->si_generation > ref->si_generation)
3121 return nfserr_bad_stateid;
3122 /*
3123 * The following, however, can happen. For example, if the
3124 * client sends an open and some IO at the same time, the open
3125 * may bump si_generation while the IO is still in flight.
3126 * Thanks to hard links and renames, the client never knows what
3127 * file an open will affect. So it could avoid that situation
3128 * only by serializing all opens and IO from the same open
3129 * owner. To recover from the old_stateid error, the client
3130 * will just have to retry the IO:
3131 */
3132 if (in->si_generation < ref->si_generation)
3133 return nfserr_old_stateid;
Andy Adamson66689582009-04-03 08:28:45 +03003134out:
J. Bruce Fields0836f582008-01-26 19:08:12 -05003135 return nfs_ok;
3136}
3137
J. Bruce Fields3e633072009-02-21 13:17:19 -08003138static int is_delegation_stateid(stateid_t *stateid)
3139{
3140 return stateid->si_fileid == 0;
3141}
3142
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003143static int is_open_stateid(struct nfs4_stateid *stateid)
3144{
3145 return stateid->st_openstp == NULL;
3146}
3147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148/*
3149* Checks for stateid operations
3150*/
Al Virob37ad282006-10-19 23:28:59 -07003151__be32
Benny Halevydd453df2009-04-03 08:28:41 +03003152nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
3153 stateid_t *stateid, int flags, struct file **filpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154{
3155 struct nfs4_stateid *stp = NULL;
3156 struct nfs4_delegation *dp = NULL;
Benny Halevydd453df2009-04-03 08:28:41 +03003157 struct svc_fh *current_fh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07003159 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 if (filpp)
3162 *filpp = NULL;
3163
J. Bruce Fields18f82732009-02-21 15:23:01 -08003164 if (grace_disallows_io(ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 return nfserr_grace;
3166
Andy Adamson66689582009-04-03 08:28:45 +03003167 if (nfsd4_has_session(cstate))
3168 flags |= HAS_SESSION;
3169
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3171 return check_special_stateids(current_fh, stateid, flags);
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 status = nfserr_stale_stateid;
3174 if (STALE_STATEID(stateid))
3175 goto out;
3176
J. Bruce Fields33515142010-10-02 18:42:39 -04003177 /*
3178 * We assume that any stateid that has the current boot time,
3179 * but that we can't find, is expired:
3180 */
3181 status = nfserr_expired;
J. Bruce Fields3e633072009-02-21 13:17:19 -08003182 if (is_delegation_stateid(stateid)) {
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003183 dp = find_delegation_stateid(ino, stateid);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003184 if (!dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 goto out;
Andy Adamson66689582009-04-03 08:28:45 +03003186 status = check_stateid_generation(stateid, &dp->dl_stateid,
3187 flags);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08003188 if (status)
3189 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08003190 status = nfs4_check_delegmode(dp, flags);
3191 if (status)
3192 goto out;
3193 renew_client(dp->dl_client);
Dan Carpenter43b01782010-10-27 23:19:04 +02003194 if (filpp) {
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003195 *filpp = dp->dl_file->fi_deleg_file;
Dan Carpenter43b01782010-10-27 23:19:04 +02003196 BUG_ON(!*filpp);
3197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003199 stp = find_stateid(stateid, flags);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003200 if (!stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 goto out;
J. Bruce Fields33515142010-10-02 18:42:39 -04003202 status = nfserr_bad_stateid;
J. Bruce Fields6150ef02009-02-21 13:36:16 -08003203 if (nfs4_check_fh(current_fh, stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 goto out;
3205 if (!stp->st_stateowner->so_confirmed)
3206 goto out;
Andy Adamson66689582009-04-03 08:28:45 +03003207 status = check_stateid_generation(stateid, &stp->st_stateid,
3208 flags);
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08003209 if (status)
3210 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003211 status = nfs4_check_openmode(stp, flags);
3212 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 goto out;
3214 renew_client(stp->st_stateowner->so_client);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003215 if (filpp) {
3216 if (flags & RD_STATE)
3217 *filpp = find_readable_file(stp->st_file);
3218 else
3219 *filpp = find_writeable_file(stp->st_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 }
3222 status = nfs_ok;
3223out:
3224 return status;
3225}
3226
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003227static __be32
3228nfsd4_free_delegation_stateid(stateid_t *stateid)
3229{
3230 struct nfs4_delegation *dp = search_for_delegation(stateid);
3231 if (dp)
3232 return nfserr_locks_held;
3233 return nfserr_bad_stateid;
3234}
3235
3236static __be32
3237nfsd4_free_lock_stateid(struct nfs4_stateid *stp)
3238{
3239 if (check_for_locks(stp->st_file, stp->st_stateowner))
3240 return nfserr_locks_held;
3241 release_lock_stateid(stp);
3242 return nfs_ok;
3243}
3244
3245/*
3246 * Free a state id
3247 */
3248__be32
3249nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3250 struct nfsd4_free_stateid *free_stateid)
3251{
3252 stateid_t *stateid = &free_stateid->fr_stateid;
3253 struct nfs4_stateid *stp;
3254 __be32 ret;
3255
3256 nfs4_lock_state();
3257 if (is_delegation_stateid(stateid)) {
3258 ret = nfsd4_free_delegation_stateid(stateid);
3259 goto out;
3260 }
3261
3262 stp = search_for_stateid(stateid);
3263 if (!stp) {
3264 ret = nfserr_bad_stateid;
3265 goto out;
3266 }
3267 if (stateid->si_generation != 0) {
3268 if (stateid->si_generation < stp->st_stateid.si_generation) {
3269 ret = nfserr_old_stateid;
3270 goto out;
3271 }
3272 if (stateid->si_generation > stp->st_stateid.si_generation) {
3273 ret = nfserr_bad_stateid;
3274 goto out;
3275 }
3276 }
3277
3278 if (is_open_stateid(stp)) {
3279 ret = nfserr_locks_held;
3280 goto out;
3281 } else {
3282 ret = nfsd4_free_lock_stateid(stp);
3283 goto out;
3284 }
3285
3286out:
3287 nfs4_unlock_state();
3288 return ret;
3289}
3290
NeilBrown4c4cd222005-07-07 17:59:27 -07003291static inline int
3292setlkflg (int type)
3293{
3294 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
3295 RD_STATE : WR_STATE;
3296}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
3298/*
3299 * Checks for sequence id mutating operations.
3300 */
Al Virob37ad282006-10-19 23:28:59 -07003301static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03003302nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
3303 stateid_t *stateid, int flags,
3304 struct nfs4_stateowner **sopp,
3305 struct nfs4_stateid **stpp, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 struct nfs4_stateid *stp;
3308 struct nfs4_stateowner *sop;
Benny Halevydd453df2009-04-03 08:28:41 +03003309 struct svc_fh *current_fh = &cstate->current_fh;
J. Bruce Fields0836f582008-01-26 19:08:12 -05003310 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003312 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
3313 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07003314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 *stpp = NULL;
3316 *sopp = NULL;
3317
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003319 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07003320 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 }
3322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07003324 return nfserr_stale_stateid;
Andy Adamson66689582009-04-03 08:28:45 +03003325
3326 if (nfsd4_has_session(cstate))
3327 flags |= HAS_SESSION;
3328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 /*
3330 * We return BAD_STATEID if filehandle doesn't match stateid,
3331 * the confirmed flag is incorrecly set, or the generation
3332 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 */
NeilBrownf8816512005-07-07 17:59:25 -07003334 stp = find_stateid(stateid, flags);
3335 if (stp == NULL) {
3336 /*
3337 * Also, we should make sure this isn't just the result of
3338 * a replayed close:
3339 */
3340 sop = search_close_lru(stateid->si_stateownerid, flags);
J. Bruce Fields33515142010-10-02 18:42:39 -04003341 /* It's not stale; let's assume it's expired: */
NeilBrownf8816512005-07-07 17:59:25 -07003342 if (sop == NULL)
J. Bruce Fields33515142010-10-02 18:42:39 -04003343 return nfserr_expired;
NeilBrownf8816512005-07-07 17:59:25 -07003344 *sopp = sop;
3345 goto check_replay;
3346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
J. Bruce Fields39325bd2007-11-26 17:06:39 -05003348 *stpp = stp;
3349 *sopp = sop = stp->st_stateowner;
3350
NeilBrown4c4cd222005-07-07 17:59:27 -07003351 if (lock) {
NeilBrown4c4cd222005-07-07 17:59:27 -07003352 clientid_t *lockclid = &lock->v.new.clientid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 struct nfs4_client *clp = sop->so_client;
NeilBrown4c4cd222005-07-07 17:59:27 -07003354 int lkflg = 0;
Al Virob37ad282006-10-19 23:28:59 -07003355 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
NeilBrown4c4cd222005-07-07 17:59:27 -07003357 lkflg = setlkflg(lock->lk_type);
3358
3359 if (lock->lk_is_new) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003360 if (!sop->so_is_open_owner)
3361 return nfserr_bad_stateid;
Andy Adamson60adfc52009-04-03 08:28:50 +03003362 if (!(flags & HAS_SESSION) &&
3363 !same_clid(&clp->cl_clientid, lockclid))
3364 return nfserr_bad_stateid;
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003365 /* stp is the open stateid */
3366 status = nfs4_check_openmode(stp, lkflg);
3367 if (status)
3368 return status;
3369 } else {
3370 /* stp is the lock stateid */
3371 status = nfs4_check_openmode(stp->st_openstp, lkflg);
3372 if (status)
3373 return status;
NeilBrown4c4cd222005-07-07 17:59:27 -07003374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
3376
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003377 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003378 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07003379 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 }
3381
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 /*
3383 * We now validate the seqid and stateid generation numbers.
3384 * For the moment, we ignore the possibility of
3385 * generation number wraparound.
3386 */
Andy Adamson66689582009-04-03 08:28:45 +03003387 if (!(flags & HAS_SESSION) && seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 goto check_replay;
3389
NeilBrown3a4f98b2005-07-07 17:59:26 -07003390 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003391 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003392 " unconfirmed stateowner!\n");
3393 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07003395 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003396 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003397 " confirmed yet!\n");
3398 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 }
Andy Adamson66689582009-04-03 08:28:45 +03003400 status = check_stateid_generation(stateid, &stp->st_stateid, flags);
J. Bruce Fields0836f582008-01-26 19:08:12 -05003401 if (status)
3402 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07003403 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07003404 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07003407 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07003408 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 /* indicate replay to calling function */
Al Viroa90b0612006-10-19 23:29:03 -07003410 return nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 }
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003412 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
NeilBrown3a4f98b2005-07-07 17:59:26 -07003413 sop->so_seqid, seqid);
3414 *sopp = NULL;
3415 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416}
3417
Al Virob37ad282006-10-19 23:28:59 -07003418__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003419nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003420 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421{
Al Virob37ad282006-10-19 23:28:59 -07003422 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 struct nfs4_stateowner *sop;
3424 struct nfs4_stateid *stp;
3425
3426 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003427 (int)cstate->current_fh.fh_dentry->d_name.len,
3428 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003430 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07003431 if (status)
3432 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
3434 nfs4_lock_state();
3435
Benny Halevydd453df2009-04-03 08:28:41 +03003436 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003437 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003438 CONFIRM | OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 &oc->oc_stateowner, &stp, NULL)))
3440 goto out;
3441
3442 sop = oc->oc_stateowner;
3443 sop->so_confirmed = 1;
3444 update_stateid(&stp->st_stateid);
3445 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003446 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
3447 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07003448
3449 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450out:
Neil Brownf2327d92005-09-13 01:25:37 -07003451 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 nfs4_get_stateowner(oc->oc_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003453 cstate->replay_owner = oc->oc_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 nfs4_unlock_state();
3456 return status;
3457}
3458
3459
3460/*
3461 * unset all bits in union bitmap (bmap) that
3462 * do not exist in share (from successful OPEN_DOWNGRADE)
3463 */
3464static void
3465reset_union_bmap_access(unsigned long access, unsigned long *bmap)
3466{
3467 int i;
3468 for (i = 1; i < 4; i++) {
3469 if ((i & access) != i)
3470 __clear_bit(i, bmap);
3471 }
3472}
3473
3474static void
3475reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
3476{
3477 int i;
3478 for (i = 0; i < 4; i++) {
3479 if ((i & deny) != i)
3480 __clear_bit(i, bmap);
3481 }
3482}
3483
Al Virob37ad282006-10-19 23:28:59 -07003484__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003485nfsd4_open_downgrade(struct svc_rqst *rqstp,
3486 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003487 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488{
Al Virob37ad282006-10-19 23:28:59 -07003489 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 struct nfs4_stateid *stp;
3491 unsigned int share_access;
3492
3493 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003494 (int)cstate->current_fh.fh_dentry->d_name.len,
3495 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
Andy Adamsond87a8ad2009-04-03 08:28:53 +03003497 if (!access_valid(od->od_share_access, cstate->minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07003498 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 return nfserr_inval;
3500
3501 nfs4_lock_state();
Benny Halevydd453df2009-04-03 08:28:41 +03003502 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003503 od->od_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 &od->od_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003505 OPEN_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 &od->od_stateowner, &stp, NULL)))
3507 goto out;
3508
3509 status = nfserr_inval;
3510 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
3511 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
3512 stp->st_access_bmap, od->od_share_access);
3513 goto out;
3514 }
3515 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
3516 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3517 stp->st_deny_bmap, od->od_share_deny);
3518 goto out;
3519 }
3520 set_access(&share_access, stp->st_access_bmap);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003521 nfs4_file_downgrade(stp->st_file, share_access & ~od->od_share_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
3523 reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap);
3524 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
3525
3526 update_stateid(&stp->st_stateid);
3527 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
3528 status = nfs_ok;
3529out:
Neil Brownf2327d92005-09-13 01:25:37 -07003530 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 nfs4_get_stateowner(od->od_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003532 cstate->replay_owner = od->od_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 nfs4_unlock_state();
3535 return status;
3536}
3537
3538/*
3539 * nfs4_unlock_state() called after encode
3540 */
Al Virob37ad282006-10-19 23:28:59 -07003541__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003542nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003543 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544{
Al Virob37ad282006-10-19 23:28:59 -07003545 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 struct nfs4_stateid *stp;
3547
3548 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003549 (int)cstate->current_fh.fh_dentry->d_name.len,
3550 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
3552 nfs4_lock_state();
3553 /* check close_lru for replay */
Benny Halevydd453df2009-04-03 08:28:41 +03003554 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003555 close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 &close->cl_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003557 OPEN_STATE | CLOSE_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 &close->cl_stateowner, &stp, NULL)))
3559 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 status = nfs_ok;
3561 update_stateid(&stp->st_stateid);
3562 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
3563
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003564 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05003565 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003566
3567 /* place unused nfs4_stateowners on so_close_lru list to be
3568 * released by the laundromat service after the lease period
3569 * to enable us to handle CLOSE replay
3570 */
3571 if (list_empty(&close->cl_stateowner->so_stateids))
3572 move_to_close_lru(close->cl_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573out:
Neil Brownf2327d92005-09-13 01:25:37 -07003574 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 nfs4_get_stateowner(close->cl_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003576 cstate->replay_owner = close->cl_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 nfs4_unlock_state();
3579 return status;
3580}
3581
Al Virob37ad282006-10-19 23:28:59 -07003582__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003583nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3584 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003586 struct nfs4_delegation *dp;
3587 stateid_t *stateid = &dr->dr_stateid;
3588 struct inode *inode;
Al Virob37ad282006-10-19 23:28:59 -07003589 __be32 status;
Andy Adamson66689582009-04-03 08:28:45 +03003590 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003592 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003593 return status;
3594 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Andy Adamson66689582009-04-03 08:28:45 +03003596 if (nfsd4_has_session(cstate))
3597 flags |= HAS_SESSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 nfs4_lock_state();
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003599 status = nfserr_bad_stateid;
3600 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3601 goto out;
3602 status = nfserr_stale_stateid;
3603 if (STALE_STATEID(stateid))
3604 goto out;
J. Bruce Fields7e0f7cf2009-02-21 13:32:28 -08003605 status = nfserr_bad_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003606 if (!is_delegation_stateid(stateid))
3607 goto out;
J. Bruce Fields33515142010-10-02 18:42:39 -04003608 status = nfserr_expired;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003609 dp = find_delegation_stateid(inode, stateid);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003610 if (!dp)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003611 goto out;
Andy Adamson66689582009-04-03 08:28:45 +03003612 status = check_stateid_generation(stateid, &dp->dl_stateid, flags);
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003613 if (status)
3614 goto out;
3615 renew_client(dp->dl_client);
3616
3617 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003619 nfs4_unlock_state();
3620
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 return status;
3622}
3623
3624
3625/*
3626 * Lock owner state (byte-range locks)
3627 */
3628#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
3629#define LOCK_HASH_BITS 8
3630#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
3631#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
3632
Benny Halevy87df4de2008-12-15 19:42:03 +02003633static inline u64
3634end_offset(u64 start, u64 len)
3635{
3636 u64 end;
3637
3638 end = start + len;
3639 return end >= start ? end: NFS4_MAX_UINT64;
3640}
3641
3642/* last octet in a range */
3643static inline u64
3644last_byte_offset(u64 start, u64 len)
3645{
3646 u64 end;
3647
3648 BUG_ON(!len);
3649 end = start + len;
3650 return end > start ? end - 1: NFS4_MAX_UINT64;
3651}
3652
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653#define lockownerid_hashval(id) \
3654 ((id) & LOCK_HASH_MASK)
3655
3656static inline unsigned int
3657lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
3658 struct xdr_netobj *ownername)
3659{
3660 return (file_hashval(inode) + cl_id
3661 + opaque_hashval(ownername->data, ownername->len))
3662 & LOCK_HASH_MASK;
3663}
3664
3665static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
3666static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
3667static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
3668
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003669static int
3670same_stateid(stateid_t *id_one, stateid_t *id_two)
3671{
3672 if (id_one->si_stateownerid != id_two->si_stateownerid)
3673 return 0;
3674 return id_one->si_fileid == id_two->si_fileid;
3675}
3676
NeilBrownfd39ca92005-06-23 22:04:03 -07003677static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678find_stateid(stateid_t *stid, int flags)
3679{
Krishna Kumar9346eff2008-10-20 11:44:28 +05303680 struct nfs4_stateid *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 u32 st_id = stid->si_stateownerid;
3682 u32 f_id = stid->si_fileid;
3683 unsigned int hashval;
3684
3685 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
Krishna Kumar9346eff2008-10-20 11:44:28 +05303686 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 hashval = stateid_hashval(st_id, f_id);
3688 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
3689 if ((local->st_stateid.si_stateownerid == st_id) &&
3690 (local->st_stateid.si_fileid == f_id))
3691 return local;
3692 }
3693 }
Krishna Kumar9346eff2008-10-20 11:44:28 +05303694
3695 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 hashval = stateid_hashval(st_id, f_id);
3697 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
3698 if ((local->st_stateid.si_stateownerid == st_id) &&
3699 (local->st_stateid.si_fileid == f_id))
3700 return local;
3701 }
Neil Brown849823c2005-09-13 01:25:36 -07003702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 return NULL;
3704}
3705
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003706static struct nfs4_stateid *
3707search_for_stateid(stateid_t *stid)
3708{
3709 struct nfs4_stateid *local;
3710 unsigned int hashval = stateid_hashval(stid->si_stateownerid, stid->si_fileid);
3711
3712 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
3713 if (same_stateid(&local->st_stateid, stid))
3714 return local;
3715 }
3716
3717 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
3718 if (same_stateid(&local->st_stateid, stid))
3719 return local;
3720 }
3721 return NULL;
3722}
3723
3724static struct nfs4_delegation *
3725search_for_delegation(stateid_t *stid)
3726{
3727 struct nfs4_file *fp;
3728 struct nfs4_delegation *dp;
3729 struct list_head *pos;
3730 int i;
3731
3732 for (i = 0; i < FILE_HASH_SIZE; i++) {
3733 list_for_each_entry(fp, &file_hashtbl[i], fi_hash) {
3734 list_for_each(pos, &fp->fi_delegations) {
3735 dp = list_entry(pos, struct nfs4_delegation, dl_perfile);
3736 if (same_stateid(&dp->dl_stateid, stid))
3737 return dp;
3738 }
3739 }
3740 }
3741 return NULL;
3742}
3743
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744static struct nfs4_delegation *
3745find_delegation_stateid(struct inode *ino, stateid_t *stid)
3746{
NeilBrown13cd2182005-06-23 22:03:10 -07003747 struct nfs4_file *fp;
3748 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003750 dprintk("NFSD: %s: stateid=" STATEID_FMT "\n", __func__,
3751 STATEID_VAL(stid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07003754 if (!fp)
3755 return NULL;
3756 dl = find_delegation_file(fp, stid);
3757 put_nfs4_file(fp);
3758 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759}
3760
3761/*
3762 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3763 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3764 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3765 * locking, this prevents us from being completely protocol-compliant. The
3766 * real solution to this problem is to start using unsigned file offsets in
3767 * the VFS, but this is a very deep change!
3768 */
3769static inline void
3770nfs4_transform_lock_offset(struct file_lock *lock)
3771{
3772 if (lock->fl_start < 0)
3773 lock->fl_start = OFFSET_MAX;
3774 if (lock->fl_end < 0)
3775 lock->fl_end = OFFSET_MAX;
3776}
3777
NeilBrownd5b90262006-04-10 22:55:22 -07003778/* Hack!: For now, we're defining this just so we can use a pointer to it
3779 * as a unique cookie to identify our (NFSv4's) posix locks. */
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003780static const struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07003781};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
3783static inline void
3784nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3785{
NeilBrownd5b90262006-04-10 22:55:22 -07003786 struct nfs4_stateowner *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
NeilBrownd5b90262006-04-10 22:55:22 -07003788 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3789 sop = (struct nfs4_stateowner *) fl->fl_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 kref_get(&sop->so_ref);
3791 deny->ld_sop = sop;
3792 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07003793 } else {
3794 deny->ld_sop = NULL;
3795 deny->ld_clientid.cl_boot = 0;
3796 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 }
3798 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02003799 deny->ld_length = NFS4_MAX_UINT64;
3800 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 deny->ld_length = fl->fl_end - fl->fl_start + 1;
3802 deny->ld_type = NFS4_READ_LT;
3803 if (fl->fl_type != F_RDLCK)
3804 deny->ld_type = NFS4_WRITE_LT;
3805}
3806
3807static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808find_lockstateowner_str(struct inode *inode, clientid_t *clid,
3809 struct xdr_netobj *owner)
3810{
3811 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
3812 struct nfs4_stateowner *op;
3813
3814 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003815 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 return op;
3817 }
3818 return NULL;
3819}
3820
3821/*
3822 * Alloc a lock owner structure.
3823 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003824 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 *
3826 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 */
3828
3829static struct nfs4_stateowner *
3830alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
3831 struct nfs4_stateowner *sop;
3832 struct nfs4_replay *rp;
3833 unsigned int idhashval;
3834
3835 if (!(sop = alloc_stateowner(&lock->lk_new_owner)))
3836 return NULL;
3837 idhashval = lockownerid_hashval(current_ownerid);
3838 INIT_LIST_HEAD(&sop->so_idhash);
3839 INIT_LIST_HEAD(&sop->so_strhash);
3840 INIT_LIST_HEAD(&sop->so_perclient);
NeilBrownea1da632005-06-23 22:04:17 -07003841 INIT_LIST_HEAD(&sop->so_stateids);
3842 INIT_LIST_HEAD(&sop->so_perstateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 INIT_LIST_HEAD(&sop->so_close_lru); /* not used */
3844 sop->so_time = 0;
3845 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
3846 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
NeilBrownea1da632005-06-23 22:04:17 -07003847 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 sop->so_is_open_owner = 0;
3849 sop->so_id = current_ownerid++;
3850 sop->so_client = clp;
Neil Brownb59e3c02005-09-13 01:25:38 -07003851 /* It is the openowner seqid that will be incremented in encode in the
3852 * case of new lockowners; so increment the lock seqid manually: */
3853 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 sop->so_confirmed = 1;
3855 rp = &sop->so_replay;
Al Virode1ae282006-01-18 17:43:47 -08003856 rp->rp_status = nfserr_serverfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 rp->rp_buflen = 0;
3858 rp->rp_buf = rp->rp_ibuf;
3859 return sop;
3860}
3861
NeilBrownfd39ca92005-06-23 22:04:03 -07003862static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
3864{
3865 struct nfs4_stateid *stp;
3866 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
3867
NeilBrown5ac049a2005-06-23 22:03:03 -07003868 stp = nfs4_alloc_stateid();
3869 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 goto out;
3871 INIT_LIST_HEAD(&stp->st_hash);
3872 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07003873 INIT_LIST_HEAD(&stp->st_perstateowner);
3874 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07003876 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07003877 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07003879 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 stp->st_file = fp;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003881 stp->st_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 stp->st_stateid.si_stateownerid = sop->so_id;
3883 stp->st_stateid.si_fileid = fp->fi_id;
3884 stp->st_stateid.si_generation = 0;
J. Bruce Fields0997b172011-03-02 18:01:35 -05003885 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07003887 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
3889out:
3890 return stp;
3891}
3892
NeilBrownfd39ca92005-06-23 22:04:03 -07003893static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894check_lock_length(u64 offset, u64 length)
3895{
Benny Halevy87df4de2008-12-15 19:42:03 +02003896 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 LOFF_OVERFLOW(offset, length)));
3898}
3899
J. Bruce Fields0997b172011-03-02 18:01:35 -05003900static void get_lock_access(struct nfs4_stateid *lock_stp, u32 access)
3901{
3902 struct nfs4_file *fp = lock_stp->st_file;
3903 int oflag = nfs4_access_to_omode(access);
3904
3905 if (test_bit(access, &lock_stp->st_access_bmap))
3906 return;
3907 nfs4_file_get_access(fp, oflag);
3908 __set_bit(access, &lock_stp->st_access_bmap);
3909}
3910
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911/*
3912 * LOCK operation
3913 */
Al Virob37ad282006-10-19 23:28:59 -07003914__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003915nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003916 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917{
NeilBrown3e9e3db2005-06-23 22:04:20 -07003918 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07003919 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 struct nfs4_stateid *lock_stp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04003921 struct nfs4_file *fp;
3922 struct file *filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05003924 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07003925 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 unsigned int strhashval;
Al Virob8dd7b92006-10-19 23:29:01 -07003927 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
3929 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3930 (long long) lock->lk_offset,
3931 (long long) lock->lk_length);
3932
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 if (check_lock_length(lock->lk_offset, lock->lk_length))
3934 return nfserr_inval;
3935
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003936 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02003937 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08003938 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3939 return status;
3940 }
3941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 nfs4_lock_state();
3943
3944 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07003945 /*
3946 * Client indicates that this is a new lockowner.
3947 * Use open owner and open stateid to create lock owner and
3948 * lock stateid.
3949 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 struct nfs4_stateid *open_stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03003953 if (!nfsd4_has_session(cstate) &&
3954 STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 /* validate and update open stateid and open seqid */
Benny Halevydd453df2009-04-03 08:28:41 +03003958 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 lock->lk_new_open_seqid,
3960 &lock->lk_new_open_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003961 OPEN_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08003962 &lock->lk_replay_owner, &open_stp,
Neil Brownb59e3c02005-09-13 01:25:38 -07003963 lock);
NeilBrown37515172005-07-07 17:59:16 -07003964 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08003966 open_sop = lock->lk_replay_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 /* create lockowner and lock stateid */
3968 fp = open_stp->st_file;
3969 strhashval = lock_ownerstr_hashval(fp->fi_inode,
3970 open_sop->so_client->cl_clientid.cl_id,
3971 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07003972 /* XXX: Do we need to check for duplicate stateowners on
3973 * the same file, or should they just be allowed (and
3974 * create new stateids)? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 status = nfserr_resource;
Neil Brownb59e3c02005-09-13 01:25:38 -07003976 lock_sop = alloc_init_lock_stateowner(strhashval,
3977 open_sop->so_client, open_stp, lock);
3978 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07003980 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08003981 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 } else {
3984 /* lock (lock owner + lock stateid) already exists */
Benny Halevydd453df2009-04-03 08:28:41 +03003985 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 lock->lk_old_lock_seqid,
3987 &lock->lk_old_lock_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003988 LOCK_STATE,
J. Bruce Fields3a655882006-01-18 17:43:19 -08003989 &lock->lk_replay_owner, &lock_stp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 if (status)
3991 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08003992 lock_sop = lock->lk_replay_owner;
J. Bruce Fields7d947842010-08-20 18:09:31 -04003993 fp = lock_stp->st_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08003995 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
NeilBrown0dd395d2005-07-07 17:59:15 -07003997 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003998 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07003999 goto out;
4000 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004001 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004002 goto out;
4003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 locks_init_lock(&file_lock);
4005 switch (lock->lk_type) {
4006 case NFS4_READ_LT:
4007 case NFS4_READW_LT:
J. Bruce Fields0997b172011-03-02 18:01:35 -05004008 filp = find_readable_file(lock_stp->st_file);
4009 if (filp)
4010 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 file_lock.fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004012 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 case NFS4_WRITE_LT:
4014 case NFS4_WRITEW_LT:
J. Bruce Fields0997b172011-03-02 18:01:35 -05004015 filp = find_writeable_file(lock_stp->st_file);
4016 if (filp)
4017 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 file_lock.fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 default:
4021 status = nfserr_inval;
4022 goto out;
4023 }
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004024 if (!filp) {
4025 status = nfserr_openmode;
4026 goto out;
4027 }
Neil Brownb59e3c02005-09-13 01:25:38 -07004028 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 file_lock.fl_pid = current->tgid;
4030 file_lock.fl_file = filp;
4031 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07004032 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
4034 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02004035 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 nfs4_transform_lock_offset(&file_lock);
4037
4038 /*
4039 * Try to lock the file in the VFS.
4040 * Note: locks.c uses the BKL to protect the inode's lock list.
4041 */
4042
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004043 err = vfs_lock_file(filp, F_SETLK, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07004044 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 case 0: /* success! */
4046 update_stateid(&lock_stp->st_stateid);
4047 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
4048 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07004049 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004050 break;
4051 case (EAGAIN): /* conflock holds conflicting lock */
4052 status = nfserr_denied;
4053 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
4054 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
4055 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 case (EDEADLK):
4057 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004058 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05004060 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004061 status = nfserr_resource;
4062 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08004065 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05004066 release_lockowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08004067 if (lock->lk_replay_owner) {
4068 nfs4_get_stateowner(lock->lk_replay_owner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004069 cstate->replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07004070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 nfs4_unlock_state();
4072 return status;
4073}
4074
4075/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08004076 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
4077 * so we do a temporary open here just to get an open file to pass to
4078 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
4079 * inode operation.)
4080 */
4081static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
4082{
4083 struct file *file;
4084 int err;
4085
4086 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
4087 if (err)
4088 return err;
4089 err = vfs_test_lock(file, lock);
4090 nfsd_close(file);
4091 return err;
4092}
4093
4094/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 * LOCKT operation
4096 */
Al Virob37ad282006-10-19 23:28:59 -07004097__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004098nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4099 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100{
4101 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 struct file_lock file_lock;
Marc Eshelfd85b812006-11-28 16:26:41 -05004103 int error;
Al Virob37ad282006-10-19 23:28:59 -07004104 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004106 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 return nfserr_grace;
4108
4109 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
4110 return nfserr_inval;
4111
4112 lockt->lt_stateowner = NULL;
4113 nfs4_lock_state();
4114
4115 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03004116 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004119 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) {
Neil Brown849823c2005-09-13 01:25:36 -07004120 dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 if (status == nfserr_symlink)
4122 status = nfserr_inval;
4123 goto out;
4124 }
4125
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004126 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 locks_init_lock(&file_lock);
4128 switch (lockt->lt_type) {
4129 case NFS4_READ_LT:
4130 case NFS4_READW_LT:
4131 file_lock.fl_type = F_RDLCK;
4132 break;
4133 case NFS4_WRITE_LT:
4134 case NFS4_WRITEW_LT:
4135 file_lock.fl_type = F_WRLCK;
4136 break;
4137 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04004138 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 status = nfserr_inval;
4140 goto out;
4141 }
4142
4143 lockt->lt_stateowner = find_lockstateowner_str(inode,
4144 &lockt->lt_clientid, &lockt->lt_owner);
4145 if (lockt->lt_stateowner)
4146 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
4147 file_lock.fl_pid = current->tgid;
4148 file_lock.fl_flags = FL_POSIX;
4149
4150 file_lock.fl_start = lockt->lt_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02004151 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152
4153 nfs4_transform_lock_offset(&file_lock);
4154
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08004156 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05004157 if (error) {
4158 status = nfserrno(error);
4159 goto out;
4160 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05004161 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05004163 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 }
4165out:
4166 nfs4_unlock_state();
4167 return status;
4168}
4169
Al Virob37ad282006-10-19 23:28:59 -07004170__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004171nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004172 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173{
4174 struct nfs4_stateid *stp;
4175 struct file *filp = NULL;
4176 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07004177 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07004178 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
4180 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
4181 (long long) locku->lu_offset,
4182 (long long) locku->lu_length);
4183
4184 if (check_lock_length(locku->lu_offset, locku->lu_length))
4185 return nfserr_inval;
4186
4187 nfs4_lock_state();
4188
Benny Halevydd453df2009-04-03 08:28:41 +03004189 if ((status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 locku->lu_seqid,
4191 &locku->lu_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05004192 LOCK_STATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 &locku->lu_stateowner, &stp, NULL)))
4194 goto out;
4195
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004196 filp = find_any_file(stp->st_file);
4197 if (!filp) {
4198 status = nfserr_lock_range;
4199 goto out;
4200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 BUG_ON(!filp);
4202 locks_init_lock(&file_lock);
4203 file_lock.fl_type = F_UNLCK;
4204 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
4205 file_lock.fl_pid = current->tgid;
4206 file_lock.fl_file = filp;
4207 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07004208 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 file_lock.fl_start = locku->lu_offset;
4210
Benny Halevy87df4de2008-12-15 19:42:03 +02004211 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 nfs4_transform_lock_offset(&file_lock);
4213
4214 /*
4215 * Try to unlock the file in the VFS.
4216 */
Marc Eshelfd85b812006-11-28 16:26:41 -05004217 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07004218 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05004219 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 goto out_nfserr;
4221 }
4222 /*
4223 * OK, unlock succeeded; the only thing left to do is update the stateid.
4224 */
4225 update_stateid(&stp->st_stateid);
4226 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
4227
4228out:
Neil Brownf2327d92005-09-13 01:25:37 -07004229 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 nfs4_get_stateowner(locku->lu_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004231 cstate->replay_owner = locku->lu_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07004232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 nfs4_unlock_state();
4234 return status;
4235
4236out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07004237 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 goto out;
4239}
4240
4241/*
4242 * returns
4243 * 1: locks held by lockowner
4244 * 0: no locks held by lockowner
4245 */
4246static int
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004247check_for_locks(struct nfs4_file *filp, struct nfs4_stateowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248{
4249 struct file_lock **flpp;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004250 struct inode *inode = filp->fi_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 int status = 0;
4252
Arnd Bergmannb89f4322010-09-18 15:09:31 +02004253 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08004255 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 status = 1;
4257 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08004258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 }
4260out:
Arnd Bergmannb89f4322010-09-18 15:09:31 +02004261 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 return status;
4263}
4264
Al Virob37ad282006-10-19 23:28:59 -07004265__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08004266nfsd4_release_lockowner(struct svc_rqst *rqstp,
4267 struct nfsd4_compound_state *cstate,
4268 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269{
4270 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07004271 struct nfs4_stateowner *sop;
4272 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07004274 struct list_head matches;
4275 int i;
Al Virob37ad282006-10-19 23:28:59 -07004276 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
4278 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
4279 clid->cl_boot, clid->cl_id);
4280
4281 /* XXX check for lease expiration */
4282
4283 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07004284 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286
4287 nfs4_lock_state();
4288
NeilBrown3e9e3db2005-06-23 22:04:20 -07004289 status = nfserr_locks_held;
4290 /* XXX: we're doing a linear search through all the lockowners.
4291 * Yipes! For now we'll just hope clients aren't really using
4292 * release_lockowner much, but eventually we have to fix these
4293 * data structures. */
4294 INIT_LIST_HEAD(&matches);
4295 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4296 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04004297 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07004298 continue;
4299 list_for_each_entry(stp, &sop->so_stateids,
4300 st_perstateowner) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004301 if (check_for_locks(stp->st_file, sop))
NeilBrown3e9e3db2005-06-23 22:04:20 -07004302 goto out;
4303 /* Note: so_perclient unused for lockowners,
4304 * so it's OK to fool with here. */
4305 list_add(&sop->so_perclient, &matches);
4306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07004308 }
4309 /* Clients probably won't expect us to return with some (but not all)
4310 * of the lockowner state released; so don't release any until all
4311 * have been checked. */
4312 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07004313 while (!list_empty(&matches)) {
4314 sop = list_entry(matches.next, struct nfs4_stateowner,
4315 so_perclient);
4316 /* unhash_stateowner deletes so_perclient only
4317 * for openowners. */
4318 list_del(&sop->so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05004319 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 }
4321out:
4322 nfs4_unlock_state();
4323 return status;
4324}
4325
4326static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07004327alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328{
NeilBrowna55370a2005-06-23 22:03:52 -07004329 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330}
4331
NeilBrownc7b9a452005-06-23 22:04:30 -07004332int
Andy Adamsona1bcecd2009-04-03 08:28:05 +03004333nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
NeilBrownc7b9a452005-06-23 22:04:30 -07004334{
4335 unsigned int strhashval = clientstr_hashval(name);
4336 struct nfs4_client *clp;
4337
J. Bruce Fieldse203d502010-11-24 17:30:54 -05004338 clp = find_confirmed_client_by_str(name, strhashval);
NeilBrownc7b9a452005-06-23 22:04:30 -07004339 return clp ? 1 : 0;
4340}
4341
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342/*
4343 * failure => all reset bets are off, nfserr_no_grace...
4344 */
NeilBrown190e4fb2005-06-23 22:04:25 -07004345int
4346nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347{
4348 unsigned int strhashval;
4349 struct nfs4_client_reclaim *crp = NULL;
4350
NeilBrowna55370a2005-06-23 22:03:52 -07004351 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
4352 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 if (!crp)
4354 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07004355 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 INIT_LIST_HEAD(&crp->cr_strhash);
4357 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07004358 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 reclaim_str_hashtbl_size++;
4360 return 1;
4361}
4362
4363static void
4364nfs4_release_reclaim(void)
4365{
4366 struct nfs4_client_reclaim *crp = NULL;
4367 int i;
4368
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4370 while (!list_empty(&reclaim_str_hashtbl[i])) {
4371 crp = list_entry(reclaim_str_hashtbl[i].next,
4372 struct nfs4_client_reclaim, cr_strhash);
4373 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 kfree(crp);
4375 reclaim_str_hashtbl_size--;
4376 }
4377 }
4378 BUG_ON(reclaim_str_hashtbl_size);
4379}
4380
4381/*
4382 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07004383static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384nfs4_find_reclaim_client(clientid_t *clid)
4385{
4386 unsigned int strhashval;
4387 struct nfs4_client *clp;
4388 struct nfs4_client_reclaim *crp = NULL;
4389
4390
4391 /* find clientid in conf_id_hashtbl */
4392 clp = find_confirmed_client(clid);
4393 if (clp == NULL)
4394 return NULL;
4395
NeilBrowna55370a2005-06-23 22:03:52 -07004396 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
4397 clp->cl_name.len, clp->cl_name.data,
4398 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
4400 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07004401 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07004403 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 return crp;
4405 }
4406 }
4407 return NULL;
4408}
4409
4410/*
4411* Called from OPEN. Look for clientid in reclaim list.
4412*/
Al Virob37ad282006-10-19 23:28:59 -07004413__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414nfs4_check_open_reclaim(clientid_t *clid)
4415{
NeilBrowndfc83562005-06-23 22:03:16 -07004416 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417}
4418
NeilBrownac4d8ff22005-06-23 22:03:30 -07004419/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004421int
NeilBrownac4d8ff22005-06-23 22:03:30 -07004422nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004424 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004426 status = nfsd4_init_slabs();
4427 if (status)
4428 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4430 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
4431 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
4432 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
4433 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
Wang Chen02cb2852009-04-24 15:41:57 +08004434 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 }
Marc Eshel5282fd72009-04-03 08:27:52 +03004436 for (i = 0; i < SESSION_HASH_SIZE; i++)
4437 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 for (i = 0; i < FILE_HASH_SIZE; i++) {
4439 INIT_LIST_HEAD(&file_hashtbl[i]);
4440 }
4441 for (i = 0; i < OWNER_HASH_SIZE; i++) {
4442 INIT_LIST_HEAD(&ownerstr_hashtbl[i]);
4443 INIT_LIST_HEAD(&ownerid_hashtbl[i]);
4444 }
4445 for (i = 0; i < STATEID_HASH_SIZE; i++) {
4446 INIT_LIST_HEAD(&stateid_hashtbl[i]);
4447 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
4448 }
4449 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4450 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
4451 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
4452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 INIT_LIST_HEAD(&close_lru);
4455 INIT_LIST_HEAD(&client_lru);
4456 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07004457 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004458 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07004459}
4460
NeilBrown190e4fb2005-06-23 22:04:25 -07004461static void
4462nfsd4_load_reboot_recovery_data(void)
4463{
4464 int status;
4465
NeilBrown0964a3d2005-06-23 22:04:32 -07004466 nfs4_lock_state();
4467 nfsd4_init_recdir(user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -07004468 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07004469 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07004470 if (status)
4471 printk("NFSD: Failure reading reboot recovery data\n");
4472}
4473
Meelap Shahc2f1a552007-07-17 04:04:39 -07004474/*
4475 * Since the lifetime of a delegation isn't limited to that of an open, a
4476 * client may quite reasonably hang on to a delegation as long as it has
4477 * the inode cached. This becomes an obvious problem the first time a
4478 * client's inode cache approaches the size of the server's total memory.
4479 *
4480 * For now we avoid this problem by imposing a hard limit on the number
4481 * of delegations, which varies according to the server's memory size.
4482 */
4483static void
4484set_max_delegations(void)
4485{
4486 /*
4487 * Allow at most 4 delegations per megabyte of RAM. Quick
4488 * estimates suggest that in the worst case (where every delegation
4489 * is for a different inode), a delegation could take about 1.5K,
4490 * giving a worst case usage of about 6% of memory.
4491 */
4492 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4493}
4494
NeilBrownac4d8ff22005-06-23 22:03:30 -07004495/* initialization to perform when the nfsd service is started: */
4496
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004497static int
NeilBrownac4d8ff22005-06-23 22:03:30 -07004498__nfs4_state_start(void)
4499{
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004500 int ret;
4501
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004503 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07004504 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05004505 nfsd4_grace);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004506 ret = set_callback_cred();
4507 if (ret)
4508 return -ENOMEM;
NeilBrown58da2822005-06-23 22:03:19 -07004509 laundry_wq = create_singlethread_workqueue("nfsd4");
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004510 if (laundry_wq == NULL)
4511 return -ENOMEM;
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004512 ret = nfsd4_create_callback_queue();
4513 if (ret)
4514 goto out_free_laundry;
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05004515 queue_delayed_work(laundry_wq, &laundromat_work, nfsd4_grace * HZ);
Meelap Shahc2f1a552007-07-17 04:04:39 -07004516 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004517 return 0;
4518out_free_laundry:
4519 destroy_workqueue(laundry_wq);
4520 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521}
4522
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004523int
NeilBrown76a35502005-06-23 22:03:26 -07004524nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525{
NeilBrown190e4fb2005-06-23 22:04:25 -07004526 nfsd4_load_reboot_recovery_data();
Jeff Layton4ad9a342010-07-19 16:50:04 -04004527 return __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528}
4529
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530static void
4531__nfs4_state_shutdown(void)
4532{
4533 int i;
4534 struct nfs4_client *clp = NULL;
4535 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 struct list_head *pos, *next, reaplist;
4537
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4539 while (!list_empty(&conf_id_hashtbl[i])) {
4540 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4541 expire_client(clp);
4542 }
4543 while (!list_empty(&unconf_str_hashtbl[i])) {
4544 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4545 expire_client(clp);
4546 }
4547 }
4548 INIT_LIST_HEAD(&reaplist);
4549 spin_lock(&recall_lock);
4550 list_for_each_safe(pos, next, &del_recall_lru) {
4551 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4552 list_move(&dp->dl_recall_lru, &reaplist);
4553 }
4554 spin_unlock(&recall_lock);
4555 list_for_each_safe(pos, next, &reaplist) {
4556 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4557 list_del_init(&dp->dl_recall_lru);
4558 unhash_delegation(dp);
4559 }
4560
NeilBrown190e4fb2005-06-23 22:04:25 -07004561 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562}
4563
4564void
4565nfs4_state_shutdown(void)
4566{
Tejun Heoafe2c512010-12-14 16:21:17 +01004567 cancel_delayed_work_sync(&laundromat_work);
NeilBrown5e8d5c22006-04-10 22:55:37 -07004568 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06004569 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 nfs4_lock_state();
4571 nfs4_release_reclaim();
4572 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 nfs4_unlock_state();
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04004574 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575}
4576
Jeff Layton3dd98a32008-06-10 08:40:36 -04004577/*
4578 * user_recovery_dirname is protected by the nfsd_mutex since it's only
4579 * accessed when nfsd is starting.
4580 */
NeilBrown0964a3d2005-06-23 22:04:32 -07004581static void
4582nfs4_set_recdir(char *recdir)
4583{
NeilBrown0964a3d2005-06-23 22:04:32 -07004584 strcpy(user_recovery_dirname, recdir);
NeilBrown0964a3d2005-06-23 22:04:32 -07004585}
4586
4587/*
4588 * Change the NFSv4 recovery directory to recdir.
4589 */
4590int
4591nfs4_reset_recoverydir(char *recdir)
4592{
4593 int status;
Al Viroa63bb992008-08-02 01:03:36 -04004594 struct path path;
NeilBrown0964a3d2005-06-23 22:04:32 -07004595
Al Viroa63bb992008-08-02 01:03:36 -04004596 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
NeilBrown0964a3d2005-06-23 22:04:32 -07004597 if (status)
4598 return status;
4599 status = -ENOTDIR;
Al Viroa63bb992008-08-02 01:03:36 -04004600 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
NeilBrown0964a3d2005-06-23 22:04:32 -07004601 nfs4_set_recdir(recdir);
4602 status = 0;
4603 }
Al Viroa63bb992008-08-02 01:03:36 -04004604 path_put(&path);
NeilBrown0964a3d2005-06-23 22:04:32 -07004605 return status;
4606}
4607
Jeff Layton3dd98a32008-06-10 08:40:36 -04004608char *
4609nfs4_recoverydir(void)
4610{
4611 return user_recovery_dirname;
4612}