blob: d2bf80d8d85b93b8f4d91dbff2658fb1ebf3f6e2 [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>
Bryan Schumaker17456802011-07-13 10:50:48 -040040#include <linux/pagemap.h>
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -050041#include <linux/sunrpc/svcauth_gss.h>
Jeff Layton363168b2009-08-14 12:57:56 -040042#include <linux/sunrpc/clnt.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020043#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050044#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define NFSDDBG_FACILITY NFSDDBG_PROC
47
48/* Globals */
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -050049time_t nfsd4_lease = 90; /* default lease time */
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050050time_t nfsd4_grace = 90;
NeilBrownfd39ca92005-06-23 22:04:03 -070051static time_t boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static u32 current_ownerid = 1;
53static u32 current_fileid = 1;
54static u32 current_delegid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070055static stateid_t zerostateid; /* bits all 0 */
56static stateid_t onestateid; /* bits all 1 */
Andy Adamsonec6b5d72009-04-03 08:28:28 +030057static u64 current_sessionid = 1;
NeilBrownfd39ca92005-06-23 22:04:03 -070058
59#define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
60#define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/* forward declarations */
NeilBrownfd39ca92005-06-23 22:04:03 -070063static struct nfs4_stateid * find_stateid(stateid_t *stid, int flags);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -040064static struct nfs4_stateid * search_for_stateid(stateid_t *stid);
65static struct nfs4_delegation * search_for_delegation(stateid_t *stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -040067static int check_for_locks(struct nfs4_file *filp, struct nfs4_stateowner *lowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
J. Bruce Fields8b671b82009-02-22 14:51:34 -080069/* Locking: */
70
71/* Currently used for almost all code touching nfsv4 state: */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080072static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
J. Bruce Fields8b671b82009-02-22 14:51:34 -080074/*
75 * Currently used for the del_recall_lru and file hash table. In an
76 * effort to decrease the scope of the client_mutex, this spinlock may
77 * eventually cover more:
78 */
79static DEFINE_SPINLOCK(recall_lock);
80
Christoph Lametere18b8902006-12-06 20:33:20 -080081static struct kmem_cache *stateowner_slab = NULL;
82static struct kmem_cache *file_slab = NULL;
83static struct kmem_cache *stateid_slab = NULL;
84static struct kmem_cache *deleg_slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086void
87nfs4_lock_state(void)
88{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080089 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92void
93nfs4_unlock_state(void)
94{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080095 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98static inline u32
99opaque_hashval(const void *ptr, int nbytes)
100{
101 unsigned char *cptr = (unsigned char *) ptr;
102
103 u32 x = 0;
104 while (nbytes--) {
105 x *= 37;
106 x += *cptr++;
107 }
108 return x;
109}
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static struct list_head del_recall_lru;
112
NeilBrown13cd2182005-06-23 22:03:10 -0700113static inline void
114put_nfs4_file(struct nfs4_file *fi)
115{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800116 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
117 list_del(&fi->fi_hash);
118 spin_unlock(&recall_lock);
119 iput(fi->fi_inode);
120 kmem_cache_free(file_slab, fi);
121 }
NeilBrown13cd2182005-06-23 22:03:10 -0700122}
123
124static inline void
125get_nfs4_file(struct nfs4_file *fi)
126{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800127 atomic_inc(&fi->fi_ref);
NeilBrown13cd2182005-06-23 22:03:10 -0700128}
129
NeilBrownef0f3392006-04-10 22:55:41 -0700130static int num_delegations;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700131unsigned int max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700132
133/*
134 * Open owner state (share locks)
135 */
136
J. Bruce Fields506f2752011-08-11 18:50:18 -0400137/* hash tables for open owners */
138#define OPEN_OWNER_HASH_BITS 8
139#define OPEN_OWNER_HASH_SIZE (1 << OPEN_OWNER_HASH_BITS)
140#define OPEN_OWNER_HASH_MASK (OPEN_OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700141
J. Bruce Fields506f2752011-08-11 18:50:18 -0400142static unsigned int open_ownerid_hashval(const u32 id)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400143{
J. Bruce Fields506f2752011-08-11 18:50:18 -0400144 return id & OPEN_OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400145}
146
J. Bruce Fields506f2752011-08-11 18:50:18 -0400147static unsigned int open_ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400148{
149 unsigned int ret;
150
151 ret = opaque_hashval(ownername->data, ownername->len);
152 ret += clientid;
J. Bruce Fields506f2752011-08-11 18:50:18 -0400153 return ret & OPEN_OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400154}
NeilBrownef0f3392006-04-10 22:55:41 -0700155
J. Bruce Fields506f2752011-08-11 18:50:18 -0400156static struct list_head open_ownerid_hashtbl[OPEN_OWNER_HASH_SIZE];
157static struct list_head open_ownerstr_hashtbl[OPEN_OWNER_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700158
159/* hash table for nfs4_file */
160#define FILE_HASH_BITS 8
161#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800162
NeilBrownef0f3392006-04-10 22:55:41 -0700163/* hash table for (open)nfs4_stateid */
164#define STATEID_HASH_BITS 10
165#define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
166#define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
167
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400168static unsigned int file_hashval(struct inode *ino)
169{
170 /* XXX: why are we hashing on inode pointer, anyway? */
171 return hash_ptr(ino, FILE_HASH_BITS);
172}
173
174static unsigned int stateid_hashval(u32 owner_id, u32 file_id)
175{
176 return (owner_id + file_id) & STATEID_HASH_MASK;
177}
NeilBrownef0f3392006-04-10 22:55:41 -0700178
179static struct list_head file_hashtbl[FILE_HASH_SIZE];
180static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
181
J. Bruce Fields998db522010-08-07 09:21:41 -0400182static void __nfs4_file_get_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400183{
184 BUG_ON(!(fp->fi_fds[oflag] || fp->fi_fds[O_RDWR]));
185 atomic_inc(&fp->fi_access[oflag]);
186}
187
J. Bruce Fields998db522010-08-07 09:21:41 -0400188static void nfs4_file_get_access(struct nfs4_file *fp, int oflag)
189{
190 if (oflag == O_RDWR) {
191 __nfs4_file_get_access(fp, O_RDONLY);
192 __nfs4_file_get_access(fp, O_WRONLY);
193 } else
194 __nfs4_file_get_access(fp, oflag);
195}
196
197static void nfs4_file_put_fd(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400198{
199 if (fp->fi_fds[oflag]) {
200 fput(fp->fi_fds[oflag]);
201 fp->fi_fds[oflag] = NULL;
202 }
203}
204
J. Bruce Fields998db522010-08-07 09:21:41 -0400205static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400206{
207 if (atomic_dec_and_test(&fp->fi_access[oflag])) {
208 nfs4_file_put_fd(fp, O_RDWR);
209 nfs4_file_put_fd(fp, oflag);
210 }
211}
212
J. Bruce Fields998db522010-08-07 09:21:41 -0400213static void nfs4_file_put_access(struct nfs4_file *fp, int oflag)
214{
215 if (oflag == O_RDWR) {
216 __nfs4_file_put_access(fp, O_RDONLY);
217 __nfs4_file_put_access(fp, O_WRONLY);
218 } else
219 __nfs4_file_put_access(fp, oflag);
220}
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222static struct nfs4_delegation *
223alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
224{
225 struct nfs4_delegation *dp;
226 struct nfs4_file *fp = stp->st_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 dprintk("NFSD alloc_init_deleg\n");
J. Bruce Fieldsc3e48082010-07-28 10:08:57 -0400229 /*
230 * Major work on the lease subsystem (for example, to support
231 * calbacks on stat) will be required before we can support
232 * write delegations properly.
233 */
234 if (type != NFS4_OPEN_DELEGATE_READ)
235 return NULL;
Meelap Shah47f99402007-07-17 04:04:40 -0700236 if (fp->fi_had_conflict)
237 return NULL;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700238 if (num_delegations > max_delegations)
NeilBrownef0f3392006-04-10 22:55:41 -0700239 return NULL;
NeilBrown5b2d21c2005-06-23 22:03:04 -0700240 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
241 if (dp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return dp;
NeilBrownef0f3392006-04-10 22:55:41 -0700243 num_delegations++;
NeilBrownea1da632005-06-23 22:04:17 -0700244 INIT_LIST_HEAD(&dp->dl_perfile);
245 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 INIT_LIST_HEAD(&dp->dl_recall_lru);
247 dp->dl_client = clp;
NeilBrown13cd2182005-06-23 22:03:10 -0700248 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 dp->dl_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 dp->dl_type = type;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -0400251 dp->dl_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 dp->dl_stateid.si_stateownerid = current_delegid++;
253 dp->dl_stateid.si_fileid = 0;
254 dp->dl_stateid.si_generation = 0;
J. Bruce Fields6c02eaa2009-02-02 17:30:51 -0500255 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 dp->dl_time = 0;
257 atomic_set(&dp->dl_count, 1);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -0500258 INIT_WORK(&dp->dl_recall.cb_work, nfsd4_do_callback_rpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return dp;
260}
261
262void
263nfs4_put_delegation(struct nfs4_delegation *dp)
264{
265 if (atomic_dec_and_test(&dp->dl_count)) {
266 dprintk("NFSD: freeing dp %p\n",dp);
NeilBrown13cd2182005-06-23 22:03:10 -0700267 put_nfs4_file(dp->dl_file);
NeilBrown5b2d21c2005-06-23 22:03:04 -0700268 kmem_cache_free(deleg_slab, dp);
NeilBrownef0f3392006-04-10 22:55:41 -0700269 num_delegations--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271}
272
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500273static void nfs4_put_deleg_lease(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500275 if (atomic_dec_and_test(&fp->fi_delegees)) {
276 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
277 fp->fi_lease = NULL;
J. Bruce Fields4ee63622011-04-15 18:08:26 -0400278 fput(fp->fi_deleg_file);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500279 fp->fi_deleg_file = NULL;
280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283/* Called under the state lock. */
284static void
285unhash_delegation(struct nfs4_delegation *dp)
286{
NeilBrownea1da632005-06-23 22:04:17 -0700287 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 spin_lock(&recall_lock);
J. Bruce Fields5d926e82011-02-07 16:53:46 -0500289 list_del_init(&dp->dl_perfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 list_del_init(&dp->dl_recall_lru);
291 spin_unlock(&recall_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500292 nfs4_put_deleg_lease(dp->dl_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 nfs4_put_delegation(dp);
294}
295
296/*
297 * SETCLIENTID state
298 */
299
Benny Halevy36acb662010-05-12 00:13:04 +0300300/* client_lock protects the client lru list and session hash table */
Benny Halevy9089f1b2010-05-12 00:12:26 +0300301static DEFINE_SPINLOCK(client_lock);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/* Hash tables for nfs4_clientid state */
304#define CLIENT_HASH_BITS 4
305#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
306#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
307
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400308static unsigned int clientid_hashval(u32 id)
309{
310 return id & CLIENT_HASH_MASK;
311}
312
313static unsigned int clientstr_hashval(const char *name)
314{
315 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318/*
319 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
320 * used in reboot/reset lease grace period processing
321 *
322 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
323 * setclientid_confirmed info.
324 *
325 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
326 * setclientid info.
327 *
328 * client_lru holds client queue ordered by nfs4_client.cl_time
329 * for lease renewal.
330 *
331 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
332 * for last close replay.
333 */
334static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
335static int reclaim_str_hashtbl_size = 0;
336static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
337static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
338static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
339static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
340static struct list_head client_lru;
341static struct list_head close_lru;
342
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400343/*
344 * We store the NONE, READ, WRITE, and BOTH bits separately in the
345 * st_{access,deny}_bmap field of the stateid, in order to track not
346 * only what share bits are currently in force, but also what
347 * combinations of share bits previous opens have used. This allows us
348 * to enforce the recommendation of rfc 3530 14.2.19 that the server
349 * return an error if the client attempt to downgrade to a combination
350 * of share bits not explicable by closing some of its previous opens.
351 *
352 * XXX: This enforcement is actually incomplete, since we don't keep
353 * track of access/deny bit combinations; so, e.g., we allow:
354 *
355 * OPEN allow read, deny write
356 * OPEN allow both, deny none
357 * DOWNGRADE allow read, deny none
358 *
359 * which we should reject.
360 */
361static void
362set_access(unsigned int *access, unsigned long bmap) {
363 int i;
364
365 *access = 0;
366 for (i = 1; i < 4; i++) {
367 if (test_bit(i, &bmap))
368 *access |= i;
369 }
370}
371
372static void
373set_deny(unsigned int *deny, unsigned long bmap) {
374 int i;
375
376 *deny = 0;
377 for (i = 0; i < 4; i++) {
378 if (test_bit(i, &bmap))
379 *deny |= i ;
380 }
381}
382
383static int
384test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
385 unsigned int access, deny;
386
387 set_access(&access, stp->st_access_bmap);
388 set_deny(&deny, stp->st_deny_bmap);
389 if ((access & open->op_share_deny) || (deny & open->op_share_access))
390 return 0;
391 return 1;
392}
393
394static int nfs4_access_to_omode(u32 access)
395{
J. Bruce Fields8f34a432010-09-02 15:23:16 -0400396 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400397 case NFS4_SHARE_ACCESS_READ:
398 return O_RDONLY;
399 case NFS4_SHARE_ACCESS_WRITE:
400 return O_WRONLY;
401 case NFS4_SHARE_ACCESS_BOTH:
402 return O_RDWR;
403 }
404 BUG();
405}
406
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500407static void unhash_generic_stateid(struct nfs4_stateid *stp)
408{
409 list_del(&stp->st_hash);
410 list_del(&stp->st_perfile);
411 list_del(&stp->st_perstateowner);
412}
413
414static void free_generic_stateid(struct nfs4_stateid *stp)
415{
J. Bruce Fields499f3ed2011-06-27 16:57:12 -0400416 int i;
J. Bruce Fields0997b172011-03-02 18:01:35 -0500417
J. Bruce Fields23fcf2e2011-03-28 15:15:09 +0800418 if (stp->st_access_bmap) {
J. Bruce Fields499f3ed2011-06-27 16:57:12 -0400419 for (i = 1; i < 4; i++) {
420 if (test_bit(i, &stp->st_access_bmap))
421 nfs4_file_put_access(stp->st_file,
422 nfs4_access_to_omode(i));
423 }
J. Bruce Fields23fcf2e2011-03-28 15:15:09 +0800424 }
OGAWA Hirofumia96e5b92011-04-18 11:48:55 -0400425 put_nfs4_file(stp->st_file);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500426 kmem_cache_free(stateid_slab, stp);
427}
428
429static void release_lock_stateid(struct nfs4_stateid *stp)
430{
431 struct file *file;
432
433 unhash_generic_stateid(stp);
434 file = find_any_file(stp->st_file);
435 if (file)
436 locks_remove_posix(file, (fl_owner_t)stp->st_stateowner);
437 free_generic_stateid(stp);
438}
439
440static void unhash_lockowner(struct nfs4_stateowner *sop)
441{
442 struct nfs4_stateid *stp;
443
444 list_del(&sop->so_idhash);
445 list_del(&sop->so_strhash);
446 list_del(&sop->so_perstateid);
447 while (!list_empty(&sop->so_stateids)) {
448 stp = list_first_entry(&sop->so_stateids,
449 struct nfs4_stateid, st_perstateowner);
450 release_lock_stateid(stp);
451 }
452}
453
454static void release_lockowner(struct nfs4_stateowner *sop)
455{
456 unhash_lockowner(sop);
457 nfs4_put_stateowner(sop);
458}
459
460static void
461release_stateid_lockowners(struct nfs4_stateid *open_stp)
462{
463 struct nfs4_stateowner *lock_sop;
464
465 while (!list_empty(&open_stp->st_lockowners)) {
466 lock_sop = list_entry(open_stp->st_lockowners.next,
467 struct nfs4_stateowner, so_perstateid);
468 /* list_del(&open_stp->st_lockowners); */
469 BUG_ON(lock_sop->so_is_open_owner);
470 release_lockowner(lock_sop);
471 }
472}
473
J. Bruce Fields22839632009-01-11 14:27:17 -0500474static void release_open_stateid(struct nfs4_stateid *stp)
475{
476 unhash_generic_stateid(stp);
477 release_stateid_lockowners(stp);
J. Bruce Fields22839632009-01-11 14:27:17 -0500478 free_generic_stateid(stp);
479}
480
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500481static void unhash_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500482{
483 struct nfs4_stateid *stp;
484
485 list_del(&sop->so_idhash);
486 list_del(&sop->so_strhash);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500487 list_del(&sop->so_perclient);
488 list_del(&sop->so_perstateid); /* XXX: necessary? */
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500489 while (!list_empty(&sop->so_stateids)) {
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500490 stp = list_first_entry(&sop->so_stateids,
491 struct nfs4_stateid, st_perstateowner);
492 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500493 }
494}
495
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500496static void release_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500497{
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500498 unhash_openowner(sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500499 list_del(&sop->so_close_lru);
500 nfs4_put_stateowner(sop);
501}
502
Marc Eshel5282fd72009-04-03 08:27:52 +0300503#define SESSION_HASH_SIZE 512
504static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
505
506static inline int
507hash_sessionid(struct nfs4_sessionid *sessionid)
508{
509 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
510
511 return sid->sequence % SESSION_HASH_SIZE;
512}
513
514static inline void
515dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
516{
517 u32 *ptr = (u32 *)(&sessionid->data[0]);
518 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
519}
520
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300521static void
522gen_sessionid(struct nfsd4_session *ses)
523{
524 struct nfs4_client *clp = ses->se_client;
525 struct nfsd4_sessionid *sid;
526
527 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
528 sid->clientid = clp->cl_clientid;
529 sid->sequence = current_sessionid++;
530 sid->reserved = 0;
531}
532
533/*
Andy Adamsona6496372009-08-28 08:45:01 -0400534 * The protocol defines ca_maxresponssize_cached to include the size of
535 * the rpc header, but all we need to cache is the data starting after
536 * the end of the initial SEQUENCE operation--the rest we regenerate
537 * each time. Therefore we can advertise a ca_maxresponssize_cached
538 * value that is the number of bytes in our cache plus a few additional
539 * bytes. In order to stay on the safe side, and not promise more than
540 * we can cache, those additional bytes must be the minimum possible: 24
541 * bytes of rpc header (xid through accept state, with AUTH_NULL
542 * verifier), 12 for the compound header (with zero-length tag), and 44
543 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300544 */
Andy Adamsona6496372009-08-28 08:45:01 -0400545#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
546
Andy Adamson557ce262009-08-28 08:45:04 -0400547static void
548free_session_slots(struct nfsd4_session *ses)
549{
550 int i;
551
552 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
553 kfree(ses->se_slots[i]);
554}
555
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -0400556/*
557 * We don't actually need to cache the rpc and session headers, so we
558 * can allocate a little less for each slot:
559 */
560static inline int slot_bytes(struct nfsd4_channel_attrs *ca)
561{
562 return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
563}
564
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400565static int nfsd4_sanitize_slot_size(u32 size)
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300566{
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400567 size -= NFSD_MIN_HDR_SEQ_SZ; /* We don't cache the rpc header */
568 size = min_t(u32, size, NFSD_SLOT_CACHE_SIZE);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300569
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400570 return size;
571}
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300572
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400573/*
574 * XXX: If we run out of reserved DRC memory we could (up to a point)
575 * re-negotiate active sessions and reduce their slot usage to make
576 * rooom for new connections. For now we just fail the create session.
577 */
578static int nfsd4_get_drc_mem(int slotsize, u32 num)
579{
580 int avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300581
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400582 num = min_t(u32, num, NFSD_MAX_SLOTS_PER_SESSION);
Andy Adamson557ce262009-08-28 08:45:04 -0400583
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400584 spin_lock(&nfsd_drc_lock);
585 avail = min_t(int, NFSD_MAX_MEM_PER_SESSION,
586 nfsd_drc_max_mem - nfsd_drc_mem_used);
587 num = min_t(int, num, avail / slotsize);
588 nfsd_drc_mem_used += num * slotsize;
589 spin_unlock(&nfsd_drc_lock);
590
591 return num;
592}
593
594static void nfsd4_put_drc_mem(int slotsize, int num)
595{
596 spin_lock(&nfsd_drc_lock);
597 nfsd_drc_mem_used -= slotsize * num;
598 spin_unlock(&nfsd_drc_lock);
599}
600
601static struct nfsd4_session *alloc_session(int slotsize, int numslots)
602{
603 struct nfsd4_session *new;
604 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300605
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -0400606 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400607 + sizeof(struct nfsd4_session) > PAGE_SIZE);
608 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -0400609
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400610 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300611 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400612 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -0400613 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400614 for (i = 0; i < numslots; i++) {
615 mem = sizeof(struct nfsd4_slot) + slotsize;
616 new->se_slots[i] = kzalloc(mem, GFP_KERNEL);
617 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -0400618 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -0400619 }
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400620 return new;
621out_free:
622 while (i--)
623 kfree(new->se_slots[i]);
624 kfree(new);
625 return NULL;
626}
627
628static void init_forechannel_attrs(struct nfsd4_channel_attrs *new, struct nfsd4_channel_attrs *req, int numslots, int slotsize)
629{
630 u32 maxrpc = nfsd_serv->sv_max_mesg;
631
632 new->maxreqs = numslots;
Mi Jinlongd2b21742011-03-10 17:43:37 +0800633 new->maxresp_cached = min_t(u32, req->maxresp_cached,
634 slotsize + NFSD_MIN_HDR_SEQ_SZ);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400635 new->maxreq_sz = min_t(u32, req->maxreq_sz, maxrpc);
636 new->maxresp_sz = min_t(u32, req->maxresp_sz, maxrpc);
637 new->maxops = min_t(u32, req->maxops, NFSD_MAX_OPS_PER_COMPOUND);
638}
639
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400640static void free_conn(struct nfsd4_conn *c)
641{
642 svc_xprt_put(c->cn_xprt);
643 kfree(c);
644}
645
646static void nfsd4_conn_lost(struct svc_xpt_user *u)
647{
648 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
649 struct nfs4_client *clp = c->cn_session->se_client;
650
651 spin_lock(&clp->cl_lock);
652 if (!list_empty(&c->cn_persession)) {
653 list_del(&c->cn_persession);
654 free_conn(c);
655 }
656 spin_unlock(&clp->cl_lock);
J. Bruce Fieldseea49802010-11-18 08:34:12 -0500657 nfsd4_probe_callback(clp);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400658}
659
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -0400660static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400661{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400662 struct nfsd4_conn *conn;
663
664 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
665 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400666 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400667 svc_xprt_get(rqstp->rq_xprt);
668 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -0400669 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400670 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
671 return conn;
672}
673
J. Bruce Fields328ead22010-09-29 16:11:06 -0400674static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
675{
676 conn->cn_session = ses;
677 list_add(&conn->cn_persession, &ses->se_conns);
678}
679
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400680static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
681{
682 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400683
684 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -0400685 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400686 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400687}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400688
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400689static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400690{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400691 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400692 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400693}
694
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400695static __be32 nfsd4_new_conn(struct svc_rqst *rqstp, struct nfsd4_session *ses, u32 dir)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400696{
697 struct nfsd4_conn *conn;
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400698 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400699
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400700 conn = alloc_conn(rqstp, dir);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400701 if (!conn)
702 return nfserr_jukebox;
703 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400704 ret = nfsd4_register_conn(conn);
705 if (ret)
706 /* oops; xprt is already down: */
707 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400708 return nfs_ok;
709}
710
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400711static __be32 nfsd4_new_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_session *ses)
712{
713 u32 dir = NFS4_CDFC4_FORE;
714
715 if (ses->se_flags & SESSION4_BACK_CHAN)
716 dir |= NFS4_CDFC4_BACK;
717
718 return nfsd4_new_conn(rqstp, ses, dir);
719}
720
721/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400722static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400723{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400724 struct nfs4_client *clp = s->se_client;
725 struct nfsd4_conn *c;
726
727 spin_lock(&clp->cl_lock);
728 while (!list_empty(&s->se_conns)) {
729 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
730 list_del_init(&c->cn_persession);
731 spin_unlock(&clp->cl_lock);
732
733 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
734 free_conn(c);
735
736 spin_lock(&clp->cl_lock);
737 }
738 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400739}
740
741void free_session(struct kref *kref)
742{
743 struct nfsd4_session *ses;
744 int mem;
745
746 ses = container_of(kref, struct nfsd4_session, se_ref);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400747 nfsd4_del_conns(ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400748 spin_lock(&nfsd_drc_lock);
749 mem = ses->se_fchannel.maxreqs * slot_bytes(&ses->se_fchannel);
750 nfsd_drc_mem_used -= mem;
751 spin_unlock(&nfsd_drc_lock);
752 free_session_slots(ses);
753 kfree(ses);
754}
755
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400756static 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 -0400757{
758 struct nfsd4_session *new;
759 struct nfsd4_channel_attrs *fchan = &cses->fore_channel;
760 int numslots, slotsize;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400761 int status;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400762 int idx;
763
764 /*
765 * Note decreasing slot size below client's request may
766 * make it difficult for client to function correctly, whereas
767 * decreasing the number of slots will (just?) affect
768 * performance. When short on memory we therefore prefer to
769 * decrease number of slots instead of their size.
770 */
771 slotsize = nfsd4_sanitize_slot_size(fchan->maxresp_cached);
772 numslots = nfsd4_get_drc_mem(slotsize, fchan->maxreqs);
Mi Jinlongced6dfe2010-11-11 18:03:50 +0800773 if (numslots < 1)
774 return NULL;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400775
776 new = alloc_session(slotsize, numslots);
777 if (!new) {
778 nfsd4_put_drc_mem(slotsize, fchan->maxreqs);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400779 return NULL;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400780 }
781 init_forechannel_attrs(&new->se_fchannel, fchan, numslots, slotsize);
Andy Adamson557ce262009-08-28 08:45:04 -0400782
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300783 new->se_client = clp;
784 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300785
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400786 INIT_LIST_HEAD(&new->se_conns);
787
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400788 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300789 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -0400790 new->se_cb_prog = cses->callback_prog;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300791 kref_init(&new->se_ref);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400792 idx = hash_sessionid(&new->se_sessionid);
Benny Halevy9089f1b2010-05-12 00:12:26 +0300793 spin_lock(&client_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300794 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400795 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300796 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400797 spin_unlock(&clp->cl_lock);
Benny Halevy9089f1b2010-05-12 00:12:26 +0300798 spin_unlock(&client_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300799
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400800 status = nfsd4_new_conn_from_crses(rqstp, new);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400801 /* whoops: benny points out, status is ignored! (err, or bogus) */
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400802 if (status) {
803 free_session(&new->se_ref);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400804 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400805 }
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400806 if (cses->flags & SESSION4_BACK_CHAN) {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400807 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400808 /*
809 * This is a little silly; with sessions there's no real
810 * use for the callback address. Use the peer address
811 * as a reasonable default for now, but consider fixing
812 * the rpc client not to require an address in the
813 * future:
814 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400815 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
816 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400817 }
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400818 nfsd4_probe_callback(clp);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400819 return new;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300820}
821
Benny Halevy9089f1b2010-05-12 00:12:26 +0300822/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +0300823static struct nfsd4_session *
824find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
825{
826 struct nfsd4_session *elem;
827 int idx;
828
829 dump_sessionid(__func__, sessionid);
830 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +0300831 /* Search in the appropriate list */
832 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +0300833 if (!memcmp(elem->se_sessionid.data, sessionid->data,
834 NFS4_MAX_SESSIONID_LEN)) {
835 return elem;
836 }
837 }
838
839 dprintk("%s: session not found\n", __func__);
840 return NULL;
841}
842
Benny Halevy9089f1b2010-05-12 00:12:26 +0300843/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +0300844static void
Marc Eshel5282fd72009-04-03 08:27:52 +0300845unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +0300846{
847 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400848 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +0300849 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400850 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +0300851}
852
Benny Halevy36acb662010-05-12 00:13:04 +0300853/* must be called under the client_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854static inline void
Benny Halevy36acb662010-05-12 00:13:04 +0300855renew_client_locked(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Benny Halevy07cd4902010-05-12 00:13:41 +0300857 if (is_client_expired(clp)) {
858 dprintk("%s: client (clientid %08x/%08x) already expired\n",
859 __func__,
860 clp->cl_clientid.cl_boot,
861 clp->cl_clientid.cl_id);
862 return;
863 }
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /*
866 * Move client to the end to the LRU list.
867 */
868 dprintk("renewing client (clientid %08x/%08x)\n",
869 clp->cl_clientid.cl_boot,
870 clp->cl_clientid.cl_id);
871 list_move_tail(&clp->cl_lru, &client_lru);
872 clp->cl_time = get_seconds();
873}
874
Benny Halevy36acb662010-05-12 00:13:04 +0300875static inline void
876renew_client(struct nfs4_client *clp)
877{
878 spin_lock(&client_lock);
879 renew_client_locked(clp);
880 spin_unlock(&client_lock);
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
884static int
885STALE_CLIENTID(clientid_t *clid)
886{
887 if (clid->cl_boot == boot_time)
888 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +0300889 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
890 clid->cl_boot, clid->cl_id, boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return 1;
892}
893
894/*
895 * XXX Should we use a slab cache ?
896 * This type of memory management is somewhat inefficient, but we use it
897 * anyway since SETCLIENTID is not a common operation.
898 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500899static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 struct nfs4_client *clp;
902
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500903 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
904 if (clp == NULL)
905 return NULL;
906 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
907 if (clp->cl_name.data == NULL) {
908 kfree(clp);
909 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500911 memcpy(clp->cl_name.data, name.data, name.len);
912 clp->cl_name.len = name.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return clp;
914}
915
916static inline void
917free_client(struct nfs4_client *clp)
918{
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400919 while (!list_empty(&clp->cl_sessions)) {
920 struct nfsd4_session *ses;
921 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
922 se_perclnt);
923 list_del(&ses->se_perclnt);
924 nfsd4_put_session(ses);
925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (clp->cl_cred.cr_group_info)
927 put_group_info(clp->cl_cred.cr_group_info);
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500928 kfree(clp->cl_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 kfree(clp->cl_name.data);
930 kfree(clp);
931}
932
Benny Halevyd7682982010-05-12 00:13:54 +0300933void
934release_session_client(struct nfsd4_session *session)
935{
936 struct nfs4_client *clp = session->se_client;
937
938 if (!atomic_dec_and_lock(&clp->cl_refcount, &client_lock))
939 return;
940 if (is_client_expired(clp)) {
941 free_client(clp);
942 session->se_client = NULL;
943 } else
944 renew_client_locked(clp);
945 spin_unlock(&client_lock);
Benny Halevyd7682982010-05-12 00:13:54 +0300946}
947
Benny Halevy84d38ac2010-05-12 00:13:16 +0300948/* must be called under the client_lock */
949static inline void
950unhash_client_locked(struct nfs4_client *clp)
951{
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400952 struct nfsd4_session *ses;
953
Benny Halevy07cd4902010-05-12 00:13:41 +0300954 mark_client_expired(clp);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300955 list_del(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400956 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400957 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
958 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400959 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962static void
963expire_client(struct nfs4_client *clp)
964{
965 struct nfs4_stateowner *sop;
966 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 struct list_head reaplist;
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 INIT_LIST_HEAD(&reaplist);
970 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700971 while (!list_empty(&clp->cl_delegations)) {
972 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
NeilBrownea1da632005-06-23 22:04:17 -0700973 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 list_move(&dp->dl_recall_lru, &reaplist);
975 }
976 spin_unlock(&recall_lock);
977 while (!list_empty(&reaplist)) {
978 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
979 list_del_init(&dp->dl_recall_lru);
980 unhash_delegation(dp);
981 }
NeilBrownea1da632005-06-23 22:04:17 -0700982 while (!list_empty(&clp->cl_openowners)) {
983 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500984 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -0400986 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -0500987 if (clp->cl_cb_conn.cb_xprt)
988 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300989 list_del(&clp->cl_idhash);
990 list_del(&clp->cl_strhash);
991 spin_lock(&client_lock);
992 unhash_client_locked(clp);
Benny Halevy46583e22010-05-12 00:13:29 +0300993 if (atomic_read(&clp->cl_refcount) == 0)
994 free_client(clp);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300995 spin_unlock(&client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500998static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
999{
1000 memcpy(target->cl_verifier.data, source->data,
1001 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
1003
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001004static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1005{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1007 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1008}
1009
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001010static void copy_cred(struct svc_cred *target, struct svc_cred *source)
1011{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 target->cr_uid = source->cr_uid;
1013 target->cr_gid = source->cr_gid;
1014 target->cr_group_info = source->cr_group_info;
1015 get_group_info(target->cr_group_info);
1016}
1017
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001018static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001019{
NeilBrowna55370a2005-06-23 22:03:52 -07001020 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
1023static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001024same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1025{
1026 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
1029static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001030same_clid(clientid_t *cl1, clientid_t *cl2)
1031{
1032 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035/* XXX what about NGROUP */
1036static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001037same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1038{
1039 return cr1->cr_uid == cr2->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
J. Bruce Fields5ec7b462007-11-21 21:58:56 -05001042static void gen_clid(struct nfs4_client *clp)
1043{
1044 static u32 current_clientid = 1;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 clp->cl_clientid.cl_boot = boot_time;
1047 clp->cl_clientid.cl_id = current_clientid++;
1048}
1049
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001050static void gen_confirm(struct nfs4_client *clp)
1051{
1052 static u32 i;
1053 u32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 p = (u32 *)clp->cl_confirm.data;
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001056 *p++ = get_seconds();
1057 *p++ = i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001060static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir,
1061 struct svc_rqst *rqstp, nfs4_verifier *verf)
1062{
1063 struct nfs4_client *clp;
1064 struct sockaddr *sa = svc_addr(rqstp);
1065 char *princ;
1066
1067 clp = alloc_client(name);
1068 if (clp == NULL)
1069 return NULL;
1070
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001071 INIT_LIST_HEAD(&clp->cl_sessions);
1072
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001073 princ = svc_gss_principal(rqstp);
1074 if (princ) {
1075 clp->cl_principal = kstrdup(princ, GFP_KERNEL);
1076 if (clp->cl_principal == NULL) {
1077 free_client(clp);
1078 return NULL;
1079 }
1080 }
1081
1082 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Benny Halevy46583e22010-05-12 00:13:29 +03001083 atomic_set(&clp->cl_refcount, 0);
J. Bruce Fields77a35692010-04-30 18:51:44 -04001084 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001085 INIT_LIST_HEAD(&clp->cl_idhash);
1086 INIT_LIST_HEAD(&clp->cl_strhash);
1087 INIT_LIST_HEAD(&clp->cl_openowners);
1088 INIT_LIST_HEAD(&clp->cl_delegations);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001089 INIT_LIST_HEAD(&clp->cl_lru);
J. Bruce Fields5ce8ba22011-01-10 16:44:41 -05001090 INIT_LIST_HEAD(&clp->cl_callbacks);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001091 spin_lock_init(&clp->cl_lock);
J. Bruce Fieldscee277d2010-05-26 17:52:14 -04001092 INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_do_callback_rpc);
Benny Halevy07cd4902010-05-12 00:13:41 +03001093 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001094 clear_bit(0, &clp->cl_cb_slot_busy);
1095 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
1096 copy_verf(clp, verf);
1097 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
1098 clp->cl_flavor = rqstp->rq_flavor;
1099 copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1100 gen_confirm(clp);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001101 clp->cl_cb_session = NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001102 return clp;
1103}
1104
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001105static int check_name(struct xdr_netobj name)
1106{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (name.len == 0)
1108 return 0;
1109 if (name.len > NFS4_OPAQUE_LIMIT) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04001110 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return 0;
1112 }
1113 return 1;
1114}
1115
NeilBrownfd39ca92005-06-23 22:04:03 -07001116static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
1118{
1119 unsigned int idhashval;
1120
1121 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
1122 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1123 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
Benny Halevy36acb662010-05-12 00:13:04 +03001124 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
NeilBrownfd39ca92005-06-23 22:04:03 -07001127static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128move_to_confirmed(struct nfs4_client *clp)
1129{
1130 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1131 unsigned int strhashval;
1132
1133 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Akinobu Mitaf1166292006-06-26 00:24:46 -07001134 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07001135 strhashval = clientstr_hashval(clp->cl_recdir);
Benny Halevy328efba2010-05-12 00:12:51 +03001136 list_move(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 renew_client(clp);
1138}
1139
1140static struct nfs4_client *
1141find_confirmed_client(clientid_t *clid)
1142{
1143 struct nfs4_client *clp;
1144 unsigned int idhashval = clientid_hashval(clid->cl_id);
1145
1146 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001147 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return clp;
1149 }
1150 return NULL;
1151}
1152
1153static struct nfs4_client *
1154find_unconfirmed_client(clientid_t *clid)
1155{
1156 struct nfs4_client *clp;
1157 unsigned int idhashval = clientid_hashval(clid->cl_id);
1158
1159 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001160 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return clp;
1162 }
1163 return NULL;
1164}
1165
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001166static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001167{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001168 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001169}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001170
NeilBrown28ce6052005-06-23 22:03:56 -07001171static struct nfs4_client *
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001172find_confirmed_client_by_str(const char *dname, unsigned int hashval)
NeilBrown28ce6052005-06-23 22:03:56 -07001173{
1174 struct nfs4_client *clp;
1175
1176 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001177 if (same_name(clp->cl_recdir, dname))
NeilBrown28ce6052005-06-23 22:03:56 -07001178 return clp;
1179 }
1180 return NULL;
1181}
1182
1183static struct nfs4_client *
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001184find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
NeilBrown28ce6052005-06-23 22:03:56 -07001185{
1186 struct nfs4_client *clp;
1187
1188 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001189 if (same_name(clp->cl_recdir, dname))
NeilBrown28ce6052005-06-23 22:03:56 -07001190 return clp;
1191 }
1192 return NULL;
1193}
1194
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001195static void rpc_svcaddr2sockaddr(struct sockaddr *sa, unsigned short family, union svc_addr_u *svcaddr)
1196{
1197 switch (family) {
1198 case AF_INET:
1199 ((struct sockaddr_in *)sa)->sin_family = AF_INET;
1200 ((struct sockaddr_in *)sa)->sin_addr = svcaddr->addr;
1201 return;
1202 case AF_INET6:
1203 ((struct sockaddr_in6 *)sa)->sin6_family = AF_INET6;
1204 ((struct sockaddr_in6 *)sa)->sin6_addr = svcaddr->addr6;
1205 return;
1206 }
1207}
1208
NeilBrownfd39ca92005-06-23 22:04:03 -07001209static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001210gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
J. Bruce Fields07263f12010-05-31 19:09:40 -04001212 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001213 struct sockaddr *sa = svc_addr(rqstp);
1214 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04001215 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Jeff Layton7077ecb2009-08-14 12:57:58 -04001217 /* Currently, we only support tcp and tcp6 for the callback channel */
1218 if (se->se_callback_netid_len == 3 &&
1219 !memcmp(se->se_callback_netid_val, "tcp", 3))
1220 expected_family = AF_INET;
1221 else if (se->se_callback_netid_len == 4 &&
1222 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1223 expected_family = AF_INET6;
1224 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 goto out_err;
1226
J. Bruce Fields07263f12010-05-31 19:09:40 -04001227 conn->cb_addrlen = rpc_uaddr2sockaddr(se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001228 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04001229 (struct sockaddr *)&conn->cb_addr,
1230 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001231
J. Bruce Fields07263f12010-05-31 19:09:40 -04001232 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001234
J. Bruce Fields07263f12010-05-31 19:09:40 -04001235 if (conn->cb_addr.ss_family == AF_INET6)
1236 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04001237
J. Bruce Fields07263f12010-05-31 19:09:40 -04001238 conn->cb_prog = se->se_callback_prog;
1239 conn->cb_ident = se->se_callback_ident;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001240 rpc_svcaddr2sockaddr((struct sockaddr *)&conn->cb_saddr, expected_family, &rqstp->rq_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return;
1242out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04001243 conn->cb_addr.ss_family = AF_UNSPEC;
1244 conn->cb_addrlen = 0;
Neil Brown849823c2005-09-13 01:25:36 -07001245 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 "will not receive delegations\n",
1247 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return;
1250}
1251
Andy Adamson074fe892009-04-03 08:28:15 +03001252/*
Andy Adamson557ce262009-08-28 08:45:04 -04001253 * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03001254 */
1255void
1256nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1257{
Andy Adamson557ce262009-08-28 08:45:04 -04001258 struct nfsd4_slot *slot = resp->cstate.slot;
1259 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03001260
Andy Adamson557ce262009-08-28 08:45:04 -04001261 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001262
Andy Adamson557ce262009-08-28 08:45:04 -04001263 slot->sl_opcnt = resp->opcnt;
1264 slot->sl_status = resp->cstate.status;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001265
1266 if (nfsd4_not_cached(resp)) {
Andy Adamson557ce262009-08-28 08:45:04 -04001267 slot->sl_datalen = 0;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001268 return;
1269 }
Andy Adamson557ce262009-08-28 08:45:04 -04001270 slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap;
1271 base = (char *)resp->cstate.datap -
1272 (char *)resp->xbuf->head[0].iov_base;
1273 if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data,
1274 slot->sl_datalen))
1275 WARN("%s: sessions DRC could not cache compound\n", __func__);
1276 return;
Andy Adamson074fe892009-04-03 08:28:15 +03001277}
1278
1279/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04001280 * Encode the replay sequence operation from the slot values.
1281 * If cachethis is FALSE encode the uncached rep error on the next
1282 * operation which sets resp->p and increments resp->opcnt for
1283 * nfs4svc_encode_compoundres.
1284 *
Andy Adamson074fe892009-04-03 08:28:15 +03001285 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04001286static __be32
1287nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1288 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03001289{
Andy Adamsonabfabf82009-07-23 19:02:18 -04001290 struct nfsd4_op *op;
1291 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001292
Andy Adamsonabfabf82009-07-23 19:02:18 -04001293 dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__,
Andy Adamson557ce262009-08-28 08:45:04 -04001294 resp->opcnt, resp->cstate.slot->sl_cachethis);
Andy Adamsonabfabf82009-07-23 19:02:18 -04001295
1296 /* Encode the replayed sequence operation */
1297 op = &args->ops[resp->opcnt - 1];
1298 nfsd4_encode_operation(resp, op);
1299
1300 /* Return nfserr_retry_uncached_rep in next operation. */
Andy Adamson557ce262009-08-28 08:45:04 -04001301 if (args->opcnt > 1 && slot->sl_cachethis == 0) {
Andy Adamsonabfabf82009-07-23 19:02:18 -04001302 op = &args->ops[resp->opcnt++];
1303 op->status = nfserr_retry_uncached_rep;
1304 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03001305 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04001306 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03001307}
1308
1309/*
Andy Adamson557ce262009-08-28 08:45:04 -04001310 * The sequence operation is not cached because we can use the slot and
1311 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03001312 */
1313__be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03001314nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1315 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03001316{
Andy Adamson557ce262009-08-28 08:45:04 -04001317 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001318 __be32 status;
1319
Andy Adamson557ce262009-08-28 08:45:04 -04001320 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001321
Andy Adamsonabfabf82009-07-23 19:02:18 -04001322 /* Either returns 0 or nfserr_retry_uncached */
1323 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1324 if (status == nfserr_retry_uncached_rep)
1325 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03001326
Andy Adamson557ce262009-08-28 08:45:04 -04001327 /* The sequence operation has been encoded, cstate->datap set. */
1328 memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen);
Andy Adamson074fe892009-04-03 08:28:15 +03001329
Andy Adamson557ce262009-08-28 08:45:04 -04001330 resp->opcnt = slot->sl_opcnt;
1331 resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen);
1332 status = slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03001333
1334 return status;
1335}
1336
Andy Adamson0733d212009-04-03 08:28:01 +03001337/*
1338 * Set the exchange_id flags returned by the server.
1339 */
1340static void
1341nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1342{
1343 /* pNFS is not supported */
1344 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1345
1346 /* Referrals are supported, Migration is not. */
1347 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1348
1349 /* set the wire flags to return to client. */
1350 clid->flags = new->cl_exchange_flags;
1351}
1352
Al Virob37ad282006-10-19 23:28:59 -07001353__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03001354nfsd4_exchange_id(struct svc_rqst *rqstp,
1355 struct nfsd4_compound_state *cstate,
1356 struct nfsd4_exchange_id *exid)
1357{
Andy Adamson0733d212009-04-03 08:28:01 +03001358 struct nfs4_client *unconf, *conf, *new;
1359 int status;
1360 unsigned int strhashval;
1361 char dname[HEXDIR_LEN];
Jeff Layton363168b2009-08-14 12:57:56 -04001362 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03001363 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04001364 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamson0733d212009-04-03 08:28:01 +03001365
Jeff Layton363168b2009-08-14 12:57:56 -04001366 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03001367 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04001368 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03001369 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04001370 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03001371
1372 if (!check_name(exid->clname) || (exid->flags & ~EXCHGID4_FLAG_MASK_A))
1373 return nfserr_inval;
1374
1375 /* Currently only support SP4_NONE */
1376 switch (exid->spa_how) {
1377 case SP4_NONE:
1378 break;
1379 case SP4_SSV:
J. Bruce Fields044bc1d2010-11-12 14:36:06 -05001380 return nfserr_serverfault;
Andy Adamson0733d212009-04-03 08:28:01 +03001381 default:
1382 BUG(); /* checked by xdr code */
1383 case SP4_MACH_CRED:
1384 return nfserr_serverfault; /* no excuse :-/ */
1385 }
1386
1387 status = nfs4_make_rec_clidname(dname, &exid->clname);
1388
1389 if (status)
1390 goto error;
1391
1392 strhashval = clientstr_hashval(dname);
1393
1394 nfs4_lock_state();
1395 status = nfs_ok;
1396
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001397 conf = find_confirmed_client_by_str(dname, strhashval);
Andy Adamson0733d212009-04-03 08:28:01 +03001398 if (conf) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001399 if (!clp_used_exchangeid(conf)) {
1400 status = nfserr_clid_inuse; /* XXX: ? */
1401 goto out;
1402 }
Andy Adamson0733d212009-04-03 08:28:01 +03001403 if (!same_verf(&verf, &conf->cl_verifier)) {
1404 /* 18.35.4 case 8 */
1405 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1406 status = nfserr_not_same;
1407 goto out;
1408 }
1409 /* Client reboot: destroy old state */
1410 expire_client(conf);
1411 goto out_new;
1412 }
1413 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1414 /* 18.35.4 case 9 */
1415 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1416 status = nfserr_perm;
1417 goto out;
1418 }
1419 expire_client(conf);
1420 goto out_new;
1421 }
Andy Adamson0733d212009-04-03 08:28:01 +03001422 /*
1423 * Set bit when the owner id and verifier map to an already
1424 * confirmed client id (18.35.3).
1425 */
1426 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1427
1428 /*
1429 * Falling into 18.35.4 case 2, possible router replay.
1430 * Leave confirmed record intact and return same result.
1431 */
1432 copy_verf(conf, &verf);
1433 new = conf;
1434 goto out_copy;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03001435 }
1436
1437 /* 18.35.4 case 7 */
1438 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1439 status = nfserr_noent;
1440 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03001441 }
1442
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001443 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Andy Adamson0733d212009-04-03 08:28:01 +03001444 if (unconf) {
1445 /*
1446 * Possible retry or client restart. Per 18.35.4 case 4,
1447 * a new unconfirmed record should be generated regardless
1448 * of whether any properties have changed.
1449 */
1450 expire_client(unconf);
1451 }
1452
1453out_new:
1454 /* Normal case */
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001455 new = create_client(exid->clname, dname, rqstp, &verf);
Andy Adamson0733d212009-04-03 08:28:01 +03001456 if (new == NULL) {
J. Bruce Fields47310302010-06-22 16:17:12 -04001457 status = nfserr_jukebox;
Andy Adamson0733d212009-04-03 08:28:01 +03001458 goto out;
1459 }
1460
Andy Adamson0733d212009-04-03 08:28:01 +03001461 gen_clid(new);
Andy Adamson0733d212009-04-03 08:28:01 +03001462 add_to_unconfirmed(new, strhashval);
1463out_copy:
1464 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1465 exid->clientid.cl_id = new->cl_clientid.cl_id;
1466
Andy Adamson38eb76a2009-04-03 08:28:32 +03001467 exid->seqid = 1;
Andy Adamson0733d212009-04-03 08:28:01 +03001468 nfsd4_set_ex_flags(new, exid);
1469
1470 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001471 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03001472 status = nfs_ok;
1473
1474out:
1475 nfs4_unlock_state();
1476error:
1477 dprintk("nfsd4_exchange_id returns %d\n", ntohl(status));
1478 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001479}
1480
Benny Halevyb85d4c02009-04-03 08:28:08 +03001481static int
Andy Adamson88e588d2009-07-23 19:02:15 -04001482check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001483{
Andy Adamson88e588d2009-07-23 19:02:15 -04001484 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1485 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001486
1487 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04001488 if (slot_inuse) {
1489 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001490 return nfserr_jukebox;
1491 else
1492 return nfserr_seq_misordered;
1493 }
1494 /* Normal */
Andy Adamson88e588d2009-07-23 19:02:15 -04001495 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03001496 return nfs_ok;
1497 /* Replay */
Andy Adamson88e588d2009-07-23 19:02:15 -04001498 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001499 return nfserr_replay_cache;
1500 /* Wraparound */
Andy Adamson88e588d2009-07-23 19:02:15 -04001501 if (seqid == 1 && (slot_seqid + 1) == 0)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001502 return nfs_ok;
1503 /* Misordered replay or misordered new request */
1504 return nfserr_seq_misordered;
1505}
1506
Andy Adamson49557cc2009-07-23 19:02:16 -04001507/*
1508 * Cache the create session result into the create session single DRC
1509 * slot cache by saving the xdr structure. sl_seqid has been set.
1510 * Do this for solo or embedded create session operations.
1511 */
1512static void
1513nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
1514 struct nfsd4_clid_slot *slot, int nfserr)
1515{
1516 slot->sl_status = nfserr;
1517 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1518}
1519
1520static __be32
1521nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1522 struct nfsd4_clid_slot *slot)
1523{
1524 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1525 return slot->sl_status;
1526}
1527
Mi Jinlong1b74c252011-07-14 14:50:17 +08001528#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
1529 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
1530 1 + /* MIN tag is length with zero, only length */ \
1531 3 + /* version, opcount, opcode */ \
1532 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1533 /* seqid, slotID, slotID, cache */ \
1534 4 ) * sizeof(__be32))
1535
1536#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
1537 2 + /* verifier: AUTH_NULL, length 0 */\
1538 1 + /* status */ \
1539 1 + /* MIN tag is length with zero, only length */ \
1540 3 + /* opcount, opcode, opstatus*/ \
1541 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1542 /* seqid, slotID, slotID, slotID, status */ \
1543 5 ) * sizeof(__be32))
1544
1545static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs fchannel)
1546{
1547 return fchannel.maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ
1548 || fchannel.maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ;
1549}
1550
Andy Adamson069b6ad2009-04-03 08:27:58 +03001551__be32
1552nfsd4_create_session(struct svc_rqst *rqstp,
1553 struct nfsd4_compound_state *cstate,
1554 struct nfsd4_create_session *cr_ses)
1555{
Jeff Layton363168b2009-08-14 12:57:56 -04001556 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001557 struct nfs4_client *conf, *unconf;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001558 struct nfsd4_session *new;
Andy Adamson49557cc2009-07-23 19:02:16 -04001559 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001560 bool confirm_me = false;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001561 int status = 0;
1562
Mi Jinlonga62573d2011-03-23 17:57:07 +08001563 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
1564 return nfserr_inval;
1565
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001566 nfs4_lock_state();
1567 unconf = find_unconfirmed_client(&cr_ses->clientid);
1568 conf = find_confirmed_client(&cr_ses->clientid);
1569
1570 if (conf) {
Andy Adamson49557cc2009-07-23 19:02:16 -04001571 cs_slot = &conf->cl_cs_slot;
1572 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001573 if (status == nfserr_replay_cache) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001574 dprintk("Got a create_session replay! seqid= %d\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001575 cs_slot->sl_seqid);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001576 /* Return the cached reply status */
Andy Adamson49557cc2009-07-23 19:02:16 -04001577 status = nfsd4_replay_create_session(cr_ses, cs_slot);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001578 goto out;
Andy Adamson49557cc2009-07-23 19:02:16 -04001579 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001580 status = nfserr_seq_misordered;
1581 dprintk("Sequence misordered!\n");
1582 dprintk("Expected seqid= %d but got seqid= %d\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001583 cs_slot->sl_seqid, cr_ses->seqid);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001584 goto out;
1585 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001586 } else if (unconf) {
1587 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04001588 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001589 status = nfserr_clid_inuse;
1590 goto out;
1591 }
1592
Andy Adamson49557cc2009-07-23 19:02:16 -04001593 cs_slot = &unconf->cl_cs_slot;
1594 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001595 if (status) {
1596 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001597 status = nfserr_seq_misordered;
J. Bruce Fieldscd5b8142010-10-02 17:03:35 -04001598 goto out;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001599 }
1600
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001601 confirm_me = true;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001602 conf = unconf;
1603 } else {
1604 status = nfserr_stale_clientid;
1605 goto out;
1606 }
1607
J. Bruce Fields408b79b2010-04-15 15:11:09 -04001608 /*
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04001609 * XXX: we should probably set this at creation time, and check
1610 * for consistent minorversion use throughout:
1611 */
1612 conf->cl_minorversion = 1;
1613 /*
J. Bruce Fields408b79b2010-04-15 15:11:09 -04001614 * We do not support RDMA or persistent sessions
1615 */
1616 cr_ses->flags &= ~SESSION4_PERSIST;
1617 cr_ses->flags &= ~SESSION4_RDMA;
1618
Mi Jinlong1b74c252011-07-14 14:50:17 +08001619 status = nfserr_toosmall;
1620 if (check_forechannel_attrs(cr_ses->fore_channel))
1621 goto out;
1622
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001623 status = nfserr_jukebox;
1624 new = alloc_init_session(rqstp, conf, cr_ses);
1625 if (!new)
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001626 goto out;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001627 status = nfs_ok;
1628 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001629 NFS4_MAX_SESSIONID_LEN);
Mi Jinlong12050652010-11-11 18:03:40 +08001630 memcpy(&cr_ses->fore_channel, &new->se_fchannel,
1631 sizeof(struct nfsd4_channel_attrs));
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001632 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04001633 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001634
Andy Adamson49557cc2009-07-23 19:02:16 -04001635 /* cache solo and embedded create sessions under the state lock */
1636 nfsd4_cache_create_session(cr_ses, cs_slot, status);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001637 if (confirm_me)
1638 move_to_confirmed(conf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001639out:
1640 nfs4_unlock_state();
1641 dprintk("%s returns %d\n", __func__, ntohl(status));
1642 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001643}
1644
J. Bruce Fields57716352010-04-21 12:27:19 -04001645static bool nfsd4_last_compound_op(struct svc_rqst *rqstp)
1646{
1647 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1648 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1649
1650 return argp->opcnt == resp->opcnt;
1651}
1652
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001653static __be32 nfsd4_map_bcts_dir(u32 *dir)
1654{
1655 switch (*dir) {
1656 case NFS4_CDFC4_FORE:
1657 case NFS4_CDFC4_BACK:
1658 return nfs_ok;
1659 case NFS4_CDFC4_FORE_OR_BOTH:
1660 case NFS4_CDFC4_BACK_OR_BOTH:
1661 *dir = NFS4_CDFC4_BOTH;
1662 return nfs_ok;
1663 };
1664 return nfserr_inval;
1665}
1666
1667__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
1668 struct nfsd4_compound_state *cstate,
1669 struct nfsd4_bind_conn_to_session *bcts)
1670{
1671 __be32 status;
1672
1673 if (!nfsd4_last_compound_op(rqstp))
1674 return nfserr_not_only_op;
1675 spin_lock(&client_lock);
1676 cstate->session = find_in_sessionid_hashtbl(&bcts->sessionid);
1677 /* Sorta weird: we only need the refcnt'ing because new_conn acquires
1678 * client_lock iself: */
1679 if (cstate->session) {
1680 nfsd4_get_session(cstate->session);
1681 atomic_inc(&cstate->session->se_client->cl_refcount);
1682 }
1683 spin_unlock(&client_lock);
1684 if (!cstate->session)
1685 return nfserr_badsession;
1686
1687 status = nfsd4_map_bcts_dir(&bcts->dir);
Bryan Schumaker1db2b9d2011-04-27 15:47:15 -04001688 if (!status)
1689 nfsd4_new_conn(rqstp, cstate->session, bcts->dir);
1690 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001691}
1692
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04001693static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
1694{
1695 if (!session)
1696 return 0;
1697 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
1698}
1699
Andy Adamson069b6ad2009-04-03 08:27:58 +03001700__be32
1701nfsd4_destroy_session(struct svc_rqst *r,
1702 struct nfsd4_compound_state *cstate,
1703 struct nfsd4_destroy_session *sessionid)
1704{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001705 struct nfsd4_session *ses;
1706 u32 status = nfserr_badsession;
1707
1708 /* Notes:
1709 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1710 * - Should we return nfserr_back_chan_busy if waiting for
1711 * callbacks on to-be-destroyed session?
1712 * - Do we need to clear any callback info from previous session?
1713 */
1714
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04001715 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04001716 if (!nfsd4_last_compound_op(r))
1717 return nfserr_not_only_op;
1718 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03001719 dump_sessionid(__func__, &sessionid->sessionid);
Benny Halevy9089f1b2010-05-12 00:12:26 +03001720 spin_lock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001721 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1722 if (!ses) {
Benny Halevy9089f1b2010-05-12 00:12:26 +03001723 spin_unlock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001724 goto out;
1725 }
1726
1727 unhash_session(ses);
Benny Halevy9089f1b2010-05-12 00:12:26 +03001728 spin_unlock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001729
Benny Halevyab707e152010-05-12 00:14:06 +03001730 nfs4_lock_state();
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05001731 nfsd4_probe_callback_sync(ses->se_client);
Benny Halevyab707e152010-05-12 00:14:06 +03001732 nfs4_unlock_state();
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001733
1734 nfsd4_del_conns(ses);
1735
Benny Halevye10e0cf2009-04-03 08:28:38 +03001736 nfsd4_put_session(ses);
1737 status = nfs_ok;
1738out:
1739 dprintk("%s returns %d\n", __func__, ntohl(status));
1740 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001741}
1742
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001743static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04001744{
1745 struct nfsd4_conn *c;
1746
1747 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001748 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04001749 return c;
1750 }
1751 }
1752 return NULL;
1753}
1754
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001755static void nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04001756{
1757 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001758 struct nfsd4_conn *c;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001759 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04001760
1761 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001762 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001763 if (c) {
1764 spin_unlock(&clp->cl_lock);
1765 free_conn(new);
1766 return;
1767 }
1768 __nfsd4_hash_conn(new, ses);
1769 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001770 ret = nfsd4_register_conn(new);
1771 if (ret)
1772 /* oops; xprt is already down: */
1773 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001774 return;
1775}
1776
Mi Jinlong868b89c2011-04-27 09:09:58 +08001777static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
1778{
1779 struct nfsd4_compoundargs *args = rqstp->rq_argp;
1780
1781 return args->opcnt > session->se_fchannel.maxops;
1782}
1783
Mi Jinlongae82a8d2011-07-14 14:56:02 +08001784static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
1785 struct nfsd4_session *session)
1786{
1787 struct xdr_buf *xb = &rqstp->rq_arg;
1788
1789 return xb->len > session->se_fchannel.maxreq_sz;
1790}
1791
Andy Adamson069b6ad2009-04-03 08:27:58 +03001792__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03001793nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001794 struct nfsd4_compound_state *cstate,
1795 struct nfsd4_sequence *seq)
1796{
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001797 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001798 struct nfsd4_session *session;
1799 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001800 struct nfsd4_conn *conn;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001801 int status;
1802
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001803 if (resp->opcnt != 1)
1804 return nfserr_sequence_pos;
1805
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001806 /*
1807 * Will be either used or freed by nfsd4_sequence_check_conn
1808 * below.
1809 */
1810 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
1811 if (!conn)
1812 return nfserr_jukebox;
1813
Benny Halevy9089f1b2010-05-12 00:12:26 +03001814 spin_lock(&client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001815 status = nfserr_badsession;
1816 session = find_in_sessionid_hashtbl(&seq->sessionid);
1817 if (!session)
1818 goto out;
1819
Mi Jinlong868b89c2011-04-27 09:09:58 +08001820 status = nfserr_too_many_ops;
1821 if (nfsd4_session_too_many_ops(rqstp, session))
1822 goto out;
1823
Mi Jinlongae82a8d2011-07-14 14:56:02 +08001824 status = nfserr_req_too_big;
1825 if (nfsd4_request_too_big(rqstp, session))
1826 goto out;
1827
Benny Halevyb85d4c02009-04-03 08:28:08 +03001828 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03001829 if (seq->slotid >= session->se_fchannel.maxreqs)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001830 goto out;
1831
Andy Adamson557ce262009-08-28 08:45:04 -04001832 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03001833 dprintk("%s: slotid %d\n", __func__, seq->slotid);
1834
Andy Adamsona8dfdae2009-08-28 08:45:02 -04001835 /* We do not negotiate the number of slots yet, so set the
1836 * maxslots to the session maxreqs which is used to encode
1837 * sr_highest_slotid and the sr_target_slot id to maxslots */
1838 seq->maxslots = session->se_fchannel.maxreqs;
1839
Andy Adamson88e588d2009-07-23 19:02:15 -04001840 status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001841 if (status == nfserr_replay_cache) {
1842 cstate->slot = slot;
1843 cstate->session = session;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001844 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04001845 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03001846 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03001847 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001848 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001849 }
1850 if (status)
1851 goto out;
1852
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001853 nfsd4_sequence_check_conn(conn, session);
1854 conn = NULL;
J. Bruce Fields328ead22010-09-29 16:11:06 -04001855
Benny Halevyb85d4c02009-04-03 08:28:08 +03001856 /* Success! bump slot seqid */
1857 slot->sl_inuse = true;
1858 slot->sl_seqid = seq->seqid;
Andy Adamson557ce262009-08-28 08:45:04 -04001859 slot->sl_cachethis = seq->cachethis;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001860
1861 cstate->slot = slot;
1862 cstate->session = session;
1863
Benny Halevyb85d4c02009-04-03 08:28:08 +03001864out:
J. Bruce Fields26c0c752010-04-24 15:35:43 -04001865 /* Hold a session reference until done processing the compound. */
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001866 if (cstate->session) {
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05001867 struct nfs4_client *clp = session->se_client;
1868
Benny Halevy36acb662010-05-12 00:13:04 +03001869 nfsd4_get_session(cstate->session);
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05001870 atomic_inc(&clp->cl_refcount);
1871 if (clp->cl_cb_state == NFSD4_CB_DOWN)
1872 seq->status_flags |= SEQ4_STATUS_CB_PATH_DOWN;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001873 }
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001874 kfree(conn);
Benny Halevy36acb662010-05-12 00:13:04 +03001875 spin_unlock(&client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001876 dprintk("%s: return %d\n", __func__, ntohl(status));
1877 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001878}
1879
1880__be32
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001881nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
1882{
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001883 int status = 0;
1884
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001885 if (rc->rca_one_fs) {
1886 if (!cstate->current_fh.fh_dentry)
1887 return nfserr_nofilehandle;
1888 /*
1889 * We don't take advantage of the rca_one_fs case.
1890 * That's OK, it's optional, we can safely ignore it.
1891 */
1892 return nfs_ok;
1893 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001894
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001895 nfs4_lock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001896 status = nfserr_complete_already;
1897 if (cstate->session->se_client->cl_firststate)
1898 goto out;
1899
1900 status = nfserr_stale_clientid;
1901 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001902 /*
1903 * The following error isn't really legal.
1904 * But we only get here if the client just explicitly
1905 * destroyed the client. Surely it no longer cares what
1906 * error it gets back on an operation for the dead
1907 * client.
1908 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001909 goto out;
1910
1911 status = nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001912 nfsd4_create_clid_dir(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001913out:
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001914 nfs4_unlock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001915 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001916}
1917
1918__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001919nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1920 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 struct xdr_netobj clname = {
1923 .len = setclid->se_namelen,
1924 .data = setclid->se_name,
1925 };
1926 nfs4_verifier clverifier = setclid->se_verf;
1927 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -07001928 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -07001929 __be32 status;
NeilBrowna55370a2005-06-23 22:03:52 -07001930 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -07001933 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
NeilBrowna55370a2005-06-23 22:03:52 -07001935 status = nfs4_make_rec_clidname(dname, &clname);
1936 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -07001937 return status;
NeilBrowna55370a2005-06-23 22:03:52 -07001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 /*
1940 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1941 * We get here on a DRC miss.
1942 */
1943
NeilBrowna55370a2005-06-23 22:03:52 -07001944 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 nfs4_lock_state();
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001947 conf = find_confirmed_client_by_str(dname, strhashval);
NeilBrown28ce6052005-06-23 22:03:56 -07001948 if (conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001949 /* RFC 3530 14.2.33 CASE 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001951 if (clp_used_exchangeid(conf))
1952 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04001953 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04001954 char addr_str[INET6_ADDRSTRLEN];
1955 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
1956 sizeof(addr_str));
1957 dprintk("NFSD: setclientid: string in use by client "
1958 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 goto out;
1960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001962 /*
1963 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
1964 * has a description of SETCLIENTID request processing consisting
1965 * of 5 bullet points, labeled as CASE0 - CASE4 below.
1966 */
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001967 unconf = find_unconfirmed_client_by_str(dname, strhashval);
J. Bruce Fields3e772462011-08-10 19:07:33 -04001968 status = nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001970 /*
1971 * RFC 3530 14.2.33 CASE 4:
1972 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 */
1974 if (unconf)
1975 expire_client(unconf);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001976 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07001977 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001980 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001982 * RFC 3530 14.2.33 CASE 1:
1983 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 */
NeilBrown31f4a6c2005-06-23 22:04:06 -07001985 if (unconf) {
1986 /* Note this is removing unconfirmed {*x***},
1987 * which is stronger than RFC recommended {vxc**}.
1988 * This has the advantage that there is at most
1989 * one {*x***} in either list at any time.
1990 */
1991 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001993 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07001994 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 } else if (!unconf) {
1998 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001999 * RFC 3530 14.2.33 CASE 2:
2000 * probable client reboot; state will be removed if
2001 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 */
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002003 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07002004 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 gen_clid(new);
J. Bruce Fields49ba8782007-11-19 19:09:50 -05002007 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002008 /*
2009 * RFC 3530 14.2.33 CASE 3:
2010 * probable client reboot; state will be removed if
2011 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 */
2013 expire_client(unconf);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002014 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07002015 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04002019 /*
2020 * XXX: we should probably set this at creation time, and check
2021 * for consistent minorversion use throughout:
2022 */
2023 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002024 gen_callback(new, setclid, rqstp);
J. Bruce Fieldsc175b832007-08-09 18:34:32 -04002025 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2027 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2028 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2029 status = nfs_ok;
2030out:
2031 nfs4_unlock_state();
2032 return status;
2033}
2034
2035
2036/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002037 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
2038 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
2039 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 */
Al Virob37ad282006-10-19 23:28:59 -07002041__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002042nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2043 struct nfsd4_compound_state *cstate,
2044 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Jeff Layton363168b2009-08-14 12:57:56 -04002046 struct sockaddr *sa = svc_addr(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -07002047 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2049 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07002050 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 if (STALE_CLIENTID(clid))
2053 return nfserr_stale_clientid;
2054 /*
2055 * XXX The Duplicate Request Cache (DRC) has been checked (??)
2056 * We get here on a DRC miss.
2057 */
2058
2059 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -07002060
2061 conf = find_confirmed_client(clid);
2062 unconf = find_unconfirmed_client(clid);
2063
2064 status = nfserr_clid_inuse;
Jeff Layton363168b2009-08-14 12:57:56 -04002065 if (conf && !rpc_cmp_addr((struct sockaddr *) &conf->cl_addr, sa))
NeilBrown21ab45a2005-06-23 22:04:14 -07002066 goto out;
Jeff Layton363168b2009-08-14 12:57:56 -04002067 if (unconf && !rpc_cmp_addr((struct sockaddr *) &unconf->cl_addr, sa))
NeilBrown21ab45a2005-06-23 22:04:14 -07002068 goto out;
2069
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002070 /*
2071 * section 14.2.34 of RFC 3530 has a description of
2072 * SETCLIENTID_CONFIRM request processing consisting
2073 * of 4 bullet points, labeled as CASE1 - CASE4 below.
2074 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -05002075 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002076 /*
2077 * RFC 3530 14.2.34 CASE 1:
2078 * callback update
2079 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002080 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 status = nfserr_clid_inuse;
2082 else {
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -04002083 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2084 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002085 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -07002087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -05002089 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002090 /*
2091 * RFC 3530 14.2.34 CASE 2:
2092 * probable retransmitted request; play it safe and
2093 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -07002094 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002095 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -07002097 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -07002099 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002100 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002101 /*
2102 * RFC 3530 14.2.34 CASE 3:
2103 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -07002104 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002105 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 status = nfserr_clid_inuse;
2107 } else {
NeilBrown1a69c172005-06-23 22:04:08 -07002108 unsigned int hash =
2109 clientstr_hashval(unconf->cl_recdir);
2110 conf = find_confirmed_client_by_str(unconf->cl_recdir,
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002111 hash);
NeilBrown1a69c172005-06-23 22:04:08 -07002112 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -07002113 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002114 expire_client(conf);
2115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -07002117 conf = unconf;
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -04002118 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002119 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002121 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
2122 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -07002123 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002124 /*
2125 * RFC 3530 14.2.34 CASE 4:
2126 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -07002127 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -07002129 } else {
NeilBrown08e89872005-06-23 22:04:11 -07002130 /* check that we have hit one of the cases...*/
2131 status = nfserr_clid_inuse;
2132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 nfs4_unlock_state();
2135 return status;
2136}
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138/* OPEN Share state helper functions */
2139static inline struct nfs4_file *
2140alloc_init_file(struct inode *ino)
2141{
2142 struct nfs4_file *fp;
2143 unsigned int hashval = file_hashval(ino);
2144
NeilBrowne60d4392005-06-23 22:03:01 -07002145 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
2146 if (fp) {
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002147 atomic_set(&fp->fi_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -07002149 INIT_LIST_HEAD(&fp->fi_stateids);
2150 INIT_LIST_HEAD(&fp->fi_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 fp->fi_inode = igrab(ino);
2152 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07002153 fp->fi_had_conflict = false;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002154 fp->fi_lease = NULL;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002155 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2156 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Pavel Emelyanov47cee542010-05-17 20:00:37 +04002157 spin_lock(&recall_lock);
2158 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
2159 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 return fp;
2161 }
2162 return NULL;
2163}
2164
2165static void
Christoph Lametere18b8902006-12-06 20:33:20 -08002166nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07002167{
NeilBrowne60d4392005-06-23 22:03:01 -07002168 if (*slab == NULL)
2169 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07002170 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002171 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07002172}
2173
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04002174void
NeilBrowne60d4392005-06-23 22:03:01 -07002175nfsd4_free_slabs(void)
2176{
2177 nfsd4_free_slab(&stateowner_slab);
2178 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07002179 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002180 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002181}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183static int
2184nfsd4_init_slabs(void)
2185{
2186 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09002187 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002188 if (stateowner_slab == NULL)
2189 goto out_nomem;
2190 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09002191 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002192 if (file_slab == NULL)
2193 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07002194 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09002195 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07002196 if (stateid_slab == NULL)
2197 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07002198 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09002199 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002200 if (deleg_slab == NULL)
2201 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07002203out_nomem:
2204 nfsd4_free_slabs();
2205 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2206 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207}
2208
2209void
2210nfs4_free_stateowner(struct kref *kref)
2211{
2212 struct nfs4_stateowner *sop =
2213 container_of(kref, struct nfs4_stateowner, so_ref);
2214 kfree(sop->so_owner.data);
2215 kmem_cache_free(stateowner_slab, sop);
2216}
2217
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002218static void init_nfs4_replay(struct nfs4_replay *rp)
2219{
2220 rp->rp_status = nfserr_serverfault;
2221 rp->rp_buflen = 0;
2222 rp->rp_buf = rp->rp_ibuf;
2223}
2224
2225static inline struct nfs4_stateowner *alloc_stateowner(struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
2227 struct nfs4_stateowner *sop;
2228
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002229 sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL);
2230 if (!sop)
2231 return NULL;
2232
2233 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2234 if (!sop->so_owner.data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 kmem_cache_free(stateowner_slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002236 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002238 sop->so_owner.len = owner->len;
2239
2240 kref_init(&sop->so_ref);
2241 INIT_LIST_HEAD(&sop->so_perclient);
2242 INIT_LIST_HEAD(&sop->so_stateids);
2243 INIT_LIST_HEAD(&sop->so_perstateid);
2244 INIT_LIST_HEAD(&sop->so_close_lru);
2245 sop->so_id = current_ownerid++;
2246 sop->so_time = 0;
2247 sop->so_client = clp;
2248 init_nfs4_replay(&sop->so_replay);
2249 return sop;
2250}
2251
2252static void hash_openowner(struct nfs4_stateowner *sop, struct nfs4_client *clp, unsigned int strhashval)
2253{
2254 unsigned int idhashval;
2255
2256 idhashval = open_ownerid_hashval(sop->so_id);
2257 list_add(&sop->so_idhash, &open_ownerid_hashtbl[idhashval]);
2258 list_add(&sop->so_strhash, &open_ownerstr_hashtbl[strhashval]);
2259 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260}
2261
2262static struct nfs4_stateowner *
2263alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
2264 struct nfs4_stateowner *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002266 sop = alloc_stateowner(&open->op_owner, clp);
2267 if (!sop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 sop->so_is_open_owner = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 sop->so_seqid = open->op_seqid;
2271 sop->so_confirmed = 0;
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002272 hash_openowner(sop, clp, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return sop;
2274}
2275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276static inline void
2277init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
2278 struct nfs4_stateowner *sop = open->op_stateowner;
2279 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2280
2281 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07002282 INIT_LIST_HEAD(&stp->st_perstateowner);
2283 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 INIT_LIST_HEAD(&stp->st_perfile);
2285 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002286 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07002287 list_add(&stp->st_perfile, &fp->fi_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07002289 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 stp->st_file = fp;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04002291 stp->st_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 stp->st_stateid.si_stateownerid = sop->so_id;
2293 stp->st_stateid.si_fileid = fp->fi_id;
2294 stp->st_stateid.si_generation = 0;
2295 stp->st_access_bmap = 0;
2296 stp->st_deny_bmap = 0;
Andy Adamson84459a12009-04-03 08:28:56 +03002297 __set_bit(open->op_share_access & ~NFS4_SHARE_WANT_MASK,
2298 &stp->st_access_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07002300 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
2303static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304move_to_close_lru(struct nfs4_stateowner *sop)
2305{
2306 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
2307
NeilBrown358dd552006-04-10 22:55:42 -07002308 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 sop->so_time = get_seconds();
2310}
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002313same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
2314 clientid_t *clid)
2315{
2316 return (sop->so_owner.len == owner->len) &&
2317 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
2318 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319}
2320
2321static struct nfs4_stateowner *
2322find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
2323{
2324 struct nfs4_stateowner *so = NULL;
2325
J. Bruce Fields506f2752011-08-11 18:50:18 -04002326 list_for_each_entry(so, &open_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002327 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 return so;
2329 }
2330 return NULL;
2331}
2332
2333/* search file_hashtbl[] for file */
2334static struct nfs4_file *
2335find_file(struct inode *ino)
2336{
2337 unsigned int hashval = file_hashval(ino);
2338 struct nfs4_file *fp;
2339
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002340 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07002342 if (fp->fi_inode == ino) {
2343 get_nfs4_file(fp);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002344 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07002346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002348 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 return NULL;
2350}
2351
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002352static inline int access_valid(u32 x, u32 minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002353{
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002354 if ((x & NFS4_SHARE_ACCESS_MASK) < NFS4_SHARE_ACCESS_READ)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002355 return 0;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002356 if ((x & NFS4_SHARE_ACCESS_MASK) > NFS4_SHARE_ACCESS_BOTH)
2357 return 0;
2358 x &= ~NFS4_SHARE_ACCESS_MASK;
2359 if (minorversion && x) {
2360 if ((x & NFS4_SHARE_WANT_MASK) > NFS4_SHARE_WANT_CANCEL)
2361 return 0;
2362 if ((x & NFS4_SHARE_WHEN_MASK) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED)
2363 return 0;
2364 x &= ~(NFS4_SHARE_WANT_MASK | NFS4_SHARE_WHEN_MASK);
2365 }
2366 if (x)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002367 return 0;
2368 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002369}
2370
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002371static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002372{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002373 /* Note: unlike access bits, deny bits may be zero. */
2374 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002375}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04002377/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 * Called to check deny when READ with all zero stateid or
2379 * WRITE with all zero or all one stateid
2380 */
Al Virob37ad282006-10-19 23:28:59 -07002381static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2383{
2384 struct inode *ino = current_fh->fh_dentry->d_inode;
2385 struct nfs4_file *fp;
2386 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07002387 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 dprintk("NFSD: nfs4_share_conflict\n");
2390
2391 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002392 if (!fp)
2393 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07002394 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07002396 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
2397 if (test_bit(deny_type, &stp->st_deny_bmap) ||
2398 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
2399 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 }
NeilBrown13cd2182005-06-23 22:03:10 -07002401 ret = nfs_ok;
2402out:
2403 put_nfs4_file(fp);
2404 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405}
2406
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002407static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 /* We're assuming the state code never drops its reference
2410 * without first removing the lease. Since we're in this lease
2411 * callback (and since the lease code is serialized by the kernel
2412 * lock) we know the server hasn't removed the lease yet, we know
2413 * it's safe to take a reference: */
2414 atomic_inc(&dp->dl_count);
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
Arnd Bergmann460781b2010-11-17 16:26:56 +01002418 /* only place dl_time is set. protected by lock_flocks*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 dp->dl_time = get_seconds();
2420
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002421 nfsd4_cb_recall(dp);
2422}
2423
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002424/* Called from break_lease() with lock_flocks() held. */
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002425static void nfsd_break_deleg_cb(struct file_lock *fl)
2426{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002427 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
2428 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002429
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002430 BUG_ON(!fp);
2431 /* We assume break_lease is only called once per lease: */
2432 BUG_ON(fp->fi_had_conflict);
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04002433 /*
2434 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002435 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002436 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04002437 */
2438 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
J. Bruce Fields5d926e82011-02-07 16:53:46 -05002440 spin_lock(&recall_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002441 fp->fi_had_conflict = true;
2442 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2443 nfsd_break_one_deleg(dp);
J. Bruce Fields5d926e82011-02-07 16:53:46 -05002444 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445}
2446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447static
2448int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2449{
2450 if (arg & F_UNLCK)
2451 return lease_modify(onlist, arg);
2452 else
2453 return -EAGAIN;
2454}
2455
Alexey Dobriyan7b021962009-09-21 17:01:12 -07002456static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002457 .lm_break = nfsd_break_deleg_cb,
2458 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459};
2460
2461
Al Virob37ad282006-10-19 23:28:59 -07002462__be32
Andy Adamson66689582009-04-03 08:28:45 +03002463nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2464 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 clientid_t *clientid = &open->op_clientid;
2467 struct nfs4_client *clp = NULL;
2468 unsigned int strhashval;
2469 struct nfs4_stateowner *sop = NULL;
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002472 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
2474 if (STALE_CLIENTID(&open->op_clientid))
2475 return nfserr_stale_clientid;
2476
J. Bruce Fields506f2752011-08-11 18:50:18 -04002477 strhashval = open_ownerstr_hashval(clientid->cl_id, &open->op_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002479 open->op_stateowner = sop;
2480 if (!sop) {
2481 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 clp = find_confirmed_client(clientid);
2483 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002484 return nfserr_expired;
2485 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
Andy Adamson66689582009-04-03 08:28:45 +03002487 /* When sessions are used, skip open sequenceid processing */
2488 if (nfsd4_has_session(cstate))
2489 goto renew;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002490 if (!sop->so_confirmed) {
2491 /* Replace unconfirmed owners without checking for replay. */
2492 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002493 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002494 open->op_stateowner = NULL;
2495 goto renew;
2496 }
2497 if (open->op_seqid == sop->so_seqid - 1) {
2498 if (sop->so_replay.rp_buflen)
Al Viroa90b0612006-10-19 23:29:03 -07002499 return nfserr_replay_me;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002500 /* The original OPEN failed so spectacularly
2501 * that we don't even have replay data saved!
2502 * Therefore, we have no choice but to continue
2503 * processing this OPEN; presumably, we'll
2504 * fail again for the same reason.
2505 */
2506 dprintk("nfsd4_process_open1: replay with no replay cache\n");
2507 goto renew;
2508 }
2509 if (open->op_seqid != sop->so_seqid)
2510 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002512 if (open->op_stateowner == NULL) {
2513 sop = alloc_init_open_stateowner(strhashval, clp, open);
2514 if (sop == NULL)
J. Bruce Fields3e772462011-08-10 19:07:33 -04002515 return nfserr_jukebox;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002516 open->op_stateowner = sop;
2517 }
2518 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002520 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
Al Virob37ad282006-10-19 23:28:59 -07002523static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07002524nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2525{
2526 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2527 return nfserr_openmode;
2528 else
2529 return nfs_ok;
2530}
2531
NeilBrown52f4fb42005-06-23 22:02:49 -07002532static struct nfs4_delegation *
2533find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
2534{
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002535 struct nfs4_delegation *dp;
NeilBrown52f4fb42005-06-23 22:02:49 -07002536
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002537 spin_lock(&recall_lock);
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002538 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2539 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid) {
2540 spin_unlock(&recall_lock);
2541 return dp;
2542 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002543 spin_unlock(&recall_lock);
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002544 return NULL;
NeilBrown52f4fb42005-06-23 22:02:49 -07002545}
2546
Daniel Mackc47d8322011-05-16 16:38:14 +02002547static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04002548{
2549 share_access &= ~NFS4_SHARE_WANT_MASK;
2550
2551 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
2552}
2553
Al Virob37ad282006-10-19 23:28:59 -07002554static __be32
NeilBrown567d9822005-06-23 22:02:53 -07002555nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
2556 struct nfs4_delegation **dp)
2557{
2558 int flags;
Al Virob37ad282006-10-19 23:28:59 -07002559 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07002560
2561 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
2562 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07002563 goto out;
J. Bruce Fields24a01112010-05-18 20:01:35 -04002564 flags = share_access_to_flags(open->op_share_access);
NeilBrown567d9822005-06-23 22:02:53 -07002565 status = nfs4_check_delegmode(*dp, flags);
2566 if (status)
2567 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002568out:
2569 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
2570 return nfs_ok;
2571 if (status)
2572 return status;
2573 open->op_stateowner->so_confirmed = 1;
2574 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07002575}
2576
Al Virob37ad282006-10-19 23:28:59 -07002577static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
2579{
2580 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07002581 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 struct nfs4_stateowner *sop = open->op_stateowner;
2583
NeilBrown8beefa22005-06-23 22:03:08 -07002584 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 /* ignore lock owners */
2586 if (local->st_stateowner->so_is_open_owner == 0)
2587 continue;
2588 /* remember if we have seen this open owner */
2589 if (local->st_stateowner == sop)
2590 *stpp = local;
2591 /* check for conflicting share reservations */
2592 if (!test_share(local, open))
2593 goto out;
2594 }
2595 status = 0;
2596out:
2597 return status;
2598}
2599
NeilBrown5ac049a2005-06-23 22:03:03 -07002600static inline struct nfs4_stateid *
2601nfs4_alloc_stateid(void)
2602{
2603 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
2604}
2605
J. Bruce Fields21fb4012010-07-28 12:21:23 -04002606static inline int nfs4_access_to_access(u32 nfs4_access)
2607{
2608 int flags = 0;
2609
2610 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
2611 flags |= NFSD_MAY_READ;
2612 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
2613 flags |= NFSD_MAY_WRITE;
2614 return flags;
2615}
2616
Casey Bodley0c12eaf2011-07-23 14:58:10 -04002617static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
2618 struct svc_fh *cur_fh, struct nfsd4_open *open)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002619{
2620 __be32 status;
Casey Bodley0c12eaf2011-07-23 14:58:10 -04002621 int oflag = nfs4_access_to_omode(open->op_share_access);
2622 int access = nfs4_access_to_access(open->op_share_access);
2623
2624 /* CLAIM_DELEGATE_CUR is used in response to a broken lease;
2625 * allowing it to break the lease and return EAGAIN leaves the
2626 * client unable to make progress in returning the delegation */
2627 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2628 access |= NFSD_MAY_NOT_BREAK_LEASE;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002629
2630 if (!fp->fi_fds[oflag]) {
2631 status = nfsd_open(rqstp, cur_fh, S_IFREG, access,
2632 &fp->fi_fds[oflag]);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002633 if (status)
2634 return status;
2635 }
2636 nfs4_file_get_access(fp, oflag);
2637
2638 return nfs_ok;
2639}
2640
Al Virob37ad282006-10-19 23:28:59 -07002641static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002643 struct nfs4_file *fp, struct svc_fh *cur_fh,
2644 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645{
2646 struct nfs4_stateid *stp;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002647 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
NeilBrown5ac049a2005-06-23 22:03:03 -07002649 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 if (stp == NULL)
J. Bruce Fields3e772462011-08-10 19:07:33 -04002651 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
Casey Bodley0c12eaf2011-07-23 14:58:10 -04002653 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002654 if (status) {
2655 kmem_cache_free(stateid_slab, stp);
2656 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 *stpp = stp;
2659 return 0;
2660}
2661
Al Virob37ad282006-10-19 23:28:59 -07002662static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2664 struct nfsd4_open *open)
2665{
2666 struct iattr iattr = {
2667 .ia_valid = ATTR_SIZE,
2668 .ia_size = 0,
2669 };
2670 if (!open->op_truncate)
2671 return 0;
2672 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08002673 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2675}
2676
Al Virob37ad282006-10-19 23:28:59 -07002677static __be32
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002678nfs4_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 -07002679{
J. Bruce Fields7d947842010-08-20 18:09:31 -04002680 u32 op_share_access = open->op_share_access & ~NFS4_SHARE_WANT_MASK;
2681 bool new_access;
Al Virob37ad282006-10-19 23:28:59 -07002682 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
J. Bruce Fields7d947842010-08-20 18:09:31 -04002684 new_access = !test_bit(op_share_access, &stp->st_access_bmap);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002685 if (new_access) {
Casey Bodley0c12eaf2011-07-23 14:58:10 -04002686 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002687 if (status)
2688 return status;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 status = nfsd4_truncate(rqstp, cur_fh, open);
2691 if (status) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002692 if (new_access) {
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04002693 int oflag = nfs4_access_to_omode(op_share_access);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002694 nfs4_file_put_access(fp, oflag);
2695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 return status;
2697 }
2698 /* remember the open */
J. Bruce Fields24a01112010-05-18 20:01:35 -04002699 __set_bit(op_share_access, &stp->st_access_bmap);
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04002700 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
2702 return nfs_ok;
2703}
2704
2705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706static void
NeilBrown37515172005-07-07 17:59:16 -07002707nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708{
NeilBrown37515172005-07-07 17:59:16 -07002709 open->op_stateowner->so_confirmed = 1;
2710 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711}
2712
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002713/* Should we give out recallable state?: */
2714static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
2715{
2716 if (clp->cl_cb_state == NFSD4_CB_UP)
2717 return true;
2718 /*
2719 * In the sessions case, since we don't have to establish a
2720 * separate connection for callbacks, we assume it's OK
2721 * until we hear otherwise:
2722 */
2723 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
2724}
2725
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002726static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag)
2727{
2728 struct file_lock *fl;
2729
2730 fl = locks_alloc_lock();
2731 if (!fl)
2732 return NULL;
2733 locks_init_lock(fl);
2734 fl->fl_lmops = &nfsd_lease_mng_ops;
2735 fl->fl_flags = FL_LEASE;
2736 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
2737 fl->fl_end = OFFSET_MAX;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002738 fl->fl_owner = (fl_owner_t)(dp->dl_file);
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002739 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002740 return fl;
2741}
2742
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002743static int nfs4_setlease(struct nfs4_delegation *dp, int flag)
2744{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002745 struct nfs4_file *fp = dp->dl_file;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002746 struct file_lock *fl;
2747 int status;
2748
2749 fl = nfs4_alloc_init_lease(dp, flag);
2750 if (!fl)
2751 return -ENOMEM;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002752 fl->fl_file = find_readable_file(fp);
2753 list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations);
2754 status = vfs_setlease(fl->fl_file, fl->fl_type, &fl);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002755 if (status) {
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002756 list_del_init(&dp->dl_perclnt);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002757 locks_free_lock(fl);
2758 return -ENOMEM;
2759 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002760 fp->fi_lease = fl;
2761 fp->fi_deleg_file = fl->fl_file;
2762 get_file(fp->fi_deleg_file);
2763 atomic_set(&fp->fi_delegees, 1);
2764 list_add(&dp->dl_perfile, &fp->fi_delegations);
2765 return 0;
2766}
2767
2768static int nfs4_set_delegation(struct nfs4_delegation *dp, int flag)
2769{
2770 struct nfs4_file *fp = dp->dl_file;
2771
2772 if (!fp->fi_lease)
2773 return nfs4_setlease(dp, flag);
2774 spin_lock(&recall_lock);
2775 if (fp->fi_had_conflict) {
2776 spin_unlock(&recall_lock);
2777 return -EAGAIN;
2778 }
2779 atomic_inc(&fp->fi_delegees);
2780 list_add(&dp->dl_perfile, &fp->fi_delegations);
2781 spin_unlock(&recall_lock);
2782 list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002783 return 0;
2784}
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786/*
2787 * Attempt to hand out a delegation.
2788 */
2789static void
2790nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
2791{
2792 struct nfs4_delegation *dp;
2793 struct nfs4_stateowner *sop = stp->st_stateowner;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002794 int cb_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 int status, flag = 0;
2796
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002797 cb_up = nfsd4_cb_channel_good(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07002799 open->op_recall = 0;
2800 switch (open->op_claim_type) {
2801 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002802 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07002803 open->op_recall = 1;
2804 flag = open->op_delegate_type;
2805 if (flag == NFS4_OPEN_DELEGATE_NONE)
2806 goto out;
2807 break;
2808 case NFS4_OPEN_CLAIM_NULL:
2809 /* Let's not give out any delegations till everyone's
2810 * had the chance to reclaim theirs.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002811 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07002812 goto out;
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002813 if (!cb_up || !sop->so_confirmed)
NeilBrown7b190fe2005-06-23 22:03:23 -07002814 goto out;
2815 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2816 flag = NFS4_OPEN_DELEGATE_WRITE;
2817 else
2818 flag = NFS4_OPEN_DELEGATE_READ;
2819 break;
2820 default:
2821 goto out;
2822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
2824 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002825 if (dp == NULL)
2826 goto out_no_deleg;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002827 status = nfs4_set_delegation(dp, flag);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002828 if (status)
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002829 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
2832
Benny Halevy8c10cbd2009-10-19 12:04:53 +02002833 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
2834 STATEID_VAL(&dp->dl_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835out:
NeilBrown7b190fe2005-06-23 22:03:23 -07002836 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
2837 && flag == NFS4_OPEN_DELEGATE_NONE
2838 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002839 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 open->op_delegate_type = flag;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002841 return;
2842out_free:
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002843 nfs4_put_delegation(dp);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002844out_no_deleg:
2845 flag = NFS4_OPEN_DELEGATE_NONE;
2846 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847}
2848
2849/*
2850 * called with nfs4_lock_state() held.
2851 */
Al Virob37ad282006-10-19 23:28:59 -07002852__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2854{
Andy Adamson66689582009-04-03 08:28:45 +03002855 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 struct nfs4_file *fp = NULL;
2857 struct inode *ino = current_fh->fh_dentry->d_inode;
2858 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07002859 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07002860 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
2862 status = nfserr_inval;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002863 if (!access_valid(open->op_share_access, resp->cstate.minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002864 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 goto out;
2866 /*
2867 * Lookup file; if found, lookup stateid and check open request,
2868 * and check for delegations in the process of being recalled.
2869 * If not found, create the nfs4_file struct
2870 */
2871 fp = find_file(ino);
2872 if (fp) {
2873 if ((status = nfs4_check_open(fp, open, &stp)))
2874 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002875 status = nfs4_check_deleg(fp, open, &dp);
2876 if (status)
2877 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07002879 status = nfserr_bad_stateid;
2880 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2881 goto out;
J. Bruce Fields3e772462011-08-10 19:07:33 -04002882 status = nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 fp = alloc_init_file(ino);
2884 if (fp == NULL)
2885 goto out;
2886 }
2887
2888 /*
2889 * OPEN the file, or upgrade an existing OPEN.
2890 * If truncate fails, the OPEN fails.
2891 */
2892 if (stp) {
2893 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002894 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 if (status)
2896 goto out;
NeilBrown444c2c02005-07-07 17:59:22 -07002897 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 } else {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002899 status = nfs4_new_open(rqstp, &stp, fp, current_fh, open);
NeilBrown567d9822005-06-23 22:02:53 -07002900 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 goto out;
2902 init_stateid(stp, fp, open);
2903 status = nfsd4_truncate(rqstp, current_fh, open);
2904 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05002905 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 goto out;
2907 }
Andy Adamson66689582009-04-03 08:28:45 +03002908 if (nfsd4_has_session(&resp->cstate))
2909 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 }
2911 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
2912
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002913 if (nfsd4_has_session(&resp->cstate))
Andy Adamson66689582009-04-03 08:28:45 +03002914 open->op_stateowner->so_confirmed = 1;
2915
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 /*
2917 * Attempt to hand out a delegation. No error return, because the
2918 * OPEN succeeds even if we fail.
2919 */
2920 nfs4_open_delegation(current_fh, open, stp);
2921
2922 status = nfs_ok;
2923
Benny Halevy8c10cbd2009-10-19 12:04:53 +02002924 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
2925 STATEID_VAL(&stp->st_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926out:
NeilBrown13cd2182005-06-23 22:03:10 -07002927 if (fp)
2928 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07002929 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
2930 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 /*
2932 * To finish the open response, we just need to set the rflags.
2933 */
2934 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Andy Adamson66689582009-04-03 08:28:45 +03002935 if (!open->op_stateowner->so_confirmed &&
2936 !nfsd4_has_session(&resp->cstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
2938
2939 return status;
2940}
2941
Al Virob37ad282006-10-19 23:28:59 -07002942__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002943nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2944 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945{
2946 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07002947 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
2949 nfs4_lock_state();
2950 dprintk("process_renew(%08x/%08x): starting\n",
2951 clid->cl_boot, clid->cl_id);
2952 status = nfserr_stale_clientid;
2953 if (STALE_CLIENTID(clid))
2954 goto out;
2955 clp = find_confirmed_client(clid);
2956 status = nfserr_expired;
2957 if (clp == NULL) {
2958 /* We assume the client took too long to RENEW. */
2959 dprintk("nfsd4_renew: clientid not found!\n");
2960 goto out;
2961 }
2962 renew_client(clp);
2963 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07002964 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04002965 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 goto out;
2967 status = nfs_ok;
2968out:
2969 nfs4_unlock_state();
2970 return status;
2971}
2972
Daniel Mackc47d8322011-05-16 16:38:14 +02002973static struct lock_manager nfsd4_manager = {
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002974};
2975
NeilBrowna76b4312005-06-23 22:04:01 -07002976static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002977nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07002978{
2979 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07002980 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002981 locks_end_grace(&nfsd4_manager);
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05002982 /*
2983 * Now that every NFSv4 client has had the chance to recover and
2984 * to see the (possibly new, possibly shorter) lease time, we
2985 * can safely set the next grace time to the current lease time:
2986 */
2987 nfsd4_grace = nfsd4_lease;
NeilBrowna76b4312005-06-23 22:04:01 -07002988}
2989
NeilBrownfd39ca92005-06-23 22:04:03 -07002990static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991nfs4_laundromat(void)
2992{
2993 struct nfs4_client *clp;
2994 struct nfs4_stateowner *sop;
2995 struct nfs4_delegation *dp;
2996 struct list_head *pos, *next, reaplist;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05002997 time_t cutoff = get_seconds() - nfsd4_lease;
2998 time_t t, clientid_val = nfsd4_lease;
2999 time_t u, test_val = nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001 nfs4_lock_state();
3002
3003 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003004 if (locks_in_grace())
3005 nfsd4_end_grace();
Benny Halevy36acb662010-05-12 00:13:04 +03003006 INIT_LIST_HEAD(&reaplist);
3007 spin_lock(&client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 list_for_each_safe(pos, next, &client_lru) {
3009 clp = list_entry(pos, struct nfs4_client, cl_lru);
3010 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3011 t = clp->cl_time - cutoff;
3012 if (clientid_val > t)
3013 clientid_val = t;
3014 break;
3015 }
Benny Halevyd7682982010-05-12 00:13:54 +03003016 if (atomic_read(&clp->cl_refcount)) {
3017 dprintk("NFSD: client in use (clientid %08x)\n",
3018 clp->cl_clientid.cl_id);
3019 continue;
3020 }
3021 unhash_client_locked(clp);
3022 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03003023 }
3024 spin_unlock(&client_lock);
3025 list_for_each_safe(pos, next, &reaplist) {
3026 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 dprintk("NFSD: purging unused client (clientid %08x)\n",
3028 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07003029 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 expire_client(clp);
3031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 spin_lock(&recall_lock);
3033 list_for_each_safe(pos, next, &del_recall_lru) {
3034 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3035 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
3036 u = dp->dl_time - cutoff;
3037 if (test_val > u)
3038 test_val = u;
3039 break;
3040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 list_move(&dp->dl_recall_lru, &reaplist);
3042 }
3043 spin_unlock(&recall_lock);
3044 list_for_each_safe(pos, next, &reaplist) {
3045 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3046 list_del_init(&dp->dl_recall_lru);
3047 unhash_delegation(dp);
3048 }
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05003049 test_val = nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 list_for_each_safe(pos, next, &close_lru) {
3051 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
3052 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
3053 u = sop->so_time - cutoff;
3054 if (test_val > u)
3055 test_val = u;
3056 break;
3057 }
3058 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
3059 sop->so_id);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003060 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 }
3062 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
3063 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
3064 nfs4_unlock_state();
3065 return clientid_val;
3066}
3067
Harvey Harrisona254b242008-02-20 12:49:00 -08003068static struct workqueue_struct *laundry_wq;
3069static void laundromat_main(struct work_struct *);
3070static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
3071
3072static void
David Howellsc4028952006-11-22 14:57:56 +00003073laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074{
3075 time_t t;
3076
3077 t = nfs4_laundromat();
3078 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07003079 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080}
3081
NeilBrownfd39ca92005-06-23 22:04:03 -07003082static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07003083search_close_lru(u32 st_id, int flags)
3084{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 struct nfs4_stateowner *local = NULL;
3086
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 if (flags & CLOSE_STATE) {
3088 list_for_each_entry(local, &close_lru, so_close_lru) {
3089 if (local->so_id == st_id)
3090 return local;
3091 }
3092 }
3093 return NULL;
3094}
3095
3096static inline int
3097nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
3098{
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003099 return fhp->fh_dentry->d_inode != stp->st_file->fi_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100}
3101
3102static int
3103STALE_STATEID(stateid_t *stateid)
3104{
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003105 if (stateid->si_boot == boot_time)
3106 return 0;
3107 dprintk("NFSD: stale stateid " STATEID_FMT "!\n",
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003108 STATEID_VAL(stateid));
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003109 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110}
3111
3112static inline int
3113access_permit_read(unsigned long access_bmap)
3114{
3115 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
3116 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
3117 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
3118}
3119
3120static inline int
3121access_permit_write(unsigned long access_bmap)
3122{
3123 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
3124 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
3125}
3126
3127static
Al Virob37ad282006-10-19 23:28:59 -07003128__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129{
Al Virob37ad282006-10-19 23:28:59 -07003130 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
J. Bruce Fields02921912010-07-29 15:16:59 -04003132 /* For lock stateid's, we test the parent open, not the lock: */
3133 if (stp->st_openstp)
3134 stp = stp->st_openstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
3136 goto out;
3137 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
3138 goto out;
3139 status = nfs_ok;
3140out:
3141 return status;
3142}
3143
Al Virob37ad282006-10-19 23:28:59 -07003144static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
3146{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003147 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003149 else if (locks_in_grace()) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003150 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 * conflicting state; so we must wait out the grace period. */
3152 return nfserr_grace;
3153 } else if (flags & WR_STATE)
3154 return nfs4_share_conflict(current_fh,
3155 NFS4_SHARE_DENY_WRITE);
3156 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
3157 return nfs4_share_conflict(current_fh,
3158 NFS4_SHARE_DENY_READ);
3159}
3160
3161/*
3162 * Allow READ/WRITE during grace period on recovered state only for files
3163 * that are not able to provide mandatory locking.
3164 */
3165static inline int
J. Bruce Fields18f82732009-02-21 15:23:01 -08003166grace_disallows_io(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003168 return locks_in_grace() && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169}
3170
J. Bruce Fields28dde242011-08-22 10:07:12 -04003171static int check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05003172{
Andy Adamson66689582009-04-03 08:28:45 +03003173 /*
3174 * When sessions are used the stateid generation number is ignored
3175 * when it is zero.
3176 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04003177 if (has_session && in->si_generation == 0)
Andy Adamson66689582009-04-03 08:28:45 +03003178 goto out;
3179
J. Bruce Fields0836f582008-01-26 19:08:12 -05003180 /* If the client sends us a stateid from the future, it's buggy: */
3181 if (in->si_generation > ref->si_generation)
3182 return nfserr_bad_stateid;
3183 /*
3184 * The following, however, can happen. For example, if the
3185 * client sends an open and some IO at the same time, the open
3186 * may bump si_generation while the IO is still in flight.
3187 * Thanks to hard links and renames, the client never knows what
3188 * file an open will affect. So it could avoid that situation
3189 * only by serializing all opens and IO from the same open
3190 * owner. To recover from the old_stateid error, the client
3191 * will just have to retry the IO:
3192 */
3193 if (in->si_generation < ref->si_generation)
3194 return nfserr_old_stateid;
Andy Adamson66689582009-04-03 08:28:45 +03003195out:
J. Bruce Fields0836f582008-01-26 19:08:12 -05003196 return nfs_ok;
3197}
3198
J. Bruce Fields3e633072009-02-21 13:17:19 -08003199static int is_delegation_stateid(stateid_t *stateid)
3200{
3201 return stateid->si_fileid == 0;
3202}
3203
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003204static int is_open_stateid(struct nfs4_stateid *stateid)
3205{
3206 return stateid->st_openstp == NULL;
3207}
3208
J. Bruce Fields28dde242011-08-22 10:07:12 -04003209__be32 nfs4_validate_stateid(stateid_t *stateid, bool has_session)
Bryan Schumaker17456802011-07-13 10:50:48 -04003210{
3211 struct nfs4_stateid *stp = NULL;
3212 __be32 status = nfserr_stale_stateid;
3213
3214 if (STALE_STATEID(stateid))
3215 goto out;
3216
3217 status = nfserr_expired;
3218 stp = search_for_stateid(stateid);
3219 if (!stp)
3220 goto out;
3221 status = nfserr_bad_stateid;
3222
3223 if (!stp->st_stateowner->so_confirmed)
3224 goto out;
3225
J. Bruce Fields28dde242011-08-22 10:07:12 -04003226 status = check_stateid_generation(stateid, &stp->st_stateid, has_session);
Bryan Schumaker17456802011-07-13 10:50:48 -04003227 if (status)
3228 goto out;
3229
3230 status = nfs_ok;
3231out:
3232 return status;
3233}
3234
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235/*
3236* Checks for stateid operations
3237*/
Al Virob37ad282006-10-19 23:28:59 -07003238__be32
Benny Halevydd453df2009-04-03 08:28:41 +03003239nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
3240 stateid_t *stateid, int flags, struct file **filpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241{
3242 struct nfs4_stateid *stp = NULL;
3243 struct nfs4_delegation *dp = NULL;
Benny Halevydd453df2009-04-03 08:28:41 +03003244 struct svc_fh *current_fh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07003246 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 if (filpp)
3249 *filpp = NULL;
3250
J. Bruce Fields18f82732009-02-21 15:23:01 -08003251 if (grace_disallows_io(ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 return nfserr_grace;
3253
3254 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3255 return check_special_stateids(current_fh, stateid, flags);
3256
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 status = nfserr_stale_stateid;
3258 if (STALE_STATEID(stateid))
3259 goto out;
3260
J. Bruce Fields33515142010-10-02 18:42:39 -04003261 /*
3262 * We assume that any stateid that has the current boot time,
3263 * but that we can't find, is expired:
3264 */
3265 status = nfserr_expired;
J. Bruce Fields3e633072009-02-21 13:17:19 -08003266 if (is_delegation_stateid(stateid)) {
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003267 dp = find_delegation_stateid(ino, stateid);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003268 if (!dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 goto out;
J. Bruce Fields28dde242011-08-22 10:07:12 -04003270 status = check_stateid_generation(stateid, &dp->dl_stateid, nfsd4_has_session(cstate));
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08003271 if (status)
3272 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08003273 status = nfs4_check_delegmode(dp, flags);
3274 if (status)
3275 goto out;
3276 renew_client(dp->dl_client);
Dan Carpenter43b01782010-10-27 23:19:04 +02003277 if (filpp) {
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003278 *filpp = dp->dl_file->fi_deleg_file;
Dan Carpenter43b01782010-10-27 23:19:04 +02003279 BUG_ON(!*filpp);
3280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003282 stp = find_stateid(stateid, flags);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003283 if (!stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 goto out;
J. Bruce Fields33515142010-10-02 18:42:39 -04003285 status = nfserr_bad_stateid;
J. Bruce Fields6150ef02009-02-21 13:36:16 -08003286 if (nfs4_check_fh(current_fh, stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 goto out;
3288 if (!stp->st_stateowner->so_confirmed)
3289 goto out;
Andy Adamson66689582009-04-03 08:28:45 +03003290 status = check_stateid_generation(stateid, &stp->st_stateid,
J. Bruce Fields28dde242011-08-22 10:07:12 -04003291 nfsd4_has_session(cstate));
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08003292 if (status)
3293 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003294 status = nfs4_check_openmode(stp, flags);
3295 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 goto out;
3297 renew_client(stp->st_stateowner->so_client);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003298 if (filpp) {
3299 if (flags & RD_STATE)
3300 *filpp = find_readable_file(stp->st_file);
3301 else
3302 *filpp = find_writeable_file(stp->st_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 }
3305 status = nfs_ok;
3306out:
3307 return status;
3308}
3309
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003310static __be32
3311nfsd4_free_delegation_stateid(stateid_t *stateid)
3312{
3313 struct nfs4_delegation *dp = search_for_delegation(stateid);
3314 if (dp)
3315 return nfserr_locks_held;
3316 return nfserr_bad_stateid;
3317}
3318
3319static __be32
3320nfsd4_free_lock_stateid(struct nfs4_stateid *stp)
3321{
3322 if (check_for_locks(stp->st_file, stp->st_stateowner))
3323 return nfserr_locks_held;
3324 release_lock_stateid(stp);
3325 return nfs_ok;
3326}
3327
3328/*
Bryan Schumaker17456802011-07-13 10:50:48 -04003329 * Test if the stateid is valid
3330 */
3331__be32
3332nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3333 struct nfsd4_test_stateid *test_stateid)
3334{
3335 test_stateid->ts_has_session = nfsd4_has_session(cstate);
3336 return nfs_ok;
3337}
3338
3339/*
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003340 * Free a state id
3341 */
3342__be32
3343nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3344 struct nfsd4_free_stateid *free_stateid)
3345{
3346 stateid_t *stateid = &free_stateid->fr_stateid;
3347 struct nfs4_stateid *stp;
3348 __be32 ret;
3349
3350 nfs4_lock_state();
3351 if (is_delegation_stateid(stateid)) {
3352 ret = nfsd4_free_delegation_stateid(stateid);
3353 goto out;
3354 }
3355
3356 stp = search_for_stateid(stateid);
3357 if (!stp) {
3358 ret = nfserr_bad_stateid;
3359 goto out;
3360 }
3361 if (stateid->si_generation != 0) {
3362 if (stateid->si_generation < stp->st_stateid.si_generation) {
3363 ret = nfserr_old_stateid;
3364 goto out;
3365 }
3366 if (stateid->si_generation > stp->st_stateid.si_generation) {
3367 ret = nfserr_bad_stateid;
3368 goto out;
3369 }
3370 }
3371
3372 if (is_open_stateid(stp)) {
3373 ret = nfserr_locks_held;
3374 goto out;
3375 } else {
3376 ret = nfsd4_free_lock_stateid(stp);
3377 goto out;
3378 }
3379
3380out:
3381 nfs4_unlock_state();
3382 return ret;
3383}
3384
NeilBrown4c4cd222005-07-07 17:59:27 -07003385static inline int
3386setlkflg (int type)
3387{
3388 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
3389 RD_STATE : WR_STATE;
3390}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
3392/*
3393 * Checks for sequence id mutating operations.
3394 */
Al Virob37ad282006-10-19 23:28:59 -07003395static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03003396nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
3397 stateid_t *stateid, int flags,
3398 struct nfs4_stateowner **sopp,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003399 struct nfs4_stateid **stpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 struct nfs4_stateid *stp;
3402 struct nfs4_stateowner *sop;
Benny Halevydd453df2009-04-03 08:28:41 +03003403 struct svc_fh *current_fh = &cstate->current_fh;
J. Bruce Fields0836f582008-01-26 19:08:12 -05003404 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003406 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
3407 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07003408
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 *stpp = NULL;
3410 *sopp = NULL;
3411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003413 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07003414 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 }
3416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07003418 return nfserr_stale_stateid;
Andy Adamson66689582009-04-03 08:28:45 +03003419
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 /*
3421 * We return BAD_STATEID if filehandle doesn't match stateid,
3422 * the confirmed flag is incorrecly set, or the generation
3423 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 */
NeilBrownf8816512005-07-07 17:59:25 -07003425 stp = find_stateid(stateid, flags);
3426 if (stp == NULL) {
3427 /*
3428 * Also, we should make sure this isn't just the result of
3429 * a replayed close:
3430 */
3431 sop = search_close_lru(stateid->si_stateownerid, flags);
J. Bruce Fields33515142010-10-02 18:42:39 -04003432 /* It's not stale; let's assume it's expired: */
NeilBrownf8816512005-07-07 17:59:25 -07003433 if (sop == NULL)
J. Bruce Fields33515142010-10-02 18:42:39 -04003434 return nfserr_expired;
NeilBrownf8816512005-07-07 17:59:25 -07003435 *sopp = sop;
3436 goto check_replay;
3437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
J. Bruce Fields39325bd2007-11-26 17:06:39 -05003439 *stpp = stp;
3440 *sopp = sop = stp->st_stateowner;
3441
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003442 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003443 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07003444 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 }
3446
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 /*
3448 * We now validate the seqid and stateid generation numbers.
3449 * For the moment, we ignore the possibility of
3450 * generation number wraparound.
3451 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04003452 if (!nfsd4_has_session(cstate) && seqid != sop->so_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 goto check_replay;
3454
NeilBrown3a4f98b2005-07-07 17:59:26 -07003455 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003456 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003457 " unconfirmed stateowner!\n");
3458 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07003460 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003461 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003462 " confirmed yet!\n");
3463 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 }
J. Bruce Fields28dde242011-08-22 10:07:12 -04003465 status = check_stateid_generation(stateid, &stp->st_stateid, nfsd4_has_session(cstate));
J. Bruce Fields0836f582008-01-26 19:08:12 -05003466 if (status)
3467 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07003468 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07003469 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471check_replay:
NeilBrownbd9aac52005-07-07 17:59:19 -07003472 if (seqid == sop->so_seqid - 1) {
Neil Brown849823c2005-09-13 01:25:36 -07003473 dprintk("NFSD: preprocess_seqid_op: retransmission?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 /* indicate replay to calling function */
Al Viroa90b0612006-10-19 23:29:03 -07003475 return nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 }
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003477 dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n",
NeilBrown3a4f98b2005-07-07 17:59:26 -07003478 sop->so_seqid, seqid);
3479 *sopp = NULL;
3480 return nfserr_bad_seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481}
3482
Al Virob37ad282006-10-19 23:28:59 -07003483__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003484nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003485 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486{
Al Virob37ad282006-10-19 23:28:59 -07003487 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 struct nfs4_stateowner *sop;
3489 struct nfs4_stateid *stp;
3490
3491 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003492 (int)cstate->current_fh.fh_dentry->d_name.len,
3493 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003495 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07003496 if (status)
3497 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
3499 nfs4_lock_state();
3500
Benny Halevydd453df2009-04-03 08:28:41 +03003501 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003502 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003503 CONFIRM | OPEN_STATE,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003504 &oc->oc_stateowner, &stp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 goto out;
3506
3507 sop = oc->oc_stateowner;
3508 sop->so_confirmed = 1;
3509 update_stateid(&stp->st_stateid);
3510 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003511 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
3512 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07003513
3514 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515out:
Neil Brownf2327d92005-09-13 01:25:37 -07003516 if (oc->oc_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 nfs4_get_stateowner(oc->oc_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003518 cstate->replay_owner = oc->oc_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 nfs4_unlock_state();
3521 return status;
3522}
3523
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04003524static inline void nfs4_file_downgrade(struct nfs4_stateid *stp, unsigned int to_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525{
3526 int i;
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04003527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 for (i = 1; i < 4; i++) {
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04003529 if (test_bit(i, &stp->st_access_bmap) && !(i & to_access)) {
3530 nfs4_file_put_access(stp->st_file, i);
3531 __clear_bit(i, &stp->st_access_bmap);
3532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 }
3534}
3535
3536static void
3537reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
3538{
3539 int i;
3540 for (i = 0; i < 4; i++) {
3541 if ((i & deny) != i)
3542 __clear_bit(i, bmap);
3543 }
3544}
3545
Al Virob37ad282006-10-19 23:28:59 -07003546__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003547nfsd4_open_downgrade(struct svc_rqst *rqstp,
3548 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003549 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550{
Al Virob37ad282006-10-19 23:28:59 -07003551 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003555 (int)cstate->current_fh.fh_dentry->d_name.len,
3556 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Andy Adamsond87a8ad2009-04-03 08:28:53 +03003558 if (!access_valid(od->od_share_access, cstate->minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07003559 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 return nfserr_inval;
3561
3562 nfs4_lock_state();
Benny Halevydd453df2009-04-03 08:28:41 +03003563 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003564 od->od_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 &od->od_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003566 OPEN_STATE,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003567 &od->od_stateowner, &stp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 goto out;
3569
3570 status = nfserr_inval;
3571 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
3572 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
3573 stp->st_access_bmap, od->od_share_access);
3574 goto out;
3575 }
3576 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
3577 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3578 stp->st_deny_bmap, od->od_share_deny);
3579 goto out;
3580 }
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04003581 nfs4_file_downgrade(stp, od->od_share_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
3584
3585 update_stateid(&stp->st_stateid);
3586 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
3587 status = nfs_ok;
3588out:
Neil Brownf2327d92005-09-13 01:25:37 -07003589 if (od->od_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 nfs4_get_stateowner(od->od_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003591 cstate->replay_owner = od->od_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 nfs4_unlock_state();
3594 return status;
3595}
3596
3597/*
3598 * nfs4_unlock_state() called after encode
3599 */
Al Virob37ad282006-10-19 23:28:59 -07003600__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003601nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003602 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603{
Al Virob37ad282006-10-19 23:28:59 -07003604 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 struct nfs4_stateid *stp;
3606
3607 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003608 (int)cstate->current_fh.fh_dentry->d_name.len,
3609 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611 nfs4_lock_state();
3612 /* check close_lru for replay */
Benny Halevydd453df2009-04-03 08:28:41 +03003613 if ((status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003614 close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 &close->cl_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003616 OPEN_STATE | CLOSE_STATE,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003617 &close->cl_stateowner, &stp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 status = nfs_ok;
3620 update_stateid(&stp->st_stateid);
3621 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
3622
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003623 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05003624 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003625
3626 /* place unused nfs4_stateowners on so_close_lru list to be
3627 * released by the laundromat service after the lease period
3628 * to enable us to handle CLOSE replay
3629 */
3630 if (list_empty(&close->cl_stateowner->so_stateids))
3631 move_to_close_lru(close->cl_stateowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632out:
Neil Brownf2327d92005-09-13 01:25:37 -07003633 if (close->cl_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 nfs4_get_stateowner(close->cl_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003635 cstate->replay_owner = close->cl_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07003636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 nfs4_unlock_state();
3638 return status;
3639}
3640
Al Virob37ad282006-10-19 23:28:59 -07003641__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003642nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3643 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003645 struct nfs4_delegation *dp;
3646 stateid_t *stateid = &dr->dr_stateid;
3647 struct inode *inode;
Al Virob37ad282006-10-19 23:28:59 -07003648 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003650 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003651 return status;
3652 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
3654 nfs4_lock_state();
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003655 status = nfserr_bad_stateid;
3656 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3657 goto out;
3658 status = nfserr_stale_stateid;
3659 if (STALE_STATEID(stateid))
3660 goto out;
J. Bruce Fields7e0f7cf2009-02-21 13:32:28 -08003661 status = nfserr_bad_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003662 if (!is_delegation_stateid(stateid))
3663 goto out;
J. Bruce Fields33515142010-10-02 18:42:39 -04003664 status = nfserr_expired;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003665 dp = find_delegation_stateid(inode, stateid);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003666 if (!dp)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003667 goto out;
J. Bruce Fields28dde242011-08-22 10:07:12 -04003668 status = check_stateid_generation(stateid, &dp->dl_stateid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003669 if (status)
3670 goto out;
3671 renew_client(dp->dl_client);
3672
3673 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003675 nfs4_unlock_state();
3676
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 return status;
3678}
3679
3680
3681/*
3682 * Lock owner state (byte-range locks)
3683 */
3684#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
3685#define LOCK_HASH_BITS 8
3686#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
3687#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
3688
Benny Halevy87df4de2008-12-15 19:42:03 +02003689static inline u64
3690end_offset(u64 start, u64 len)
3691{
3692 u64 end;
3693
3694 end = start + len;
3695 return end >= start ? end: NFS4_MAX_UINT64;
3696}
3697
3698/* last octet in a range */
3699static inline u64
3700last_byte_offset(u64 start, u64 len)
3701{
3702 u64 end;
3703
3704 BUG_ON(!len);
3705 end = start + len;
3706 return end > start ? end - 1: NFS4_MAX_UINT64;
3707}
3708
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04003709static unsigned int lockownerid_hashval(u32 id)
3710{
3711 return id & LOCK_HASH_MASK;
3712}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
3714static inline unsigned int
3715lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
3716 struct xdr_netobj *ownername)
3717{
3718 return (file_hashval(inode) + cl_id
3719 + opaque_hashval(ownername->data, ownername->len))
3720 & LOCK_HASH_MASK;
3721}
3722
3723static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
3724static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
3725static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE];
3726
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003727static int
3728same_stateid(stateid_t *id_one, stateid_t *id_two)
3729{
3730 if (id_one->si_stateownerid != id_two->si_stateownerid)
3731 return 0;
3732 return id_one->si_fileid == id_two->si_fileid;
3733}
3734
NeilBrownfd39ca92005-06-23 22:04:03 -07003735static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736find_stateid(stateid_t *stid, int flags)
3737{
Krishna Kumar9346eff2008-10-20 11:44:28 +05303738 struct nfs4_stateid *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 u32 st_id = stid->si_stateownerid;
3740 u32 f_id = stid->si_fileid;
3741 unsigned int hashval;
3742
3743 dprintk("NFSD: find_stateid flags 0x%x\n",flags);
Krishna Kumar9346eff2008-10-20 11:44:28 +05303744 if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 hashval = stateid_hashval(st_id, f_id);
3746 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
3747 if ((local->st_stateid.si_stateownerid == st_id) &&
3748 (local->st_stateid.si_fileid == f_id))
3749 return local;
3750 }
3751 }
Krishna Kumar9346eff2008-10-20 11:44:28 +05303752
3753 if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 hashval = stateid_hashval(st_id, f_id);
3755 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
3756 if ((local->st_stateid.si_stateownerid == st_id) &&
3757 (local->st_stateid.si_fileid == f_id))
3758 return local;
3759 }
Neil Brown849823c2005-09-13 01:25:36 -07003760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 return NULL;
3762}
3763
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003764static struct nfs4_stateid *
3765search_for_stateid(stateid_t *stid)
3766{
3767 struct nfs4_stateid *local;
3768 unsigned int hashval = stateid_hashval(stid->si_stateownerid, stid->si_fileid);
3769
3770 list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) {
3771 if (same_stateid(&local->st_stateid, stid))
3772 return local;
3773 }
3774
3775 list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) {
3776 if (same_stateid(&local->st_stateid, stid))
3777 return local;
3778 }
3779 return NULL;
3780}
3781
3782static struct nfs4_delegation *
3783search_for_delegation(stateid_t *stid)
3784{
3785 struct nfs4_file *fp;
3786 struct nfs4_delegation *dp;
3787 struct list_head *pos;
3788 int i;
3789
3790 for (i = 0; i < FILE_HASH_SIZE; i++) {
3791 list_for_each_entry(fp, &file_hashtbl[i], fi_hash) {
3792 list_for_each(pos, &fp->fi_delegations) {
3793 dp = list_entry(pos, struct nfs4_delegation, dl_perfile);
3794 if (same_stateid(&dp->dl_stateid, stid))
3795 return dp;
3796 }
3797 }
3798 }
3799 return NULL;
3800}
3801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802static struct nfs4_delegation *
3803find_delegation_stateid(struct inode *ino, stateid_t *stid)
3804{
NeilBrown13cd2182005-06-23 22:03:10 -07003805 struct nfs4_file *fp;
3806 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003808 dprintk("NFSD: %s: stateid=" STATEID_FMT "\n", __func__,
3809 STATEID_VAL(stid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07003812 if (!fp)
3813 return NULL;
3814 dl = find_delegation_file(fp, stid);
3815 put_nfs4_file(fp);
3816 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817}
3818
3819/*
3820 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3821 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3822 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3823 * locking, this prevents us from being completely protocol-compliant. The
3824 * real solution to this problem is to start using unsigned file offsets in
3825 * the VFS, but this is a very deep change!
3826 */
3827static inline void
3828nfs4_transform_lock_offset(struct file_lock *lock)
3829{
3830 if (lock->fl_start < 0)
3831 lock->fl_start = OFFSET_MAX;
3832 if (lock->fl_end < 0)
3833 lock->fl_end = OFFSET_MAX;
3834}
3835
NeilBrownd5b90262006-04-10 22:55:22 -07003836/* Hack!: For now, we're defining this just so we can use a pointer to it
3837 * as a unique cookie to identify our (NFSv4's) posix locks. */
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003838static const struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07003839};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
3841static inline void
3842nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3843{
NeilBrownd5b90262006-04-10 22:55:22 -07003844 struct nfs4_stateowner *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
NeilBrownd5b90262006-04-10 22:55:22 -07003846 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3847 sop = (struct nfs4_stateowner *) fl->fl_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 kref_get(&sop->so_ref);
3849 deny->ld_sop = sop;
3850 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07003851 } else {
3852 deny->ld_sop = NULL;
3853 deny->ld_clientid.cl_boot = 0;
3854 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 }
3856 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02003857 deny->ld_length = NFS4_MAX_UINT64;
3858 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 deny->ld_length = fl->fl_end - fl->fl_start + 1;
3860 deny->ld_type = NFS4_READ_LT;
3861 if (fl->fl_type != F_RDLCK)
3862 deny->ld_type = NFS4_WRITE_LT;
3863}
3864
3865static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866find_lockstateowner_str(struct inode *inode, clientid_t *clid,
3867 struct xdr_netobj *owner)
3868{
3869 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
3870 struct nfs4_stateowner *op;
3871
3872 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003873 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 return op;
3875 }
3876 return NULL;
3877}
3878
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003879static void hash_lockowner(struct nfs4_stateowner *sop, unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp)
3880{
3881 unsigned int idhashval;
3882
3883 idhashval = lockownerid_hashval(sop->so_id);
3884 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
3885 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
3886 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
3887}
3888
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889/*
3890 * Alloc a lock owner structure.
3891 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003892 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 *
3894 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 */
3896
3897static struct nfs4_stateowner *
3898alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
3899 struct nfs4_stateowner *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003901 sop = alloc_stateowner(&lock->lk_new_owner, clp);
3902 if (!sop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 return NULL;
NeilBrownea1da632005-06-23 22:04:17 -07003904 INIT_LIST_HEAD(&sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 sop->so_is_open_owner = 0;
Neil Brownb59e3c02005-09-13 01:25:38 -07003906 /* It is the openowner seqid that will be incremented in encode in the
3907 * case of new lockowners; so increment the lock seqid manually: */
3908 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 sop->so_confirmed = 1;
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003910 hash_lockowner(sop, strhashval, clp, open_stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 return sop;
3912}
3913
NeilBrownfd39ca92005-06-23 22:04:03 -07003914static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
3916{
3917 struct nfs4_stateid *stp;
3918 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
3919
NeilBrown5ac049a2005-06-23 22:03:03 -07003920 stp = nfs4_alloc_stateid();
3921 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 goto out;
3923 INIT_LIST_HEAD(&stp->st_hash);
3924 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07003925 INIT_LIST_HEAD(&stp->st_perstateowner);
3926 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07003928 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07003929 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07003931 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 stp->st_file = fp;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003933 stp->st_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 stp->st_stateid.si_stateownerid = sop->so_id;
3935 stp->st_stateid.si_fileid = fp->fi_id;
3936 stp->st_stateid.si_generation = 0;
J. Bruce Fields0997b172011-03-02 18:01:35 -05003937 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07003939 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
3941out:
3942 return stp;
3943}
3944
NeilBrownfd39ca92005-06-23 22:04:03 -07003945static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946check_lock_length(u64 offset, u64 length)
3947{
Benny Halevy87df4de2008-12-15 19:42:03 +02003948 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 LOFF_OVERFLOW(offset, length)));
3950}
3951
J. Bruce Fields0997b172011-03-02 18:01:35 -05003952static void get_lock_access(struct nfs4_stateid *lock_stp, u32 access)
3953{
3954 struct nfs4_file *fp = lock_stp->st_file;
3955 int oflag = nfs4_access_to_omode(access);
3956
3957 if (test_bit(access, &lock_stp->st_access_bmap))
3958 return;
3959 nfs4_file_get_access(fp, oflag);
3960 __set_bit(access, &lock_stp->st_access_bmap);
3961}
3962
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963/*
3964 * LOCK operation
3965 */
Al Virob37ad282006-10-19 23:28:59 -07003966__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003967nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003968 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969{
NeilBrown3e9e3db2005-06-23 22:04:20 -07003970 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07003971 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 struct nfs4_stateid *lock_stp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04003973 struct nfs4_file *fp;
3974 struct file *filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05003976 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07003977 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 unsigned int strhashval;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003979 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07003980 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
3982 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3983 (long long) lock->lk_offset,
3984 (long long) lock->lk_length);
3985
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 if (check_lock_length(lock->lk_offset, lock->lk_length))
3987 return nfserr_inval;
3988
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003989 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02003990 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08003991 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3992 return status;
3993 }
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 nfs4_lock_state();
3996
3997 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07003998 /*
3999 * Client indicates that this is a new lockowner.
4000 * Use open owner and open stateid to create lock owner and
4001 * lock stateid.
4002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 struct nfs4_stateid *open_stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
4005 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03004006 if (!nfsd4_has_session(cstate) &&
4007 STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 /* validate and update open stateid and open seqid */
Benny Halevydd453df2009-04-03 08:28:41 +03004011 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 lock->lk_new_open_seqid,
4013 &lock->lk_new_open_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05004014 OPEN_STATE,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004015 &lock->lk_replay_owner, &open_stp);
NeilBrown37515172005-07-07 17:59:16 -07004016 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 goto out;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004018 status = nfserr_bad_stateid;
J. Bruce Fields3a655882006-01-18 17:43:19 -08004019 open_sop = lock->lk_replay_owner;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004020 if (!open_sop->so_is_open_owner)
4021 goto out;
4022 if (!nfsd4_has_session(cstate) &&
4023 !same_clid(&open_sop->so_client->cl_clientid,
4024 &lock->v.new.clientid))
4025 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 /* create lockowner and lock stateid */
4027 fp = open_stp->st_file;
4028 strhashval = lock_ownerstr_hashval(fp->fi_inode,
4029 open_sop->so_client->cl_clientid.cl_id,
4030 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07004031 /* XXX: Do we need to check for duplicate stateowners on
4032 * the same file, or should they just be allowed (and
4033 * create new stateids)? */
J. Bruce Fields3e772462011-08-10 19:07:33 -04004034 status = nfserr_jukebox;
Neil Brownb59e3c02005-09-13 01:25:38 -07004035 lock_sop = alloc_init_lock_stateowner(strhashval,
4036 open_sop->so_client, open_stp, lock);
4037 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07004039 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08004040 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 } else {
4043 /* lock (lock owner + lock stateid) already exists */
Benny Halevydd453df2009-04-03 08:28:41 +03004044 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 lock->lk_old_lock_seqid,
4046 &lock->lk_old_lock_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05004047 LOCK_STATE,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004048 &lock->lk_replay_owner, &lock_stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 if (status)
4050 goto out;
J. Bruce Fields3a655882006-01-18 17:43:19 -08004051 lock_sop = lock->lk_replay_owner;
J. Bruce Fields7d947842010-08-20 18:09:31 -04004052 fp = lock_stp->st_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 }
J. Bruce Fields3a655882006-01-18 17:43:19 -08004054 /* lock->lk_replay_owner and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004056 lkflg = setlkflg(lock->lk_type);
4057 status = nfs4_check_openmode(lock_stp, lkflg);
4058 if (status)
4059 goto out;
4060
NeilBrown0dd395d2005-07-07 17:59:15 -07004061 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004062 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004063 goto out;
4064 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004065 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004066 goto out;
4067
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 locks_init_lock(&file_lock);
4069 switch (lock->lk_type) {
4070 case NFS4_READ_LT:
4071 case NFS4_READW_LT:
J. Bruce Fields0997b172011-03-02 18:01:35 -05004072 filp = find_readable_file(lock_stp->st_file);
4073 if (filp)
4074 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 file_lock.fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004076 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 case NFS4_WRITE_LT:
4078 case NFS4_WRITEW_LT:
J. Bruce Fields0997b172011-03-02 18:01:35 -05004079 filp = find_writeable_file(lock_stp->st_file);
4080 if (filp)
4081 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 file_lock.fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004083 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 default:
4085 status = nfserr_inval;
4086 goto out;
4087 }
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004088 if (!filp) {
4089 status = nfserr_openmode;
4090 goto out;
4091 }
Neil Brownb59e3c02005-09-13 01:25:38 -07004092 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 file_lock.fl_pid = current->tgid;
4094 file_lock.fl_file = filp;
4095 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07004096 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
4098 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02004099 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 nfs4_transform_lock_offset(&file_lock);
4101
4102 /*
4103 * Try to lock the file in the VFS.
4104 * Note: locks.c uses the BKL to protect the inode's lock list.
4105 */
4106
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004107 err = vfs_lock_file(filp, F_SETLK, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07004108 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 case 0: /* success! */
4110 update_stateid(&lock_stp->st_stateid);
4111 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
4112 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07004113 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004114 break;
4115 case (EAGAIN): /* conflock holds conflicting lock */
4116 status = nfserr_denied;
4117 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
4118 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
4119 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 case (EDEADLK):
4121 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004122 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04004123 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05004124 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04004125 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004126 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08004129 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05004130 release_lockowner(lock_sop);
J. Bruce Fields3a655882006-01-18 17:43:19 -08004131 if (lock->lk_replay_owner) {
4132 nfs4_get_stateowner(lock->lk_replay_owner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004133 cstate->replay_owner = lock->lk_replay_owner;
Neil Brownf2327d92005-09-13 01:25:37 -07004134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 nfs4_unlock_state();
4136 return status;
4137}
4138
4139/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08004140 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
4141 * so we do a temporary open here just to get an open file to pass to
4142 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
4143 * inode operation.)
4144 */
4145static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
4146{
4147 struct file *file;
4148 int err;
4149
4150 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
4151 if (err)
4152 return err;
4153 err = vfs_test_lock(file, lock);
4154 nfsd_close(file);
4155 return err;
4156}
4157
4158/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 * LOCKT operation
4160 */
Al Virob37ad282006-10-19 23:28:59 -07004161__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004162nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4163 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164{
4165 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 struct file_lock file_lock;
Marc Eshelfd85b812006-11-28 16:26:41 -05004167 int error;
Al Virob37ad282006-10-19 23:28:59 -07004168 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004170 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 return nfserr_grace;
4172
4173 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
4174 return nfserr_inval;
4175
4176 lockt->lt_stateowner = NULL;
4177 nfs4_lock_state();
4178
4179 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03004180 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
J. Bruce Fields75c096f2011-08-15 18:39:32 -04004183 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004186 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 locks_init_lock(&file_lock);
4188 switch (lockt->lt_type) {
4189 case NFS4_READ_LT:
4190 case NFS4_READW_LT:
4191 file_lock.fl_type = F_RDLCK;
4192 break;
4193 case NFS4_WRITE_LT:
4194 case NFS4_WRITEW_LT:
4195 file_lock.fl_type = F_WRLCK;
4196 break;
4197 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04004198 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 status = nfserr_inval;
4200 goto out;
4201 }
4202
4203 lockt->lt_stateowner = find_lockstateowner_str(inode,
4204 &lockt->lt_clientid, &lockt->lt_owner);
4205 if (lockt->lt_stateowner)
4206 file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner;
4207 file_lock.fl_pid = current->tgid;
4208 file_lock.fl_flags = FL_POSIX;
4209
4210 file_lock.fl_start = lockt->lt_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02004211 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
4213 nfs4_transform_lock_offset(&file_lock);
4214
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08004216 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05004217 if (error) {
4218 status = nfserrno(error);
4219 goto out;
4220 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05004221 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05004223 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 }
4225out:
4226 nfs4_unlock_state();
4227 return status;
4228}
4229
Al Virob37ad282006-10-19 23:28:59 -07004230__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004231nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004232 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233{
4234 struct nfs4_stateid *stp;
4235 struct file *filp = NULL;
4236 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07004237 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07004238 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
4240 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
4241 (long long) locku->lu_offset,
4242 (long long) locku->lu_length);
4243
4244 if (check_lock_length(locku->lu_offset, locku->lu_length))
4245 return nfserr_inval;
4246
4247 nfs4_lock_state();
4248
Benny Halevydd453df2009-04-03 08:28:41 +03004249 if ((status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 locku->lu_seqid,
4251 &locku->lu_stateid,
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05004252 LOCK_STATE,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04004253 &locku->lu_stateowner, &stp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 goto out;
4255
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004256 filp = find_any_file(stp->st_file);
4257 if (!filp) {
4258 status = nfserr_lock_range;
4259 goto out;
4260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 BUG_ON(!filp);
4262 locks_init_lock(&file_lock);
4263 file_lock.fl_type = F_UNLCK;
4264 file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner;
4265 file_lock.fl_pid = current->tgid;
4266 file_lock.fl_file = filp;
4267 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07004268 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 file_lock.fl_start = locku->lu_offset;
4270
Benny Halevy87df4de2008-12-15 19:42:03 +02004271 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 nfs4_transform_lock_offset(&file_lock);
4273
4274 /*
4275 * Try to unlock the file in the VFS.
4276 */
Marc Eshelfd85b812006-11-28 16:26:41 -05004277 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07004278 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05004279 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 goto out_nfserr;
4281 }
4282 /*
4283 * OK, unlock succeeded; the only thing left to do is update the stateid.
4284 */
4285 update_stateid(&stp->st_stateid);
4286 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
4287
4288out:
Neil Brownf2327d92005-09-13 01:25:37 -07004289 if (locku->lu_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 nfs4_get_stateowner(locku->lu_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004291 cstate->replay_owner = locku->lu_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -07004292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 nfs4_unlock_state();
4294 return status;
4295
4296out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07004297 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 goto out;
4299}
4300
4301/*
4302 * returns
4303 * 1: locks held by lockowner
4304 * 0: no locks held by lockowner
4305 */
4306static int
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004307check_for_locks(struct nfs4_file *filp, struct nfs4_stateowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308{
4309 struct file_lock **flpp;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004310 struct inode *inode = filp->fi_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 int status = 0;
4312
Arnd Bergmannb89f4322010-09-18 15:09:31 +02004313 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08004315 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 status = 1;
4317 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08004318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 }
4320out:
Arnd Bergmannb89f4322010-09-18 15:09:31 +02004321 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 return status;
4323}
4324
Al Virob37ad282006-10-19 23:28:59 -07004325__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08004326nfsd4_release_lockowner(struct svc_rqst *rqstp,
4327 struct nfsd4_compound_state *cstate,
4328 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329{
4330 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07004331 struct nfs4_stateowner *sop;
4332 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07004334 struct list_head matches;
4335 int i;
Al Virob37ad282006-10-19 23:28:59 -07004336 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337
4338 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
4339 clid->cl_boot, clid->cl_id);
4340
4341 /* XXX check for lease expiration */
4342
4343 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07004344 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
4347 nfs4_lock_state();
4348
NeilBrown3e9e3db2005-06-23 22:04:20 -07004349 status = nfserr_locks_held;
4350 /* XXX: we're doing a linear search through all the lockowners.
4351 * Yipes! For now we'll just hope clients aren't really using
4352 * release_lockowner much, but eventually we have to fix these
4353 * data structures. */
4354 INIT_LIST_HEAD(&matches);
4355 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4356 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04004357 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07004358 continue;
4359 list_for_each_entry(stp, &sop->so_stateids,
4360 st_perstateowner) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004361 if (check_for_locks(stp->st_file, sop))
NeilBrown3e9e3db2005-06-23 22:04:20 -07004362 goto out;
4363 /* Note: so_perclient unused for lockowners,
4364 * so it's OK to fool with here. */
4365 list_add(&sop->so_perclient, &matches);
4366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07004368 }
4369 /* Clients probably won't expect us to return with some (but not all)
4370 * of the lockowner state released; so don't release any until all
4371 * have been checked. */
4372 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07004373 while (!list_empty(&matches)) {
4374 sop = list_entry(matches.next, struct nfs4_stateowner,
4375 so_perclient);
4376 /* unhash_stateowner deletes so_perclient only
4377 * for openowners. */
4378 list_del(&sop->so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05004379 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 }
4381out:
4382 nfs4_unlock_state();
4383 return status;
4384}
4385
4386static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07004387alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388{
NeilBrowna55370a2005-06-23 22:03:52 -07004389 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390}
4391
NeilBrownc7b9a452005-06-23 22:04:30 -07004392int
Andy Adamsona1bcecd2009-04-03 08:28:05 +03004393nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
NeilBrownc7b9a452005-06-23 22:04:30 -07004394{
4395 unsigned int strhashval = clientstr_hashval(name);
4396 struct nfs4_client *clp;
4397
J. Bruce Fieldse203d502010-11-24 17:30:54 -05004398 clp = find_confirmed_client_by_str(name, strhashval);
NeilBrownc7b9a452005-06-23 22:04:30 -07004399 return clp ? 1 : 0;
4400}
4401
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402/*
4403 * failure => all reset bets are off, nfserr_no_grace...
4404 */
NeilBrown190e4fb2005-06-23 22:04:25 -07004405int
4406nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407{
4408 unsigned int strhashval;
4409 struct nfs4_client_reclaim *crp = NULL;
4410
NeilBrowna55370a2005-06-23 22:03:52 -07004411 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
4412 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 if (!crp)
4414 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07004415 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 INIT_LIST_HEAD(&crp->cr_strhash);
4417 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07004418 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 reclaim_str_hashtbl_size++;
4420 return 1;
4421}
4422
4423static void
4424nfs4_release_reclaim(void)
4425{
4426 struct nfs4_client_reclaim *crp = NULL;
4427 int i;
4428
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4430 while (!list_empty(&reclaim_str_hashtbl[i])) {
4431 crp = list_entry(reclaim_str_hashtbl[i].next,
4432 struct nfs4_client_reclaim, cr_strhash);
4433 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 kfree(crp);
4435 reclaim_str_hashtbl_size--;
4436 }
4437 }
4438 BUG_ON(reclaim_str_hashtbl_size);
4439}
4440
4441/*
4442 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07004443static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444nfs4_find_reclaim_client(clientid_t *clid)
4445{
4446 unsigned int strhashval;
4447 struct nfs4_client *clp;
4448 struct nfs4_client_reclaim *crp = NULL;
4449
4450
4451 /* find clientid in conf_id_hashtbl */
4452 clp = find_confirmed_client(clid);
4453 if (clp == NULL)
4454 return NULL;
4455
NeilBrowna55370a2005-06-23 22:03:52 -07004456 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
4457 clp->cl_name.len, clp->cl_name.data,
4458 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
4460 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07004461 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07004463 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 return crp;
4465 }
4466 }
4467 return NULL;
4468}
4469
4470/*
4471* Called from OPEN. Look for clientid in reclaim list.
4472*/
Al Virob37ad282006-10-19 23:28:59 -07004473__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474nfs4_check_open_reclaim(clientid_t *clid)
4475{
NeilBrowndfc83562005-06-23 22:03:16 -07004476 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477}
4478
NeilBrownac4d8ff22005-06-23 22:03:30 -07004479/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004481int
NeilBrownac4d8ff22005-06-23 22:03:30 -07004482nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004484 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004486 status = nfsd4_init_slabs();
4487 if (status)
4488 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4490 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
4491 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
4492 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
4493 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
Wang Chen02cb2852009-04-24 15:41:57 +08004494 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 }
Marc Eshel5282fd72009-04-03 08:27:52 +03004496 for (i = 0; i < SESSION_HASH_SIZE; i++)
4497 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 for (i = 0; i < FILE_HASH_SIZE; i++) {
4499 INIT_LIST_HEAD(&file_hashtbl[i]);
4500 }
J. Bruce Fields506f2752011-08-11 18:50:18 -04004501 for (i = 0; i < OPEN_OWNER_HASH_SIZE; i++) {
4502 INIT_LIST_HEAD(&open_ownerstr_hashtbl[i]);
4503 INIT_LIST_HEAD(&open_ownerid_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 }
4505 for (i = 0; i < STATEID_HASH_SIZE; i++) {
4506 INIT_LIST_HEAD(&stateid_hashtbl[i]);
4507 INIT_LIST_HEAD(&lockstateid_hashtbl[i]);
4508 }
4509 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4510 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
4511 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
4512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 INIT_LIST_HEAD(&close_lru);
4515 INIT_LIST_HEAD(&client_lru);
4516 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07004517 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004518 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07004519}
4520
NeilBrown190e4fb2005-06-23 22:04:25 -07004521static void
4522nfsd4_load_reboot_recovery_data(void)
4523{
4524 int status;
4525
NeilBrown0964a3d2005-06-23 22:04:32 -07004526 nfs4_lock_state();
J. Bruce Fields48483bf2011-08-26 20:40:28 -04004527 nfsd4_init_recdir();
NeilBrown190e4fb2005-06-23 22:04:25 -07004528 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07004529 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07004530 if (status)
4531 printk("NFSD: Failure reading reboot recovery data\n");
4532}
4533
Meelap Shahc2f1a552007-07-17 04:04:39 -07004534/*
4535 * Since the lifetime of a delegation isn't limited to that of an open, a
4536 * client may quite reasonably hang on to a delegation as long as it has
4537 * the inode cached. This becomes an obvious problem the first time a
4538 * client's inode cache approaches the size of the server's total memory.
4539 *
4540 * For now we avoid this problem by imposing a hard limit on the number
4541 * of delegations, which varies according to the server's memory size.
4542 */
4543static void
4544set_max_delegations(void)
4545{
4546 /*
4547 * Allow at most 4 delegations per megabyte of RAM. Quick
4548 * estimates suggest that in the worst case (where every delegation
4549 * is for a different inode), a delegation could take about 1.5K,
4550 * giving a worst case usage of about 6% of memory.
4551 */
4552 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4553}
4554
NeilBrownac4d8ff22005-06-23 22:03:30 -07004555/* initialization to perform when the nfsd service is started: */
4556
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004557static int
NeilBrownac4d8ff22005-06-23 22:03:30 -07004558__nfs4_state_start(void)
4559{
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004560 int ret;
4561
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004563 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07004564 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05004565 nfsd4_grace);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004566 ret = set_callback_cred();
4567 if (ret)
4568 return -ENOMEM;
NeilBrown58da2822005-06-23 22:03:19 -07004569 laundry_wq = create_singlethread_workqueue("nfsd4");
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004570 if (laundry_wq == NULL)
4571 return -ENOMEM;
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004572 ret = nfsd4_create_callback_queue();
4573 if (ret)
4574 goto out_free_laundry;
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05004575 queue_delayed_work(laundry_wq, &laundromat_work, nfsd4_grace * HZ);
Meelap Shahc2f1a552007-07-17 04:04:39 -07004576 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004577 return 0;
4578out_free_laundry:
4579 destroy_workqueue(laundry_wq);
4580 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581}
4582
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004583int
NeilBrown76a35502005-06-23 22:03:26 -07004584nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585{
NeilBrown190e4fb2005-06-23 22:04:25 -07004586 nfsd4_load_reboot_recovery_data();
Jeff Layton4ad9a342010-07-19 16:50:04 -04004587 return __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588}
4589
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590static void
4591__nfs4_state_shutdown(void)
4592{
4593 int i;
4594 struct nfs4_client *clp = NULL;
4595 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 struct list_head *pos, *next, reaplist;
4597
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4599 while (!list_empty(&conf_id_hashtbl[i])) {
4600 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4601 expire_client(clp);
4602 }
4603 while (!list_empty(&unconf_str_hashtbl[i])) {
4604 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4605 expire_client(clp);
4606 }
4607 }
4608 INIT_LIST_HEAD(&reaplist);
4609 spin_lock(&recall_lock);
4610 list_for_each_safe(pos, next, &del_recall_lru) {
4611 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4612 list_move(&dp->dl_recall_lru, &reaplist);
4613 }
4614 spin_unlock(&recall_lock);
4615 list_for_each_safe(pos, next, &reaplist) {
4616 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4617 list_del_init(&dp->dl_recall_lru);
4618 unhash_delegation(dp);
4619 }
4620
NeilBrown190e4fb2005-06-23 22:04:25 -07004621 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622}
4623
4624void
4625nfs4_state_shutdown(void)
4626{
Tejun Heoafe2c512010-12-14 16:21:17 +01004627 cancel_delayed_work_sync(&laundromat_work);
NeilBrown5e8d5c22006-04-10 22:55:37 -07004628 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06004629 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 nfs4_lock_state();
4631 nfs4_release_reclaim();
4632 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 nfs4_unlock_state();
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04004634 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635}