blob: 8edc9ad63ea606f8e69d5bdb21ee2f2d43d6b630 [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_delegation * search_for_delegation(stateid_t *stid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -040066static int check_for_locks(struct nfs4_file *filp, struct nfs4_stateowner *lowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
J. Bruce Fields8b671b82009-02-22 14:51:34 -080068/* Locking: */
69
70/* Currently used for almost all code touching nfsv4 state: */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080071static DEFINE_MUTEX(client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
J. Bruce Fields8b671b82009-02-22 14:51:34 -080073/*
74 * Currently used for the del_recall_lru and file hash table. In an
75 * effort to decrease the scope of the client_mutex, this spinlock may
76 * eventually cover more:
77 */
78static DEFINE_SPINLOCK(recall_lock);
79
Christoph Lametere18b8902006-12-06 20:33:20 -080080static struct kmem_cache *stateowner_slab = NULL;
81static struct kmem_cache *file_slab = NULL;
82static struct kmem_cache *stateid_slab = NULL;
83static struct kmem_cache *deleg_slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -070084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085void
86nfs4_lock_state(void)
87{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080088 mutex_lock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91void
92nfs4_unlock_state(void)
93{
Ingo Molnar353ab6e2006-03-26 01:37:12 -080094 mutex_unlock(&client_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
97static inline u32
98opaque_hashval(const void *ptr, int nbytes)
99{
100 unsigned char *cptr = (unsigned char *) ptr;
101
102 u32 x = 0;
103 while (nbytes--) {
104 x *= 37;
105 x += *cptr++;
106 }
107 return x;
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static struct list_head del_recall_lru;
111
NeilBrown13cd2182005-06-23 22:03:10 -0700112static inline void
113put_nfs4_file(struct nfs4_file *fi)
114{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800115 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
116 list_del(&fi->fi_hash);
117 spin_unlock(&recall_lock);
118 iput(fi->fi_inode);
119 kmem_cache_free(file_slab, fi);
120 }
NeilBrown13cd2182005-06-23 22:03:10 -0700121}
122
123static inline void
124get_nfs4_file(struct nfs4_file *fi)
125{
J. Bruce Fields8b671b82009-02-22 14:51:34 -0800126 atomic_inc(&fi->fi_ref);
NeilBrown13cd2182005-06-23 22:03:10 -0700127}
128
NeilBrownef0f3392006-04-10 22:55:41 -0700129static int num_delegations;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700130unsigned int max_delegations;
NeilBrownef0f3392006-04-10 22:55:41 -0700131
132/*
133 * Open owner state (share locks)
134 */
135
J. Bruce Fields506f2752011-08-11 18:50:18 -0400136/* hash tables for open owners */
137#define OPEN_OWNER_HASH_BITS 8
138#define OPEN_OWNER_HASH_SIZE (1 << OPEN_OWNER_HASH_BITS)
139#define OPEN_OWNER_HASH_MASK (OPEN_OWNER_HASH_SIZE - 1)
NeilBrownef0f3392006-04-10 22:55:41 -0700140
J. Bruce Fields506f2752011-08-11 18:50:18 -0400141static unsigned int open_ownerid_hashval(const u32 id)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400142{
J. Bruce Fields506f2752011-08-11 18:50:18 -0400143 return id & OPEN_OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400144}
145
J. Bruce Fields506f2752011-08-11 18:50:18 -0400146static unsigned int open_ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400147{
148 unsigned int ret;
149
150 ret = opaque_hashval(ownername->data, ownername->len);
151 ret += clientid;
J. Bruce Fields506f2752011-08-11 18:50:18 -0400152 return ret & OPEN_OWNER_HASH_MASK;
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400153}
NeilBrownef0f3392006-04-10 22:55:41 -0700154
J. Bruce Fields506f2752011-08-11 18:50:18 -0400155static struct list_head open_ownerid_hashtbl[OPEN_OWNER_HASH_SIZE];
156static struct list_head open_ownerstr_hashtbl[OPEN_OWNER_HASH_SIZE];
NeilBrownef0f3392006-04-10 22:55:41 -0700157
158/* hash table for nfs4_file */
159#define FILE_HASH_BITS 8
160#define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
Shan Wei35079582011-01-14 17:35:59 +0800161
NeilBrownef0f3392006-04-10 22:55:41 -0700162/* hash table for (open)nfs4_stateid */
163#define STATEID_HASH_BITS 10
164#define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
165#define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
166
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400167static unsigned int file_hashval(struct inode *ino)
168{
169 /* XXX: why are we hashing on inode pointer, anyway? */
170 return hash_ptr(ino, FILE_HASH_BITS);
171}
172
173static unsigned int stateid_hashval(u32 owner_id, u32 file_id)
174{
175 return (owner_id + file_id) & STATEID_HASH_MASK;
176}
NeilBrownef0f3392006-04-10 22:55:41 -0700177
178static struct list_head file_hashtbl[FILE_HASH_SIZE];
179static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
180
J. Bruce Fields998db522010-08-07 09:21:41 -0400181static void __nfs4_file_get_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400182{
183 BUG_ON(!(fp->fi_fds[oflag] || fp->fi_fds[O_RDWR]));
184 atomic_inc(&fp->fi_access[oflag]);
185}
186
J. Bruce Fields998db522010-08-07 09:21:41 -0400187static void nfs4_file_get_access(struct nfs4_file *fp, int oflag)
188{
189 if (oflag == O_RDWR) {
190 __nfs4_file_get_access(fp, O_RDONLY);
191 __nfs4_file_get_access(fp, O_WRONLY);
192 } else
193 __nfs4_file_get_access(fp, oflag);
194}
195
196static void nfs4_file_put_fd(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400197{
198 if (fp->fi_fds[oflag]) {
199 fput(fp->fi_fds[oflag]);
200 fp->fi_fds[oflag] = NULL;
201 }
202}
203
J. Bruce Fields998db522010-08-07 09:21:41 -0400204static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400205{
206 if (atomic_dec_and_test(&fp->fi_access[oflag])) {
207 nfs4_file_put_fd(fp, O_RDWR);
208 nfs4_file_put_fd(fp, oflag);
209 }
210}
211
J. Bruce Fields998db522010-08-07 09:21:41 -0400212static void nfs4_file_put_access(struct nfs4_file *fp, int oflag)
213{
214 if (oflag == O_RDWR) {
215 __nfs4_file_put_access(fp, O_RDONLY);
216 __nfs4_file_put_access(fp, O_WRONLY);
217 } else
218 __nfs4_file_put_access(fp, oflag);
219}
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221static struct nfs4_delegation *
222alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type)
223{
224 struct nfs4_delegation *dp;
225 struct nfs4_file *fp = stp->st_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 dprintk("NFSD alloc_init_deleg\n");
J. Bruce Fieldsc3e48082010-07-28 10:08:57 -0400228 /*
229 * Major work on the lease subsystem (for example, to support
230 * calbacks on stat) will be required before we can support
231 * write delegations properly.
232 */
233 if (type != NFS4_OPEN_DELEGATE_READ)
234 return NULL;
Meelap Shah47f99402007-07-17 04:04:40 -0700235 if (fp->fi_had_conflict)
236 return NULL;
Meelap Shahc2f1a552007-07-17 04:04:39 -0700237 if (num_delegations > max_delegations)
NeilBrownef0f3392006-04-10 22:55:41 -0700238 return NULL;
NeilBrown5b2d21c2005-06-23 22:03:04 -0700239 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
240 if (dp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return dp;
NeilBrownef0f3392006-04-10 22:55:41 -0700242 num_delegations++;
NeilBrownea1da632005-06-23 22:04:17 -0700243 INIT_LIST_HEAD(&dp->dl_perfile);
244 INIT_LIST_HEAD(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 INIT_LIST_HEAD(&dp->dl_recall_lru);
246 dp->dl_client = clp;
NeilBrown13cd2182005-06-23 22:03:10 -0700247 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 dp->dl_file = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 dp->dl_type = type;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -0400250 dp->dl_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 dp->dl_stateid.si_stateownerid = current_delegid++;
252 dp->dl_stateid.si_fileid = 0;
J. Bruce Fields73997dc2011-08-31 15:47:21 -0400253 dp->dl_stateid.si_generation = 1;
J. Bruce Fields6c02eaa2009-02-02 17:30:51 -0500254 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 dp->dl_time = 0;
256 atomic_set(&dp->dl_count, 1);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -0500257 INIT_WORK(&dp->dl_recall.cb_work, nfsd4_do_callback_rpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return dp;
259}
260
261void
262nfs4_put_delegation(struct nfs4_delegation *dp)
263{
264 if (atomic_dec_and_test(&dp->dl_count)) {
265 dprintk("NFSD: freeing dp %p\n",dp);
NeilBrown13cd2182005-06-23 22:03:10 -0700266 put_nfs4_file(dp->dl_file);
NeilBrown5b2d21c2005-06-23 22:03:04 -0700267 kmem_cache_free(deleg_slab, dp);
NeilBrownef0f3392006-04-10 22:55:41 -0700268 num_delegations--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
270}
271
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500272static void nfs4_put_deleg_lease(struct nfs4_file *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500274 if (atomic_dec_and_test(&fp->fi_delegees)) {
275 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
276 fp->fi_lease = NULL;
J. Bruce Fields4ee63622011-04-15 18:08:26 -0400277 fput(fp->fi_deleg_file);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500278 fp->fi_deleg_file = NULL;
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282/* Called under the state lock. */
283static void
284unhash_delegation(struct nfs4_delegation *dp)
285{
NeilBrownea1da632005-06-23 22:04:17 -0700286 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 spin_lock(&recall_lock);
J. Bruce Fields5d926e82011-02-07 16:53:46 -0500288 list_del_init(&dp->dl_perfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 list_del_init(&dp->dl_recall_lru);
290 spin_unlock(&recall_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -0500291 nfs4_put_deleg_lease(dp->dl_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 nfs4_put_delegation(dp);
293}
294
295/*
296 * SETCLIENTID state
297 */
298
Benny Halevy36acb662010-05-12 00:13:04 +0300299/* client_lock protects the client lru list and session hash table */
Benny Halevy9089f1b2010-05-12 00:12:26 +0300300static DEFINE_SPINLOCK(client_lock);
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/* Hash tables for nfs4_clientid state */
303#define CLIENT_HASH_BITS 4
304#define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
305#define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
306
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -0400307static unsigned int clientid_hashval(u32 id)
308{
309 return id & CLIENT_HASH_MASK;
310}
311
312static unsigned int clientstr_hashval(const char *name)
313{
314 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*
318 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
319 * used in reboot/reset lease grace period processing
320 *
321 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
322 * setclientid_confirmed info.
323 *
324 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
325 * setclientid info.
326 *
327 * client_lru holds client queue ordered by nfs4_client.cl_time
328 * for lease renewal.
329 *
330 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
331 * for last close replay.
332 */
333static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
334static int reclaim_str_hashtbl_size = 0;
335static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
336static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
337static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
338static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
339static struct list_head client_lru;
340static struct list_head close_lru;
341
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400342/*
343 * We store the NONE, READ, WRITE, and BOTH bits separately in the
344 * st_{access,deny}_bmap field of the stateid, in order to track not
345 * only what share bits are currently in force, but also what
346 * combinations of share bits previous opens have used. This allows us
347 * to enforce the recommendation of rfc 3530 14.2.19 that the server
348 * return an error if the client attempt to downgrade to a combination
349 * of share bits not explicable by closing some of its previous opens.
350 *
351 * XXX: This enforcement is actually incomplete, since we don't keep
352 * track of access/deny bit combinations; so, e.g., we allow:
353 *
354 * OPEN allow read, deny write
355 * OPEN allow both, deny none
356 * DOWNGRADE allow read, deny none
357 *
358 * which we should reject.
359 */
360static void
361set_access(unsigned int *access, unsigned long bmap) {
362 int i;
363
364 *access = 0;
365 for (i = 1; i < 4; i++) {
366 if (test_bit(i, &bmap))
367 *access |= i;
368 }
369}
370
371static void
372set_deny(unsigned int *deny, unsigned long bmap) {
373 int i;
374
375 *deny = 0;
376 for (i = 0; i < 4; i++) {
377 if (test_bit(i, &bmap))
378 *deny |= i ;
379 }
380}
381
382static int
383test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
384 unsigned int access, deny;
385
386 set_access(&access, stp->st_access_bmap);
387 set_deny(&deny, stp->st_deny_bmap);
388 if ((access & open->op_share_deny) || (deny & open->op_share_access))
389 return 0;
390 return 1;
391}
392
393static int nfs4_access_to_omode(u32 access)
394{
J. Bruce Fields8f34a432010-09-02 15:23:16 -0400395 switch (access & NFS4_SHARE_ACCESS_BOTH) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -0400396 case NFS4_SHARE_ACCESS_READ:
397 return O_RDONLY;
398 case NFS4_SHARE_ACCESS_WRITE:
399 return O_WRONLY;
400 case NFS4_SHARE_ACCESS_BOTH:
401 return O_RDWR;
402 }
403 BUG();
404}
405
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500406static void unhash_generic_stateid(struct nfs4_stateid *stp)
407{
408 list_del(&stp->st_hash);
409 list_del(&stp->st_perfile);
410 list_del(&stp->st_perstateowner);
411}
412
413static void free_generic_stateid(struct nfs4_stateid *stp)
414{
J. Bruce Fields499f3ed2011-06-27 16:57:12 -0400415 int i;
J. Bruce Fields0997b172011-03-02 18:01:35 -0500416
J. Bruce Fields23fcf2e2011-03-28 15:15:09 +0800417 if (stp->st_access_bmap) {
J. Bruce Fields499f3ed2011-06-27 16:57:12 -0400418 for (i = 1; i < 4; i++) {
419 if (test_bit(i, &stp->st_access_bmap))
420 nfs4_file_put_access(stp->st_file,
421 nfs4_access_to_omode(i));
422 }
J. Bruce Fields23fcf2e2011-03-28 15:15:09 +0800423 }
OGAWA Hirofumia96e5b92011-04-18 11:48:55 -0400424 put_nfs4_file(stp->st_file);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500425 kmem_cache_free(stateid_slab, stp);
426}
427
428static void release_lock_stateid(struct nfs4_stateid *stp)
429{
430 struct file *file;
431
432 unhash_generic_stateid(stp);
433 file = find_any_file(stp->st_file);
434 if (file)
435 locks_remove_posix(file, (fl_owner_t)stp->st_stateowner);
436 free_generic_stateid(stp);
437}
438
439static void unhash_lockowner(struct nfs4_stateowner *sop)
440{
441 struct nfs4_stateid *stp;
442
443 list_del(&sop->so_idhash);
444 list_del(&sop->so_strhash);
445 list_del(&sop->so_perstateid);
446 while (!list_empty(&sop->so_stateids)) {
447 stp = list_first_entry(&sop->so_stateids,
448 struct nfs4_stateid, st_perstateowner);
449 release_lock_stateid(stp);
450 }
451}
452
453static void release_lockowner(struct nfs4_stateowner *sop)
454{
455 unhash_lockowner(sop);
J. Bruce Fields7c13f342011-08-30 22:15:47 -0400456 nfs4_free_stateowner(sop);
J. Bruce Fields529d7b22011-03-02 23:48:33 -0500457}
458
459static void
460release_stateid_lockowners(struct nfs4_stateid *open_stp)
461{
462 struct nfs4_stateowner *lock_sop;
463
464 while (!list_empty(&open_stp->st_lockowners)) {
465 lock_sop = list_entry(open_stp->st_lockowners.next,
466 struct nfs4_stateowner, so_perstateid);
467 /* list_del(&open_stp->st_lockowners); */
468 BUG_ON(lock_sop->so_is_open_owner);
469 release_lockowner(lock_sop);
470 }
471}
472
J. Bruce Fields22839632009-01-11 14:27:17 -0500473static void release_open_stateid(struct nfs4_stateid *stp)
474{
475 unhash_generic_stateid(stp);
476 release_stateid_lockowners(stp);
J. Bruce Fields22839632009-01-11 14:27:17 -0500477 free_generic_stateid(stp);
478}
479
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500480static void unhash_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500481{
482 struct nfs4_stateid *stp;
483
484 list_del(&sop->so_idhash);
485 list_del(&sop->so_strhash);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500486 list_del(&sop->so_perclient);
487 list_del(&sop->so_perstateid); /* XXX: necessary? */
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500488 while (!list_empty(&sop->so_stateids)) {
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500489 stp = list_first_entry(&sop->so_stateids,
490 struct nfs4_stateid, st_perstateowner);
491 release_open_stateid(stp);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500492 }
493}
494
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500495static void release_openowner(struct nfs4_stateowner *sop)
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500496{
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500497 unhash_openowner(sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500498 list_del(&sop->so_close_lru);
J. Bruce Fields7c13f342011-08-30 22:15:47 -0400499 nfs4_free_stateowner(sop);
J. Bruce Fieldsf1d110c2009-01-11 14:37:31 -0500500}
501
Marc Eshel5282fd72009-04-03 08:27:52 +0300502#define SESSION_HASH_SIZE 512
503static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
504
505static inline int
506hash_sessionid(struct nfs4_sessionid *sessionid)
507{
508 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
509
510 return sid->sequence % SESSION_HASH_SIZE;
511}
512
513static inline void
514dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
515{
516 u32 *ptr = (u32 *)(&sessionid->data[0]);
517 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
518}
519
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300520static void
521gen_sessionid(struct nfsd4_session *ses)
522{
523 struct nfs4_client *clp = ses->se_client;
524 struct nfsd4_sessionid *sid;
525
526 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
527 sid->clientid = clp->cl_clientid;
528 sid->sequence = current_sessionid++;
529 sid->reserved = 0;
530}
531
532/*
Andy Adamsona6496372009-08-28 08:45:01 -0400533 * The protocol defines ca_maxresponssize_cached to include the size of
534 * the rpc header, but all we need to cache is the data starting after
535 * the end of the initial SEQUENCE operation--the rest we regenerate
536 * each time. Therefore we can advertise a ca_maxresponssize_cached
537 * value that is the number of bytes in our cache plus a few additional
538 * bytes. In order to stay on the safe side, and not promise more than
539 * we can cache, those additional bytes must be the minimum possible: 24
540 * bytes of rpc header (xid through accept state, with AUTH_NULL
541 * verifier), 12 for the compound header (with zero-length tag), and 44
542 * for the SEQUENCE op response:
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300543 */
Andy Adamsona6496372009-08-28 08:45:01 -0400544#define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
545
Andy Adamson557ce262009-08-28 08:45:04 -0400546static void
547free_session_slots(struct nfsd4_session *ses)
548{
549 int i;
550
551 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
552 kfree(ses->se_slots[i]);
553}
554
J. Bruce Fieldsefe0cb62009-10-24 20:52:16 -0400555/*
556 * We don't actually need to cache the rpc and session headers, so we
557 * can allocate a little less for each slot:
558 */
559static inline int slot_bytes(struct nfsd4_channel_attrs *ca)
560{
561 return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
562}
563
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400564static int nfsd4_sanitize_slot_size(u32 size)
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300565{
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400566 size -= NFSD_MIN_HDR_SEQ_SZ; /* We don't cache the rpc header */
567 size = min_t(u32, size, NFSD_SLOT_CACHE_SIZE);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300568
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400569 return size;
570}
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300571
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400572/*
573 * XXX: If we run out of reserved DRC memory we could (up to a point)
574 * re-negotiate active sessions and reduce their slot usage to make
575 * rooom for new connections. For now we just fail the create session.
576 */
577static int nfsd4_get_drc_mem(int slotsize, u32 num)
578{
579 int avail;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300580
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400581 num = min_t(u32, num, NFSD_MAX_SLOTS_PER_SESSION);
Andy Adamson557ce262009-08-28 08:45:04 -0400582
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400583 spin_lock(&nfsd_drc_lock);
584 avail = min_t(int, NFSD_MAX_MEM_PER_SESSION,
585 nfsd_drc_max_mem - nfsd_drc_mem_used);
586 num = min_t(int, num, avail / slotsize);
587 nfsd_drc_mem_used += num * slotsize;
588 spin_unlock(&nfsd_drc_lock);
589
590 return num;
591}
592
593static void nfsd4_put_drc_mem(int slotsize, int num)
594{
595 spin_lock(&nfsd_drc_lock);
596 nfsd_drc_mem_used -= slotsize * num;
597 spin_unlock(&nfsd_drc_lock);
598}
599
600static struct nfsd4_session *alloc_session(int slotsize, int numslots)
601{
602 struct nfsd4_session *new;
603 int mem, i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300604
J. Bruce Fieldsc23753d2010-09-27 16:22:30 -0400605 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400606 + sizeof(struct nfsd4_session) > PAGE_SIZE);
607 mem = numslots * sizeof(struct nfsd4_slot *);
Andy Adamson557ce262009-08-28 08:45:04 -0400608
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400609 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300610 if (!new)
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400611 return NULL;
Andy Adamson557ce262009-08-28 08:45:04 -0400612 /* allocate each struct nfsd4_slot and data cache in one piece */
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400613 for (i = 0; i < numslots; i++) {
614 mem = sizeof(struct nfsd4_slot) + slotsize;
615 new->se_slots[i] = kzalloc(mem, GFP_KERNEL);
616 if (!new->se_slots[i])
Andy Adamson557ce262009-08-28 08:45:04 -0400617 goto out_free;
Andy Adamson557ce262009-08-28 08:45:04 -0400618 }
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400619 return new;
620out_free:
621 while (i--)
622 kfree(new->se_slots[i]);
623 kfree(new);
624 return NULL;
625}
626
627static void init_forechannel_attrs(struct nfsd4_channel_attrs *new, struct nfsd4_channel_attrs *req, int numslots, int slotsize)
628{
629 u32 maxrpc = nfsd_serv->sv_max_mesg;
630
631 new->maxreqs = numslots;
Mi Jinlongd2b21742011-03-10 17:43:37 +0800632 new->maxresp_cached = min_t(u32, req->maxresp_cached,
633 slotsize + NFSD_MIN_HDR_SEQ_SZ);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400634 new->maxreq_sz = min_t(u32, req->maxreq_sz, maxrpc);
635 new->maxresp_sz = min_t(u32, req->maxresp_sz, maxrpc);
636 new->maxops = min_t(u32, req->maxops, NFSD_MAX_OPS_PER_COMPOUND);
637}
638
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400639static void free_conn(struct nfsd4_conn *c)
640{
641 svc_xprt_put(c->cn_xprt);
642 kfree(c);
643}
644
645static void nfsd4_conn_lost(struct svc_xpt_user *u)
646{
647 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
648 struct nfs4_client *clp = c->cn_session->se_client;
649
650 spin_lock(&clp->cl_lock);
651 if (!list_empty(&c->cn_persession)) {
652 list_del(&c->cn_persession);
653 free_conn(c);
654 }
655 spin_unlock(&clp->cl_lock);
J. Bruce Fieldseea49802010-11-18 08:34:12 -0500656 nfsd4_probe_callback(clp);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400657}
658
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -0400659static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400660{
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400661 struct nfsd4_conn *conn;
662
663 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
664 if (!conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400665 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400666 svc_xprt_get(rqstp->rq_xprt);
667 conn->cn_xprt = rqstp->rq_xprt;
J. Bruce Fieldsd29c3742010-06-15 17:34:11 -0400668 conn->cn_flags = flags;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400669 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
670 return conn;
671}
672
J. Bruce Fields328ead22010-09-29 16:11:06 -0400673static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
674{
675 conn->cn_session = ses;
676 list_add(&conn->cn_persession, &ses->se_conns);
677}
678
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400679static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
680{
681 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400682
683 spin_lock(&clp->cl_lock);
J. Bruce Fields328ead22010-09-29 16:11:06 -0400684 __nfsd4_hash_conn(conn, ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400685 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400686}
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400687
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400688static int nfsd4_register_conn(struct nfsd4_conn *conn)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400689{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400690 conn->cn_xpt_user.callback = nfsd4_conn_lost;
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400691 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400692}
693
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400694static __be32 nfsd4_new_conn(struct svc_rqst *rqstp, struct nfsd4_session *ses, u32 dir)
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400695{
696 struct nfsd4_conn *conn;
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400697 int ret;
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400698
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400699 conn = alloc_conn(rqstp, dir);
J. Bruce Fieldsdb906812010-09-29 15:29:32 -0400700 if (!conn)
701 return nfserr_jukebox;
702 nfsd4_hash_conn(conn, ses);
J. Bruce Fields21b75b02010-10-26 10:07:17 -0400703 ret = nfsd4_register_conn(conn);
704 if (ret)
705 /* oops; xprt is already down: */
706 nfsd4_conn_lost(&conn->cn_xpt_user);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400707 return nfs_ok;
708}
709
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400710static __be32 nfsd4_new_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_session *ses)
711{
712 u32 dir = NFS4_CDFC4_FORE;
713
714 if (ses->se_flags & SESSION4_BACK_CHAN)
715 dir |= NFS4_CDFC4_BACK;
716
717 return nfsd4_new_conn(rqstp, ses, dir);
718}
719
720/* must be called under client_lock */
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400721static void nfsd4_del_conns(struct nfsd4_session *s)
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400722{
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400723 struct nfs4_client *clp = s->se_client;
724 struct nfsd4_conn *c;
725
726 spin_lock(&clp->cl_lock);
727 while (!list_empty(&s->se_conns)) {
728 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
729 list_del_init(&c->cn_persession);
730 spin_unlock(&clp->cl_lock);
731
732 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
733 free_conn(c);
734
735 spin_lock(&clp->cl_lock);
736 }
737 spin_unlock(&clp->cl_lock);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400738}
739
740void free_session(struct kref *kref)
741{
742 struct nfsd4_session *ses;
743 int mem;
744
745 ses = container_of(kref, struct nfsd4_session, se_ref);
J. Bruce Fields19cf5c02010-06-06 18:37:16 -0400746 nfsd4_del_conns(ses);
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400747 spin_lock(&nfsd_drc_lock);
748 mem = ses->se_fchannel.maxreqs * slot_bytes(&ses->se_fchannel);
749 nfsd_drc_mem_used -= mem;
750 spin_unlock(&nfsd_drc_lock);
751 free_session_slots(ses);
752 kfree(ses);
753}
754
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400755static 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 -0400756{
757 struct nfsd4_session *new;
758 struct nfsd4_channel_attrs *fchan = &cses->fore_channel;
759 int numslots, slotsize;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400760 int status;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400761 int idx;
762
763 /*
764 * Note decreasing slot size below client's request may
765 * make it difficult for client to function correctly, whereas
766 * decreasing the number of slots will (just?) affect
767 * performance. When short on memory we therefore prefer to
768 * decrease number of slots instead of their size.
769 */
770 slotsize = nfsd4_sanitize_slot_size(fchan->maxresp_cached);
771 numslots = nfsd4_get_drc_mem(slotsize, fchan->maxreqs);
Mi Jinlongced6dfe2010-11-11 18:03:50 +0800772 if (numslots < 1)
773 return NULL;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400774
775 new = alloc_session(slotsize, numslots);
776 if (!new) {
777 nfsd4_put_drc_mem(slotsize, fchan->maxreqs);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400778 return NULL;
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400779 }
780 init_forechannel_attrs(&new->se_fchannel, fchan, numslots, slotsize);
Andy Adamson557ce262009-08-28 08:45:04 -0400781
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300782 new->se_client = clp;
783 gen_sessionid(new);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300784
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400785 INIT_LIST_HEAD(&new->se_conns);
786
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400787 new->se_cb_seq_nr = 1;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300788 new->se_flags = cses->flags;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -0400789 new->se_cb_prog = cses->callback_prog;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300790 kref_init(&new->se_ref);
J. Bruce Fields5b6feee2010-09-27 17:12:05 -0400791 idx = hash_sessionid(&new->se_sessionid);
Benny Halevy9089f1b2010-05-12 00:12:26 +0300792 spin_lock(&client_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300793 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400794 spin_lock(&clp->cl_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300795 list_add(&new->se_perclnt, &clp->cl_sessions);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400796 spin_unlock(&clp->cl_lock);
Benny Halevy9089f1b2010-05-12 00:12:26 +0300797 spin_unlock(&client_lock);
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300798
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400799 status = nfsd4_new_conn_from_crses(rqstp, new);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400800 /* whoops: benny points out, status is ignored! (err, or bogus) */
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400801 if (status) {
802 free_session(&new->se_ref);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400803 return NULL;
J. Bruce Fieldsc7662512010-06-06 18:12:14 -0400804 }
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400805 if (cses->flags & SESSION4_BACK_CHAN) {
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400806 struct sockaddr *sa = svc_addr(rqstp);
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400807 /*
808 * This is a little silly; with sessions there's no real
809 * use for the callback address. Use the peer address
810 * as a reasonable default for now, but consider fixing
811 * the rpc client not to require an address in the
812 * future:
813 */
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400814 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
815 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -0400816 }
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400817 nfsd4_probe_callback(clp);
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -0400818 return new;
Andy Adamsonec6b5d72009-04-03 08:28:28 +0300819}
820
Benny Halevy9089f1b2010-05-12 00:12:26 +0300821/* caller must hold client_lock */
Marc Eshel5282fd72009-04-03 08:27:52 +0300822static struct nfsd4_session *
823find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
824{
825 struct nfsd4_session *elem;
826 int idx;
827
828 dump_sessionid(__func__, sessionid);
829 idx = hash_sessionid(sessionid);
Marc Eshel5282fd72009-04-03 08:27:52 +0300830 /* Search in the appropriate list */
831 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
Marc Eshel5282fd72009-04-03 08:27:52 +0300832 if (!memcmp(elem->se_sessionid.data, sessionid->data,
833 NFS4_MAX_SESSIONID_LEN)) {
834 return elem;
835 }
836 }
837
838 dprintk("%s: session not found\n", __func__);
839 return NULL;
840}
841
Benny Halevy9089f1b2010-05-12 00:12:26 +0300842/* caller must hold client_lock */
Andy Adamson7116ed62009-04-03 08:27:43 +0300843static void
Marc Eshel5282fd72009-04-03 08:27:52 +0300844unhash_session(struct nfsd4_session *ses)
Andy Adamson7116ed62009-04-03 08:27:43 +0300845{
846 list_del(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400847 spin_lock(&ses->se_client->cl_lock);
Andy Adamson7116ed62009-04-03 08:27:43 +0300848 list_del(&ses->se_perclnt);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400849 spin_unlock(&ses->se_client->cl_lock);
Marc Eshel5282fd72009-04-03 08:27:52 +0300850}
851
Benny Halevy36acb662010-05-12 00:13:04 +0300852/* must be called under the client_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853static inline void
Benny Halevy36acb662010-05-12 00:13:04 +0300854renew_client_locked(struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Benny Halevy07cd4902010-05-12 00:13:41 +0300856 if (is_client_expired(clp)) {
857 dprintk("%s: client (clientid %08x/%08x) already expired\n",
858 __func__,
859 clp->cl_clientid.cl_boot,
860 clp->cl_clientid.cl_id);
861 return;
862 }
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /*
865 * Move client to the end to the LRU list.
866 */
867 dprintk("renewing client (clientid %08x/%08x)\n",
868 clp->cl_clientid.cl_boot,
869 clp->cl_clientid.cl_id);
870 list_move_tail(&clp->cl_lru, &client_lru);
871 clp->cl_time = get_seconds();
872}
873
Benny Halevy36acb662010-05-12 00:13:04 +0300874static inline void
875renew_client(struct nfs4_client *clp)
876{
877 spin_lock(&client_lock);
878 renew_client_locked(clp);
879 spin_unlock(&client_lock);
880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
883static int
884STALE_CLIENTID(clientid_t *clid)
885{
886 if (clid->cl_boot == boot_time)
887 return 0;
Andy Adamson60adfc52009-04-03 08:28:50 +0300888 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
889 clid->cl_boot, clid->cl_id, boot_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return 1;
891}
892
893/*
894 * XXX Should we use a slab cache ?
895 * This type of memory management is somewhat inefficient, but we use it
896 * anyway since SETCLIENTID is not a common operation.
897 */
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500898static struct nfs4_client *alloc_client(struct xdr_netobj name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 struct nfs4_client *clp;
901
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500902 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
903 if (clp == NULL)
904 return NULL;
905 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
906 if (clp->cl_name.data == NULL) {
907 kfree(clp);
908 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500910 memcpy(clp->cl_name.data, name.data, name.len);
911 clp->cl_name.len = name.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return clp;
913}
914
915static inline void
916free_client(struct nfs4_client *clp)
917{
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400918 while (!list_empty(&clp->cl_sessions)) {
919 struct nfsd4_session *ses;
920 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
921 se_perclnt);
922 list_del(&ses->se_perclnt);
923 nfsd4_put_session(ses);
924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (clp->cl_cred.cr_group_info)
926 put_group_info(clp->cl_cred.cr_group_info);
Olga Kornievskaia68e76ad2008-12-23 16:17:15 -0500927 kfree(clp->cl_principal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 kfree(clp->cl_name.data);
929 kfree(clp);
930}
931
Benny Halevyd7682982010-05-12 00:13:54 +0300932void
933release_session_client(struct nfsd4_session *session)
934{
935 struct nfs4_client *clp = session->se_client;
936
937 if (!atomic_dec_and_lock(&clp->cl_refcount, &client_lock))
938 return;
939 if (is_client_expired(clp)) {
940 free_client(clp);
941 session->se_client = NULL;
942 } else
943 renew_client_locked(clp);
944 spin_unlock(&client_lock);
Benny Halevyd7682982010-05-12 00:13:54 +0300945}
946
Benny Halevy84d38ac2010-05-12 00:13:16 +0300947/* must be called under the client_lock */
948static inline void
949unhash_client_locked(struct nfs4_client *clp)
950{
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400951 struct nfsd4_session *ses;
952
Benny Halevy07cd4902010-05-12 00:13:41 +0300953 mark_client_expired(clp);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300954 list_del(&clp->cl_lru);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400955 spin_lock(&clp->cl_lock);
J. Bruce Fields792c95d2010-10-12 19:55:25 -0400956 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
957 list_del_init(&ses->se_hash);
J. Bruce Fields4c649372010-06-15 14:22:37 -0400958 spin_unlock(&clp->cl_lock);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300959}
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961static void
962expire_client(struct nfs4_client *clp)
963{
964 struct nfs4_stateowner *sop;
965 struct nfs4_delegation *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 struct list_head reaplist;
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 INIT_LIST_HEAD(&reaplist);
969 spin_lock(&recall_lock);
NeilBrownea1da632005-06-23 22:04:17 -0700970 while (!list_empty(&clp->cl_delegations)) {
971 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
NeilBrownea1da632005-06-23 22:04:17 -0700972 list_del_init(&dp->dl_perclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 list_move(&dp->dl_recall_lru, &reaplist);
974 }
975 spin_unlock(&recall_lock);
976 while (!list_empty(&reaplist)) {
977 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
978 list_del_init(&dp->dl_recall_lru);
979 unhash_delegation(dp);
980 }
NeilBrownea1da632005-06-23 22:04:17 -0700981 while (!list_empty(&clp->cl_openowners)) {
982 sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -0500983 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -0400985 nfsd4_shutdown_callback(clp);
J. Bruce Fields2bf23872010-03-08 12:37:27 -0500986 if (clp->cl_cb_conn.cb_xprt)
987 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300988 list_del(&clp->cl_idhash);
989 list_del(&clp->cl_strhash);
990 spin_lock(&client_lock);
991 unhash_client_locked(clp);
Benny Halevy46583e22010-05-12 00:13:29 +0300992 if (atomic_read(&clp->cl_refcount) == 0)
993 free_client(clp);
Benny Halevy84d38ac2010-05-12 00:13:16 +0300994 spin_unlock(&client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
J. Bruce Fields35bba9a2007-11-21 22:07:08 -0500997static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
998{
999 memcpy(target->cl_verifier.data, source->data,
1000 sizeof(target->cl_verifier.data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001003static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1004{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1006 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1007}
1008
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001009static void copy_cred(struct svc_cred *target, struct svc_cred *source)
1010{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 target->cr_uid = source->cr_uid;
1012 target->cr_gid = source->cr_gid;
1013 target->cr_group_info = source->cr_group_info;
1014 get_group_info(target->cr_group_info);
1015}
1016
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001017static int same_name(const char *n1, const char *n2)
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001018{
NeilBrowna55370a2005-06-23 22:03:52 -07001019 return 0 == memcmp(n1, n2, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
1022static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001023same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1024{
1025 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001029same_clid(clientid_t *cl1, clientid_t *cl2)
1030{
1031 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033
1034/* XXX what about NGROUP */
1035static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001036same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1037{
1038 return cr1->cr_uid == cr2->cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
J. Bruce Fields5ec7b462007-11-21 21:58:56 -05001041static void gen_clid(struct nfs4_client *clp)
1042{
1043 static u32 current_clientid = 1;
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 clp->cl_clientid.cl_boot = boot_time;
1046 clp->cl_clientid.cl_id = current_clientid++;
1047}
1048
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001049static void gen_confirm(struct nfs4_client *clp)
1050{
1051 static u32 i;
1052 u32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 p = (u32 *)clp->cl_confirm.data;
J. Bruce Fieldsdeda2fa2007-11-19 20:31:04 -05001055 *p++ = get_seconds();
1056 *p++ = i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001059static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir,
1060 struct svc_rqst *rqstp, nfs4_verifier *verf)
1061{
1062 struct nfs4_client *clp;
1063 struct sockaddr *sa = svc_addr(rqstp);
1064 char *princ;
1065
1066 clp = alloc_client(name);
1067 if (clp == NULL)
1068 return NULL;
1069
J. Bruce Fields792c95d2010-10-12 19:55:25 -04001070 INIT_LIST_HEAD(&clp->cl_sessions);
1071
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001072 princ = svc_gss_principal(rqstp);
1073 if (princ) {
1074 clp->cl_principal = kstrdup(princ, GFP_KERNEL);
1075 if (clp->cl_principal == NULL) {
1076 free_client(clp);
1077 return NULL;
1078 }
1079 }
1080
1081 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
Benny Halevy46583e22010-05-12 00:13:29 +03001082 atomic_set(&clp->cl_refcount, 0);
J. Bruce Fields77a35692010-04-30 18:51:44 -04001083 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001084 INIT_LIST_HEAD(&clp->cl_idhash);
1085 INIT_LIST_HEAD(&clp->cl_strhash);
1086 INIT_LIST_HEAD(&clp->cl_openowners);
1087 INIT_LIST_HEAD(&clp->cl_delegations);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001088 INIT_LIST_HEAD(&clp->cl_lru);
J. Bruce Fields5ce8ba22011-01-10 16:44:41 -05001089 INIT_LIST_HEAD(&clp->cl_callbacks);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001090 spin_lock_init(&clp->cl_lock);
J. Bruce Fieldscee277d2010-05-26 17:52:14 -04001091 INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_do_callback_rpc);
Benny Halevy07cd4902010-05-12 00:13:41 +03001092 clp->cl_time = get_seconds();
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001093 clear_bit(0, &clp->cl_cb_slot_busy);
1094 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
1095 copy_verf(clp, verf);
1096 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
1097 clp->cl_flavor = rqstp->rq_flavor;
1098 copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1099 gen_confirm(clp);
J. Bruce Fieldsedd76782010-06-14 22:26:31 -04001100 clp->cl_cb_session = NULL;
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001101 return clp;
1102}
1103
J. Bruce Fields35bba9a2007-11-21 22:07:08 -05001104static int check_name(struct xdr_netobj name)
1105{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (name.len == 0)
1107 return 0;
1108 if (name.len > NFS4_OPAQUE_LIMIT) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04001109 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return 0;
1111 }
1112 return 1;
1113}
1114
NeilBrownfd39ca92005-06-23 22:04:03 -07001115static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
1117{
1118 unsigned int idhashval;
1119
1120 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
1121 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1122 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
Benny Halevy36acb662010-05-12 00:13:04 +03001123 renew_client(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
NeilBrownfd39ca92005-06-23 22:04:03 -07001126static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127move_to_confirmed(struct nfs4_client *clp)
1128{
1129 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1130 unsigned int strhashval;
1131
1132 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
Akinobu Mitaf1166292006-06-26 00:24:46 -07001133 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07001134 strhashval = clientstr_hashval(clp->cl_recdir);
Benny Halevy328efba2010-05-12 00:12:51 +03001135 list_move(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 renew_client(clp);
1137}
1138
1139static struct nfs4_client *
1140find_confirmed_client(clientid_t *clid)
1141{
1142 struct nfs4_client *clp;
1143 unsigned int idhashval = clientid_hashval(clid->cl_id);
1144
1145 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001146 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return clp;
1148 }
1149 return NULL;
1150}
1151
1152static struct nfs4_client *
1153find_unconfirmed_client(clientid_t *clid)
1154{
1155 struct nfs4_client *clp;
1156 unsigned int idhashval = clientid_hashval(clid->cl_id);
1157
1158 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001159 if (same_clid(&clp->cl_clientid, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return clp;
1161 }
1162 return NULL;
1163}
1164
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001165static bool clp_used_exchangeid(struct nfs4_client *clp)
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001166{
J. Bruce Fields6e5f15c2010-11-24 17:17:34 -05001167 return clp->cl_exchange_flags != 0;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001168}
Andy Adamsona1bcecd2009-04-03 08:28:05 +03001169
NeilBrown28ce6052005-06-23 22:03:56 -07001170static struct nfs4_client *
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001171find_confirmed_client_by_str(const char *dname, unsigned int hashval)
NeilBrown28ce6052005-06-23 22:03:56 -07001172{
1173 struct nfs4_client *clp;
1174
1175 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001176 if (same_name(clp->cl_recdir, dname))
NeilBrown28ce6052005-06-23 22:03:56 -07001177 return clp;
1178 }
1179 return NULL;
1180}
1181
1182static struct nfs4_client *
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001183find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
NeilBrown28ce6052005-06-23 22:03:56 -07001184{
1185 struct nfs4_client *clp;
1186
1187 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001188 if (same_name(clp->cl_recdir, dname))
NeilBrown28ce6052005-06-23 22:03:56 -07001189 return clp;
1190 }
1191 return NULL;
1192}
1193
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001194static void rpc_svcaddr2sockaddr(struct sockaddr *sa, unsigned short family, union svc_addr_u *svcaddr)
1195{
1196 switch (family) {
1197 case AF_INET:
1198 ((struct sockaddr_in *)sa)->sin_family = AF_INET;
1199 ((struct sockaddr_in *)sa)->sin_addr = svcaddr->addr;
1200 return;
1201 case AF_INET6:
1202 ((struct sockaddr_in6 *)sa)->sin6_family = AF_INET6;
1203 ((struct sockaddr_in6 *)sa)->sin6_addr = svcaddr->addr6;
1204 return;
1205 }
1206}
1207
NeilBrownfd39ca92005-06-23 22:04:03 -07001208static void
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001209gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
J. Bruce Fields07263f12010-05-31 19:09:40 -04001211 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001212 struct sockaddr *sa = svc_addr(rqstp);
1213 u32 scopeid = rpc_get_scope_id(sa);
Jeff Layton7077ecb2009-08-14 12:57:58 -04001214 unsigned short expected_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Jeff Layton7077ecb2009-08-14 12:57:58 -04001216 /* Currently, we only support tcp and tcp6 for the callback channel */
1217 if (se->se_callback_netid_len == 3 &&
1218 !memcmp(se->se_callback_netid_val, "tcp", 3))
1219 expected_family = AF_INET;
1220 else if (se->se_callback_netid_len == 4 &&
1221 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1222 expected_family = AF_INET6;
1223 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 goto out_err;
1225
J. Bruce Fields07263f12010-05-31 19:09:40 -04001226 conn->cb_addrlen = rpc_uaddr2sockaddr(se->se_callback_addr_val,
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001227 se->se_callback_addr_len,
J. Bruce Fields07263f12010-05-31 19:09:40 -04001228 (struct sockaddr *)&conn->cb_addr,
1229 sizeof(conn->cb_addr));
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001230
J. Bruce Fields07263f12010-05-31 19:09:40 -04001231 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 goto out_err;
Jeff Laytonaa9a4ec2009-08-14 12:57:57 -04001233
J. Bruce Fields07263f12010-05-31 19:09:40 -04001234 if (conn->cb_addr.ss_family == AF_INET6)
1235 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
Jeff Laytonfbf46652009-08-14 12:57:59 -04001236
J. Bruce Fields07263f12010-05-31 19:09:40 -04001237 conn->cb_prog = se->se_callback_prog;
1238 conn->cb_ident = se->se_callback_ident;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09001239 rpc_svcaddr2sockaddr((struct sockaddr *)&conn->cb_saddr, expected_family, &rqstp->rq_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return;
1241out_err:
J. Bruce Fields07263f12010-05-31 19:09:40 -04001242 conn->cb_addr.ss_family = AF_UNSPEC;
1243 conn->cb_addrlen = 0;
Neil Brown849823c2005-09-13 01:25:36 -07001244 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 "will not receive delegations\n",
1246 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return;
1249}
1250
Andy Adamson074fe892009-04-03 08:28:15 +03001251/*
Andy Adamson557ce262009-08-28 08:45:04 -04001252 * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
Andy Adamson074fe892009-04-03 08:28:15 +03001253 */
1254void
1255nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1256{
Andy Adamson557ce262009-08-28 08:45:04 -04001257 struct nfsd4_slot *slot = resp->cstate.slot;
1258 unsigned int base;
Andy Adamson074fe892009-04-03 08:28:15 +03001259
Andy Adamson557ce262009-08-28 08:45:04 -04001260 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001261
Andy Adamson557ce262009-08-28 08:45:04 -04001262 slot->sl_opcnt = resp->opcnt;
1263 slot->sl_status = resp->cstate.status;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001264
1265 if (nfsd4_not_cached(resp)) {
Andy Adamson557ce262009-08-28 08:45:04 -04001266 slot->sl_datalen = 0;
Andy Adamsonbf864a32009-04-03 08:28:35 +03001267 return;
1268 }
Andy Adamson557ce262009-08-28 08:45:04 -04001269 slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap;
1270 base = (char *)resp->cstate.datap -
1271 (char *)resp->xbuf->head[0].iov_base;
1272 if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data,
1273 slot->sl_datalen))
1274 WARN("%s: sessions DRC could not cache compound\n", __func__);
1275 return;
Andy Adamson074fe892009-04-03 08:28:15 +03001276}
1277
1278/*
Andy Adamsonabfabf82009-07-23 19:02:18 -04001279 * Encode the replay sequence operation from the slot values.
1280 * If cachethis is FALSE encode the uncached rep error on the next
1281 * operation which sets resp->p and increments resp->opcnt for
1282 * nfs4svc_encode_compoundres.
1283 *
Andy Adamson074fe892009-04-03 08:28:15 +03001284 */
Andy Adamsonabfabf82009-07-23 19:02:18 -04001285static __be32
1286nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1287 struct nfsd4_compoundres *resp)
Andy Adamson074fe892009-04-03 08:28:15 +03001288{
Andy Adamsonabfabf82009-07-23 19:02:18 -04001289 struct nfsd4_op *op;
1290 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001291
Andy Adamsonabfabf82009-07-23 19:02:18 -04001292 dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__,
Andy Adamson557ce262009-08-28 08:45:04 -04001293 resp->opcnt, resp->cstate.slot->sl_cachethis);
Andy Adamsonabfabf82009-07-23 19:02:18 -04001294
1295 /* Encode the replayed sequence operation */
1296 op = &args->ops[resp->opcnt - 1];
1297 nfsd4_encode_operation(resp, op);
1298
1299 /* Return nfserr_retry_uncached_rep in next operation. */
Andy Adamson557ce262009-08-28 08:45:04 -04001300 if (args->opcnt > 1 && slot->sl_cachethis == 0) {
Andy Adamsonabfabf82009-07-23 19:02:18 -04001301 op = &args->ops[resp->opcnt++];
1302 op->status = nfserr_retry_uncached_rep;
1303 nfsd4_encode_operation(resp, op);
Andy Adamson074fe892009-04-03 08:28:15 +03001304 }
Andy Adamsonabfabf82009-07-23 19:02:18 -04001305 return op->status;
Andy Adamson074fe892009-04-03 08:28:15 +03001306}
1307
1308/*
Andy Adamson557ce262009-08-28 08:45:04 -04001309 * The sequence operation is not cached because we can use the slot and
1310 * session values.
Andy Adamson074fe892009-04-03 08:28:15 +03001311 */
1312__be32
Andy Adamsonbf864a32009-04-03 08:28:35 +03001313nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1314 struct nfsd4_sequence *seq)
Andy Adamson074fe892009-04-03 08:28:15 +03001315{
Andy Adamson557ce262009-08-28 08:45:04 -04001316 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson074fe892009-04-03 08:28:15 +03001317 __be32 status;
1318
Andy Adamson557ce262009-08-28 08:45:04 -04001319 dprintk("--> %s slot %p\n", __func__, slot);
Andy Adamson074fe892009-04-03 08:28:15 +03001320
Andy Adamsonabfabf82009-07-23 19:02:18 -04001321 /* Either returns 0 or nfserr_retry_uncached */
1322 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1323 if (status == nfserr_retry_uncached_rep)
1324 return status;
Andy Adamson074fe892009-04-03 08:28:15 +03001325
Andy Adamson557ce262009-08-28 08:45:04 -04001326 /* The sequence operation has been encoded, cstate->datap set. */
1327 memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen);
Andy Adamson074fe892009-04-03 08:28:15 +03001328
Andy Adamson557ce262009-08-28 08:45:04 -04001329 resp->opcnt = slot->sl_opcnt;
1330 resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen);
1331 status = slot->sl_status;
Andy Adamson074fe892009-04-03 08:28:15 +03001332
1333 return status;
1334}
1335
Andy Adamson0733d212009-04-03 08:28:01 +03001336/*
1337 * Set the exchange_id flags returned by the server.
1338 */
1339static void
1340nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1341{
1342 /* pNFS is not supported */
1343 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1344
1345 /* Referrals are supported, Migration is not. */
1346 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1347
1348 /* set the wire flags to return to client. */
1349 clid->flags = new->cl_exchange_flags;
1350}
1351
Al Virob37ad282006-10-19 23:28:59 -07001352__be32
Andy Adamson069b6ad2009-04-03 08:27:58 +03001353nfsd4_exchange_id(struct svc_rqst *rqstp,
1354 struct nfsd4_compound_state *cstate,
1355 struct nfsd4_exchange_id *exid)
1356{
Andy Adamson0733d212009-04-03 08:28:01 +03001357 struct nfs4_client *unconf, *conf, *new;
1358 int status;
1359 unsigned int strhashval;
1360 char dname[HEXDIR_LEN];
Jeff Layton363168b2009-08-14 12:57:56 -04001361 char addr_str[INET6_ADDRSTRLEN];
Andy Adamson0733d212009-04-03 08:28:01 +03001362 nfs4_verifier verf = exid->verifier;
Jeff Layton363168b2009-08-14 12:57:56 -04001363 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamson0733d212009-04-03 08:28:01 +03001364
Jeff Layton363168b2009-08-14 12:57:56 -04001365 rpc_ntop(sa, addr_str, sizeof(addr_str));
Andy Adamson0733d212009-04-03 08:28:01 +03001366 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
Jeff Layton363168b2009-08-14 12:57:56 -04001367 "ip_addr=%s flags %x, spa_how %d\n",
Andy Adamson0733d212009-04-03 08:28:01 +03001368 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
Jeff Layton363168b2009-08-14 12:57:56 -04001369 addr_str, exid->flags, exid->spa_how);
Andy Adamson0733d212009-04-03 08:28:01 +03001370
1371 if (!check_name(exid->clname) || (exid->flags & ~EXCHGID4_FLAG_MASK_A))
1372 return nfserr_inval;
1373
1374 /* Currently only support SP4_NONE */
1375 switch (exid->spa_how) {
1376 case SP4_NONE:
1377 break;
1378 case SP4_SSV:
J. Bruce Fields044bc1d2010-11-12 14:36:06 -05001379 return nfserr_serverfault;
Andy Adamson0733d212009-04-03 08:28:01 +03001380 default:
1381 BUG(); /* checked by xdr code */
1382 case SP4_MACH_CRED:
1383 return nfserr_serverfault; /* no excuse :-/ */
1384 }
1385
1386 status = nfs4_make_rec_clidname(dname, &exid->clname);
1387
1388 if (status)
1389 goto error;
1390
1391 strhashval = clientstr_hashval(dname);
1392
1393 nfs4_lock_state();
1394 status = nfs_ok;
1395
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001396 conf = find_confirmed_client_by_str(dname, strhashval);
Andy Adamson0733d212009-04-03 08:28:01 +03001397 if (conf) {
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001398 if (!clp_used_exchangeid(conf)) {
1399 status = nfserr_clid_inuse; /* XXX: ? */
1400 goto out;
1401 }
Andy Adamson0733d212009-04-03 08:28:01 +03001402 if (!same_verf(&verf, &conf->cl_verifier)) {
1403 /* 18.35.4 case 8 */
1404 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1405 status = nfserr_not_same;
1406 goto out;
1407 }
1408 /* Client reboot: destroy old state */
1409 expire_client(conf);
1410 goto out_new;
1411 }
1412 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1413 /* 18.35.4 case 9 */
1414 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1415 status = nfserr_perm;
1416 goto out;
1417 }
1418 expire_client(conf);
1419 goto out_new;
1420 }
Andy Adamson0733d212009-04-03 08:28:01 +03001421 /*
1422 * Set bit when the owner id and verifier map to an already
1423 * confirmed client id (18.35.3).
1424 */
1425 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1426
1427 /*
1428 * Falling into 18.35.4 case 2, possible router replay.
1429 * Leave confirmed record intact and return same result.
1430 */
1431 copy_verf(conf, &verf);
1432 new = conf;
1433 goto out_copy;
Mike Sager6ddbbbf2009-06-16 04:20:47 +03001434 }
1435
1436 /* 18.35.4 case 7 */
1437 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1438 status = nfserr_noent;
1439 goto out;
Andy Adamson0733d212009-04-03 08:28:01 +03001440 }
1441
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001442 unconf = find_unconfirmed_client_by_str(dname, strhashval);
Andy Adamson0733d212009-04-03 08:28:01 +03001443 if (unconf) {
1444 /*
1445 * Possible retry or client restart. Per 18.35.4 case 4,
1446 * a new unconfirmed record should be generated regardless
1447 * of whether any properties have changed.
1448 */
1449 expire_client(unconf);
1450 }
1451
1452out_new:
1453 /* Normal case */
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001454 new = create_client(exid->clname, dname, rqstp, &verf);
Andy Adamson0733d212009-04-03 08:28:01 +03001455 if (new == NULL) {
J. Bruce Fields47310302010-06-22 16:17:12 -04001456 status = nfserr_jukebox;
Andy Adamson0733d212009-04-03 08:28:01 +03001457 goto out;
1458 }
1459
Andy Adamson0733d212009-04-03 08:28:01 +03001460 gen_clid(new);
Andy Adamson0733d212009-04-03 08:28:01 +03001461 add_to_unconfirmed(new, strhashval);
1462out_copy:
1463 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1464 exid->clientid.cl_id = new->cl_clientid.cl_id;
1465
Andy Adamson38eb76a2009-04-03 08:28:32 +03001466 exid->seqid = 1;
Andy Adamson0733d212009-04-03 08:28:01 +03001467 nfsd4_set_ex_flags(new, exid);
1468
1469 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001470 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
Andy Adamson0733d212009-04-03 08:28:01 +03001471 status = nfs_ok;
1472
1473out:
1474 nfs4_unlock_state();
1475error:
1476 dprintk("nfsd4_exchange_id returns %d\n", ntohl(status));
1477 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001478}
1479
Benny Halevyb85d4c02009-04-03 08:28:08 +03001480static int
Andy Adamson88e588d2009-07-23 19:02:15 -04001481check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001482{
Andy Adamson88e588d2009-07-23 19:02:15 -04001483 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1484 slot_seqid);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001485
1486 /* The slot is in use, and no response has been sent. */
Andy Adamson88e588d2009-07-23 19:02:15 -04001487 if (slot_inuse) {
1488 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001489 return nfserr_jukebox;
1490 else
1491 return nfserr_seq_misordered;
1492 }
1493 /* Normal */
Andy Adamson88e588d2009-07-23 19:02:15 -04001494 if (likely(seqid == slot_seqid + 1))
Benny Halevyb85d4c02009-04-03 08:28:08 +03001495 return nfs_ok;
1496 /* Replay */
Andy Adamson88e588d2009-07-23 19:02:15 -04001497 if (seqid == slot_seqid)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001498 return nfserr_replay_cache;
1499 /* Wraparound */
Andy Adamson88e588d2009-07-23 19:02:15 -04001500 if (seqid == 1 && (slot_seqid + 1) == 0)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001501 return nfs_ok;
1502 /* Misordered replay or misordered new request */
1503 return nfserr_seq_misordered;
1504}
1505
Andy Adamson49557cc2009-07-23 19:02:16 -04001506/*
1507 * Cache the create session result into the create session single DRC
1508 * slot cache by saving the xdr structure. sl_seqid has been set.
1509 * Do this for solo or embedded create session operations.
1510 */
1511static void
1512nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
1513 struct nfsd4_clid_slot *slot, int nfserr)
1514{
1515 slot->sl_status = nfserr;
1516 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1517}
1518
1519static __be32
1520nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1521 struct nfsd4_clid_slot *slot)
1522{
1523 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1524 return slot->sl_status;
1525}
1526
Mi Jinlong1b74c252011-07-14 14:50:17 +08001527#define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
1528 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
1529 1 + /* MIN tag is length with zero, only length */ \
1530 3 + /* version, opcount, opcode */ \
1531 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1532 /* seqid, slotID, slotID, cache */ \
1533 4 ) * sizeof(__be32))
1534
1535#define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
1536 2 + /* verifier: AUTH_NULL, length 0 */\
1537 1 + /* status */ \
1538 1 + /* MIN tag is length with zero, only length */ \
1539 3 + /* opcount, opcode, opstatus*/ \
1540 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1541 /* seqid, slotID, slotID, slotID, status */ \
1542 5 ) * sizeof(__be32))
1543
1544static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs fchannel)
1545{
1546 return fchannel.maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ
1547 || fchannel.maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ;
1548}
1549
Andy Adamson069b6ad2009-04-03 08:27:58 +03001550__be32
1551nfsd4_create_session(struct svc_rqst *rqstp,
1552 struct nfsd4_compound_state *cstate,
1553 struct nfsd4_create_session *cr_ses)
1554{
Jeff Layton363168b2009-08-14 12:57:56 -04001555 struct sockaddr *sa = svc_addr(rqstp);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001556 struct nfs4_client *conf, *unconf;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001557 struct nfsd4_session *new;
Andy Adamson49557cc2009-07-23 19:02:16 -04001558 struct nfsd4_clid_slot *cs_slot = NULL;
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001559 bool confirm_me = false;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001560 int status = 0;
1561
Mi Jinlonga62573d2011-03-23 17:57:07 +08001562 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
1563 return nfserr_inval;
1564
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001565 nfs4_lock_state();
1566 unconf = find_unconfirmed_client(&cr_ses->clientid);
1567 conf = find_confirmed_client(&cr_ses->clientid);
1568
1569 if (conf) {
Andy Adamson49557cc2009-07-23 19:02:16 -04001570 cs_slot = &conf->cl_cs_slot;
1571 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001572 if (status == nfserr_replay_cache) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001573 dprintk("Got a create_session replay! seqid= %d\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001574 cs_slot->sl_seqid);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001575 /* Return the cached reply status */
Andy Adamson49557cc2009-07-23 19:02:16 -04001576 status = nfsd4_replay_create_session(cr_ses, cs_slot);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001577 goto out;
Andy Adamson49557cc2009-07-23 19:02:16 -04001578 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001579 status = nfserr_seq_misordered;
1580 dprintk("Sequence misordered!\n");
1581 dprintk("Expected seqid= %d but got seqid= %d\n",
Andy Adamson49557cc2009-07-23 19:02:16 -04001582 cs_slot->sl_seqid, cr_ses->seqid);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001583 goto out;
1584 }
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001585 } else if (unconf) {
1586 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
Jeff Layton363168b2009-08-14 12:57:56 -04001587 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001588 status = nfserr_clid_inuse;
1589 goto out;
1590 }
1591
Andy Adamson49557cc2009-07-23 19:02:16 -04001592 cs_slot = &unconf->cl_cs_slot;
1593 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
Andy Adamson38eb76a2009-04-03 08:28:32 +03001594 if (status) {
1595 /* an unconfirmed replay returns misordered */
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001596 status = nfserr_seq_misordered;
J. Bruce Fieldscd5b8142010-10-02 17:03:35 -04001597 goto out;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001598 }
1599
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001600 confirm_me = true;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001601 conf = unconf;
1602 } else {
1603 status = nfserr_stale_clientid;
1604 goto out;
1605 }
1606
J. Bruce Fields408b79b2010-04-15 15:11:09 -04001607 /*
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04001608 * XXX: we should probably set this at creation time, and check
1609 * for consistent minorversion use throughout:
1610 */
1611 conf->cl_minorversion = 1;
1612 /*
J. Bruce Fields408b79b2010-04-15 15:11:09 -04001613 * We do not support RDMA or persistent sessions
1614 */
1615 cr_ses->flags &= ~SESSION4_PERSIST;
1616 cr_ses->flags &= ~SESSION4_RDMA;
1617
Mi Jinlong1b74c252011-07-14 14:50:17 +08001618 status = nfserr_toosmall;
1619 if (check_forechannel_attrs(cr_ses->fore_channel))
1620 goto out;
1621
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001622 status = nfserr_jukebox;
1623 new = alloc_init_session(rqstp, conf, cr_ses);
1624 if (!new)
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001625 goto out;
J. Bruce Fieldsac7c46f2010-06-14 19:01:57 -04001626 status = nfs_ok;
1627 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001628 NFS4_MAX_SESSIONID_LEN);
Mi Jinlong12050652010-11-11 18:03:40 +08001629 memcpy(&cr_ses->fore_channel, &new->se_fchannel,
1630 sizeof(struct nfsd4_channel_attrs));
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001631 cs_slot->sl_seqid++;
Andy Adamson49557cc2009-07-23 19:02:16 -04001632 cr_ses->seqid = cs_slot->sl_seqid;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001633
Andy Adamson49557cc2009-07-23 19:02:16 -04001634 /* cache solo and embedded create sessions under the state lock */
1635 nfsd4_cache_create_session(cr_ses, cs_slot, status);
J. Bruce Fields86c3e162010-10-02 17:04:00 -04001636 if (confirm_me)
1637 move_to_confirmed(conf);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001638out:
1639 nfs4_unlock_state();
1640 dprintk("%s returns %d\n", __func__, ntohl(status));
1641 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001642}
1643
J. Bruce Fields57716352010-04-21 12:27:19 -04001644static bool nfsd4_last_compound_op(struct svc_rqst *rqstp)
1645{
1646 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1647 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1648
1649 return argp->opcnt == resp->opcnt;
1650}
1651
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001652static __be32 nfsd4_map_bcts_dir(u32 *dir)
1653{
1654 switch (*dir) {
1655 case NFS4_CDFC4_FORE:
1656 case NFS4_CDFC4_BACK:
1657 return nfs_ok;
1658 case NFS4_CDFC4_FORE_OR_BOTH:
1659 case NFS4_CDFC4_BACK_OR_BOTH:
1660 *dir = NFS4_CDFC4_BOTH;
1661 return nfs_ok;
1662 };
1663 return nfserr_inval;
1664}
1665
1666__be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
1667 struct nfsd4_compound_state *cstate,
1668 struct nfsd4_bind_conn_to_session *bcts)
1669{
1670 __be32 status;
1671
1672 if (!nfsd4_last_compound_op(rqstp))
1673 return nfserr_not_only_op;
1674 spin_lock(&client_lock);
1675 cstate->session = find_in_sessionid_hashtbl(&bcts->sessionid);
1676 /* Sorta weird: we only need the refcnt'ing because new_conn acquires
1677 * client_lock iself: */
1678 if (cstate->session) {
1679 nfsd4_get_session(cstate->session);
1680 atomic_inc(&cstate->session->se_client->cl_refcount);
1681 }
1682 spin_unlock(&client_lock);
1683 if (!cstate->session)
1684 return nfserr_badsession;
1685
1686 status = nfsd4_map_bcts_dir(&bcts->dir);
Bryan Schumaker1db2b9d2011-04-27 15:47:15 -04001687 if (!status)
1688 nfsd4_new_conn(rqstp, cstate->session, bcts->dir);
1689 return status;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001690}
1691
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04001692static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
1693{
1694 if (!session)
1695 return 0;
1696 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
1697}
1698
Andy Adamson069b6ad2009-04-03 08:27:58 +03001699__be32
1700nfsd4_destroy_session(struct svc_rqst *r,
1701 struct nfsd4_compound_state *cstate,
1702 struct nfsd4_destroy_session *sessionid)
1703{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001704 struct nfsd4_session *ses;
1705 u32 status = nfserr_badsession;
1706
1707 /* Notes:
1708 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1709 * - Should we return nfserr_back_chan_busy if waiting for
1710 * callbacks on to-be-destroyed session?
1711 * - Do we need to clear any callback info from previous session?
1712 */
1713
J. Bruce Fields5d4cec22010-05-01 12:56:06 -04001714 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
J. Bruce Fields57716352010-04-21 12:27:19 -04001715 if (!nfsd4_last_compound_op(r))
1716 return nfserr_not_only_op;
1717 }
Benny Halevye10e0cf2009-04-03 08:28:38 +03001718 dump_sessionid(__func__, &sessionid->sessionid);
Benny Halevy9089f1b2010-05-12 00:12:26 +03001719 spin_lock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001720 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1721 if (!ses) {
Benny Halevy9089f1b2010-05-12 00:12:26 +03001722 spin_unlock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001723 goto out;
1724 }
1725
1726 unhash_session(ses);
Benny Halevy9089f1b2010-05-12 00:12:26 +03001727 spin_unlock(&client_lock);
Benny Halevye10e0cf2009-04-03 08:28:38 +03001728
Benny Halevyab707e152010-05-12 00:14:06 +03001729 nfs4_lock_state();
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -05001730 nfsd4_probe_callback_sync(ses->se_client);
Benny Halevyab707e152010-05-12 00:14:06 +03001731 nfs4_unlock_state();
J. Bruce Fields19cf5c02010-06-06 18:37:16 -04001732
1733 nfsd4_del_conns(ses);
1734
Benny Halevye10e0cf2009-04-03 08:28:38 +03001735 nfsd4_put_session(ses);
1736 status = nfs_ok;
1737out:
1738 dprintk("%s returns %d\n", __func__, ntohl(status));
1739 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001740}
1741
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001742static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
J. Bruce Fields328ead22010-09-29 16:11:06 -04001743{
1744 struct nfsd4_conn *c;
1745
1746 list_for_each_entry(c, &s->se_conns, cn_persession) {
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001747 if (c->cn_xprt == xpt) {
J. Bruce Fields328ead22010-09-29 16:11:06 -04001748 return c;
1749 }
1750 }
1751 return NULL;
1752}
1753
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001754static void nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
J. Bruce Fields328ead22010-09-29 16:11:06 -04001755{
1756 struct nfs4_client *clp = ses->se_client;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001757 struct nfsd4_conn *c;
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001758 int ret;
J. Bruce Fields328ead22010-09-29 16:11:06 -04001759
1760 spin_lock(&clp->cl_lock);
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001761 c = __nfsd4_find_conn(new->cn_xprt, ses);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001762 if (c) {
1763 spin_unlock(&clp->cl_lock);
1764 free_conn(new);
1765 return;
1766 }
1767 __nfsd4_hash_conn(new, ses);
1768 spin_unlock(&clp->cl_lock);
J. Bruce Fields21b75b02010-10-26 10:07:17 -04001769 ret = nfsd4_register_conn(new);
1770 if (ret)
1771 /* oops; xprt is already down: */
1772 nfsd4_conn_lost(&new->cn_xpt_user);
J. Bruce Fields328ead22010-09-29 16:11:06 -04001773 return;
1774}
1775
Mi Jinlong868b89c2011-04-27 09:09:58 +08001776static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
1777{
1778 struct nfsd4_compoundargs *args = rqstp->rq_argp;
1779
1780 return args->opcnt > session->se_fchannel.maxops;
1781}
1782
Mi Jinlongae82a8d2011-07-14 14:56:02 +08001783static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
1784 struct nfsd4_session *session)
1785{
1786 struct xdr_buf *xb = &rqstp->rq_arg;
1787
1788 return xb->len > session->se_fchannel.maxreq_sz;
1789}
1790
Andy Adamson069b6ad2009-04-03 08:27:58 +03001791__be32
Benny Halevyb85d4c02009-04-03 08:28:08 +03001792nfsd4_sequence(struct svc_rqst *rqstp,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001793 struct nfsd4_compound_state *cstate,
1794 struct nfsd4_sequence *seq)
1795{
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001796 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001797 struct nfsd4_session *session;
1798 struct nfsd4_slot *slot;
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001799 struct nfsd4_conn *conn;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001800 int status;
1801
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001802 if (resp->opcnt != 1)
1803 return nfserr_sequence_pos;
1804
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001805 /*
1806 * Will be either used or freed by nfsd4_sequence_check_conn
1807 * below.
1808 */
1809 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
1810 if (!conn)
1811 return nfserr_jukebox;
1812
Benny Halevy9089f1b2010-05-12 00:12:26 +03001813 spin_lock(&client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001814 status = nfserr_badsession;
1815 session = find_in_sessionid_hashtbl(&seq->sessionid);
1816 if (!session)
1817 goto out;
1818
Mi Jinlong868b89c2011-04-27 09:09:58 +08001819 status = nfserr_too_many_ops;
1820 if (nfsd4_session_too_many_ops(rqstp, session))
1821 goto out;
1822
Mi Jinlongae82a8d2011-07-14 14:56:02 +08001823 status = nfserr_req_too_big;
1824 if (nfsd4_request_too_big(rqstp, session))
1825 goto out;
1826
Benny Halevyb85d4c02009-04-03 08:28:08 +03001827 status = nfserr_badslot;
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03001828 if (seq->slotid >= session->se_fchannel.maxreqs)
Benny Halevyb85d4c02009-04-03 08:28:08 +03001829 goto out;
1830
Andy Adamson557ce262009-08-28 08:45:04 -04001831 slot = session->se_slots[seq->slotid];
Benny Halevyb85d4c02009-04-03 08:28:08 +03001832 dprintk("%s: slotid %d\n", __func__, seq->slotid);
1833
Andy Adamsona8dfdae2009-08-28 08:45:02 -04001834 /* We do not negotiate the number of slots yet, so set the
1835 * maxslots to the session maxreqs which is used to encode
1836 * sr_highest_slotid and the sr_target_slot id to maxslots */
1837 seq->maxslots = session->se_fchannel.maxreqs;
1838
Andy Adamson88e588d2009-07-23 19:02:15 -04001839 status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001840 if (status == nfserr_replay_cache) {
1841 cstate->slot = slot;
1842 cstate->session = session;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001843 /* Return the cached reply status and set cstate->status
Andy Adamson557ce262009-08-28 08:45:04 -04001844 * for nfsd4_proc_compound processing */
Andy Adamsonbf864a32009-04-03 08:28:35 +03001845 status = nfsd4_replay_cache_entry(resp, seq);
Andy Adamsonda3846a2009-04-03 08:28:22 +03001846 cstate->status = nfserr_replay_cache;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001847 goto out;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001848 }
1849 if (status)
1850 goto out;
1851
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001852 nfsd4_sequence_check_conn(conn, session);
1853 conn = NULL;
J. Bruce Fields328ead22010-09-29 16:11:06 -04001854
Benny Halevyb85d4c02009-04-03 08:28:08 +03001855 /* Success! bump slot seqid */
1856 slot->sl_inuse = true;
1857 slot->sl_seqid = seq->seqid;
Andy Adamson557ce262009-08-28 08:45:04 -04001858 slot->sl_cachethis = seq->cachethis;
Benny Halevyb85d4c02009-04-03 08:28:08 +03001859
1860 cstate->slot = slot;
1861 cstate->session = session;
1862
Benny Halevyb85d4c02009-04-03 08:28:08 +03001863out:
J. Bruce Fields26c0c752010-04-24 15:35:43 -04001864 /* Hold a session reference until done processing the compound. */
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001865 if (cstate->session) {
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05001866 struct nfs4_client *clp = session->se_client;
1867
Benny Halevy36acb662010-05-12 00:13:04 +03001868 nfsd4_get_session(cstate->session);
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05001869 atomic_inc(&clp->cl_refcount);
1870 if (clp->cl_cb_state == NFSD4_CB_DOWN)
1871 seq->status_flags |= SEQ4_STATUS_CB_PATH_DOWN;
Benny Halevyaaf84eb2009-08-20 03:21:56 +03001872 }
J. Bruce Fieldsa663bdd2010-10-21 17:17:31 -04001873 kfree(conn);
Benny Halevy36acb662010-05-12 00:13:04 +03001874 spin_unlock(&client_lock);
Benny Halevyb85d4c02009-04-03 08:28:08 +03001875 dprintk("%s: return %d\n", __func__, ntohl(status));
1876 return status;
Andy Adamson069b6ad2009-04-03 08:27:58 +03001877}
1878
1879__be32
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001880nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
1881{
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001882 int status = 0;
1883
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001884 if (rc->rca_one_fs) {
1885 if (!cstate->current_fh.fh_dentry)
1886 return nfserr_nofilehandle;
1887 /*
1888 * We don't take advantage of the rca_one_fs case.
1889 * That's OK, it's optional, we can safely ignore it.
1890 */
1891 return nfs_ok;
1892 }
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001893
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001894 nfs4_lock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001895 status = nfserr_complete_already;
1896 if (cstate->session->se_client->cl_firststate)
1897 goto out;
1898
1899 status = nfserr_stale_clientid;
1900 if (is_client_expired(cstate->session->se_client))
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001901 /*
1902 * The following error isn't really legal.
1903 * But we only get here if the client just explicitly
1904 * destroyed the client. Surely it no longer cares what
1905 * error it gets back on an operation for the dead
1906 * client.
1907 */
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001908 goto out;
1909
1910 status = nfs_ok;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001911 nfsd4_create_clid_dir(cstate->session->se_client);
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001912out:
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001913 nfs4_unlock_state();
Mi Jinlongbcecf1c2011-04-27 09:14:30 +08001914 return status;
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001915}
1916
1917__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001918nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1919 struct nfsd4_setclientid *setclid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 struct xdr_netobj clname = {
1922 .len = setclid->se_namelen,
1923 .data = setclid->se_name,
1924 };
1925 nfs4_verifier clverifier = setclid->se_verf;
1926 unsigned int strhashval;
NeilBrown28ce6052005-06-23 22:03:56 -07001927 struct nfs4_client *conf, *unconf, *new;
Al Virob37ad282006-10-19 23:28:59 -07001928 __be32 status;
NeilBrowna55370a2005-06-23 22:03:52 -07001929 char dname[HEXDIR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 if (!check_name(clname))
Neil Brown73aea4e2005-09-13 01:25:39 -07001932 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
NeilBrowna55370a2005-06-23 22:03:52 -07001934 status = nfs4_make_rec_clidname(dname, &clname);
1935 if (status)
Neil Brown73aea4e2005-09-13 01:25:39 -07001936 return status;
NeilBrowna55370a2005-06-23 22:03:52 -07001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 /*
1939 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1940 * We get here on a DRC miss.
1941 */
1942
NeilBrowna55370a2005-06-23 22:03:52 -07001943 strhashval = clientstr_hashval(dname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 nfs4_lock_state();
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001946 conf = find_confirmed_client_by_str(dname, strhashval);
NeilBrown28ce6052005-06-23 22:03:56 -07001947 if (conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001948 /* RFC 3530 14.2.33 CASE 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 status = nfserr_clid_inuse;
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001950 if (clp_used_exchangeid(conf))
1951 goto out;
J. Bruce Fields026722c2009-03-18 15:06:26 -04001952 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
Jeff Layton363168b2009-08-14 12:57:56 -04001953 char addr_str[INET6_ADDRSTRLEN];
1954 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
1955 sizeof(addr_str));
1956 dprintk("NFSD: setclientid: string in use by client "
1957 "at %s\n", addr_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto out;
1959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001961 /*
1962 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
1963 * has a description of SETCLIENTID request processing consisting
1964 * of 5 bullet points, labeled as CASE0 - CASE4 below.
1965 */
J. Bruce Fieldse203d502010-11-24 17:30:54 -05001966 unconf = find_unconfirmed_client_by_str(dname, strhashval);
J. Bruce Fields3e772462011-08-10 19:07:33 -04001967 status = nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 if (!conf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001969 /*
1970 * RFC 3530 14.2.33 CASE 4:
1971 * placed first, because it is the normal case
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 */
1973 if (unconf)
1974 expire_client(unconf);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001975 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07001976 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 gen_clid(new);
J. Bruce Fields599e0a22007-07-26 17:04:54 -04001979 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001981 * RFC 3530 14.2.33 CASE 1:
1982 * probable callback update
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 */
NeilBrown31f4a6c2005-06-23 22:04:06 -07001984 if (unconf) {
1985 /* Note this is removing unconfirmed {*x***},
1986 * which is stronger than RFC recommended {vxc**}.
1987 * This has the advantage that there is at most
1988 * one {*x***} in either list at any time.
1989 */
1990 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
Ricardo Labiagab09333c2009-09-10 12:27:34 +03001992 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07001993 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 copy_clid(new, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 } else if (!unconf) {
1997 /*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05001998 * RFC 3530 14.2.33 CASE 2:
1999 * probable client reboot; state will be removed if
2000 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 */
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002002 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07002003 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 gen_clid(new);
J. Bruce Fields49ba8782007-11-19 19:09:50 -05002006 } else {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002007 /*
2008 * RFC 3530 14.2.33 CASE 3:
2009 * probable client reboot; state will be removed if
2010 * confirmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 */
2012 expire_client(unconf);
Ricardo Labiagab09333c2009-09-10 12:27:34 +03002013 new = create_client(clname, dname, rqstp, &clverifier);
NeilBrowna55370a2005-06-23 22:03:52 -07002014 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 gen_clid(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04002018 /*
2019 * XXX: we should probably set this at creation time, and check
2020 * for consistent minorversion use throughout:
2021 */
2022 new->cl_minorversion = 0;
Takuma Umeya6f3d7722010-12-15 14:09:01 +09002023 gen_callback(new, setclid, rqstp);
J. Bruce Fieldsc175b832007-08-09 18:34:32 -04002024 add_to_unconfirmed(new, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2026 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2027 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2028 status = nfs_ok;
2029out:
2030 nfs4_unlock_state();
2031 return status;
2032}
2033
2034
2035/*
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002036 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
2037 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
2038 * bullets, labeled as CASE1 - CASE4 below.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 */
Al Virob37ad282006-10-19 23:28:59 -07002040__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002041nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2042 struct nfsd4_compound_state *cstate,
2043 struct nfsd4_setclientid_confirm *setclientid_confirm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Jeff Layton363168b2009-08-14 12:57:56 -04002045 struct sockaddr *sa = svc_addr(rqstp);
NeilBrown21ab45a2005-06-23 22:04:14 -07002046 struct nfs4_client *conf, *unconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2048 clientid_t * clid = &setclientid_confirm->sc_clientid;
Al Virob37ad282006-10-19 23:28:59 -07002049 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 if (STALE_CLIENTID(clid))
2052 return nfserr_stale_clientid;
2053 /*
2054 * XXX The Duplicate Request Cache (DRC) has been checked (??)
2055 * We get here on a DRC miss.
2056 */
2057
2058 nfs4_lock_state();
NeilBrown21ab45a2005-06-23 22:04:14 -07002059
2060 conf = find_confirmed_client(clid);
2061 unconf = find_unconfirmed_client(clid);
2062
2063 status = nfserr_clid_inuse;
Jeff Layton363168b2009-08-14 12:57:56 -04002064 if (conf && !rpc_cmp_addr((struct sockaddr *) &conf->cl_addr, sa))
NeilBrown21ab45a2005-06-23 22:04:14 -07002065 goto out;
Jeff Layton363168b2009-08-14 12:57:56 -04002066 if (unconf && !rpc_cmp_addr((struct sockaddr *) &unconf->cl_addr, sa))
NeilBrown21ab45a2005-06-23 22:04:14 -07002067 goto out;
2068
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002069 /*
2070 * section 14.2.34 of RFC 3530 has a description of
2071 * SETCLIENTID_CONFIRM request processing consisting
2072 * of 4 bullet points, labeled as CASE1 - CASE4 below.
2073 */
J. Bruce Fields366e0c12007-11-20 15:54:10 -05002074 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002075 /*
2076 * RFC 3530 14.2.34 CASE 1:
2077 * callback update
2078 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002079 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 status = nfserr_clid_inuse;
2081 else {
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -04002082 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2083 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002084 expire_client(unconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 status = nfs_ok;
NeilBrown1a69c172005-06-23 22:04:08 -07002086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
J. Bruce Fieldsf3aba4e2007-11-20 16:52:07 -05002088 } else if (conf && !unconf) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002089 /*
2090 * RFC 3530 14.2.34 CASE 2:
2091 * probable retransmitted request; play it safe and
2092 * do nothing.
NeilBrown7c79f732005-06-23 22:04:13 -07002093 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002094 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 status = nfserr_clid_inuse;
NeilBrown21ab45a2005-06-23 22:04:14 -07002096 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 status = nfs_ok;
NeilBrown7c79f732005-06-23 22:04:13 -07002098 } else if (!conf && unconf
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002099 && same_verf(&unconf->cl_confirm, &confirm)) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002100 /*
2101 * RFC 3530 14.2.34 CASE 3:
2102 * Normal case; new or rebooted client:
NeilBrown7c79f732005-06-23 22:04:13 -07002103 */
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002104 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 status = nfserr_clid_inuse;
2106 } else {
NeilBrown1a69c172005-06-23 22:04:08 -07002107 unsigned int hash =
2108 clientstr_hashval(unconf->cl_recdir);
2109 conf = find_confirmed_client_by_str(unconf->cl_recdir,
J. Bruce Fieldse203d502010-11-24 17:30:54 -05002110 hash);
NeilBrown1a69c172005-06-23 22:04:08 -07002111 if (conf) {
NeilBrownc7b9a452005-06-23 22:04:30 -07002112 nfsd4_remove_clid_dir(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002113 expire_client(conf);
2114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 move_to_confirmed(unconf);
NeilBrown21ab45a2005-06-23 22:04:14 -07002116 conf = unconf;
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -04002117 nfsd4_probe_callback(conf);
NeilBrown1a69c172005-06-23 22:04:08 -07002118 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002120 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
2121 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
NeilBrown7c79f732005-06-23 22:04:13 -07002122 &confirm)))) {
J. Bruce Fieldsa186e762007-11-20 16:11:27 -05002123 /*
2124 * RFC 3530 14.2.34 CASE 4:
2125 * Client probably hasn't noticed that we rebooted yet.
NeilBrown7c79f732005-06-23 22:04:13 -07002126 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 status = nfserr_stale_clientid;
NeilBrown7c79f732005-06-23 22:04:13 -07002128 } else {
NeilBrown08e89872005-06-23 22:04:11 -07002129 /* check that we have hit one of the cases...*/
2130 status = nfserr_clid_inuse;
2131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 nfs4_unlock_state();
2134 return status;
2135}
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137/* OPEN Share state helper functions */
2138static inline struct nfs4_file *
2139alloc_init_file(struct inode *ino)
2140{
2141 struct nfs4_file *fp;
2142 unsigned int hashval = file_hashval(ino);
2143
NeilBrowne60d4392005-06-23 22:03:01 -07002144 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
2145 if (fp) {
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002146 atomic_set(&fp->fi_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 INIT_LIST_HEAD(&fp->fi_hash);
NeilBrown8beefa22005-06-23 22:03:08 -07002148 INIT_LIST_HEAD(&fp->fi_stateids);
2149 INIT_LIST_HEAD(&fp->fi_delegations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 fp->fi_inode = igrab(ino);
2151 fp->fi_id = current_fileid++;
Meelap Shah47f99402007-07-17 04:04:40 -07002152 fp->fi_had_conflict = false;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002153 fp->fi_lease = NULL;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002154 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2155 memset(fp->fi_access, 0, sizeof(fp->fi_access));
Pavel Emelyanov47cee542010-05-17 20:00:37 +04002156 spin_lock(&recall_lock);
2157 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
2158 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 return fp;
2160 }
2161 return NULL;
2162}
2163
2164static void
Christoph Lametere18b8902006-12-06 20:33:20 -08002165nfsd4_free_slab(struct kmem_cache **slab)
NeilBrowne60d4392005-06-23 22:03:01 -07002166{
NeilBrowne60d4392005-06-23 22:03:01 -07002167 if (*slab == NULL)
2168 return;
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07002169 kmem_cache_destroy(*slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002170 *slab = NULL;
NeilBrowne60d4392005-06-23 22:03:01 -07002171}
2172
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04002173void
NeilBrowne60d4392005-06-23 22:03:01 -07002174nfsd4_free_slabs(void)
2175{
2176 nfsd4_free_slab(&stateowner_slab);
2177 nfsd4_free_slab(&file_slab);
NeilBrown5ac049a2005-06-23 22:03:03 -07002178 nfsd4_free_slab(&stateid_slab);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002179 nfsd4_free_slab(&deleg_slab);
NeilBrowne60d4392005-06-23 22:03:01 -07002180}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182static int
2183nfsd4_init_slabs(void)
2184{
2185 stateowner_slab = kmem_cache_create("nfsd4_stateowners",
Paul Mundt20c2df82007-07-20 10:11:58 +09002186 sizeof(struct nfs4_stateowner), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002187 if (stateowner_slab == NULL)
2188 goto out_nomem;
2189 file_slab = kmem_cache_create("nfsd4_files",
Paul Mundt20c2df82007-07-20 10:11:58 +09002190 sizeof(struct nfs4_file), 0, 0, NULL);
NeilBrowne60d4392005-06-23 22:03:01 -07002191 if (file_slab == NULL)
2192 goto out_nomem;
NeilBrown5ac049a2005-06-23 22:03:03 -07002193 stateid_slab = kmem_cache_create("nfsd4_stateids",
Paul Mundt20c2df82007-07-20 10:11:58 +09002194 sizeof(struct nfs4_stateid), 0, 0, NULL);
NeilBrown5ac049a2005-06-23 22:03:03 -07002195 if (stateid_slab == NULL)
2196 goto out_nomem;
NeilBrown5b2d21c2005-06-23 22:03:04 -07002197 deleg_slab = kmem_cache_create("nfsd4_delegations",
Paul Mundt20c2df82007-07-20 10:11:58 +09002198 sizeof(struct nfs4_delegation), 0, 0, NULL);
NeilBrown5b2d21c2005-06-23 22:03:04 -07002199 if (deleg_slab == NULL)
2200 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 return 0;
NeilBrowne60d4392005-06-23 22:03:01 -07002202out_nomem:
2203 nfsd4_free_slabs();
2204 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2205 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
2208void
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002209nfs4_free_stateowner(struct nfs4_stateowner *sop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 kfree(sop->so_owner.data);
2212 kmem_cache_free(stateowner_slab, sop);
2213}
2214
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002215static void init_nfs4_replay(struct nfs4_replay *rp)
2216{
2217 rp->rp_status = nfserr_serverfault;
2218 rp->rp_buflen = 0;
2219 rp->rp_buf = rp->rp_ibuf;
2220}
2221
2222static inline struct nfs4_stateowner *alloc_stateowner(struct xdr_netobj *owner, struct nfs4_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
2224 struct nfs4_stateowner *sop;
2225
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002226 sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL);
2227 if (!sop)
2228 return NULL;
2229
2230 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2231 if (!sop->so_owner.data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 kmem_cache_free(stateowner_slab, sop);
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002233 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 }
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002235 sop->so_owner.len = owner->len;
2236
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002237 INIT_LIST_HEAD(&sop->so_perclient);
2238 INIT_LIST_HEAD(&sop->so_stateids);
2239 INIT_LIST_HEAD(&sop->so_perstateid);
2240 INIT_LIST_HEAD(&sop->so_close_lru);
2241 sop->so_id = current_ownerid++;
2242 sop->so_time = 0;
2243 sop->so_client = clp;
2244 init_nfs4_replay(&sop->so_replay);
2245 return sop;
2246}
2247
2248static void hash_openowner(struct nfs4_stateowner *sop, struct nfs4_client *clp, unsigned int strhashval)
2249{
2250 unsigned int idhashval;
2251
2252 idhashval = open_ownerid_hashval(sop->so_id);
2253 list_add(&sop->so_idhash, &open_ownerid_hashtbl[idhashval]);
2254 list_add(&sop->so_strhash, &open_ownerstr_hashtbl[strhashval]);
2255 list_add(&sop->so_perclient, &clp->cl_openowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
2257
2258static struct nfs4_stateowner *
2259alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
2260 struct nfs4_stateowner *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002262 sop = alloc_stateowner(&open->op_owner, clp);
2263 if (!sop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 sop->so_is_open_owner = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 sop->so_seqid = open->op_seqid;
2267 sop->so_confirmed = 0;
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04002268 hash_openowner(sop, clp, strhashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 return sop;
2270}
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272static inline void
2273init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
2274 struct nfs4_stateowner *sop = open->op_stateowner;
2275 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
2276
2277 INIT_LIST_HEAD(&stp->st_hash);
NeilBrownea1da632005-06-23 22:04:17 -07002278 INIT_LIST_HEAD(&stp->st_perstateowner);
2279 INIT_LIST_HEAD(&stp->st_lockowners);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 INIT_LIST_HEAD(&stp->st_perfile);
2281 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrownea1da632005-06-23 22:04:17 -07002282 list_add(&stp->st_perstateowner, &sop->so_stateids);
NeilBrown8beefa22005-06-23 22:03:08 -07002283 list_add(&stp->st_perfile, &fp->fi_stateids);
J. Bruce Fields5fa0bbb2011-08-31 15:25:46 -04002284 stp->st_type = NFS4_OPEN_STID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 stp->st_stateowner = sop;
NeilBrown13cd2182005-06-23 22:03:10 -07002286 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 stp->st_file = fp;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04002288 stp->st_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 stp->st_stateid.si_stateownerid = sop->so_id;
2290 stp->st_stateid.si_fileid = fp->fi_id;
J. Bruce Fields73997dc2011-08-31 15:47:21 -04002291 /* note will be incremented before first return to client: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 stp->st_stateid.si_generation = 0;
2293 stp->st_access_bmap = 0;
2294 stp->st_deny_bmap = 0;
Andy Adamson84459a12009-04-03 08:28:56 +03002295 __set_bit(open->op_share_access & ~NFS4_SHARE_WANT_MASK,
2296 &stp->st_access_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
NeilBrown4c4cd222005-07-07 17:59:27 -07002298 stp->st_openstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299}
2300
2301static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302move_to_close_lru(struct nfs4_stateowner *sop)
2303{
2304 dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop);
2305
NeilBrown358dd552006-04-10 22:55:42 -07002306 list_move_tail(&sop->so_close_lru, &close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 sop->so_time = get_seconds();
2308}
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310static int
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002311same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
2312 clientid_t *clid)
2313{
2314 return (sop->so_owner.len == owner->len) &&
2315 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
2316 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317}
2318
2319static struct nfs4_stateowner *
2320find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
2321{
2322 struct nfs4_stateowner *so = NULL;
2323
J. Bruce Fields506f2752011-08-11 18:50:18 -04002324 list_for_each_entry(so, &open_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04002325 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return so;
2327 }
2328 return NULL;
2329}
2330
2331/* search file_hashtbl[] for file */
2332static struct nfs4_file *
2333find_file(struct inode *ino)
2334{
2335 unsigned int hashval = file_hashval(ino);
2336 struct nfs4_file *fp;
2337
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002338 spin_lock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
NeilBrown13cd2182005-06-23 22:03:10 -07002340 if (fp->fi_inode == ino) {
2341 get_nfs4_file(fp);
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002342 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return fp;
NeilBrown13cd2182005-06-23 22:03:10 -07002344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
J. Bruce Fields8b671b82009-02-22 14:51:34 -08002346 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 return NULL;
2348}
2349
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002350static inline int access_valid(u32 x, u32 minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002351{
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002352 if ((x & NFS4_SHARE_ACCESS_MASK) < NFS4_SHARE_ACCESS_READ)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002353 return 0;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002354 if ((x & NFS4_SHARE_ACCESS_MASK) > NFS4_SHARE_ACCESS_BOTH)
2355 return 0;
2356 x &= ~NFS4_SHARE_ACCESS_MASK;
2357 if (minorversion && x) {
2358 if ((x & NFS4_SHARE_WANT_MASK) > NFS4_SHARE_WANT_CANCEL)
2359 return 0;
2360 if ((x & NFS4_SHARE_WHEN_MASK) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED)
2361 return 0;
2362 x &= ~(NFS4_SHARE_WANT_MASK | NFS4_SHARE_WHEN_MASK);
2363 }
2364 if (x)
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002365 return 0;
2366 return 1;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002367}
2368
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002369static inline int deny_valid(u32 x)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002370{
J. Bruce Fields8838dc42008-01-14 13:12:19 -05002371 /* Note: unlike access bits, deny bits may be zero. */
2372 return x <= NFS4_SHARE_DENY_BOTH;
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002373}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
J. Bruce Fields4f83aa32008-07-07 15:02:02 -04002375/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 * Called to check deny when READ with all zero stateid or
2377 * WRITE with all zero or all one stateid
2378 */
Al Virob37ad282006-10-19 23:28:59 -07002379static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2381{
2382 struct inode *ino = current_fh->fh_dentry->d_inode;
2383 struct nfs4_file *fp;
2384 struct nfs4_stateid *stp;
Al Virob37ad282006-10-19 23:28:59 -07002385 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 dprintk("NFSD: nfs4_share_conflict\n");
2388
2389 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07002390 if (!fp)
2391 return nfs_ok;
NeilBrownb7009492005-07-07 17:59:23 -07002392 ret = nfserr_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 /* Search for conflicting share reservations */
NeilBrown13cd2182005-06-23 22:03:10 -07002394 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
2395 if (test_bit(deny_type, &stp->st_deny_bmap) ||
2396 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
2397 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
NeilBrown13cd2182005-06-23 22:03:10 -07002399 ret = nfs_ok;
2400out:
2401 put_nfs4_file(fp);
2402 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403}
2404
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002405static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 /* We're assuming the state code never drops its reference
2408 * without first removing the lease. Since we're in this lease
2409 * callback (and since the lease code is serialized by the kernel
2410 * lock) we know the server hasn't removed the lease yet, we know
2411 * it's safe to take a reference: */
2412 atomic_inc(&dp->dl_count);
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Arnd Bergmann460781b2010-11-17 16:26:56 +01002416 /* only place dl_time is set. protected by lock_flocks*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 dp->dl_time = get_seconds();
2418
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002419 nfsd4_cb_recall(dp);
2420}
2421
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002422/* Called from break_lease() with lock_flocks() held. */
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002423static void nfsd_break_deleg_cb(struct file_lock *fl)
2424{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002425 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
2426 struct nfs4_delegation *dp;
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002427
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002428 BUG_ON(!fp);
2429 /* We assume break_lease is only called once per lease: */
2430 BUG_ON(fp->fi_had_conflict);
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04002431 /*
2432 * We don't want the locks code to timeout the lease for us;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002433 * we'll remove it ourself if a delegation isn't returned
J. Bruce Fields6b57d9c2011-01-31 11:54:04 -05002434 * in time:
J. Bruce Fields0272e1f2007-09-12 18:56:12 -04002435 */
2436 fl->fl_break_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
J. Bruce Fields5d926e82011-02-07 16:53:46 -05002438 spin_lock(&recall_lock);
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002439 fp->fi_had_conflict = true;
2440 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2441 nfsd_break_one_deleg(dp);
J. Bruce Fields5d926e82011-02-07 16:53:46 -05002442 spin_unlock(&recall_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443}
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445static
2446int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2447{
2448 if (arg & F_UNLCK)
2449 return lease_modify(onlist, arg);
2450 else
2451 return -EAGAIN;
2452}
2453
Alexey Dobriyan7b021962009-09-21 17:01:12 -07002454static const struct lock_manager_operations nfsd_lease_mng_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002455 .lm_break = nfsd_break_deleg_cb,
2456 .lm_change = nfsd_change_deleg_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457};
2458
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04002459static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
2460{
2461 if (nfsd4_has_session(cstate))
2462 return nfs_ok;
2463 if (seqid == so->so_seqid - 1)
2464 return nfserr_replay_me;
2465 if (seqid == so->so_seqid)
2466 return nfs_ok;
2467 return nfserr_bad_seqid;
2468}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
Al Virob37ad282006-10-19 23:28:59 -07002470__be32
Andy Adamson66689582009-04-03 08:28:45 +03002471nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2472 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 clientid_t *clientid = &open->op_clientid;
2475 struct nfs4_client *clp = NULL;
2476 unsigned int strhashval;
2477 struct nfs4_stateowner *sop = NULL;
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04002478 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 if (!check_name(open->op_owner))
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002481 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
2483 if (STALE_CLIENTID(&open->op_clientid))
2484 return nfserr_stale_clientid;
2485
J. Bruce Fields506f2752011-08-11 18:50:18 -04002486 strhashval = open_ownerstr_hashval(clientid->cl_id, &open->op_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 sop = find_openstateowner_str(strhashval, open);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002488 open->op_stateowner = sop;
2489 if (!sop) {
2490 /* Make sure the client's lease hasn't expired. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 clp = find_confirmed_client(clientid);
2492 if (clp == NULL)
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002493 return nfserr_expired;
2494 goto renew;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 }
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002496 if (!sop->so_confirmed) {
2497 /* Replace unconfirmed owners without checking for replay. */
2498 clp = sop->so_client;
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05002499 release_openowner(sop);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002500 open->op_stateowner = NULL;
2501 goto renew;
2502 }
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04002503 status = nfsd4_check_seqid(cstate, sop, open->op_seqid);
2504 if (status)
2505 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506renew:
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002507 if (open->op_stateowner == NULL) {
2508 sop = alloc_init_open_stateowner(strhashval, clp, open);
2509 if (sop == NULL)
J. Bruce Fields3e772462011-08-10 19:07:33 -04002510 return nfserr_jukebox;
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002511 open->op_stateowner = sop;
2512 }
2513 list_del_init(&sop->so_close_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 renew_client(sop->so_client);
J. Bruce Fields0f442aa2006-01-18 17:43:34 -08002515 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
Al Virob37ad282006-10-19 23:28:59 -07002518static inline __be32
NeilBrown4a6e43e2005-06-23 22:02:50 -07002519nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2520{
2521 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2522 return nfserr_openmode;
2523 else
2524 return nfs_ok;
2525}
2526
NeilBrown52f4fb42005-06-23 22:02:49 -07002527static struct nfs4_delegation *
2528find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
2529{
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002530 struct nfs4_delegation *dp;
NeilBrown52f4fb42005-06-23 22:02:49 -07002531
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002532 spin_lock(&recall_lock);
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002533 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2534 if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid) {
2535 spin_unlock(&recall_lock);
2536 return dp;
2537 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002538 spin_unlock(&recall_lock);
J. Bruce Fields32b007b2011-03-06 19:11:03 -05002539 return NULL;
NeilBrown52f4fb42005-06-23 22:02:49 -07002540}
2541
Daniel Mackc47d8322011-05-16 16:38:14 +02002542static int share_access_to_flags(u32 share_access)
J. Bruce Fields24a01112010-05-18 20:01:35 -04002543{
2544 share_access &= ~NFS4_SHARE_WANT_MASK;
2545
2546 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
2547}
2548
Al Virob37ad282006-10-19 23:28:59 -07002549static __be32
NeilBrown567d9822005-06-23 22:02:53 -07002550nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
2551 struct nfs4_delegation **dp)
2552{
2553 int flags;
Al Virob37ad282006-10-19 23:28:59 -07002554 __be32 status = nfserr_bad_stateid;
NeilBrown567d9822005-06-23 22:02:53 -07002555
2556 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
2557 if (*dp == NULL)
NeilBrownc44c5ee2005-06-23 22:02:54 -07002558 goto out;
J. Bruce Fields24a01112010-05-18 20:01:35 -04002559 flags = share_access_to_flags(open->op_share_access);
NeilBrown567d9822005-06-23 22:02:53 -07002560 status = nfs4_check_delegmode(*dp, flags);
2561 if (status)
2562 *dp = NULL;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002563out:
2564 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
2565 return nfs_ok;
2566 if (status)
2567 return status;
2568 open->op_stateowner->so_confirmed = 1;
2569 return nfs_ok;
NeilBrown567d9822005-06-23 22:02:53 -07002570}
2571
Al Virob37ad282006-10-19 23:28:59 -07002572static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp)
2574{
2575 struct nfs4_stateid *local;
Al Virob37ad282006-10-19 23:28:59 -07002576 __be32 status = nfserr_share_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 struct nfs4_stateowner *sop = open->op_stateowner;
2578
NeilBrown8beefa22005-06-23 22:03:08 -07002579 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 /* ignore lock owners */
2581 if (local->st_stateowner->so_is_open_owner == 0)
2582 continue;
2583 /* remember if we have seen this open owner */
2584 if (local->st_stateowner == sop)
2585 *stpp = local;
2586 /* check for conflicting share reservations */
2587 if (!test_share(local, open))
2588 goto out;
2589 }
2590 status = 0;
2591out:
2592 return status;
2593}
2594
NeilBrown5ac049a2005-06-23 22:03:03 -07002595static inline struct nfs4_stateid *
2596nfs4_alloc_stateid(void)
2597{
2598 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
2599}
2600
J. Bruce Fields21fb4012010-07-28 12:21:23 -04002601static inline int nfs4_access_to_access(u32 nfs4_access)
2602{
2603 int flags = 0;
2604
2605 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
2606 flags |= NFSD_MAY_READ;
2607 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
2608 flags |= NFSD_MAY_WRITE;
2609 return flags;
2610}
2611
Casey Bodley0c12eaf2011-07-23 14:58:10 -04002612static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
2613 struct svc_fh *cur_fh, struct nfsd4_open *open)
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002614{
2615 __be32 status;
Casey Bodley0c12eaf2011-07-23 14:58:10 -04002616 int oflag = nfs4_access_to_omode(open->op_share_access);
2617 int access = nfs4_access_to_access(open->op_share_access);
2618
2619 /* CLAIM_DELEGATE_CUR is used in response to a broken lease;
2620 * allowing it to break the lease and return EAGAIN leaves the
2621 * client unable to make progress in returning the delegation */
2622 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2623 access |= NFSD_MAY_NOT_BREAK_LEASE;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002624
2625 if (!fp->fi_fds[oflag]) {
2626 status = nfsd_open(rqstp, cur_fh, S_IFREG, access,
2627 &fp->fi_fds[oflag]);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002628 if (status)
2629 return status;
2630 }
2631 nfs4_file_get_access(fp, oflag);
2632
2633 return nfs_ok;
2634}
2635
Al Virob37ad282006-10-19 23:28:59 -07002636static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp,
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002638 struct nfs4_file *fp, struct svc_fh *cur_fh,
2639 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
2641 struct nfs4_stateid *stp;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002642 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
NeilBrown5ac049a2005-06-23 22:03:03 -07002644 stp = nfs4_alloc_stateid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (stp == NULL)
J. Bruce Fields3e772462011-08-10 19:07:33 -04002646 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Casey Bodley0c12eaf2011-07-23 14:58:10 -04002648 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002649 if (status) {
2650 kmem_cache_free(stateid_slab, stp);
2651 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 *stpp = stp;
2654 return 0;
2655}
2656
Al Virob37ad282006-10-19 23:28:59 -07002657static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2659 struct nfsd4_open *open)
2660{
2661 struct iattr iattr = {
2662 .ia_valid = ATTR_SIZE,
2663 .ia_size = 0,
2664 };
2665 if (!open->op_truncate)
2666 return 0;
2667 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
Al Viro92465852006-01-18 17:43:46 -08002668 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2670}
2671
Al Virob37ad282006-10-19 23:28:59 -07002672static __be32
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002673nfs4_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 -07002674{
J. Bruce Fields7d947842010-08-20 18:09:31 -04002675 u32 op_share_access = open->op_share_access & ~NFS4_SHARE_WANT_MASK;
2676 bool new_access;
Al Virob37ad282006-10-19 23:28:59 -07002677 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
J. Bruce Fields7d947842010-08-20 18:09:31 -04002679 new_access = !test_bit(op_share_access, &stp->st_access_bmap);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002680 if (new_access) {
Casey Bodley0c12eaf2011-07-23 14:58:10 -04002681 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002682 if (status)
2683 return status;
J. Bruce Fields6c26d082006-01-18 17:43:38 -08002684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 status = nfsd4_truncate(rqstp, cur_fh, open);
2686 if (status) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002687 if (new_access) {
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04002688 int oflag = nfs4_access_to_omode(op_share_access);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002689 nfs4_file_put_access(fp, oflag);
2690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 return status;
2692 }
2693 /* remember the open */
J. Bruce Fields24a01112010-05-18 20:01:35 -04002694 __set_bit(op_share_access, &stp->st_access_bmap);
J. Bruce Fieldsb55e0ba2008-04-28 18:22:50 -04002695 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 return nfs_ok;
2698}
2699
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701static void
NeilBrown37515172005-07-07 17:59:16 -07002702nfs4_set_claim_prev(struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
NeilBrown37515172005-07-07 17:59:16 -07002704 open->op_stateowner->so_confirmed = 1;
2705 open->op_stateowner->so_client->cl_firststate = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706}
2707
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002708/* Should we give out recallable state?: */
2709static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
2710{
2711 if (clp->cl_cb_state == NFSD4_CB_UP)
2712 return true;
2713 /*
2714 * In the sessions case, since we don't have to establish a
2715 * separate connection for callbacks, we assume it's OK
2716 * until we hear otherwise:
2717 */
2718 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
2719}
2720
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002721static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag)
2722{
2723 struct file_lock *fl;
2724
2725 fl = locks_alloc_lock();
2726 if (!fl)
2727 return NULL;
2728 locks_init_lock(fl);
2729 fl->fl_lmops = &nfsd_lease_mng_ops;
2730 fl->fl_flags = FL_LEASE;
2731 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
2732 fl->fl_end = OFFSET_MAX;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002733 fl->fl_owner = (fl_owner_t)(dp->dl_file);
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002734 fl->fl_pid = current->tgid;
J. Bruce Fields22d38c42011-01-31 11:55:12 -05002735 return fl;
2736}
2737
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002738static int nfs4_setlease(struct nfs4_delegation *dp, int flag)
2739{
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002740 struct nfs4_file *fp = dp->dl_file;
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002741 struct file_lock *fl;
2742 int status;
2743
2744 fl = nfs4_alloc_init_lease(dp, flag);
2745 if (!fl)
2746 return -ENOMEM;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002747 fl->fl_file = find_readable_file(fp);
2748 list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations);
2749 status = vfs_setlease(fl->fl_file, fl->fl_type, &fl);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002750 if (status) {
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002751 list_del_init(&dp->dl_perclnt);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002752 locks_free_lock(fl);
2753 return -ENOMEM;
2754 }
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002755 fp->fi_lease = fl;
2756 fp->fi_deleg_file = fl->fl_file;
2757 get_file(fp->fi_deleg_file);
2758 atomic_set(&fp->fi_delegees, 1);
2759 list_add(&dp->dl_perfile, &fp->fi_delegations);
2760 return 0;
2761}
2762
2763static int nfs4_set_delegation(struct nfs4_delegation *dp, int flag)
2764{
2765 struct nfs4_file *fp = dp->dl_file;
2766
2767 if (!fp->fi_lease)
2768 return nfs4_setlease(dp, flag);
2769 spin_lock(&recall_lock);
2770 if (fp->fi_had_conflict) {
2771 spin_unlock(&recall_lock);
2772 return -EAGAIN;
2773 }
2774 atomic_inc(&fp->fi_delegees);
2775 list_add(&dp->dl_perfile, &fp->fi_delegations);
2776 spin_unlock(&recall_lock);
2777 list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002778 return 0;
2779}
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781/*
2782 * Attempt to hand out a delegation.
2783 */
2784static void
2785nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp)
2786{
2787 struct nfs4_delegation *dp;
2788 struct nfs4_stateowner *sop = stp->st_stateowner;
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002789 int cb_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 int status, flag = 0;
2791
J. Bruce Fields14a24e92010-12-10 19:02:49 -05002792 cb_up = nfsd4_cb_channel_good(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 flag = NFS4_OPEN_DELEGATE_NONE;
NeilBrown7b190fe2005-06-23 22:03:23 -07002794 open->op_recall = 0;
2795 switch (open->op_claim_type) {
2796 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002797 if (!cb_up)
NeilBrown7b190fe2005-06-23 22:03:23 -07002798 open->op_recall = 1;
2799 flag = open->op_delegate_type;
2800 if (flag == NFS4_OPEN_DELEGATE_NONE)
2801 goto out;
2802 break;
2803 case NFS4_OPEN_CLAIM_NULL:
2804 /* Let's not give out any delegations till everyone's
2805 * had the chance to reclaim theirs.... */
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002806 if (locks_in_grace())
NeilBrown7b190fe2005-06-23 22:03:23 -07002807 goto out;
J. Bruce Fields2bf23872010-03-08 12:37:27 -05002808 if (!cb_up || !sop->so_confirmed)
NeilBrown7b190fe2005-06-23 22:03:23 -07002809 goto out;
2810 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2811 flag = NFS4_OPEN_DELEGATE_WRITE;
2812 else
2813 flag = NFS4_OPEN_DELEGATE_READ;
2814 break;
2815 default:
2816 goto out;
2817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819 dp = alloc_init_deleg(sop->so_client, stp, fh, flag);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002820 if (dp == NULL)
2821 goto out_no_deleg;
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002822 status = nfs4_set_delegation(dp, flag);
J. Bruce Fieldsedab9782011-01-31 17:58:10 -05002823 if (status)
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002824 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826 memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid));
2827
Benny Halevy8c10cbd2009-10-19 12:04:53 +02002828 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
2829 STATEID_VAL(&dp->dl_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830out:
NeilBrown7b190fe2005-06-23 22:03:23 -07002831 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
2832 && flag == NFS4_OPEN_DELEGATE_NONE
2833 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
J. Bruce Fields2fdada02007-07-27 16:10:37 -04002834 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 open->op_delegate_type = flag;
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002836 return;
2837out_free:
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05002838 nfs4_put_delegation(dp);
J. Bruce Fieldsdd239cc2011-01-31 17:14:55 -05002839out_no_deleg:
2840 flag = NFS4_OPEN_DELEGATE_NONE;
2841 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842}
2843
2844/*
2845 * called with nfs4_lock_state() held.
2846 */
Al Virob37ad282006-10-19 23:28:59 -07002847__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2849{
Andy Adamson66689582009-04-03 08:28:45 +03002850 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 struct nfs4_file *fp = NULL;
2852 struct inode *ino = current_fh->fh_dentry->d_inode;
2853 struct nfs4_stateid *stp = NULL;
NeilBrown567d9822005-06-23 22:02:53 -07002854 struct nfs4_delegation *dp = NULL;
Al Virob37ad282006-10-19 23:28:59 -07002855 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857 status = nfserr_inval;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03002858 if (!access_valid(open->op_share_access, resp->cstate.minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07002859 || !deny_valid(open->op_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 goto out;
2861 /*
2862 * Lookup file; if found, lookup stateid and check open request,
2863 * and check for delegations in the process of being recalled.
2864 * If not found, create the nfs4_file struct
2865 */
2866 fp = find_file(ino);
2867 if (fp) {
2868 if ((status = nfs4_check_open(fp, open, &stp)))
2869 goto out;
NeilBrownc44c5ee2005-06-23 22:02:54 -07002870 status = nfs4_check_deleg(fp, open, &dp);
2871 if (status)
2872 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 } else {
NeilBrownc44c5ee2005-06-23 22:02:54 -07002874 status = nfserr_bad_stateid;
2875 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2876 goto out;
J. Bruce Fields3e772462011-08-10 19:07:33 -04002877 status = nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 fp = alloc_init_file(ino);
2879 if (fp == NULL)
2880 goto out;
2881 }
2882
2883 /*
2884 * OPEN the file, or upgrade an existing OPEN.
2885 * If truncate fails, the OPEN fails.
2886 */
2887 if (stp) {
2888 /* Stateid was found, this is an OPEN upgrade */
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002889 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 if (status)
2891 goto out;
2892 } else {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04002893 status = nfs4_new_open(rqstp, &stp, fp, current_fh, open);
NeilBrown567d9822005-06-23 22:02:53 -07002894 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 goto out;
2896 init_stateid(stp, fp, open);
2897 status = nfsd4_truncate(rqstp, current_fh, open);
2898 if (status) {
J. Bruce Fields22839632009-01-11 14:27:17 -05002899 release_open_stateid(stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 goto out;
2901 }
2902 }
J. Bruce Fields73997dc2011-08-31 15:47:21 -04002903 update_stateid(&stp->st_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t));
2905
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002906 if (nfsd4_has_session(&resp->cstate))
Andy Adamson66689582009-04-03 08:28:45 +03002907 open->op_stateowner->so_confirmed = 1;
2908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 /*
2910 * Attempt to hand out a delegation. No error return, because the
2911 * OPEN succeeds even if we fail.
2912 */
2913 nfs4_open_delegation(current_fh, open, stp);
2914
2915 status = nfs_ok;
2916
Benny Halevy8c10cbd2009-10-19 12:04:53 +02002917 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
2918 STATEID_VAL(&stp->st_stateid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919out:
NeilBrown13cd2182005-06-23 22:03:10 -07002920 if (fp)
2921 put_nfs4_file(fp);
NeilBrown37515172005-07-07 17:59:16 -07002922 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
2923 nfs4_set_claim_prev(open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 /*
2925 * To finish the open response, we just need to set the rflags.
2926 */
2927 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
Andy Adamson66689582009-04-03 08:28:45 +03002928 if (!open->op_stateowner->so_confirmed &&
2929 !nfsd4_has_session(&resp->cstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
2931
2932 return status;
2933}
2934
Al Virob37ad282006-10-19 23:28:59 -07002935__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002936nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2937 clientid_t *clid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938{
2939 struct nfs4_client *clp;
Al Virob37ad282006-10-19 23:28:59 -07002940 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
2942 nfs4_lock_state();
2943 dprintk("process_renew(%08x/%08x): starting\n",
2944 clid->cl_boot, clid->cl_id);
2945 status = nfserr_stale_clientid;
2946 if (STALE_CLIENTID(clid))
2947 goto out;
2948 clp = find_confirmed_client(clid);
2949 status = nfserr_expired;
2950 if (clp == NULL) {
2951 /* We assume the client took too long to RENEW. */
2952 dprintk("nfsd4_renew: clientid not found!\n");
2953 goto out;
2954 }
2955 renew_client(clp);
2956 status = nfserr_cb_path_down;
NeilBrownea1da632005-06-23 22:04:17 -07002957 if (!list_empty(&clp->cl_delegations)
J. Bruce Fields77a35692010-04-30 18:51:44 -04002958 && clp->cl_cb_state != NFSD4_CB_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 goto out;
2960 status = nfs_ok;
2961out:
2962 nfs4_unlock_state();
2963 return status;
2964}
2965
Daniel Mackc47d8322011-05-16 16:38:14 +02002966static struct lock_manager nfsd4_manager = {
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002967};
2968
NeilBrowna76b4312005-06-23 22:04:01 -07002969static void
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002970nfsd4_end_grace(void)
NeilBrowna76b4312005-06-23 22:04:01 -07002971{
2972 dprintk("NFSD: end of grace period\n");
NeilBrownc7b9a452005-06-23 22:04:30 -07002973 nfsd4_recdir_purge_old();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002974 locks_end_grace(&nfsd4_manager);
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05002975 /*
2976 * Now that every NFSv4 client has had the chance to recover and
2977 * to see the (possibly new, possibly shorter) lease time, we
2978 * can safely set the next grace time to the current lease time:
2979 */
2980 nfsd4_grace = nfsd4_lease;
NeilBrowna76b4312005-06-23 22:04:01 -07002981}
2982
NeilBrownfd39ca92005-06-23 22:04:03 -07002983static time_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984nfs4_laundromat(void)
2985{
2986 struct nfs4_client *clp;
2987 struct nfs4_stateowner *sop;
2988 struct nfs4_delegation *dp;
2989 struct list_head *pos, *next, reaplist;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05002990 time_t cutoff = get_seconds() - nfsd4_lease;
2991 time_t t, clientid_val = nfsd4_lease;
2992 time_t u, test_val = nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
2994 nfs4_lock_state();
2995
2996 dprintk("NFSD: laundromat service - starting\n");
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04002997 if (locks_in_grace())
2998 nfsd4_end_grace();
Benny Halevy36acb662010-05-12 00:13:04 +03002999 INIT_LIST_HEAD(&reaplist);
3000 spin_lock(&client_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 list_for_each_safe(pos, next, &client_lru) {
3002 clp = list_entry(pos, struct nfs4_client, cl_lru);
3003 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3004 t = clp->cl_time - cutoff;
3005 if (clientid_val > t)
3006 clientid_val = t;
3007 break;
3008 }
Benny Halevyd7682982010-05-12 00:13:54 +03003009 if (atomic_read(&clp->cl_refcount)) {
3010 dprintk("NFSD: client in use (clientid %08x)\n",
3011 clp->cl_clientid.cl_id);
3012 continue;
3013 }
3014 unhash_client_locked(clp);
3015 list_add(&clp->cl_lru, &reaplist);
Benny Halevy36acb662010-05-12 00:13:04 +03003016 }
3017 spin_unlock(&client_lock);
3018 list_for_each_safe(pos, next, &reaplist) {
3019 clp = list_entry(pos, struct nfs4_client, cl_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 dprintk("NFSD: purging unused client (clientid %08x)\n",
3021 clp->cl_clientid.cl_id);
NeilBrownc7b9a452005-06-23 22:04:30 -07003022 nfsd4_remove_clid_dir(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 expire_client(clp);
3024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 spin_lock(&recall_lock);
3026 list_for_each_safe(pos, next, &del_recall_lru) {
3027 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3028 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
3029 u = dp->dl_time - cutoff;
3030 if (test_val > u)
3031 test_val = u;
3032 break;
3033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 list_move(&dp->dl_recall_lru, &reaplist);
3035 }
3036 spin_unlock(&recall_lock);
3037 list_for_each_safe(pos, next, &reaplist) {
3038 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3039 list_del_init(&dp->dl_recall_lru);
3040 unhash_delegation(dp);
3041 }
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05003042 test_val = nfsd4_lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 list_for_each_safe(pos, next, &close_lru) {
3044 sop = list_entry(pos, struct nfs4_stateowner, so_close_lru);
3045 if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) {
3046 u = sop->so_time - cutoff;
3047 if (test_val > u)
3048 test_val = u;
3049 break;
3050 }
3051 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
3052 sop->so_id);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05003053 release_openowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 }
3055 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
3056 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
3057 nfs4_unlock_state();
3058 return clientid_val;
3059}
3060
Harvey Harrisona254b242008-02-20 12:49:00 -08003061static struct workqueue_struct *laundry_wq;
3062static void laundromat_main(struct work_struct *);
3063static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
3064
3065static void
David Howellsc4028952006-11-22 14:57:56 +00003066laundromat_main(struct work_struct *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067{
3068 time_t t;
3069
3070 t = nfs4_laundromat();
3071 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
NeilBrown58da2822005-06-23 22:03:19 -07003072 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073}
3074
NeilBrownfd39ca92005-06-23 22:04:03 -07003075static struct nfs4_stateowner *
NeilBrownf8816512005-07-07 17:59:25 -07003076search_close_lru(u32 st_id, int flags)
3077{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 struct nfs4_stateowner *local = NULL;
3079
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 if (flags & CLOSE_STATE) {
3081 list_for_each_entry(local, &close_lru, so_close_lru) {
3082 if (local->so_id == st_id)
3083 return local;
3084 }
3085 }
3086 return NULL;
3087}
3088
3089static inline int
3090nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp)
3091{
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003092 return fhp->fh_dentry->d_inode != stp->st_file->fi_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093}
3094
3095static int
3096STALE_STATEID(stateid_t *stateid)
3097{
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003098 if (stateid->si_boot == boot_time)
3099 return 0;
3100 dprintk("NFSD: stale stateid " STATEID_FMT "!\n",
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003101 STATEID_VAL(stateid));
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003102 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103}
3104
3105static inline int
3106access_permit_read(unsigned long access_bmap)
3107{
3108 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
3109 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
3110 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
3111}
3112
3113static inline int
3114access_permit_write(unsigned long access_bmap)
3115{
3116 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
3117 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
3118}
3119
3120static
Al Virob37ad282006-10-19 23:28:59 -07003121__be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122{
Al Virob37ad282006-10-19 23:28:59 -07003123 __be32 status = nfserr_openmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
J. Bruce Fields02921912010-07-29 15:16:59 -04003125 /* For lock stateid's, we test the parent open, not the lock: */
3126 if (stp->st_openstp)
3127 stp = stp->st_openstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
3129 goto out;
3130 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
3131 goto out;
3132 status = nfs_ok;
3133out:
3134 return status;
3135}
3136
Al Virob37ad282006-10-19 23:28:59 -07003137static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
3139{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003140 if (ONE_STATEID(stateid) && (flags & RD_STATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 return nfs_ok;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04003142 else if (locks_in_grace()) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003143 /* Answer in remaining cases depends on existence of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 * conflicting state; so we must wait out the grace period. */
3145 return nfserr_grace;
3146 } else if (flags & WR_STATE)
3147 return nfs4_share_conflict(current_fh,
3148 NFS4_SHARE_DENY_WRITE);
3149 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
3150 return nfs4_share_conflict(current_fh,
3151 NFS4_SHARE_DENY_READ);
3152}
3153
3154/*
3155 * Allow READ/WRITE during grace period on recovered state only for files
3156 * that are not able to provide mandatory locking.
3157 */
3158static inline int
J. Bruce Fields18f82732009-02-21 15:23:01 -08003159grace_disallows_io(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003161 return locks_in_grace() && mandatory_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162}
3163
J. Bruce Fields81b82962011-08-23 11:03:29 -04003164/* Returns true iff a is later than b: */
3165static bool stateid_generation_after(stateid_t *a, stateid_t *b)
3166{
3167 return (s32)a->si_generation - (s32)b->si_generation > 0;
3168}
3169
J. Bruce Fields28dde242011-08-22 10:07:12 -04003170static int check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
J. Bruce Fields0836f582008-01-26 19:08:12 -05003171{
Andy Adamson66689582009-04-03 08:28:45 +03003172 /*
3173 * When sessions are used the stateid generation number is ignored
3174 * when it is zero.
3175 */
J. Bruce Fields28dde242011-08-22 10:07:12 -04003176 if (has_session && in->si_generation == 0)
J. Bruce Fields81b82962011-08-23 11:03:29 -04003177 return nfs_ok;
3178
3179 if (in->si_generation == ref->si_generation)
3180 return nfs_ok;
Andy Adamson66689582009-04-03 08:28:45 +03003181
J. Bruce Fields0836f582008-01-26 19:08:12 -05003182 /* If the client sends us a stateid from the future, it's buggy: */
J. Bruce Fields81b82962011-08-23 11:03:29 -04003183 if (stateid_generation_after(in, ref))
J. Bruce Fields0836f582008-01-26 19:08:12 -05003184 return nfserr_bad_stateid;
3185 /*
J. Bruce Fields81b82962011-08-23 11:03:29 -04003186 * However, we could see a stateid from the past, even from a
3187 * non-buggy client. For example, if the client sends a lock
3188 * while some IO is outstanding, the lock may bump si_generation
3189 * while the IO is still in flight. The client could avoid that
3190 * situation by waiting for responses on all the IO requests,
3191 * but better performance may result in retrying IO that
3192 * receives an old_stateid error if requests are rarely
3193 * reordered in flight:
J. Bruce Fields0836f582008-01-26 19:08:12 -05003194 */
J. Bruce Fields81b82962011-08-23 11:03:29 -04003195 return nfserr_old_stateid;
J. Bruce Fields0836f582008-01-26 19:08:12 -05003196}
3197
J. Bruce Fields3e633072009-02-21 13:17:19 -08003198static int is_delegation_stateid(stateid_t *stateid)
3199{
3200 return stateid->si_fileid == 0;
3201}
3202
J. Bruce Fields28dde242011-08-22 10:07:12 -04003203__be32 nfs4_validate_stateid(stateid_t *stateid, bool has_session)
Bryan Schumaker17456802011-07-13 10:50:48 -04003204{
3205 struct nfs4_stateid *stp = NULL;
3206 __be32 status = nfserr_stale_stateid;
3207
3208 if (STALE_STATEID(stateid))
3209 goto out;
3210
3211 status = nfserr_expired;
J. Bruce Fieldsb79abad2011-08-22 18:01:43 -04003212 stp = find_stateid(stateid, 0);
Bryan Schumaker17456802011-07-13 10:50:48 -04003213 if (!stp)
3214 goto out;
3215 status = nfserr_bad_stateid;
3216
3217 if (!stp->st_stateowner->so_confirmed)
3218 goto out;
3219
J. Bruce Fields28dde242011-08-22 10:07:12 -04003220 status = check_stateid_generation(stateid, &stp->st_stateid, has_session);
Bryan Schumaker17456802011-07-13 10:50:48 -04003221 if (status)
3222 goto out;
3223
3224 status = nfs_ok;
3225out:
3226 return status;
3227}
3228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229/*
3230* Checks for stateid operations
3231*/
Al Virob37ad282006-10-19 23:28:59 -07003232__be32
Benny Halevydd453df2009-04-03 08:28:41 +03003233nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
3234 stateid_t *stateid, int flags, struct file **filpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235{
3236 struct nfs4_stateid *stp = NULL;
3237 struct nfs4_delegation *dp = NULL;
Benny Halevydd453df2009-04-03 08:28:41 +03003238 struct svc_fh *current_fh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 struct inode *ino = current_fh->fh_dentry->d_inode;
Al Virob37ad282006-10-19 23:28:59 -07003240 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 if (filpp)
3243 *filpp = NULL;
3244
J. Bruce Fields18f82732009-02-21 15:23:01 -08003245 if (grace_disallows_io(ino))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 return nfserr_grace;
3247
3248 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3249 return check_special_stateids(current_fh, stateid, flags);
3250
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 status = nfserr_stale_stateid;
3252 if (STALE_STATEID(stateid))
3253 goto out;
3254
J. Bruce Fields33515142010-10-02 18:42:39 -04003255 /*
3256 * We assume that any stateid that has the current boot time,
3257 * but that we can't find, is expired:
3258 */
3259 status = nfserr_expired;
J. Bruce Fields3e633072009-02-21 13:17:19 -08003260 if (is_delegation_stateid(stateid)) {
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003261 dp = find_delegation_stateid(ino, stateid);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003262 if (!dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 goto out;
J. Bruce Fields28dde242011-08-22 10:07:12 -04003264 status = check_stateid_generation(stateid, &dp->dl_stateid, nfsd4_has_session(cstate));
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08003265 if (status)
3266 goto out;
J. Bruce Fieldsdc9bf702009-02-21 11:14:43 -08003267 status = nfs4_check_delegmode(dp, flags);
3268 if (status)
3269 goto out;
3270 renew_client(dp->dl_client);
Dan Carpenter43b01782010-10-27 23:19:04 +02003271 if (filpp) {
J. Bruce Fieldsacfdf5c2011-01-31 19:20:39 -05003272 *filpp = dp->dl_file->fi_deleg_file;
Dan Carpenter43b01782010-10-27 23:19:04 +02003273 BUG_ON(!*filpp);
3274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 } else { /* open or lock stateid */
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003276 stp = find_stateid(stateid, flags);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003277 if (!stp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 goto out;
J. Bruce Fields33515142010-10-02 18:42:39 -04003279 status = nfserr_bad_stateid;
J. Bruce Fields6150ef02009-02-21 13:36:16 -08003280 if (nfs4_check_fh(current_fh, stp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 goto out;
3282 if (!stp->st_stateowner->so_confirmed)
3283 goto out;
Andy Adamson66689582009-04-03 08:28:45 +03003284 status = check_stateid_generation(stateid, &stp->st_stateid,
J. Bruce Fields28dde242011-08-22 10:07:12 -04003285 nfsd4_has_session(cstate));
J. Bruce Fields0c2a4982009-02-21 11:11:50 -08003286 if (status)
3287 goto out;
J. Bruce Fieldsa4455be2009-02-21 10:40:22 -08003288 status = nfs4_check_openmode(stp, flags);
3289 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 goto out;
3291 renew_client(stp->st_stateowner->so_client);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003292 if (filpp) {
3293 if (flags & RD_STATE)
3294 *filpp = find_readable_file(stp->st_file);
3295 else
3296 *filpp = find_writeable_file(stp->st_file);
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04003297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 }
3299 status = nfs_ok;
3300out:
3301 return status;
3302}
3303
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003304static __be32
3305nfsd4_free_delegation_stateid(stateid_t *stateid)
3306{
3307 struct nfs4_delegation *dp = search_for_delegation(stateid);
3308 if (dp)
3309 return nfserr_locks_held;
3310 return nfserr_bad_stateid;
3311}
3312
3313static __be32
3314nfsd4_free_lock_stateid(struct nfs4_stateid *stp)
3315{
3316 if (check_for_locks(stp->st_file, stp->st_stateowner))
3317 return nfserr_locks_held;
3318 release_lock_stateid(stp);
3319 return nfs_ok;
3320}
3321
3322/*
Bryan Schumaker17456802011-07-13 10:50:48 -04003323 * Test if the stateid is valid
3324 */
3325__be32
3326nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3327 struct nfsd4_test_stateid *test_stateid)
3328{
3329 test_stateid->ts_has_session = nfsd4_has_session(cstate);
3330 return nfs_ok;
3331}
3332
3333/*
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003334 * Free a state id
3335 */
3336__be32
3337nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3338 struct nfsd4_free_stateid *free_stateid)
3339{
3340 stateid_t *stateid = &free_stateid->fr_stateid;
3341 struct nfs4_stateid *stp;
3342 __be32 ret;
3343
3344 nfs4_lock_state();
3345 if (is_delegation_stateid(stateid)) {
3346 ret = nfsd4_free_delegation_stateid(stateid);
3347 goto out;
3348 }
3349
J. Bruce Fieldsb79abad2011-08-22 18:01:43 -04003350 stp = find_stateid(stateid, 0);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003351 if (!stp) {
3352 ret = nfserr_bad_stateid;
3353 goto out;
3354 }
J. Bruce Fields81b82962011-08-23 11:03:29 -04003355 ret = check_stateid_generation(stateid, &stp->st_stateid, 1);
3356 if (ret)
3357 goto out;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003358
J. Bruce Fields5fa0bbb2011-08-31 15:25:46 -04003359 if (stp->st_type == NFS4_OPEN_STID) {
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003360 ret = nfserr_locks_held;
3361 goto out;
3362 } else {
3363 ret = nfsd4_free_lock_stateid(stp);
3364 goto out;
3365 }
3366
3367out:
3368 nfs4_unlock_state();
3369 return ret;
3370}
3371
NeilBrown4c4cd222005-07-07 17:59:27 -07003372static inline int
3373setlkflg (int type)
3374{
3375 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
3376 RD_STATE : WR_STATE;
3377}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
3379/*
3380 * Checks for sequence id mutating operations.
3381 */
Al Virob37ad282006-10-19 23:28:59 -07003382static __be32
Benny Halevydd453df2009-04-03 08:28:41 +03003383nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
3384 stateid_t *stateid, int flags,
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003385 struct nfs4_stateid **stpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 struct nfs4_stateid *stp;
3388 struct nfs4_stateowner *sop;
Benny Halevydd453df2009-04-03 08:28:41 +03003389 struct svc_fh *current_fh = &cstate->current_fh;
J. Bruce Fields0836f582008-01-26 19:08:12 -05003390 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003392 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
3393 seqid, STATEID_VAL(stateid));
NeilBrown3a4f98b2005-07-07 17:59:26 -07003394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 *stpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003398 dprintk("NFSD: preprocess_seqid_op: magic stateid!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07003399 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 }
3401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 if (STALE_STATEID(stateid))
NeilBrown3a4f98b2005-07-07 17:59:26 -07003403 return nfserr_stale_stateid;
Andy Adamson66689582009-04-03 08:28:45 +03003404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 /*
3406 * We return BAD_STATEID if filehandle doesn't match stateid,
3407 * the confirmed flag is incorrecly set, or the generation
3408 * number is incorrect.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 */
NeilBrownf8816512005-07-07 17:59:25 -07003410 stp = find_stateid(stateid, flags);
3411 if (stp == NULL) {
3412 /*
3413 * Also, we should make sure this isn't just the result of
3414 * a replayed close:
3415 */
3416 sop = search_close_lru(stateid->si_stateownerid, flags);
J. Bruce Fields33515142010-10-02 18:42:39 -04003417 /* It's not stale; let's assume it's expired: */
NeilBrownf8816512005-07-07 17:59:25 -07003418 if (sop == NULL)
J. Bruce Fields33515142010-10-02 18:42:39 -04003419 return nfserr_expired;
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04003420 cstate->replay_owner = sop;
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04003421 status = nfsd4_check_seqid(cstate, sop, seqid);
3422 if (status)
3423 return status;
3424 return nfserr_bad_seqid;
NeilBrownf8816512005-07-07 17:59:25 -07003425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
J. Bruce Fields39325bd2007-11-26 17:06:39 -05003427 *stpp = stp;
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003428 sop = stp->st_stateowner;
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04003429 cstate->replay_owner = sop;
J. Bruce Fields39325bd2007-11-26 17:06:39 -05003430
J. Bruce Fieldsf3362732008-01-26 14:58:45 -05003431 if (nfs4_check_fh(current_fh, stp)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003432 dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n");
NeilBrown3a4f98b2005-07-07 17:59:26 -07003433 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 }
3435
J. Bruce Fields7a8711c2011-09-02 09:03:37 -04003436 status = nfsd4_check_seqid(cstate, sop, seqid);
3437 if (status)
3438 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
NeilBrown3a4f98b2005-07-07 17:59:26 -07003440 if (sop->so_confirmed && flags & CONFIRM) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003441 dprintk("NFSD: preprocess_seqid_op: expected"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003442 " unconfirmed stateowner!\n");
3443 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 }
NeilBrown3a4f98b2005-07-07 17:59:26 -07003445 if (!sop->so_confirmed && !(flags & CONFIRM)) {
J. Bruce Fields2fdada02007-07-27 16:10:37 -04003446 dprintk("NFSD: preprocess_seqid_op: stateowner not"
NeilBrown3a4f98b2005-07-07 17:59:26 -07003447 " confirmed yet!\n");
3448 return nfserr_bad_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 }
J. Bruce Fields28dde242011-08-22 10:07:12 -04003450 status = check_stateid_generation(stateid, &stp->st_stateid, nfsd4_has_session(cstate));
J. Bruce Fields0836f582008-01-26 19:08:12 -05003451 if (status)
3452 return status;
NeilBrown52fd0042005-07-07 17:59:24 -07003453 renew_client(sop->so_client);
NeilBrown3a4f98b2005-07-07 17:59:26 -07003454 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455}
3456
Al Virob37ad282006-10-19 23:28:59 -07003457__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003458nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003459 struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460{
Al Virob37ad282006-10-19 23:28:59 -07003461 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 struct nfs4_stateowner *sop;
3463 struct nfs4_stateid *stp;
3464
3465 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003466 (int)cstate->current_fh.fh_dentry->d_name.len,
3467 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003469 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
J. Bruce Fieldsa8cddc52006-06-30 01:56:13 -07003470 if (status)
3471 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
3473 nfs4_lock_state();
3474
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003475 status = nfs4_preprocess_seqid_op(cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003476 oc->oc_seqid, &oc->oc_req_stateid,
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003477 CONFIRM | OPEN_STATE, &stp);
3478 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 goto out;
3480
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003481 sop = stp->st_stateowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 sop->so_confirmed = 1;
3483 update_stateid(&stp->st_stateid);
3484 memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t));
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003485 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
3486 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stateid));
NeilBrownc7b9a452005-06-23 22:04:30 -07003487
3488 nfsd4_create_clid_dir(sop->so_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489out:
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04003490 if (!cstate->replay_owner)
3491 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 return status;
3493}
3494
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04003495static inline void nfs4_file_downgrade(struct nfs4_stateid *stp, unsigned int to_access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496{
3497 int i;
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04003498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 for (i = 1; i < 4; i++) {
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04003500 if (test_bit(i, &stp->st_access_bmap) && !(i & to_access)) {
3501 nfs4_file_put_access(stp->st_file, i);
3502 __clear_bit(i, &stp->st_access_bmap);
3503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 }
3505}
3506
3507static void
3508reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
3509{
3510 int i;
3511 for (i = 0; i < 4; i++) {
3512 if ((i & deny) != i)
3513 __clear_bit(i, bmap);
3514 }
3515}
3516
Al Virob37ad282006-10-19 23:28:59 -07003517__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003518nfsd4_open_downgrade(struct svc_rqst *rqstp,
3519 struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003520 struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521{
Al Virob37ad282006-10-19 23:28:59 -07003522 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
3525 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003526 (int)cstate->current_fh.fh_dentry->d_name.len,
3527 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Andy Adamsond87a8ad2009-04-03 08:28:53 +03003529 if (!access_valid(od->od_share_access, cstate->minorversion)
J. Bruce Fieldsba5a6a12006-06-30 01:56:16 -07003530 || !deny_valid(od->od_share_deny))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 return nfserr_inval;
3532
3533 nfs4_lock_state();
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003534 status = nfs4_preprocess_seqid_op(cstate, od->od_seqid,
3535 &od->od_stateid, OPEN_STATE, &stp);
3536 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 goto out;
3538
3539 status = nfserr_inval;
3540 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
3541 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
3542 stp->st_access_bmap, od->od_share_access);
3543 goto out;
3544 }
3545 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
3546 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3547 stp->st_deny_bmap, od->od_share_deny);
3548 goto out;
3549 }
J. Bruce Fieldsf197c272011-06-29 08:23:50 -04003550 nfs4_file_downgrade(stp, od->od_share_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
3553
3554 update_stateid(&stp->st_stateid);
3555 memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t));
3556 status = nfs_ok;
3557out:
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04003558 if (!cstate->replay_owner)
3559 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 return status;
3561}
3562
3563/*
3564 * nfs4_unlock_state() called after encode
3565 */
Al Virob37ad282006-10-19 23:28:59 -07003566__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003567nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003568 struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569{
Al Virob37ad282006-10-19 23:28:59 -07003570 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 struct nfs4_stateid *stp;
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003572 struct nfs4_stateowner *so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
3574 dprintk("NFSD: nfsd4_close on file %.*s\n",
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003575 (int)cstate->current_fh.fh_dentry->d_name.len,
3576 cstate->current_fh.fh_dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
3578 nfs4_lock_state();
3579 /* check close_lru for replay */
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003580 status = nfs4_preprocess_seqid_op(cstate, close->cl_seqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 &close->cl_stateid,
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003582 OPEN_STATE | CLOSE_STATE, &stp);
3583 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 goto out;
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003585 so = stp->st_stateowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 status = nfs_ok;
3587 update_stateid(&stp->st_stateid);
3588 memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t));
3589
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003590 /* release_stateid() calls nfsd_close() if needed */
J. Bruce Fields22839632009-01-11 14:27:17 -05003591 release_open_stateid(stp);
J. Bruce Fields04ef5952006-01-18 17:43:21 -08003592
3593 /* place unused nfs4_stateowners on so_close_lru list to be
3594 * released by the laundromat service after the lease period
3595 * to enable us to handle CLOSE replay
3596 */
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003597 if (list_empty(&so->so_stateids))
3598 move_to_close_lru(so);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599out:
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04003600 if (!cstate->replay_owner)
3601 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 return status;
3603}
3604
Al Virob37ad282006-10-19 23:28:59 -07003605__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003606nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3607 struct nfsd4_delegreturn *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608{
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003609 struct nfs4_delegation *dp;
3610 stateid_t *stateid = &dr->dr_stateid;
3611 struct inode *inode;
Al Virob37ad282006-10-19 23:28:59 -07003612 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003614 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003615 return status;
3616 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617
3618 nfs4_lock_state();
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003619 status = nfserr_bad_stateid;
3620 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3621 goto out;
3622 status = nfserr_stale_stateid;
3623 if (STALE_STATEID(stateid))
3624 goto out;
J. Bruce Fields7e0f7cf2009-02-21 13:32:28 -08003625 status = nfserr_bad_stateid;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003626 if (!is_delegation_stateid(stateid))
3627 goto out;
J. Bruce Fields33515142010-10-02 18:42:39 -04003628 status = nfserr_expired;
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003629 dp = find_delegation_stateid(inode, stateid);
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003630 if (!dp)
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003631 goto out;
J. Bruce Fields28dde242011-08-22 10:07:12 -04003632 status = check_stateid_generation(stateid, &dp->dl_stateid, nfsd4_has_session(cstate));
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003633 if (status)
3634 goto out;
3635 renew_client(dp->dl_client);
3636
3637 unhash_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638out:
J. Bruce Fields203a8c82009-02-21 13:29:14 -08003639 nfs4_unlock_state();
3640
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 return status;
3642}
3643
3644
3645/*
3646 * Lock owner state (byte-range locks)
3647 */
3648#define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
3649#define LOCK_HASH_BITS 8
3650#define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
3651#define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
3652
Benny Halevy87df4de2008-12-15 19:42:03 +02003653static inline u64
3654end_offset(u64 start, u64 len)
3655{
3656 u64 end;
3657
3658 end = start + len;
3659 return end >= start ? end: NFS4_MAX_UINT64;
3660}
3661
3662/* last octet in a range */
3663static inline u64
3664last_byte_offset(u64 start, u64 len)
3665{
3666 u64 end;
3667
3668 BUG_ON(!len);
3669 end = start + len;
3670 return end > start ? end - 1: NFS4_MAX_UINT64;
3671}
3672
J. Bruce Fieldsddc04c42011-07-30 23:46:29 -04003673static unsigned int lockownerid_hashval(u32 id)
3674{
3675 return id & LOCK_HASH_MASK;
3676}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
3678static inline unsigned int
3679lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
3680 struct xdr_netobj *ownername)
3681{
3682 return (file_hashval(inode) + cl_id
3683 + opaque_hashval(ownername->data, ownername->len))
3684 & LOCK_HASH_MASK;
3685}
3686
3687static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
3688static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003690static int
3691same_stateid(stateid_t *id_one, stateid_t *id_two)
3692{
3693 if (id_one->si_stateownerid != id_two->si_stateownerid)
3694 return 0;
3695 return id_one->si_fileid == id_two->si_fileid;
3696}
3697
J. Bruce Fieldsb79abad2011-08-22 18:01:43 -04003698static struct nfs4_stateid *find_stateid(stateid_t *t, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699{
J. Bruce Fieldsb79abad2011-08-22 18:01:43 -04003700 struct nfs4_stateid *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 unsigned int hashval;
3702
J. Bruce Fieldsb79abad2011-08-22 18:01:43 -04003703 hashval = stateid_hashval(t->si_stateownerid, t->si_fileid);
3704 list_for_each_entry(s, &stateid_hashtbl[hashval], st_hash) {
3705 if (!same_stateid(&s->st_stateid, t))
3706 continue;
3707 if (flags & LOCK_STATE && s->st_type != NFS4_LOCK_STID)
3708 return NULL;
3709 if (flags & OPEN_STATE && s->st_type != NFS4_OPEN_STID)
3710 return NULL;
3711 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 }
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003713 return NULL;
3714}
3715
3716static struct nfs4_delegation *
3717search_for_delegation(stateid_t *stid)
3718{
3719 struct nfs4_file *fp;
3720 struct nfs4_delegation *dp;
3721 struct list_head *pos;
3722 int i;
3723
3724 for (i = 0; i < FILE_HASH_SIZE; i++) {
3725 list_for_each_entry(fp, &file_hashtbl[i], fi_hash) {
3726 list_for_each(pos, &fp->fi_delegations) {
3727 dp = list_entry(pos, struct nfs4_delegation, dl_perfile);
3728 if (same_stateid(&dp->dl_stateid, stid))
3729 return dp;
3730 }
3731 }
3732 }
3733 return NULL;
3734}
3735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736static struct nfs4_delegation *
3737find_delegation_stateid(struct inode *ino, stateid_t *stid)
3738{
NeilBrown13cd2182005-06-23 22:03:10 -07003739 struct nfs4_file *fp;
3740 struct nfs4_delegation *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
Benny Halevy8c10cbd2009-10-19 12:04:53 +02003742 dprintk("NFSD: %s: stateid=" STATEID_FMT "\n", __func__,
3743 STATEID_VAL(stid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 fp = find_file(ino);
NeilBrown13cd2182005-06-23 22:03:10 -07003746 if (!fp)
3747 return NULL;
3748 dl = find_delegation_file(fp, stid);
3749 put_nfs4_file(fp);
3750 return dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751}
3752
3753/*
3754 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3755 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3756 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3757 * locking, this prevents us from being completely protocol-compliant. The
3758 * real solution to this problem is to start using unsigned file offsets in
3759 * the VFS, but this is a very deep change!
3760 */
3761static inline void
3762nfs4_transform_lock_offset(struct file_lock *lock)
3763{
3764 if (lock->fl_start < 0)
3765 lock->fl_start = OFFSET_MAX;
3766 if (lock->fl_end < 0)
3767 lock->fl_end = OFFSET_MAX;
3768}
3769
NeilBrownd5b90262006-04-10 22:55:22 -07003770/* Hack!: For now, we're defining this just so we can use a pointer to it
3771 * as a unique cookie to identify our (NFSv4's) posix locks. */
Alexey Dobriyan7b021962009-09-21 17:01:12 -07003772static const struct lock_manager_operations nfsd_posix_mng_ops = {
NeilBrownd5b90262006-04-10 22:55:22 -07003773};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
3775static inline void
3776nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3777{
NeilBrownd5b90262006-04-10 22:55:22 -07003778 struct nfs4_stateowner *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
NeilBrownd5b90262006-04-10 22:55:22 -07003780 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3781 sop = (struct nfs4_stateowner *) fl->fl_owner;
J. Bruce Fields7c13f342011-08-30 22:15:47 -04003782 deny->ld_owner.data = kmemdup(sop->so_owner.data,
3783 sop->so_owner.len, GFP_KERNEL);
3784 if (!deny->ld_owner.data)
3785 /* We just don't care that much */
3786 goto nevermind;
3787 deny->ld_owner.len = sop->so_owner.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 deny->ld_clientid = sop->so_client->cl_clientid;
NeilBrownd5b90262006-04-10 22:55:22 -07003789 } else {
J. Bruce Fields7c13f342011-08-30 22:15:47 -04003790nevermind:
3791 deny->ld_owner.len = 0;
3792 deny->ld_owner.data = NULL;
NeilBrownd5b90262006-04-10 22:55:22 -07003793 deny->ld_clientid.cl_boot = 0;
3794 deny->ld_clientid.cl_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 }
3796 deny->ld_start = fl->fl_start;
Benny Halevy87df4de2008-12-15 19:42:03 +02003797 deny->ld_length = NFS4_MAX_UINT64;
3798 if (fl->fl_end != NFS4_MAX_UINT64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 deny->ld_length = fl->fl_end - fl->fl_start + 1;
3800 deny->ld_type = NFS4_READ_LT;
3801 if (fl->fl_type != F_RDLCK)
3802 deny->ld_type = NFS4_WRITE_LT;
3803}
3804
3805static struct nfs4_stateowner *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806find_lockstateowner_str(struct inode *inode, clientid_t *clid,
3807 struct xdr_netobj *owner)
3808{
3809 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
3810 struct nfs4_stateowner *op;
3811
3812 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04003813 if (same_owner_str(op, owner, clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 return op;
3815 }
3816 return NULL;
3817}
3818
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003819static void hash_lockowner(struct nfs4_stateowner *sop, unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp)
3820{
3821 unsigned int idhashval;
3822
3823 idhashval = lockownerid_hashval(sop->so_id);
3824 list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]);
3825 list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]);
3826 list_add(&sop->so_perstateid, &open_stp->st_lockowners);
3827}
3828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829/*
3830 * Alloc a lock owner structure.
3831 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003832 * occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 *
3834 * strhashval = lock_ownerstr_hashval
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 */
3836
3837static struct nfs4_stateowner *
3838alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) {
3839 struct nfs4_stateowner *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003841 sop = alloc_stateowner(&lock->lk_new_owner, clp);
3842 if (!sop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 return NULL;
NeilBrownea1da632005-06-23 22:04:17 -07003844 INIT_LIST_HEAD(&sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 sop->so_is_open_owner = 0;
Neil Brownb59e3c02005-09-13 01:25:38 -07003846 /* It is the openowner seqid that will be incremented in encode in the
3847 * case of new lockowners; so increment the lock seqid manually: */
3848 sop->so_seqid = lock->lk_new_lock_seqid + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 sop->so_confirmed = 1;
J. Bruce Fieldsff194bd2011-08-12 09:42:57 -04003850 hash_lockowner(sop, strhashval, clp, open_stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 return sop;
3852}
3853
NeilBrownfd39ca92005-06-23 22:04:03 -07003854static struct nfs4_stateid *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp)
3856{
3857 struct nfs4_stateid *stp;
3858 unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id);
3859
NeilBrown5ac049a2005-06-23 22:03:03 -07003860 stp = nfs4_alloc_stateid();
3861 if (stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 goto out;
3863 INIT_LIST_HEAD(&stp->st_hash);
3864 INIT_LIST_HEAD(&stp->st_perfile);
NeilBrownea1da632005-06-23 22:04:17 -07003865 INIT_LIST_HEAD(&stp->st_perstateowner);
3866 INIT_LIST_HEAD(&stp->st_lockowners); /* not used */
J. Bruce Fieldsb79abad2011-08-22 18:01:43 -04003867 list_add(&stp->st_hash, &stateid_hashtbl[hashval]);
NeilBrown8beefa22005-06-23 22:03:08 -07003868 list_add(&stp->st_perfile, &fp->fi_stateids);
NeilBrownea1da632005-06-23 22:04:17 -07003869 list_add(&stp->st_perstateowner, &sop->so_stateids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 stp->st_stateowner = sop;
J. Bruce Fields5fa0bbb2011-08-31 15:25:46 -04003871 stp->st_type = NFS4_LOCK_STID;
NeilBrown13cd2182005-06-23 22:03:10 -07003872 get_nfs4_file(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 stp->st_file = fp;
J. Bruce Fieldse4e83ea2010-04-22 16:21:39 -04003874 stp->st_stateid.si_boot = boot_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 stp->st_stateid.si_stateownerid = sop->so_id;
3876 stp->st_stateid.si_fileid = fp->fi_id;
J. Bruce Fields73997dc2011-08-31 15:47:21 -04003877 /* note will be incremented before first return to client: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 stp->st_stateid.si_generation = 0;
J. Bruce Fields0997b172011-03-02 18:01:35 -05003879 stp->st_access_bmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 stp->st_deny_bmap = open_stp->st_deny_bmap;
NeilBrown4c4cd222005-07-07 17:59:27 -07003881 stp->st_openstp = open_stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
3883out:
3884 return stp;
3885}
3886
NeilBrownfd39ca92005-06-23 22:04:03 -07003887static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888check_lock_length(u64 offset, u64 length)
3889{
Benny Halevy87df4de2008-12-15 19:42:03 +02003890 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 LOFF_OVERFLOW(offset, length)));
3892}
3893
J. Bruce Fields0997b172011-03-02 18:01:35 -05003894static void get_lock_access(struct nfs4_stateid *lock_stp, u32 access)
3895{
3896 struct nfs4_file *fp = lock_stp->st_file;
3897 int oflag = nfs4_access_to_omode(access);
3898
3899 if (test_bit(access, &lock_stp->st_access_bmap))
3900 return;
3901 nfs4_file_get_access(fp, oflag);
3902 __set_bit(access, &lock_stp->st_access_bmap);
3903}
3904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905/*
3906 * LOCK operation
3907 */
Al Virob37ad282006-10-19 23:28:59 -07003908__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003909nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08003910 struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911{
NeilBrown3e9e3db2005-06-23 22:04:20 -07003912 struct nfs4_stateowner *open_sop = NULL;
Neil Brownb59e3c02005-09-13 01:25:38 -07003913 struct nfs4_stateowner *lock_sop = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 struct nfs4_stateid *lock_stp;
J. Bruce Fields7d947842010-08-20 18:09:31 -04003915 struct nfs4_file *fp;
3916 struct file *filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 struct file_lock file_lock;
Andy Adamson8dc7c312006-03-20 13:44:26 -05003918 struct file_lock conflock;
Al Virob37ad282006-10-19 23:28:59 -07003919 __be32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 unsigned int strhashval;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003921 int lkflg;
Al Virob8dd7b92006-10-19 23:29:01 -07003922 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
3924 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3925 (long long) lock->lk_offset,
3926 (long long) lock->lk_length);
3927
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 if (check_lock_length(lock->lk_offset, lock->lk_length))
3929 return nfserr_inval;
3930
J.Bruce Fieldsca364312006-12-13 00:35:27 -08003931 if ((status = fh_verify(rqstp, &cstate->current_fh,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02003932 S_IFREG, NFSD_MAY_LOCK))) {
Andy Adamsona6f6ef22006-01-18 17:43:17 -08003933 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3934 return status;
3935 }
3936
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 nfs4_lock_state();
3938
3939 if (lock->lk_is_new) {
NeilBrown893f8772005-07-07 17:59:17 -07003940 /*
3941 * Client indicates that this is a new lockowner.
3942 * Use open owner and open stateid to create lock owner and
3943 * lock stateid.
3944 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 struct nfs4_stateid *open_stp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
3947 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03003948 if (!nfsd4_has_session(cstate) &&
3949 STALE_CLIENTID(&lock->lk_new_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 /* validate and update open stateid and open seqid */
Benny Halevydd453df2009-04-03 08:28:41 +03003953 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 lock->lk_new_open_seqid,
3955 &lock->lk_new_open_stateid,
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003956 OPEN_STATE, &open_stp);
NeilBrown37515172005-07-07 17:59:16 -07003957 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 goto out;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003959 status = nfserr_bad_stateid;
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003960 open_sop = open_stp->st_stateowner;
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003961 if (!nfsd4_has_session(cstate) &&
3962 !same_clid(&open_sop->so_client->cl_clientid,
3963 &lock->v.new.clientid))
3964 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 /* create lockowner and lock stateid */
3966 fp = open_stp->st_file;
3967 strhashval = lock_ownerstr_hashval(fp->fi_inode,
3968 open_sop->so_client->cl_clientid.cl_id,
3969 &lock->v.new.owner);
NeilBrown3e9e3db2005-06-23 22:04:20 -07003970 /* XXX: Do we need to check for duplicate stateowners on
3971 * the same file, or should they just be allowed (and
3972 * create new stateids)? */
J. Bruce Fields3e772462011-08-10 19:07:33 -04003973 status = nfserr_jukebox;
Neil Brownb59e3c02005-09-13 01:25:38 -07003974 lock_sop = alloc_init_lock_stateowner(strhashval,
3975 open_sop->so_client, open_stp, lock);
3976 if (lock_sop == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 goto out;
Neil Brownb59e3c02005-09-13 01:25:38 -07003978 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
J. Bruce Fields8a280512006-01-18 17:43:18 -08003979 if (lock_stp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 } else {
3982 /* lock (lock owner + lock stateid) already exists */
Benny Halevydd453df2009-04-03 08:28:41 +03003983 status = nfs4_preprocess_seqid_op(cstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 lock->lk_old_lock_seqid,
3985 &lock->lk_old_lock_stateid,
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003986 LOCK_STATE, &lock_stp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 if (status)
3988 goto out;
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003989 lock_sop = lock_stp->st_stateowner;
J. Bruce Fields7d947842010-08-20 18:09:31 -04003990 fp = lock_stp->st_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 }
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04003992 /* lock_sop and lock_stp have been created or found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
J. Bruce Fieldsb34f27a2011-08-22 13:13:31 -04003994 lkflg = setlkflg(lock->lk_type);
3995 status = nfs4_check_openmode(lock_stp, lkflg);
3996 if (status)
3997 goto out;
3998
NeilBrown0dd395d2005-07-07 17:59:15 -07003999 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004000 if (locks_in_grace() && !lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004001 goto out;
4002 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004003 if (!locks_in_grace() && lock->lk_reclaim)
NeilBrown0dd395d2005-07-07 17:59:15 -07004004 goto out;
4005
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 locks_init_lock(&file_lock);
4007 switch (lock->lk_type) {
4008 case NFS4_READ_LT:
4009 case NFS4_READW_LT:
J. Bruce Fields0997b172011-03-02 18:01:35 -05004010 filp = find_readable_file(lock_stp->st_file);
4011 if (filp)
4012 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 file_lock.fl_type = F_RDLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004014 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 case NFS4_WRITE_LT:
4016 case NFS4_WRITEW_LT:
J. Bruce Fields0997b172011-03-02 18:01:35 -05004017 filp = find_writeable_file(lock_stp->st_file);
4018 if (filp)
4019 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 file_lock.fl_type = F_WRLCK;
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004021 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 default:
4023 status = nfserr_inval;
4024 goto out;
4025 }
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004026 if (!filp) {
4027 status = nfserr_openmode;
4028 goto out;
4029 }
Neil Brownb59e3c02005-09-13 01:25:38 -07004030 file_lock.fl_owner = (fl_owner_t)lock_sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 file_lock.fl_pid = current->tgid;
4032 file_lock.fl_file = filp;
4033 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07004034 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
4036 file_lock.fl_start = lock->lk_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02004037 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 nfs4_transform_lock_offset(&file_lock);
4039
4040 /*
4041 * Try to lock the file in the VFS.
4042 * Note: locks.c uses the BKL to protect the inode's lock list.
4043 */
4044
J. Bruce Fields529d7b22011-03-02 23:48:33 -05004045 err = vfs_lock_file(filp, F_SETLK, &file_lock, &conflock);
Al Virob8dd7b92006-10-19 23:29:01 -07004046 switch (-err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 case 0: /* success! */
4048 update_stateid(&lock_stp->st_stateid);
4049 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid,
4050 sizeof(stateid_t));
Al Virob8dd7b92006-10-19 23:29:01 -07004051 status = 0;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004052 break;
4053 case (EAGAIN): /* conflock holds conflicting lock */
4054 status = nfserr_denied;
4055 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
4056 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
4057 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 case (EDEADLK):
4059 status = nfserr_deadlock;
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004060 break;
J. Bruce Fields3e772462011-08-10 19:07:33 -04004061 default:
Marc Eshelfd85b812006-11-28 16:26:41 -05004062 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
J. Bruce Fields3e772462011-08-10 19:07:33 -04004063 status = nfserrno(err);
Andy Adamsoneb76b3f2006-03-26 01:37:26 -08004064 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066out:
J. Bruce Fields8a280512006-01-18 17:43:18 -08004067 if (status && lock->lk_is_new && lock_sop)
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05004068 release_lockowner(lock_sop);
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04004069 if (!cstate->replay_owner)
4070 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 return status;
4072}
4073
4074/*
J. Bruce Fields55ef1272008-12-20 11:58:38 -08004075 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
4076 * so we do a temporary open here just to get an open file to pass to
4077 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
4078 * inode operation.)
4079 */
4080static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
4081{
4082 struct file *file;
4083 int err;
4084
4085 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
4086 if (err)
4087 return err;
4088 err = vfs_test_lock(file, lock);
4089 nfsd_close(file);
4090 return err;
4091}
4092
4093/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 * LOCKT operation
4095 */
Al Virob37ad282006-10-19 23:28:59 -07004096__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004097nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4098 struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099{
4100 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 struct file_lock file_lock;
J. Bruce Fields16d25942011-09-01 11:31:45 -04004102 struct nfs4_stateowner *so;
Marc Eshelfd85b812006-11-28 16:26:41 -05004103 int error;
Al Virob37ad282006-10-19 23:28:59 -07004104 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004106 if (locks_in_grace())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 return nfserr_grace;
4108
4109 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
4110 return nfserr_inval;
4111
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 nfs4_lock_state();
4113
4114 status = nfserr_stale_clientid;
Andy Adamson60adfc52009-04-03 08:28:50 +03004115 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
J. Bruce Fields75c096f2011-08-15 18:39:32 -04004118 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004121 inode = cstate->current_fh.fh_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 locks_init_lock(&file_lock);
4123 switch (lockt->lt_type) {
4124 case NFS4_READ_LT:
4125 case NFS4_READW_LT:
4126 file_lock.fl_type = F_RDLCK;
4127 break;
4128 case NFS4_WRITE_LT:
4129 case NFS4_WRITEW_LT:
4130 file_lock.fl_type = F_WRLCK;
4131 break;
4132 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -04004133 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 status = nfserr_inval;
4135 goto out;
4136 }
4137
J. Bruce Fields16d25942011-09-01 11:31:45 -04004138 so = find_lockstateowner_str(inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 &lockt->lt_clientid, &lockt->lt_owner);
J. Bruce Fields16d25942011-09-01 11:31:45 -04004140 if (so)
4141 file_lock.fl_owner = (fl_owner_t)so;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 file_lock.fl_pid = current->tgid;
4143 file_lock.fl_flags = FL_POSIX;
4144
4145 file_lock.fl_start = lockt->lt_offset;
Benny Halevy87df4de2008-12-15 19:42:03 +02004146 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
4148 nfs4_transform_lock_offset(&file_lock);
4149
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 status = nfs_ok;
J. Bruce Fields55ef1272008-12-20 11:58:38 -08004151 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
Marc Eshelfd85b812006-11-28 16:26:41 -05004152 if (error) {
4153 status = nfserrno(error);
4154 goto out;
4155 }
Marc Eshel9d6a8c52007-02-21 00:55:18 -05004156 if (file_lock.fl_type != F_UNLCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 status = nfserr_denied;
Marc Eshel9d6a8c52007-02-21 00:55:18 -05004158 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 }
4160out:
4161 nfs4_unlock_state();
4162 return status;
4163}
4164
Al Virob37ad282006-10-19 23:28:59 -07004165__be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08004166nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08004167 struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168{
4169 struct nfs4_stateid *stp;
4170 struct file *filp = NULL;
4171 struct file_lock file_lock;
Al Virob37ad282006-10-19 23:28:59 -07004172 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07004173 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
4175 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
4176 (long long) locku->lu_offset,
4177 (long long) locku->lu_length);
4178
4179 if (check_lock_length(locku->lu_offset, locku->lu_length))
4180 return nfserr_inval;
4181
4182 nfs4_lock_state();
4183
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004184 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
4185 &locku->lu_stateid, LOCK_STATE, &stp);
4186 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 goto out;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004188 filp = find_any_file(stp->st_file);
4189 if (!filp) {
4190 status = nfserr_lock_range;
4191 goto out;
4192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 BUG_ON(!filp);
4194 locks_init_lock(&file_lock);
4195 file_lock.fl_type = F_UNLCK;
J. Bruce Fields9072d5c2011-08-24 12:45:03 -04004196 file_lock.fl_owner = (fl_owner_t) stp->st_stateowner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 file_lock.fl_pid = current->tgid;
4198 file_lock.fl_file = filp;
4199 file_lock.fl_flags = FL_POSIX;
NeilBrownd5b90262006-04-10 22:55:22 -07004200 file_lock.fl_lmops = &nfsd_posix_mng_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 file_lock.fl_start = locku->lu_offset;
4202
Benny Halevy87df4de2008-12-15 19:42:03 +02004203 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 nfs4_transform_lock_offset(&file_lock);
4205
4206 /*
4207 * Try to unlock the file in the VFS.
4208 */
Marc Eshelfd85b812006-11-28 16:26:41 -05004209 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
Al Virob8dd7b92006-10-19 23:29:01 -07004210 if (err) {
Marc Eshelfd85b812006-11-28 16:26:41 -05004211 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 goto out_nfserr;
4213 }
4214 /*
4215 * OK, unlock succeeded; the only thing left to do is update the stateid.
4216 */
4217 update_stateid(&stp->st_stateid);
4218 memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t));
4219
4220out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 nfs4_unlock_state();
4222 return status;
4223
4224out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07004225 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 goto out;
4227}
4228
4229/*
4230 * returns
4231 * 1: locks held by lockowner
4232 * 0: no locks held by lockowner
4233 */
4234static int
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004235check_for_locks(struct nfs4_file *filp, struct nfs4_stateowner *lowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236{
4237 struct file_lock **flpp;
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004238 struct inode *inode = filp->fi_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 int status = 0;
4240
Arnd Bergmannb89f4322010-09-18 15:09:31 +02004241 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
J. Bruce Fields796dadf2006-01-18 17:43:22 -08004243 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 status = 1;
4245 goto out;
J. Bruce Fields796dadf2006-01-18 17:43:22 -08004246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 }
4248out:
Arnd Bergmannb89f4322010-09-18 15:09:31 +02004249 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 return status;
4251}
4252
Al Virob37ad282006-10-19 23:28:59 -07004253__be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08004254nfsd4_release_lockowner(struct svc_rqst *rqstp,
4255 struct nfsd4_compound_state *cstate,
4256 struct nfsd4_release_lockowner *rlockowner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257{
4258 clientid_t *clid = &rlockowner->rl_clientid;
NeilBrown3e9e3db2005-06-23 22:04:20 -07004259 struct nfs4_stateowner *sop;
4260 struct nfs4_stateid *stp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 struct xdr_netobj *owner = &rlockowner->rl_owner;
NeilBrown3e9e3db2005-06-23 22:04:20 -07004262 struct list_head matches;
4263 int i;
Al Virob37ad282006-10-19 23:28:59 -07004264 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
4266 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
4267 clid->cl_boot, clid->cl_id);
4268
4269 /* XXX check for lease expiration */
4270
4271 status = nfserr_stale_clientid;
Neil Brown849823c2005-09-13 01:25:36 -07004272 if (STALE_CLIENTID(clid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
4275 nfs4_lock_state();
4276
NeilBrown3e9e3db2005-06-23 22:04:20 -07004277 status = nfserr_locks_held;
4278 /* XXX: we're doing a linear search through all the lockowners.
4279 * Yipes! For now we'll just hope clients aren't really using
4280 * release_lockowner much, but eventually we have to fix these
4281 * data structures. */
4282 INIT_LIST_HEAD(&matches);
4283 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4284 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
J. Bruce Fields599e0a22007-07-26 17:04:54 -04004285 if (!same_owner_str(sop, owner, clid))
NeilBrown3e9e3db2005-06-23 22:04:20 -07004286 continue;
4287 list_for_each_entry(stp, &sop->so_stateids,
4288 st_perstateowner) {
J. Bruce Fieldsf9d75622010-07-08 11:02:09 -04004289 if (check_for_locks(stp->st_file, sop))
NeilBrown3e9e3db2005-06-23 22:04:20 -07004290 goto out;
4291 /* Note: so_perclient unused for lockowners,
4292 * so it's OK to fool with here. */
4293 list_add(&sop->so_perclient, &matches);
4294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 }
NeilBrown3e9e3db2005-06-23 22:04:20 -07004296 }
4297 /* Clients probably won't expect us to return with some (but not all)
4298 * of the lockowner state released; so don't release any until all
4299 * have been checked. */
4300 status = nfs_ok;
NeilBrown0fa822e2005-07-07 17:59:14 -07004301 while (!list_empty(&matches)) {
4302 sop = list_entry(matches.next, struct nfs4_stateowner,
4303 so_perclient);
4304 /* unhash_stateowner deletes so_perclient only
4305 * for openowners. */
4306 list_del(&sop->so_perclient);
J. Bruce Fieldsf044ff82009-01-11 15:24:04 -05004307 release_lockowner(sop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 }
4309out:
4310 nfs4_unlock_state();
4311 return status;
4312}
4313
4314static inline struct nfs4_client_reclaim *
NeilBrowna55370a2005-06-23 22:03:52 -07004315alloc_reclaim(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316{
NeilBrowna55370a2005-06-23 22:03:52 -07004317 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318}
4319
NeilBrownc7b9a452005-06-23 22:04:30 -07004320int
Andy Adamsona1bcecd2009-04-03 08:28:05 +03004321nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
NeilBrownc7b9a452005-06-23 22:04:30 -07004322{
4323 unsigned int strhashval = clientstr_hashval(name);
4324 struct nfs4_client *clp;
4325
J. Bruce Fieldse203d502010-11-24 17:30:54 -05004326 clp = find_confirmed_client_by_str(name, strhashval);
NeilBrownc7b9a452005-06-23 22:04:30 -07004327 return clp ? 1 : 0;
4328}
4329
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330/*
4331 * failure => all reset bets are off, nfserr_no_grace...
4332 */
NeilBrown190e4fb2005-06-23 22:04:25 -07004333int
4334nfs4_client_to_reclaim(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335{
4336 unsigned int strhashval;
4337 struct nfs4_client_reclaim *crp = NULL;
4338
NeilBrowna55370a2005-06-23 22:03:52 -07004339 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
4340 crp = alloc_reclaim();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 if (!crp)
4342 return 0;
NeilBrowna55370a2005-06-23 22:03:52 -07004343 strhashval = clientstr_hashval(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 INIT_LIST_HEAD(&crp->cr_strhash);
4345 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
NeilBrowna55370a2005-06-23 22:03:52 -07004346 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 reclaim_str_hashtbl_size++;
4348 return 1;
4349}
4350
4351static void
4352nfs4_release_reclaim(void)
4353{
4354 struct nfs4_client_reclaim *crp = NULL;
4355 int i;
4356
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4358 while (!list_empty(&reclaim_str_hashtbl[i])) {
4359 crp = list_entry(reclaim_str_hashtbl[i].next,
4360 struct nfs4_client_reclaim, cr_strhash);
4361 list_del(&crp->cr_strhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 kfree(crp);
4363 reclaim_str_hashtbl_size--;
4364 }
4365 }
4366 BUG_ON(reclaim_str_hashtbl_size);
4367}
4368
4369/*
4370 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
NeilBrownfd39ca92005-06-23 22:04:03 -07004371static struct nfs4_client_reclaim *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372nfs4_find_reclaim_client(clientid_t *clid)
4373{
4374 unsigned int strhashval;
4375 struct nfs4_client *clp;
4376 struct nfs4_client_reclaim *crp = NULL;
4377
4378
4379 /* find clientid in conf_id_hashtbl */
4380 clp = find_confirmed_client(clid);
4381 if (clp == NULL)
4382 return NULL;
4383
NeilBrowna55370a2005-06-23 22:03:52 -07004384 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
4385 clp->cl_name.len, clp->cl_name.data,
4386 clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387
4388 /* find clp->cl_name in reclaim_str_hashtbl */
NeilBrowna55370a2005-06-23 22:03:52 -07004389 strhashval = clientstr_hashval(clp->cl_recdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
NeilBrowna55370a2005-06-23 22:03:52 -07004391 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 return crp;
4393 }
4394 }
4395 return NULL;
4396}
4397
4398/*
4399* Called from OPEN. Look for clientid in reclaim list.
4400*/
Al Virob37ad282006-10-19 23:28:59 -07004401__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402nfs4_check_open_reclaim(clientid_t *clid)
4403{
NeilBrowndfc83562005-06-23 22:03:16 -07004404 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405}
4406
NeilBrownac4d8ff22005-06-23 22:03:30 -07004407/* initialization to perform at module load time: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004409int
NeilBrownac4d8ff22005-06-23 22:03:30 -07004410nfs4_state_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411{
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004412 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004414 status = nfsd4_init_slabs();
4415 if (status)
4416 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4418 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
4419 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
4420 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
4421 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
Wang Chen02cb2852009-04-24 15:41:57 +08004422 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 }
Marc Eshel5282fd72009-04-03 08:27:52 +03004424 for (i = 0; i < SESSION_HASH_SIZE; i++)
4425 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 for (i = 0; i < FILE_HASH_SIZE; i++) {
4427 INIT_LIST_HEAD(&file_hashtbl[i]);
4428 }
J. Bruce Fields506f2752011-08-11 18:50:18 -04004429 for (i = 0; i < OPEN_OWNER_HASH_SIZE; i++) {
4430 INIT_LIST_HEAD(&open_ownerstr_hashtbl[i]);
4431 INIT_LIST_HEAD(&open_ownerid_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 }
J. Bruce Fieldsb79abad2011-08-22 18:01:43 -04004433 for (i = 0; i < STATEID_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 INIT_LIST_HEAD(&stateid_hashtbl[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4436 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
4437 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
4438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 memset(&onestateid, ~0, sizeof(stateid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 INIT_LIST_HEAD(&close_lru);
4441 INIT_LIST_HEAD(&client_lru);
4442 INIT_LIST_HEAD(&del_recall_lru);
NeilBrownac4d8ff22005-06-23 22:03:30 -07004443 reclaim_str_hashtbl_size = 0;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04004444 return 0;
NeilBrownac4d8ff22005-06-23 22:03:30 -07004445}
4446
NeilBrown190e4fb2005-06-23 22:04:25 -07004447static void
4448nfsd4_load_reboot_recovery_data(void)
4449{
4450 int status;
4451
NeilBrown0964a3d2005-06-23 22:04:32 -07004452 nfs4_lock_state();
J. Bruce Fields48483bf2011-08-26 20:40:28 -04004453 nfsd4_init_recdir();
NeilBrown190e4fb2005-06-23 22:04:25 -07004454 status = nfsd4_recdir_load();
NeilBrown0964a3d2005-06-23 22:04:32 -07004455 nfs4_unlock_state();
NeilBrown190e4fb2005-06-23 22:04:25 -07004456 if (status)
4457 printk("NFSD: Failure reading reboot recovery data\n");
4458}
4459
Meelap Shahc2f1a552007-07-17 04:04:39 -07004460/*
4461 * Since the lifetime of a delegation isn't limited to that of an open, a
4462 * client may quite reasonably hang on to a delegation as long as it has
4463 * the inode cached. This becomes an obvious problem the first time a
4464 * client's inode cache approaches the size of the server's total memory.
4465 *
4466 * For now we avoid this problem by imposing a hard limit on the number
4467 * of delegations, which varies according to the server's memory size.
4468 */
4469static void
4470set_max_delegations(void)
4471{
4472 /*
4473 * Allow at most 4 delegations per megabyte of RAM. Quick
4474 * estimates suggest that in the worst case (where every delegation
4475 * is for a different inode), a delegation could take about 1.5K,
4476 * giving a worst case usage of about 6% of memory.
4477 */
4478 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4479}
4480
NeilBrownac4d8ff22005-06-23 22:03:30 -07004481/* initialization to perform when the nfsd service is started: */
4482
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004483static int
NeilBrownac4d8ff22005-06-23 22:03:30 -07004484__nfs4_state_start(void)
4485{
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004486 int ret;
4487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 boot_time = get_seconds();
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04004489 locks_start_grace(&nfsd4_manager);
Marc Eshel9a8db972007-07-17 04:04:35 -07004490 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05004491 nfsd4_grace);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004492 ret = set_callback_cred();
4493 if (ret)
4494 return -ENOMEM;
NeilBrown58da2822005-06-23 22:03:19 -07004495 laundry_wq = create_singlethread_workqueue("nfsd4");
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004496 if (laundry_wq == NULL)
4497 return -ENOMEM;
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004498 ret = nfsd4_create_callback_queue();
4499 if (ret)
4500 goto out_free_laundry;
J. Bruce Fieldse46b4982010-03-01 19:21:21 -05004501 queue_delayed_work(laundry_wq, &laundromat_work, nfsd4_grace * HZ);
Meelap Shahc2f1a552007-07-17 04:04:39 -07004502 set_max_delegations();
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05004503 return 0;
4504out_free_laundry:
4505 destroy_workqueue(laundry_wq);
4506 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507}
4508
J. Bruce Fields29ab23c2009-09-15 15:56:50 -04004509int
NeilBrown76a35502005-06-23 22:03:26 -07004510nfs4_state_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511{
NeilBrown190e4fb2005-06-23 22:04:25 -07004512 nfsd4_load_reboot_recovery_data();
Jeff Layton4ad9a342010-07-19 16:50:04 -04004513 return __nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514}
4515
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516static void
4517__nfs4_state_shutdown(void)
4518{
4519 int i;
4520 struct nfs4_client *clp = NULL;
4521 struct nfs4_delegation *dp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 struct list_head *pos, *next, reaplist;
4523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4525 while (!list_empty(&conf_id_hashtbl[i])) {
4526 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4527 expire_client(clp);
4528 }
4529 while (!list_empty(&unconf_str_hashtbl[i])) {
4530 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4531 expire_client(clp);
4532 }
4533 }
4534 INIT_LIST_HEAD(&reaplist);
4535 spin_lock(&recall_lock);
4536 list_for_each_safe(pos, next, &del_recall_lru) {
4537 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4538 list_move(&dp->dl_recall_lru, &reaplist);
4539 }
4540 spin_unlock(&recall_lock);
4541 list_for_each_safe(pos, next, &reaplist) {
4542 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4543 list_del_init(&dp->dl_recall_lru);
4544 unhash_delegation(dp);
4545 }
4546
NeilBrown190e4fb2005-06-23 22:04:25 -07004547 nfsd4_shutdown_recdir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548}
4549
4550void
4551nfs4_state_shutdown(void)
4552{
Tejun Heoafe2c512010-12-14 16:21:17 +01004553 cancel_delayed_work_sync(&laundromat_work);
NeilBrown5e8d5c22006-04-10 22:55:37 -07004554 destroy_workqueue(laundry_wq);
J. Bruce Fields2c5e7612008-11-20 14:36:17 -06004555 locks_end_grace(&nfsd4_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 nfs4_lock_state();
4557 nfs4_release_reclaim();
4558 __nfs4_state_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 nfs4_unlock_state();
J. Bruce Fieldsc3935e32010-06-04 16:42:08 -04004560 nfsd4_destroy_callback_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561}